diff --git a/Content.Client/Access/AccessOverlay.cs b/Content.Client/Access/AccessOverlay.cs index 2be3d07e90d..59c9441036d 100644 --- a/Content.Client/Access/AccessOverlay.cs +++ b/Content.Client/Access/AccessOverlay.cs @@ -9,20 +9,20 @@ namespace Content.Client.Access; public sealed class AccessOverlay : Overlay { + private const string TextFontPath = "/Fonts/NotoSans/NotoSans-Regular.ttf"; + private const int TextFontSize = 12; + private readonly IEntityManager _entityManager; - private readonly EntityLookupSystem _lookup; - private readonly SharedTransformSystem _xform; + private readonly SharedTransformSystem _transformSystem; private readonly Font _font; public override OverlaySpace Space => OverlaySpace.ScreenSpace; - public AccessOverlay(IEntityManager entManager, IResourceCache cache, EntityLookupSystem lookup, SharedTransformSystem xform) + public AccessOverlay(IEntityManager entityManager, IResourceCache resourceCache, SharedTransformSystem transformSystem) { - _entityManager = entManager; - _lookup = lookup; - _xform = xform; - - _font = cache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", 12); + _entityManager = entityManager; + _transformSystem = transformSystem; + _font = resourceCache.GetFont(TextFontPath, TextFontSize); } protected override void Draw(in OverlayDrawArgs args) @@ -30,52 +30,65 @@ protected override void Draw(in OverlayDrawArgs args) if (args.ViewportControl == null) return; - var readerQuery = _entityManager.GetEntityQuery(); - var xformQuery = _entityManager.GetEntityQuery(); - - foreach (var ent in _lookup.GetEntitiesIntersecting(args.MapId, args.WorldAABB, - LookupFlags.Static | LookupFlags.Approximate)) + var textBuffer = new StringBuilder(); + var query = _entityManager.EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var accessReader, out var transform)) { - if (!readerQuery.TryGetComponent(ent, out var reader) || - !xformQuery.TryGetComponent(ent, out var xform)) + textBuffer.Clear(); + + var entityName = _entityManager.ToPrettyString(uid); + textBuffer.AppendLine(entityName.Prototype); + textBuffer.Append("UID: "); + textBuffer.Append(entityName.Uid.Id); + textBuffer.Append(", NUID: "); + textBuffer.Append(entityName.Nuid.Id); + textBuffer.AppendLine(); + + if (!accessReader.Enabled) { + textBuffer.AppendLine("-Disabled"); continue; } - var text = new StringBuilder(); - var index = 0; - var a = $"{_entityManager.ToPrettyString(ent)}"; - text.Append(a); - - foreach (var list in reader.AccessLists) + if (accessReader.AccessLists.Count > 0) { - a = $"Tag {index}"; - text.AppendLine(a); - - foreach (var entry in list) + var groupNumber = 0; + foreach (var accessList in accessReader.AccessLists) { - a = $"- {entry}"; - text.AppendLine(a); + groupNumber++; + foreach (var entry in accessList) + { + textBuffer.Append("+Set "); + textBuffer.Append(groupNumber); + textBuffer.Append(": "); + textBuffer.Append(entry.Id); + textBuffer.AppendLine(); + } } - - index++; } - - string textStr; - - if (text.Length >= 2) + else { - textStr = text.ToString(); - textStr = textStr[..^2]; + textBuffer.AppendLine("+Unrestricted"); } - else + + foreach (var key in accessReader.AccessKeys) { - textStr = ""; + textBuffer.Append("+Key "); + textBuffer.Append(key.OriginStation); + textBuffer.Append(": "); + textBuffer.Append(key.Id); + textBuffer.AppendLine(); } - var screenPos = args.ViewportControl.WorldToScreen(_xform.GetWorldPosition(xform)); + foreach (var tag in accessReader.DenyTags) + { + textBuffer.Append("-Tag "); + textBuffer.AppendLine(tag.Id); + } - args.ScreenHandle.DrawString(_font, screenPos, textStr, Color.Gold); + var accessInfoText = textBuffer.ToString(); + var screenPos = args.ViewportControl.WorldToScreen(_transformSystem.GetWorldPosition(transform)); + args.ScreenHandle.DrawString(_font, screenPos, accessInfoText, Color.Gold); } } } diff --git a/Content.Client/Access/Commands/ShowAccessReadersCommand.cs b/Content.Client/Access/Commands/ShowAccessReadersCommand.cs index 7c804dd9698..cb6cb6cf6bb 100644 --- a/Content.Client/Access/Commands/ShowAccessReadersCommand.cs +++ b/Content.Client/Access/Commands/ShowAccessReadersCommand.cs @@ -7,8 +7,16 @@ namespace Content.Client.Access.Commands; public sealed class ShowAccessReadersCommand : IConsoleCommand { public string Command => "showaccessreaders"; - public string Description => "Shows all access readers in the viewport"; - public string Help => $"{Command}"; + + public string Description => "Toggles showing access reader permissions on the map"; + public string Help => """ + Overlay Info: + -Disabled | The access reader is disabled + +Unrestricted | The access reader has no restrictions + +Set [Index]: [Tag Name]| A tag in an access set (accessor needs all tags in the set to be allowed by the set) + +Key [StationUid]: [StationRecordKeyId] | A StationRecordKey that is allowed + -Tag [Tag Name] | A tag that is not allowed (takes priority over other allows) + """; public void Execute(IConsoleShell shell, string argStr, string[] args) { var collection = IoCManager.Instance; @@ -26,10 +34,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var entManager = collection.Resolve(); var cache = collection.Resolve(); - var lookup = entManager.System(); var xform = entManager.System(); - overlay.AddOverlay(new AccessOverlay(entManager, cache, lookup, xform)); + overlay.AddOverlay(new AccessOverlay(entManager, cache, xform)); shell.WriteLine($"Set access reader debug overlay to true"); } } diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index fdd62fb6a2d..0f740c81045 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -126,12 +126,15 @@ void IPostInjectInit.PostInject() public AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false) { - return uid == _player.LocalEntity ? _adminData : null; + if (uid == _player.LocalEntity && (_adminData?.Active ?? includeDeAdmin)) + return _adminData; + + return null; } public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) { - if (_player.LocalUser == session.UserId) + if (_player.LocalUser == session.UserId && (_adminData?.Active ?? includeDeAdmin)) return _adminData; return null; diff --git a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs index 1f32640f7dd..dc263d6055c 100644 --- a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs +++ b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs @@ -3,6 +3,7 @@ using System.Net.Sockets; using Content.Client.Administration.UI.CustomControls; using Content.Shared.Administration; +using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Roles; using Robust.Client.AutoGenerated; @@ -11,6 +12,7 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -32,8 +34,11 @@ public sealed partial class BanPanel : DefaultWindow // This is less efficient than just holding a reference to the root control and enumerating children, but you // have to know how the controls are nested, which makes the code more complicated. private readonly List _roleCheckboxes = new(); + private readonly ISawmill _banpanelSawmill; [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _logManager = default!; private enum TabNumbers { @@ -65,6 +70,7 @@ public BanPanel() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _banpanelSawmill = _logManager.GetSawmill("admin.banpanel"); PlayerList.OnSelectionChanged += OnPlayerSelectionChanged; PlayerNameLine.OnFocusExit += _ => OnPlayerNameChanged(); PlayerCheckbox.OnPressed += _ => @@ -104,6 +110,11 @@ public BanPanel() }; SubmitButton.OnPressed += SubmitButtonOnOnPressed; + IpCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanIpBanDefault); + HwidCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanHwidBanDefault); + LastConnCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanUseLastDetails); + EraseCheckbox.Pressed = _cfg.GetCVar(CCVars.ServerBanErasePlayer); + SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-none"), (int) NoteSeverity.None); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-low"), (int) NoteSeverity.Minor); SeverityOption.AddItem(Loc.GetString("admin-note-editor-severity-medium"), (int) NoteSeverity.Medium); @@ -175,6 +186,39 @@ private void CreateRoleGroup(string roleName, IEnumerable roleList, Colo c.Pressed = args.Pressed; } } + + if (args.Pressed) + { + if (!Enum.TryParse(_cfg.GetCVar(CCVars.DepartmentBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Departmental role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } + else + { + foreach (var childContainer in RolesContainer.Children) + { + if (childContainer is Container) + { + foreach (var child in childContainer.Children) + { + if (child is CheckBox { Pressed: true }) + return; + } + } + } + + if (!Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity newSeverity)) + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + return; + } + SeverityOption.SelectId((int) newSeverity); + } }; outerContainer.AddChild(innerContainer); foreach (var role in roleList) @@ -353,6 +397,35 @@ private void OnTypeChanged() { TypeOption.ModulateSelfOverride = null; Tabs.SetTabVisible((int) TabNumbers.Roles, TypeOption.SelectedId == (int) Types.Role); + NoteSeverity? newSeverity = null; + switch (TypeOption.SelectedId) + { + case (int)Types.Server: + if (Enum.TryParse(_cfg.GetCVar(CCVars.ServerBanDefaultSeverity), true, out NoteSeverity serverSeverity)) + newSeverity = serverSeverity; + else + { + _banpanelSawmill + .Warning("Server ban severity could not be parsed from config!"); + } + + break; + case (int) Types.Role: + + if (Enum.TryParse(_cfg.GetCVar(CCVars.RoleBanDefaultSeverity), true, out NoteSeverity roleSeverity)) + { + newSeverity = roleSeverity; + } + else + { + _banpanelSawmill + .Warning("Role ban severity could not be parsed from config!"); + } + break; + } + + if (newSeverity != null) + SeverityOption.SelectId((int) newSeverity.Value); } private void UpdateSubmitEnabled() diff --git a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs index b105e629cfa..b54af3a5871 100644 --- a/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasAnalyzerWindow.xaml.cs @@ -163,6 +163,26 @@ private void GenerateGasDisplay(GasMixEntry gasMix, Control parent) parent.AddChild(panel); panel.AddChild(dataContainer); + // Volume label + var volBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; + + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-text") + }); + volBox.AddChild(new Control + { + MinSize = new Vector2(10, 0), + HorizontalExpand = true + }); + volBox.AddChild(new Label + { + Text = Loc.GetString("gas-analyzer-window-volume-val-text", ("volume", $"{gasMix.Volume:0.##}")), + Align = Label.AlignMode.Right, + HorizontalExpand = true + }); + dataContainer.AddChild(volBox); + // Pressure label var presBox = new BoxContainer { Orientation = BoxContainer.LayoutOrientation.Horizontal }; diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs new file mode 100644 index 00000000000..072730d65d4 --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -0,0 +1,119 @@ +using Content.Shared.Audio.Jukebox; +using Robust.Client.Audio; +using Robust.Client.Player; +using Robust.Shared.Audio.Components; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Client.Audio.Jukebox; + +public sealed class JukeboxBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + + [ViewVariables] + private JukeboxMenu? _menu; + + public JukeboxBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = new JukeboxMenu(); + _menu.OnClose += Close; + _menu.OpenCentered(); + + _menu.OnPlayPressed += args => + { + if (args) + { + SendMessage(new JukeboxPlayingMessage()); + } + else + { + SendMessage(new JukeboxPauseMessage()); + } + }; + + _menu.OnStopPressed += () => + { + SendMessage(new JukeboxStopMessage()); + }; + + _menu.OnSongSelected += SelectSong; + + _menu.SetTime += SetTime; + PopulateMusic(); + Reload(); + } + + /// + /// Reloads the attached menu if it exists. + /// + public void Reload() + { + if (_menu == null || !EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox)) + return; + + _menu.SetAudioStream(jukebox.AudioStream); + + if (_protoManager.TryIndex(jukebox.SelectedSongId, out var songProto)) + { + var length = EntMan.System().GetAudioLength(songProto.Path.Path.ToString()); + _menu.SetSelectedSong(songProto.Name, (float) length.TotalSeconds); + } + else + { + _menu.SetSelectedSong(string.Empty, 0f); + } + } + + public void PopulateMusic() + { + _menu?.Populate(_protoManager.EnumeratePrototypes()); + } + + public void SelectSong(ProtoId songid) + { + SendMessage(new JukeboxSelectedMessage(songid)); + } + + public void SetTime(float time) + { + var sentTime = time; + + // You may be wondering, what the fuck is this + // Well we want to be able to predict the playback slider change, of which there are many ways to do it + // We can't just use SendPredictedMessage because it will reset every tick and audio updates every frame + // so it will go BRRRRT + // Using ping gets us close enough that it SHOULD, MOST OF THE TIME, fall within the 0.1 second tolerance + // that's still on engine so our playback position never gets corrected. + if (EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox) && + EntMan.TryGetComponent(jukebox.AudioStream, out AudioComponent? audioComp)) + { + audioComp.PlaybackPosition = time; + } + + SendMessage(new JukeboxSetTimeMessage(sentTime)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + if (_menu == null) + return; + + _menu.OnClose -= Close; + _menu.Dispose(); + _menu = null; + } +} + diff --git a/Content.Client/Audio/Jukebox/JukeboxMenu.xaml b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml new file mode 100644 index 00000000000..e8d39a9b119 --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml @@ -0,0 +1,18 @@ + + + + + + + + Text="{Loc 'analysis-console-server-list-button'}"> + + + + + @@ -36,13 +52,13 @@ - + - + diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index 90732f814f8..2acf35da25b 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Shared.Xenoarchaeology.Equipment; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -19,6 +20,8 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow public event Action? OnScanButtonPressed; public event Action? OnPrintButtonPressed; public event Action? OnExtractButtonPressed; + public event Action? OnUpBiasButtonPressed; + public event Action? OnDownBiasButtonPressed; // For rendering the progress bar, updated from BUI state private TimeSpan? _startTime; @@ -36,6 +39,12 @@ public AnalysisConsoleMenu() ScanButton.OnPressed += _ => OnScanButtonPressed?.Invoke(); PrintButton.OnPressed += _ => OnPrintButtonPressed?.Invoke(); ExtractButton.OnPressed += _ => OnExtractButtonPressed?.Invoke(); + UpBiasButton.OnPressed += _ => OnUpBiasButtonPressed?.Invoke(); + DownBiasButton.OnPressed += _ => OnDownBiasButtonPressed?.Invoke(); + + var buttonGroup = new ButtonGroup(false); + UpBiasButton.Group = buttonGroup; + DownBiasButton.Group = buttonGroup; } protected override void FrameUpdate(FrameEventArgs args) @@ -60,7 +69,7 @@ protected override void FrameUpdate(FrameEventArgs args) ProgressBar.Value = Math.Clamp(1.0f - (float) remaining.Divide(total), 0.0f, 1.0f); } - public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) + public void SetButtonsDisabled(AnalysisConsoleUpdateState state) { ScanButton.Disabled = !state.CanScan; PrintButton.Disabled = !state.CanPrint; @@ -78,7 +87,6 @@ public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) ExtractButton.AddStyleClass("ButtonColorGreen"); } } - private void UpdateArtifactIcon(EntityUid? uid) { if (uid == null) @@ -91,7 +99,7 @@ private void UpdateArtifactIcon(EntityUid? uid) ArtifactDisplay.SetEntity(uid); } - public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) + public void UpdateInformationDisplay(AnalysisConsoleUpdateState state) { var message = new FormattedMessage(); @@ -129,7 +137,7 @@ public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) Information.SetMessage(message); } - public void UpdateProgressBar(AnalysisConsoleScanUpdateState state) + public void UpdateProgressBar(AnalysisConsoleUpdateState state) { ProgressBar.Visible = state.Scanning; ProgressLabel.Visible = state.Scanning; diff --git a/Content.IntegrationTests/Pair/TestMapData.cs b/Content.IntegrationTests/Pair/TestMapData.cs index bdf12080388..343641e1613 100644 --- a/Content.IntegrationTests/Pair/TestMapData.cs +++ b/Content.IntegrationTests/Pair/TestMapData.cs @@ -10,9 +10,8 @@ namespace Content.IntegrationTests.Pair; public sealed class TestMapData { public EntityUid MapUid { get; set; } - public EntityUid GridUid { get; set; } - public MapId MapId { get; set; } - public MapGridComponent MapGrid { get; set; } = default!; + public Entity Grid; + public MapId MapId; public EntityCoordinates GridCoords { get; set; } public MapCoordinates MapCoords { get; set; } public TileRef Tile { get; set; } @@ -21,4 +20,4 @@ public sealed class TestMapData public EntityUid CMapUid { get; set; } public EntityUid CGridUid { get; set; } public EntityCoordinates CGridCoords { get; set; } -} \ No newline at end of file +} diff --git a/Content.IntegrationTests/Pair/TestPair.Helpers.cs b/Content.IntegrationTests/Pair/TestPair.Helpers.cs index 554807b2d25..0ea6d3e2dcc 100644 --- a/Content.IntegrationTests/Pair/TestPair.Helpers.cs +++ b/Content.IntegrationTests/Pair/TestPair.Helpers.cs @@ -1,5 +1,6 @@ #nullable enable using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -14,36 +15,37 @@ public sealed partial class TestPair /// /// Creates a map, a grid, and a tile, and gives back references to them. /// - public async Task CreateTestMap() + [MemberNotNull(nameof(TestMap))] + public async Task CreateTestMap(bool initialized = true, string tile = "Plating") { + var mapData = new TestMapData(); + TestMap = mapData; await Server.WaitIdleAsync(); var tileDefinitionManager = Server.ResolveDependency(); - var mapData = new TestMapData(); TestMap = mapData; await Server.WaitPost(() => { - mapData.MapId = Server.MapMan.CreateMap(); - mapData.MapUid = Server.MapMan.GetMapEntityId(mapData.MapId); - var mapGrid = Server.MapMan.CreateGridEntity(mapData.MapId); - mapData.MapGrid = mapGrid; - mapData.GridUid = mapGrid.Owner; // Fixing this requires an engine PR. - mapData.GridCoords = new EntityCoordinates(mapData.GridUid, 0, 0); - var plating = tileDefinitionManager["Plating"]; + mapData.MapUid = Server.System().CreateMap(out mapData.MapId, runMapInit: initialized); + mapData.Grid = Server.MapMan.CreateGridEntity(mapData.MapId); + mapData.GridCoords = new EntityCoordinates(mapData.Grid, 0, 0); + var plating = tileDefinitionManager[tile]; var platingTile = new Tile(plating.TileId); - mapData.MapGrid.SetTile(mapData.GridCoords, platingTile); + mapData.Grid.Comp.SetTile(mapData.GridCoords, platingTile); mapData.MapCoords = new MapCoordinates(0, 0, mapData.MapId); - mapData.Tile = mapData.MapGrid.GetAllTiles().First(); + mapData.Tile = mapData.Grid.Comp.GetAllTiles().First(); }); + TestMap = mapData; if (!Settings.Connected) return mapData; await RunTicksSync(10); mapData.CMapUid = ToClientUid(mapData.MapUid); - mapData.CGridUid = ToClientUid(mapData.GridUid); + mapData.CGridUid = ToClientUid(mapData.Grid); mapData.CGridCoords = new EntityCoordinates(mapData.CGridUid, 0, 0); + TestMap = mapData; return mapData; } diff --git a/Content.IntegrationTests/Pair/TestPair.Recycle.cs b/Content.IntegrationTests/Pair/TestPair.Recycle.cs index 52fdf600bb4..c0f4b3b745f 100644 --- a/Content.IntegrationTests/Pair/TestPair.Recycle.cs +++ b/Content.IntegrationTests/Pair/TestPair.Recycle.cs @@ -131,7 +131,7 @@ public async Task CleanPooledPair(PoolSettings settings, TextWriter testOut) // Move to pre-round lobby. Required to toggle dummy ticker on and off if (gameTicker.RunLevel != GameRunLevel.PreRoundLobby) { - await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server."); + await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting round."); Assert.That(gameTicker.DummyTicker, Is.False); Server.CfgMan.SetCVar(CCVars.GameLobbyEnabled, true); await Server.WaitPost(() => gameTicker.RestartRound()); @@ -146,6 +146,7 @@ public async Task CleanPooledPair(PoolSettings settings, TextWriter testOut) // Restart server. await testOut.WriteLineAsync($"Recycling: {Watch.Elapsed.TotalMilliseconds} ms: Restarting server again"); + await Server.WaitPost(() => Server.EntMan.FlushEntities()); await Server.WaitPost(() => gameTicker.RestartRound()); await RunTicksSync(1); diff --git a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs index 98c7363a6c4..772af337a1a 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs @@ -32,8 +32,8 @@ public async Task AddAndGetSingleLog() var guid = Guid.NewGuid(); - var testMap = await pair.CreateTestMap(); - var coordinates = testMap.GridCoords; + await pair.CreateTestMap(); + var coordinates = pair.TestMap.GridCoords; await server.WaitPost(() => { var entity = sEntities.SpawnEntity(null, coordinates); diff --git a/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs b/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs index c49e20981e3..76911eba5f7 100644 --- a/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs +++ b/Content.IntegrationTests/Tests/Construction/Interaction/CraftingTests.cs @@ -56,7 +56,7 @@ public async Task CraftSpear() // Player's hands should be full of the remaining rods, except those dropped during the failed crafting attempt. // Spear and left over stacks should be on the floor. - await AssertEntityLookup((Rod, 2), (Cable, 8), (ShardGlass, 2), (Spear, 1)); + await AssertEntityLookup((Rod, 2), (Cable, 7), (ShardGlass, 2), (Spear, 1)); } // The following is wrapped in an if DEBUG. This is because of cursed state handling bugs. Tests don't (de)serialize @@ -100,7 +100,7 @@ public async Task CancelCraft() Assert.That(sys.IsEntityInContainer(rods), Is.False); Assert.That(sys.IsEntityInContainer(wires), Is.False); Assert.That(rodStack, Has.Count.EqualTo(8)); - Assert.That(wireStack, Has.Count.EqualTo(8)); + Assert.That(wireStack, Has.Count.EqualTo(7)); await FindEntity(Spear, shouldSucceed: false); }); diff --git a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs index 26ea726211b..b37f7cfa468 100644 --- a/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs +++ b/Content.IntegrationTests/Tests/DeviceNetwork/DeviceNetworkTest.cs @@ -212,7 +212,7 @@ public async Task WiredNetworkDeviceSendAndReceive() DeviceNetworkComponent networkComponent1 = null; DeviceNetworkComponent networkComponent2 = null; WiredNetworkComponent wiredNetworkComponent = null; - var grid = testMap.MapGrid; + var grid = testMap.Grid.Comp; var testValue = "test"; var payload = new NetworkPayload diff --git a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs index d47eb13273f..0ebd17d8879 100644 --- a/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs +++ b/Content.IntegrationTests/Tests/DoAfter/DoAfterCancellationTests.cs @@ -3,8 +3,6 @@ using Content.IntegrationTests.Tests.Interaction; using Content.IntegrationTests.Tests.Weldable; using Content.Shared.Tools.Components; -using Content.Server.Tools.Components; -using Content.Shared.DoAfter; namespace Content.IntegrationTests.Tests.DoAfter; diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 152eb725221..d3b1fb47221 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -354,41 +354,18 @@ public async Task AllComponentsOneToOneDeleteTest() await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; - - var mapManager = server.ResolveDependency(); var entityManager = server.ResolveDependency(); var componentFactory = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); - var mapSystem = entityManager.System(); var logmill = server.ResolveDependency().GetSawmill("EntityTest"); - Entity grid = default!; - - await server.WaitPost(() => - { - // Create a one tile grid to stave off the grid 0 monsters - var mapId = mapManager.CreateMap(); - - mapManager.AddUninitializedMap(mapId); - - grid = mapManager.CreateGridEntity(mapId); - - var tileDefinition = tileDefinitionManager["Plating"]; - var tile = new Tile(tileDefinition.TileId); - var coordinates = new EntityCoordinates(grid.Owner, Vector2.Zero); - - mapSystem.SetTile(grid.Owner, grid.Comp!, coordinates, tile); - - mapManager.DoMapInitialize(mapId); - }); - + await pair.CreateTestMap(); await server.WaitRunTicks(5); + var testLocation = pair.TestMap.GridCoords; await server.WaitAssertion(() => { Assert.Multiple(() => { - var testLocation = new EntityCoordinates(grid.Owner, Vector2.Zero); foreach (var type in componentFactory.AllRegisteredTypes) { diff --git a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs index 611af673809..a9069892dff 100644 --- a/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs +++ b/Content.IntegrationTests/Tests/Fluids/PuddleTest.cs @@ -46,17 +46,14 @@ public async Task SpaceNoPuddleTest() var server = pair.Server; var testMap = await pair.CreateTestMap(); + var grid = testMap.Grid.Comp; var entitySystemManager = server.ResolveDependency(); var spillSystem = entitySystemManager.GetEntitySystem(); - MapGridComponent grid = null; - // Remove all tiles await server.WaitPost(() => { - grid = testMap.MapGrid; - foreach (var tile in grid.GetAllTiles()) { grid.SetTile(tile.GridIndices, Tile.Empty); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 88448e7b800..480fd9cde6f 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -989,7 +989,7 @@ protected void ToggleNeedPower(NetEntity? target = null) /// protected async Task AddGravity(EntityUid? uid = null) { - var target = uid ?? MapData.GridUid; + var target = uid ?? MapData.Grid; await Server.WaitPost(() => { var gravity = SEntMan.EnsureComponent(target); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index bed27ba6efe..a4ed31e9983 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -184,7 +184,7 @@ public virtual async Task Setup() await Pair.CreateTestMap(); PlayerCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(0.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); TargetCoords = SEntMan.GetNetCoordinates(MapData.GridCoords.Offset(new Vector2(1.5f, 0.5f)).WithEntityId(MapData.MapUid, Transform, SEntMan)); - await SetTile(Plating, grid: MapData.MapGrid); + await SetTile(Plating, grid: MapData.Grid.Comp); // Get player data var sPlayerMan = Server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs index 553b031c2b7..dc5aec92cfc 100644 --- a/Content.IntegrationTests/Tests/Interaction/MovementTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/MovementTest.cs @@ -31,7 +31,7 @@ public override async Task Setup() for (var i = -Tiles; i <= Tiles; i++) { - await SetTile(Plating, SEntMan.GetNetCoordinates(pCoords.Offset(new Vector2(i, 0))), MapData.MapGrid); + await SetTile(Plating, SEntMan.GetNetCoordinates(pCoords.Offset(new Vector2(i, 0))), MapData.Grid.Comp); } AssertGridCount(1); diff --git a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs index a2faef0dd4d..51be2fb4311 100644 --- a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs +++ b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs @@ -183,7 +183,7 @@ public async Task NoMaterialArbitrage() var spawnedPrice = await GetSpawnedPrice(spawnedEnts); var price = await GetPrice(id); if (spawnedPrice > 0 && price > 0) - Assert.That(spawnedPrice, Is.LessThanOrEqualTo(price), $"{id} increases in price after being destroyed"); + Assert.That(spawnedPrice, Is.LessThanOrEqualTo(price), $"{id} increases in price after being destroyed\nEntities spawned on destruction: {string.Join(',', spawnedEnts)}"); // Check lathe production if (latheRecipes.TryGetValue(id, out var recipe)) @@ -359,7 +359,7 @@ await server.WaitPost(() => { var ent = entManager.SpawnEntity(id, testMap.GridCoords); stackSys.SetCount(ent, 1); - priceCache[id] = price = pricing.GetPrice(ent); + priceCache[id] = price = pricing.GetPrice(ent, false); entManager.DeleteEntity(ent); }); } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 07a6ddd89f1..bae52581480 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -150,7 +150,10 @@ public async Task NoSavedPostMapInitTest() [Test, TestCaseSource(nameof(GameMaps))] public async Task GameMapsLoadableTest(string mapProto) { - await using var pair = await PoolManager.GetServerClient(); + await using var pair = await PoolManager.GetServerClient(new PoolSettings + { + Dirty = true // Stations spawn a bunch of nullspace entities and maps like centcomm. + }); var server = pair.Server; var mapManager = server.ResolveDependency(); diff --git a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs index e4a9c1a840d..9e26fa5eaa2 100644 --- a/Content.IntegrationTests/Tests/PrototypeSaveTest.cs +++ b/Content.IntegrationTests/Tests/PrototypeSaveTest.cs @@ -38,31 +38,15 @@ public async Task UninitializedSaveTest() var mapManager = server.ResolveDependency(); var entityMan = server.ResolveDependency(); var prototypeMan = server.ResolveDependency(); - var tileDefinitionManager = server.ResolveDependency(); var seriMan = server.ResolveDependency(); var compFact = server.ResolveDependency(); var prototypes = new List(); - MapGridComponent grid = default!; EntityUid uid; - MapId mapId = default; - //Build up test environment - await server.WaitPost(() => - { - // Create a one tile grid to stave off the grid 0 monsters - mapId = mapManager.CreateMap(); - - mapManager.AddUninitializedMap(mapId); - - grid = mapManager.CreateGrid(mapId); - - var tileDefinition = tileDefinitionManager["FloorSteel"]; // Wires n such disable ambiance while under the floor - var tile = new Tile(tileDefinition.TileId); - var coordinates = grid.Owner.ToCoordinates(); - - grid.SetTile(coordinates, tile); - }); + await pair.CreateTestMap(false, "FloorSteel"); // Wires n such disable ambiance while under the floor + var mapId = pair.TestMap.MapId; + var grid = pair.TestMap.Grid; await server.WaitRunTicks(5); diff --git a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs index b6fc273570a..a1aa462a697 100644 --- a/Content.IntegrationTests/Tests/Shuttle/DockTest.cs +++ b/Content.IntegrationTests/Tests/Shuttle/DockTest.cs @@ -39,7 +39,7 @@ public async Task TestDockingConfig(Vector2 dock1Pos, Vector2 dock2Pos, Angle do await server.WaitAssertion(() => { - entManager.DeleteEntity(map.GridUid); + entManager.DeleteEntity(map.Grid); var grid1 = mapManager.CreateGridEntity(mapId); var grid2 = mapManager.CreateGridEntity(mapId); var grid1Ent = grid1.Owner; @@ -104,7 +104,7 @@ public async Task TestPlanetDock() // Spawn shuttle and affirm no valid docks. await server.WaitAssertion(() => { - entManager.DeleteEntity(map.GridUid); + entManager.DeleteEntity(map.Grid); Assert.That(entManager.System().TryLoad(otherMap.MapId, "/Maps/Shuttles/emergency.yml", out var rootUids)); shuttle = rootUids[0]; diff --git a/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs new file mode 100644 index 00000000000..b1a398c8050 --- /dev/null +++ b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs @@ -0,0 +1,114 @@ +using System.Linq; +using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Systems; +using Content.Server.Station.Components; +using Content.Shared.CCVar; +using Content.Shared.Shuttles.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Map.Components; + +namespace Content.IntegrationTests.Tests.Station; + +[TestFixture] +[TestOf(typeof(EmergencyShuttleSystem))] +public sealed class EvacShuttleTest +{ + /// + /// Ensure that the emergency shuttle can be called, and that it will travel to centcomm + /// + [Test] + public async Task EmergencyEvacTest() + { + await using var pair = await PoolManager.GetServerClient(new PoolSettings { DummyTicker = true, Dirty = true }); + var server = pair.Server; + var entMan = server.EntMan; + var ticker = server.System(); + + // Dummy ticker tests should not have centcomm + Assert.That(entMan.Count(), Is.Zero); + + var shuttleEnabled = pair.Server.CfgMan.GetCVar(CCVars.EmergencyShuttleEnabled); + pair.Server.CfgMan.SetCVar(CCVars.GameMap, "Edge"); + pair.Server.CfgMan.SetCVar(CCVars.GameDummyTicker, false); + pair.Server.CfgMan.SetCVar(CCVars.EmergencyShuttleEnabled, true); + + await server.WaitPost(() => ticker.RestartRound()); + await pair.RunTicksSync(25); + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.InRound)); + + // Find the station, centcomm, and shuttle, and ftl map. + + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(1)); + Assert.That(entMan.Count(), Is.EqualTo(0)); + + var station = (Entity) entMan.AllComponentsList().Single(); + var data = entMan.GetComponent(station); + var shuttleData = entMan.GetComponent(station); + + var saltern = data.Grids.Single(); + Assert.That(entMan.HasComponent(saltern)); + + var shuttle = shuttleData.EmergencyShuttle!.Value; + Assert.That(entMan.HasComponent(shuttle)); + Assert.That(entMan.HasComponent(shuttle)); + + var centcomm = station.Comp.Entity!.Value; + Assert.That(entMan.HasComponent(centcomm)); + + var centcommMap = station.Comp.MapEntity!.Value; + Assert.That(entMan.HasComponent(centcommMap)); + Assert.That(server.Transform(centcomm).MapUid, Is.EqualTo(centcommMap)); + + var salternXform = server.Transform(saltern); + Assert.That(salternXform.MapUid, Is.Not.Null); + Assert.That(salternXform.MapUid, Is.Not.EqualTo(centcommMap)); + + var shuttleXform = server.Transform(shuttle); + Assert.That(shuttleXform.MapUid, Is.Not.Null); + Assert.That(shuttleXform.MapUid, Is.EqualTo(centcommMap)); + + // Set up shuttle timing + var evacSys = server.System(); + evacSys.TransitTime = ShuttleSystem.DefaultTravelTime; // Absolute minimum transit time, so the test has to run for at least this long + // TODO SHUTTLE fix spaghetti + + var dockTime = server.CfgMan.GetCVar(CCVars.EmergencyShuttleDockTime); + server.CfgMan.SetCVar(CCVars.EmergencyShuttleDockTime, 2); + async Task RunSeconds(float seconds) + { + await pair.RunTicksSync((int) Math.Ceiling(seconds / server.Timing.TickPeriod.TotalSeconds)); + } + + // Call evac shuttle. + await pair.WaitCommand("callshuttle 0:02"); + await RunSeconds(3); + + // Shuttle should have arrived on the station + Assert.That(shuttleXform.MapUid, Is.EqualTo(salternXform.MapUid)); + + await RunSeconds(2); + + // Shuttle should be FTLing back to centcomm + Assert.That(entMan.Count(), Is.EqualTo(1)); + var ftl = (Entity) entMan.AllComponentsList().Single(); + Assert.That(entMan.HasComponent(ftl)); + Assert.That(ftl.Owner, Is.Not.EqualTo(centcommMap)); + Assert.That(ftl.Owner, Is.Not.EqualTo(salternXform.MapUid)); + Assert.That(shuttleXform.MapUid, Is.EqualTo(ftl.Owner)); + + // Shuttle should have arrived at centcomm + await RunSeconds(ShuttleSystem.DefaultTravelTime); + Assert.That(shuttleXform.MapUid, Is.EqualTo(centcommMap)); + + // Round should be ending now + Assert.That(ticker.RunLevel, Is.EqualTo(GameRunLevel.PostRound)); + + server.CfgMan.SetCVar(CCVars.EmergencyShuttleDockTime, dockTime); + pair.Server.CfgMan.SetCVar(CCVars.EmergencyShuttleEnabled, shuttleEnabled); + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs index 0a2af88887a..083e817d697 100644 --- a/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs +++ b/Content.IntegrationTests/Tests/Tiles/TileConstructionTests.cs @@ -37,7 +37,7 @@ public async Task CutThenPlaceLatticeNewGrid() // Remove grid await SetTile(null); await SetTile(null, PlayerCoords); - Assert.That(MapData.MapGrid.Deleted); + Assert.That(MapData.Grid.Comp.Deleted); AssertGridCount(0); // Place Lattice @@ -70,7 +70,7 @@ public async Task FloorConstructDeconstruct() // Remove grid await SetTile(null); await SetTile(null, PlayerCoords); - Assert.That(MapData.MapGrid.Deleted); + Assert.That(MapData.Grid.Comp.Deleted); AssertGridCount(0); // Space -> Lattice diff --git a/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.Designer.cs b/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.Designer.cs new file mode 100644 index 00000000000..bb165c37e8c --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.Designer.cs @@ -0,0 +1,1766 @@ +// +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using NpgsqlTypes; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20240409013837_FixRoundStartDateNullability")] + partial class FixRoundStartDateNullability + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("boolean") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("text") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("text") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("integer") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.cs b/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.cs new file mode 100644 index 00000000000..84b296d4fea --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20240409013837_FixRoundStartDateNullability.cs @@ -0,0 +1,40 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class FixRoundStartDateNullability : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "start_date", + table: "round", + type: "timestamp with time zone", + nullable: true, + oldClrType: typeof(DateTime), + oldType: "timestamp with time zone", + oldDefaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); + + migrationBuilder.Sql("UPDATE round SET start_date = NULL WHERE start_date = '-Infinity';"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "start_date", + table: "round", + type: "timestamp with time zone", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + oldClrType: typeof(DateTime), + oldType: "timestamp with time zone", + oldNullable: true); + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs index 1d3c525dac8..8376407dcf8 100644 --- a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs @@ -845,10 +845,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("integer") .HasColumnName("server_id"); - b.Property("StartDate") - .ValueGeneratedOnAdd() + b.Property("StartDate") .HasColumnType("timestamp with time zone") - .HasDefaultValue(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)) .HasColumnName("start_date"); b.HasKey("Id") diff --git a/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.Designer.cs new file mode 100644 index 00000000000..e3ca0e78bd8 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.Designer.cs @@ -0,0 +1,1697 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20240409013832_FixRoundStartDateNullability")] + partial class FixRoundStartDateNullability + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.cs b/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.cs new file mode 100644 index 00000000000..dbfd7776ba5 --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240409013832_FixRoundStartDateNullability.cs @@ -0,0 +1,38 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class FixRoundStartDateNullability : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "start_date", + table: "round", + type: "TEXT", + nullable: true, + oldClrType: typeof(DateTime), + oldType: "TEXT", + oldDefaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "start_date", + table: "round", + type: "TEXT", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + oldClrType: typeof(DateTime), + oldType: "TEXT", + oldNullable: true); + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.Designer.cs new file mode 100644 index 00000000000..2ec05cdd45a --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.Designer.cs @@ -0,0 +1,1697 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20240409014937_FixRoundStartDateNullability2")] + partial class FixRoundStartDateNullability2 + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenHWId") + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("Backpack") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("backpack"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("Clothing") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("clothing"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("HWId") + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.cs b/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.cs new file mode 100644 index 00000000000..01b90f8333d --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20240409014937_FixRoundStartDateNullability2.cs @@ -0,0 +1,25 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class FixRoundStartDateNullability2 : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + // This needs to be its own separate migration, + // because EF Core re-arranges the order of the commands if it's a single migration... + // (only relevant for SQLite since it needs cursed shit to do ALTER COLUMN) + migrationBuilder.Sql("UPDATE round SET start_date = NULL WHERE start_date = '0001-01-01 00:00:00';"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs index fb4fc71f177..80c374c785d 100644 --- a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs @@ -796,10 +796,8 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("INTEGER") .HasColumnName("server_id"); - b.Property("StartDate") - .ValueGeneratedOnAdd() + b.Property("StartDate") .HasColumnType("TEXT") - .HasDefaultValue(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)) .HasColumnName("start_date"); b.HasKey("Id") diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index b6c238c9e51..2283b5b5359 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -118,10 +118,6 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) modelBuilder.Entity() .HasIndex(round => round.StartDate); - modelBuilder.Entity() - .Property(round => round.StartDate) - .HasDefaultValue(default(DateTime)); - modelBuilder.Entity() .HasKey(logPlayer => new {logPlayer.RoundId, logPlayer.LogId, logPlayer.PlayerUserId}); @@ -494,7 +490,7 @@ public class Round [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } - public DateTime StartDate { get; set; } + public DateTime? StartDate { get; set; } public List Players { get; set; } = default!; @@ -879,8 +875,35 @@ public sealed class UploadedResourceLog public byte[] Data { get; set; } = default!; } + // Note: this interface isn't used by the game, but it *is* used by SS14.Admin. + // Don't remove! Or face the consequences! + public interface IAdminRemarksCommon + { + public int Id { get; } + + public int? RoundId { get; } + public Round? Round { get; } + + public Guid? PlayerUserId { get; } + public Player? Player { get; } + public TimeSpan PlaytimeAtNote { get; } + + public string Message { get; } + + public Player? CreatedBy { get; } + + public DateTime CreatedAt { get; } + + public Player? LastEditedBy { get; } + + public DateTime? LastEditedAt { get; } + public DateTime? ExpirationTime { get; } + + public bool Deleted { get; } + } + [Index(nameof(PlayerUserId))] - public class AdminNote + public class AdminNote : IAdminRemarksCommon { [Required, Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } @@ -914,7 +937,7 @@ public class AdminNote } [Index(nameof(PlayerUserId))] - public class AdminWatchlist + public class AdminWatchlist : IAdminRemarksCommon { [Required, Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } @@ -945,7 +968,7 @@ public class AdminWatchlist } [Index(nameof(PlayerUserId))] - public class AdminMessage + public class AdminMessage : IAdminRemarksCommon { [Required, Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } diff --git a/Content.Server/Administration/ServerApi.Utility.cs b/Content.Server/Administration/ServerApi.Utility.cs new file mode 100644 index 00000000000..951e0039d69 --- /dev/null +++ b/Content.Server/Administration/ServerApi.Utility.cs @@ -0,0 +1,147 @@ +using System.Net; +using System.Net.Http; +using System.Threading.Tasks; +using Robust.Server.ServerStatus; + +namespace Content.Server.Administration; + +public sealed partial class ServerApi +{ + private void RegisterHandler(HttpMethod method, string exactPath, Func handler) + { + _statusHost.AddHandler(async context => + { + if (context.RequestMethod != method || context.Url.AbsolutePath != exactPath) + return false; + + if (!await CheckAccess(context)) + return true; + + await handler(context); + return true; + }); + } + + private void RegisterActorHandler(HttpMethod method, string exactPath, Func handler) + { + RegisterHandler(method, exactPath, async context => + { + if (await CheckActor(context) is not { } actor) + return; + + await handler(context, actor); + }); + } + + /// + /// Async helper function which runs a task on the main thread and returns the result. + /// + private async Task RunOnMainThread(Func func) + { + var taskCompletionSource = new TaskCompletionSource(); + _taskManager.RunOnMainThread(() => + { + try + { + taskCompletionSource.TrySetResult(func()); + } + catch (Exception e) + { + taskCompletionSource.TrySetException(e); + } + }); + + var result = await taskCompletionSource.Task; + return result; + } + + /// + /// Runs an action on the main thread. This does not return any value and is meant to be used for void functions. Use for functions that return a value. + /// + private async Task RunOnMainThread(Action action) + { + var taskCompletionSource = new TaskCompletionSource(); + _taskManager.RunOnMainThread(() => + { + try + { + action(); + taskCompletionSource.TrySetResult(); + } + catch (Exception e) + { + taskCompletionSource.TrySetException(e); + } + }); + + await taskCompletionSource.Task; + } + + private async Task RunOnMainThread(Func action) + { + var taskCompletionSource = new TaskCompletionSource(); + // ReSharper disable once AsyncVoidLambda + _taskManager.RunOnMainThread(async () => + { + try + { + await action(); + taskCompletionSource.TrySetResult(); + } + catch (Exception e) + { + taskCompletionSource.TrySetException(e); + } + }); + + await taskCompletionSource.Task; + } + + /// + /// Helper function to read JSON encoded data from the request body. + /// + private static async Task ReadJson(IStatusHandlerContext context) where T : notnull + { + try + { + var json = await context.RequestBodyJsonAsync(); + if (json == null) + await RespondBadRequest(context, "Request body is null"); + + return json; + } + catch (Exception e) + { + await RespondBadRequest(context, "Unable to parse request body", ExceptionData.FromException(e)); + return default; + } + } + + private static async Task RespondError( + IStatusHandlerContext context, + ErrorCode errorCode, + HttpStatusCode statusCode, + string message, + ExceptionData? exception = null) + { + await context.RespondJsonAsync(new BaseResponse(message, errorCode, exception), statusCode) + .ConfigureAwait(false); + } + + private static async Task RespondBadRequest( + IStatusHandlerContext context, + string message, + ExceptionData? exception = null) + { + await RespondError(context, ErrorCode.BadRequest, HttpStatusCode.BadRequest, message, exception) + .ConfigureAwait(false); + } + + private static async Task RespondOk(IStatusHandlerContext context) + { + await context.RespondJsonAsync(new BaseResponse("OK")) + .ConfigureAwait(false); + } + + private static string FormatLogActor(Actor actor) => $"{actor.Name} ({actor.Guid})"; +} diff --git a/Content.Server/Administration/ServerApi.cs b/Content.Server/Administration/ServerApi.cs new file mode 100644 index 00000000000..6f10ef9b479 --- /dev/null +++ b/Content.Server/Administration/ServerApi.cs @@ -0,0 +1,711 @@ +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Security.Cryptography; +using System.Text; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Threading.Tasks; +using Content.Server.Administration.Systems; +using Content.Server.GameTicking; +using Content.Server.GameTicking.Presets; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Maps; +using Content.Server.RoundEnd; +using Content.Shared.Administration.Managers; +using Content.Shared.CCVar; +using Content.Shared.Prototypes; +using Robust.Server.ServerStatus; +using Robust.Shared.Asynchronous; +using Robust.Shared.Configuration; +using Robust.Shared.Network; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server.Administration; + +/// +/// Exposes various admin-related APIs via the game server's . +/// +public sealed partial class ServerApi : IPostInjectInit +{ + private const string SS14TokenScheme = "SS14Token"; + + private static readonly HashSet PanicBunkerCVars = + [ + CCVars.PanicBunkerEnabled.Name, + CCVars.PanicBunkerDisableWithAdmins.Name, + CCVars.PanicBunkerEnableWithoutAdmins.Name, + CCVars.PanicBunkerCountDeadminnedAdmins.Name, + CCVars.PanicBunkerShowReason.Name, + CCVars.PanicBunkerMinAccountAge.Name, + CCVars.PanicBunkerMinOverallHours.Name, + CCVars.PanicBunkerCustomReason.Name, + ]; + + [Dependency] private readonly IStatusHost _statusHost = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + [Dependency] private readonly ISharedAdminManager _adminManager = default!; + [Dependency] private readonly IGameMapManager _gameMapManager = default!; + [Dependency] private readonly IServerNetManager _netManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly ITaskManager _taskManager = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly ILogManager _logManager = default!; + [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + + private string _token = string.Empty; + private ISawmill _sawmill = default!; + + void IPostInjectInit.PostInject() + { + _sawmill = _logManager.GetSawmill("serverApi"); + + // Get + RegisterActorHandler(HttpMethod.Get, "/admin/info", InfoHandler); + RegisterHandler(HttpMethod.Get, "/admin/game_rules", GetGameRules); + RegisterHandler(HttpMethod.Get, "/admin/presets", GetPresets); + + // Post + RegisterActorHandler(HttpMethod.Post, "/admin/actions/round/start", ActionRoundStart); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/round/end", ActionRoundEnd); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/round/restartnow", ActionRoundRestartNow); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/kick", ActionKick); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/add_game_rule", ActionAddGameRule); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/end_game_rule", ActionEndGameRule); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/force_preset", ActionForcePreset); + RegisterActorHandler(HttpMethod.Post, "/admin/actions/set_motd", ActionForceMotd); + RegisterActorHandler(HttpMethod.Patch, "/admin/actions/panic_bunker", ActionPanicPunker); + } + + public void Initialize() + { + _config.OnValueChanged(CCVars.AdminApiToken, UpdateToken, true); + } + + public void Shutdown() + { + _config.UnsubValueChanged(CCVars.AdminApiToken, UpdateToken); + } + + private void UpdateToken(string token) + { + _token = token; + } + + + #region Actions + + /// + /// Changes the panic bunker settings. + /// + private async Task ActionPanicPunker(IStatusHandlerContext context, Actor actor) + { + var request = await ReadJson(context); + if (request == null) + return; + + var toSet = new Dictionary(); + foreach (var (cVar, value) in request) + { + if (!PanicBunkerCVars.Contains(cVar)) + { + await RespondBadRequest(context, $"Invalid panic bunker CVar: '{cVar}'"); + return; + } + + if (value == null) + { + await RespondBadRequest(context, $"Value is null: '{cVar}'"); + return; + } + + if (value is not JsonValue jsonValue) + { + await RespondBadRequest(context, $"Value is not valid: '{cVar}'"); + return; + } + + object castValue; + var cVarType = _config.GetCVarType(cVar); + if (cVarType == typeof(bool)) + { + if (!jsonValue.TryGetValue(out bool b)) + { + await RespondBadRequest(context, $"CVar '{cVar}' must be of type bool."); + return; + } + + castValue = b; + } + else if (cVarType == typeof(int)) + { + if (!jsonValue.TryGetValue(out int i)) + { + await RespondBadRequest(context, $"CVar '{cVar}' must be of type int."); + return; + } + + castValue = i; + } + else if (cVarType == typeof(string)) + { + if (!jsonValue.TryGetValue(out string? s)) + { + await RespondBadRequest(context, $"CVar '{cVar}' must be of type string."); + return; + } + + castValue = s; + } + else + { + throw new NotSupportedException("Unsupported CVar type"); + } + + toSet[cVar] = castValue; + } + + await RunOnMainThread(() => + { + foreach (var (cVar, value) in toSet) + { + _config.SetCVar(cVar, value); + _sawmill.Info( + $"Panic bunker property '{cVar}' changed to '{value}' by {FormatLogActor(actor)}."); + } + }); + + await RespondOk(context); + } + + /// + /// Sets the current MOTD. + /// + private async Task ActionForceMotd(IStatusHandlerContext context, Actor actor) + { + var motd = await ReadJson(context); + if (motd == null) + return; + + _sawmill.Info($"MOTD changed to \"{motd.Motd}\" by {FormatLogActor(actor)}."); + + await RunOnMainThread(() => _config.SetCVar(CCVars.MOTD, motd.Motd)); + // A hook in the MOTD system sends the changes to each client + await RespondOk(context); + } + + /// + /// Forces the next preset- + /// + private async Task ActionForcePreset(IStatusHandlerContext context, Actor actor) + { + var body = await ReadJson(context); + if (body == null) + return; + + await RunOnMainThread(async () => + { + var ticker = _entitySystemManager.GetEntitySystem(); + if (ticker.RunLevel != GameRunLevel.PreRoundLobby) + { + await RespondError( + context, + ErrorCode.InvalidRoundState, + HttpStatusCode.Conflict, + "Game must be in pre-round lobby"); + return; + } + + var preset = ticker.FindGamePreset(body.PresetId); + if (preset == null) + { + await RespondError( + context, + ErrorCode.GameRuleNotFound, + HttpStatusCode.UnprocessableContent, + $"Game rule '{body.PresetId}' doesn't exist"); + return; + } + + ticker.SetGamePreset(preset); + _sawmill.Info($"Forced the game to start with preset {body.PresetId} by {FormatLogActor(actor)}."); + + await RespondOk(context); + }); + } + + /// + /// Ends an active game rule. + /// + private async Task ActionEndGameRule(IStatusHandlerContext context, Actor actor) + { + var body = await ReadJson(context); + if (body == null) + return; + + await RunOnMainThread(async () => + { + var ticker = _entitySystemManager.GetEntitySystem(); + var gameRule = ticker + .GetActiveGameRules() + .FirstOrNull(rule => + _entityManager.MetaQuery.GetComponent(rule).EntityPrototype?.ID == body.GameRuleId); + + if (gameRule == null) + { + await RespondError(context, + ErrorCode.GameRuleNotFound, + HttpStatusCode.UnprocessableContent, + $"Game rule '{body.GameRuleId}' not found or not active"); + + return; + } + + _sawmill.Info($"Ended game rule {body.GameRuleId} by {FormatLogActor(actor)}."); + ticker.EndGameRule(gameRule.Value); + + await RespondOk(context); + }); + } + + /// + /// Adds a game rule to the current round. + /// + private async Task ActionAddGameRule(IStatusHandlerContext context, Actor actor) + { + var body = await ReadJson(context); + if (body == null) + return; + + await RunOnMainThread(async () => + { + var ticker = _entitySystemManager.GetEntitySystem(); + if (!_prototypeManager.HasIndex(body.GameRuleId)) + { + await RespondError(context, + ErrorCode.GameRuleNotFound, + HttpStatusCode.UnprocessableContent, + $"Game rule '{body.GameRuleId}' not found or not active"); + return; + } + + var ruleEntity = ticker.AddGameRule(body.GameRuleId); + _sawmill.Info($"Added game rule {body.GameRuleId} by {FormatLogActor(actor)}."); + if (ticker.RunLevel == GameRunLevel.InRound) + { + ticker.StartGameRule(ruleEntity); + _sawmill.Info($"Started game rule {body.GameRuleId} by {FormatLogActor(actor)}."); + } + + await RespondOk(context); + }); + } + + /// + /// Kicks a player. + /// + private async Task ActionKick(IStatusHandlerContext context, Actor actor) + { + var body = await ReadJson(context); + if (body == null) + return; + + await RunOnMainThread(async () => + { + if (!_playerManager.TryGetSessionById(new NetUserId(body.Guid), out var player)) + { + await RespondError( + context, + ErrorCode.PlayerNotFound, + HttpStatusCode.UnprocessableContent, + "Player not found"); + return; + } + + var reason = body.Reason ?? "No reason supplied"; + reason += " (kicked by admin)"; + + _netManager.DisconnectChannel(player.Channel, reason); + await RespondOk(context); + + _sawmill.Info($"Kicked player {player.Name} ({player.UserId}) for {reason} by {FormatLogActor(actor)}"); + }); + } + + private async Task ActionRoundStart(IStatusHandlerContext context, Actor actor) + { + await RunOnMainThread(async () => + { + var ticker = _entitySystemManager.GetEntitySystem(); + + if (ticker.RunLevel != GameRunLevel.PreRoundLobby) + { + await RespondError( + context, + ErrorCode.InvalidRoundState, + HttpStatusCode.Conflict, + "Round already started"); + return; + } + + ticker.StartRound(); + _sawmill.Info($"Forced round start by {FormatLogActor(actor)}"); + await RespondOk(context); + }); + } + + private async Task ActionRoundEnd(IStatusHandlerContext context, Actor actor) + { + await RunOnMainThread(async () => + { + var roundEndSystem = _entitySystemManager.GetEntitySystem(); + var ticker = _entitySystemManager.GetEntitySystem(); + + if (ticker.RunLevel != GameRunLevel.InRound) + { + await RespondError( + context, + ErrorCode.InvalidRoundState, + HttpStatusCode.Conflict, + "Round is not active"); + return; + } + + roundEndSystem.EndRound(); + _sawmill.Info($"Forced round end by {FormatLogActor(actor)}"); + await RespondOk(context); + }); + } + + private async Task ActionRoundRestartNow(IStatusHandlerContext context, Actor actor) + { + await RunOnMainThread(async () => + { + var ticker = _entitySystemManager.GetEntitySystem(); + + ticker.RestartRound(); + _sawmill.Info($"Forced instant round restart by {FormatLogActor(actor)}"); + await RespondOk(context); + }); + } + + #endregion + + #region Fetching + + /// + /// Returns an array containing all available presets. + /// + private async Task GetPresets(IStatusHandlerContext context) + { + var presets = await RunOnMainThread(() => + { + var presets = new List(); + + foreach (var preset in _prototypeManager.EnumeratePrototypes()) + { + presets.Add(new PresetResponse.Preset + { + Id = preset.ID, + ModeTitle = _loc.GetString(preset.ModeTitle), + Description = _loc.GetString(preset.Description) + }); + } + + return presets; + }); + + await context.RespondJsonAsync(new PresetResponse + { + Presets = presets + }); + } + + /// + /// Returns an array containing all game rules. + /// + private async Task GetGameRules(IStatusHandlerContext context) + { + var gameRules = new List(); + foreach (var gameRule in _prototypeManager.EnumeratePrototypes()) + { + if (gameRule.Abstract) + continue; + + if (gameRule.HasComponent(_componentFactory)) + gameRules.Add(gameRule.ID); + } + + await context.RespondJsonAsync(new GameruleResponse + { + GameRules = gameRules + }); + } + + + /// + /// Handles fetching information. + /// + private async Task InfoHandler(IStatusHandlerContext context, Actor actor) + { + /* + Information to display + Round number + Connected players + Active admins + Active game rules + Active game preset + Active map + MOTD + Panic bunker status + */ + + var info = await RunOnMainThread(() => + { + var ticker = _entitySystemManager.GetEntitySystem(); + var adminSystem = _entitySystemManager.GetEntitySystem(); + + var players = new List(); + + foreach (var player in _playerManager.Sessions) + { + var adminData = _adminManager.GetAdminData(player, true); + + players.Add(new InfoResponse.Player + { + UserId = player.UserId.UserId, + Name = player.Name, + IsAdmin = adminData != null, + IsDeadminned = !adminData?.Active ?? false + }); + } + + InfoResponse.MapInfo? mapInfo = null; + if (_gameMapManager.GetSelectedMap() is { } mapPrototype) + { + mapInfo = new InfoResponse.MapInfo + { + Id = mapPrototype.ID, + Name = mapPrototype.MapName + }; + } + + var gameRules = new List(); + foreach (var addedGameRule in ticker.GetActiveGameRules()) + { + var meta = _entityManager.MetaQuery.GetComponent(addedGameRule); + gameRules.Add(meta.EntityPrototype?.ID ?? meta.EntityPrototype?.Name ?? "Unknown"); + } + + var panicBunkerCVars = PanicBunkerCVars.ToDictionary(c => c, c => _config.GetCVar(c)); + return new InfoResponse + { + Players = players, + RoundId = ticker.RoundId, + Map = mapInfo, + PanicBunker = panicBunkerCVars, + GamePreset = ticker.CurrentPreset?.ID, + GameRules = gameRules, + MOTD = _config.GetCVar(CCVars.MOTD) + }; + }); + + await context.RespondJsonAsync(info); + } + + #endregion + + private async Task CheckAccess(IStatusHandlerContext context) + { + var auth = context.RequestHeaders.TryGetValue("Authorization", out var authToken); + if (!auth) + { + await RespondError( + context, + ErrorCode.AuthenticationNeeded, + HttpStatusCode.Unauthorized, + "Authorization is required"); + return false; + } + + var authHeaderValue = authToken.ToString(); + var spaceIndex = authHeaderValue.IndexOf(' '); + if (spaceIndex == -1) + { + await RespondBadRequest(context, "Invalid Authorization header value"); + return false; + } + + var authScheme = authHeaderValue[..spaceIndex]; + var authValue = authHeaderValue[spaceIndex..].Trim(); + + if (authScheme != SS14TokenScheme) + { + await RespondBadRequest(context, "Invalid Authorization scheme"); + return false; + } + + if (_token == "") + { + _sawmill.Debug("No authorization token set for admin API"); + } + else if (CryptographicOperations.FixedTimeEquals( + Encoding.UTF8.GetBytes(authValue), + Encoding.UTF8.GetBytes(_token))) + { + return true; + } + + await RespondError( + context, + ErrorCode.AuthenticationInvalid, + HttpStatusCode.Unauthorized, + "Authorization is invalid"); + + // Invalid auth header, no access + _sawmill.Info($"Unauthorized access attempt to admin API from {context.RemoteEndPoint}"); + return false; + } + + private async Task CheckActor(IStatusHandlerContext context) + { + // The actor is JSON encoded in the header + var actor = context.RequestHeaders.TryGetValue("Actor", out var actorHeader) ? actorHeader.ToString() : null; + if (actor == null) + { + await RespondBadRequest(context, "Actor must be supplied"); + return null; + } + + Actor? actorData; + try + { + actorData = JsonSerializer.Deserialize(actor); + if (actorData == null) + { + await RespondBadRequest(context, "Actor is null"); + return null; + } + } + catch (JsonException exception) + { + await RespondBadRequest(context, "Actor field JSON is invalid", ExceptionData.FromException(exception)); + return null; + } + + return actorData; + } + + #region From Client + + private sealed class Actor + { + public required Guid Guid { get; init; } + public required string Name { get; init; } + } + + private sealed class KickActionBody + { + public required Guid Guid { get; init; } + public string? Reason { get; init; } + } + + private sealed class GameRuleActionBody + { + public required string GameRuleId { get; init; } + } + + private sealed class PresetActionBody + { + public required string PresetId { get; init; } + } + + private sealed class MotdActionBody + { + public required string Motd { get; init; } + } + + #endregion + + #region Responses + + private record BaseResponse( + string Message, + ErrorCode ErrorCode = ErrorCode.None, + ExceptionData? Exception = null); + + private record ExceptionData(string Message, string? StackTrace = null) + { + public static ExceptionData FromException(Exception e) + { + return new ExceptionData(e.Message, e.StackTrace); + } + } + + private enum ErrorCode + { + None = 0, + AuthenticationNeeded = 1, + AuthenticationInvalid = 2, + InvalidRoundState = 3, + PlayerNotFound = 4, + GameRuleNotFound = 5, + BadRequest = 6, + } + + #endregion + + #region Misc + + /// + /// Record used to send the response for the info endpoint. + /// + private sealed class InfoResponse + { + public required int RoundId { get; init; } + public required List Players { get; init; } + public required List GameRules { get; init; } + public required string? GamePreset { get; init; } + public required MapInfo? Map { get; init; } + public required string? MOTD { get; init; } + public required Dictionary PanicBunker { get; init; } + + public sealed class Player + { + public required Guid UserId { get; init; } + public required string Name { get; init; } + public required bool IsAdmin { get; init; } + public required bool IsDeadminned { get; init; } + } + + public sealed class MapInfo + { + public required string Id { get; init; } + public required string Name { get; init; } + } + } + + private sealed class PresetResponse + { + public required List Presets { get; init; } + + public sealed class Preset + { + public required string Id { get; init; } + public required string Description { get; init; } + public required string ModeTitle { get; init; } + } + } + + private sealed class GameruleResponse + { + public required List GameRules { get; init; } + } + + #endregion +} diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 53eabb1a481..82bbe6e266b 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -61,7 +61,7 @@ public sealed class AdminSystem : EntitySystem public IReadOnlySet RoundActivePlayers => _roundActivePlayers; private readonly HashSet _roundActivePlayers = new(); - private readonly PanicBunkerStatus _panicBunker = new(); + public readonly PanicBunkerStatus PanicBunker = new(); public override void Initialize() { @@ -240,7 +240,7 @@ private PlayerInfo GetPlayerInfo(SessionData data, ICommonSession? session) private void OnPanicBunkerChanged(bool enabled) { - _panicBunker.Enabled = enabled; + PanicBunker.Enabled = enabled; _chat.SendAdminAlert(Loc.GetString(enabled ? "admin-ui-panic-bunker-enabled-admin-alert" : "admin-ui-panic-bunker-disabled-admin-alert" @@ -251,52 +251,52 @@ private void OnPanicBunkerChanged(bool enabled) private void OnPanicBunkerDisableWithAdminsChanged(bool enabled) { - _panicBunker.DisableWithAdmins = enabled; + PanicBunker.DisableWithAdmins = enabled; UpdatePanicBunker(); } private void OnPanicBunkerEnableWithoutAdminsChanged(bool enabled) { - _panicBunker.EnableWithoutAdmins = enabled; + PanicBunker.EnableWithoutAdmins = enabled; UpdatePanicBunker(); } private void OnPanicBunkerCountDeadminnedAdminsChanged(bool enabled) { - _panicBunker.CountDeadminnedAdmins = enabled; + PanicBunker.CountDeadminnedAdmins = enabled; UpdatePanicBunker(); } private void OnShowReasonChanged(bool enabled) { - _panicBunker.ShowReason = enabled; + PanicBunker.ShowReason = enabled; SendPanicBunkerStatusAll(); } private void OnPanicBunkerMinAccountAgeChanged(int minutes) { - _panicBunker.MinAccountAgeHours = minutes / 60; + PanicBunker.MinAccountAgeHours = minutes / 60; SendPanicBunkerStatusAll(); } private void OnPanicBunkerMinOverallHoursChanged(int hours) { - _panicBunker.MinOverallHours = hours; + PanicBunker.MinOverallHours = hours; SendPanicBunkerStatusAll(); } private void UpdatePanicBunker() { - var admins = _panicBunker.CountDeadminnedAdmins + var admins = PanicBunker.CountDeadminnedAdmins ? _adminManager.AllAdmins : _adminManager.ActiveAdmins; var hasAdmins = admins.Any(); - if (hasAdmins && _panicBunker.DisableWithAdmins) + if (hasAdmins && PanicBunker.DisableWithAdmins) { _config.SetCVar(CCVars.PanicBunkerEnabled, false); } - else if (!hasAdmins && _panicBunker.EnableWithoutAdmins) + else if (!hasAdmins && PanicBunker.EnableWithoutAdmins) { _config.SetCVar(CCVars.PanicBunkerEnabled, true); } @@ -306,7 +306,7 @@ private void UpdatePanicBunker() private void SendPanicBunkerStatusAll() { - var ev = new PanicBunkerChangedEvent(_panicBunker); + var ev = new PanicBunkerChangedEvent(PanicBunker); foreach (var admin in _adminManager.AllAdmins) { RaiseNetworkEvent(ev, admin); diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 9849d2df79c..eff97136d06 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -111,7 +111,7 @@ private void AddAntagVerbs(GetVerbsEvent args) { Text = Loc.GetString("admin-verb-text-make-thief"), Category = VerbCategory.Antag, - Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Clothing/Hands/Gloves/ihscombat.rsi"), "icon"), + Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Clothing/Hands/Gloves/Color/black.rsi"), "icon"), Act = () => { _thief.AdminMakeThief(args.Target, false); //Midround add pacified is bad diff --git a/Content.Server/Advertise/Components/AdvertiseComponent.cs b/Content.Server/Advertise/Components/AdvertiseComponent.cs index 531b31031d2..3d617e3a340 100644 --- a/Content.Server/Advertise/Components/AdvertiseComponent.cs +++ b/Content.Server/Advertise/Components/AdvertiseComponent.cs @@ -24,6 +24,14 @@ public sealed partial class AdvertiseComponent : Component [DataField] public int MaximumWait { get; private set; } = 10 * 60; + /// + /// If true, the delay before the first advertisement (at MapInit) will ignore + /// and instead be rolled between 0 and . This only applies to the initial delay; + /// will be respected after that. + /// + [DataField] + public bool Prewarm = true; + /// /// The identifier for the advertisements pack prototype. /// diff --git a/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs b/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs index 12eac72cfe3..28fa01628f4 100644 --- a/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs +++ b/Content.Server/Advertise/EntitySystems/AdvertiseSystem.cs @@ -37,13 +37,14 @@ public override void Initialize() private void OnMapInit(EntityUid uid, AdvertiseComponent advert, MapInitEvent args) { - RandomizeNextAdvertTime(advert); + var prewarm = advert.Prewarm; + RandomizeNextAdvertTime(advert, prewarm); _nextCheckTime = MathHelper.Min(advert.NextAdvertisementTime, _nextCheckTime); } - private void RandomizeNextAdvertTime(AdvertiseComponent advert) + private void RandomizeNextAdvertTime(AdvertiseComponent advert, bool prewarm = false) { - var minDuration = Math.Max(1, advert.MinimumWait); + var minDuration = prewarm ? 0 : Math.Max(1, advert.MinimumWait); var maxDuration = Math.Max(minDuration, advert.MaximumWait); var waitDuration = TimeSpan.FromSeconds(_random.Next(minDuration, maxDuration)); diff --git a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs index 152fba8fc4d..60d90e1e609 100644 --- a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs @@ -12,6 +12,7 @@ public sealed class AirtightSystem : EntitySystem [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Dependency] private readonly ExplosionSystem _explosionSystem = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; public override void Initialize() { @@ -59,12 +60,14 @@ private void OnAirtightPositionChanged(EntityUid uid, AirtightComponent airtight var gridId = xform.GridUid; var coords = xform.Coordinates; - - var tilePos = grid.TileIndicesFor(coords); + var tilePos = _mapSystem.TileIndicesFor(gridId.Value, grid, coords); // Update and invalidate new position. airtight.LastPosition = (gridId.Value, tilePos); InvalidatePosition(gridId.Value, tilePos); + + var airtightEv = new AirtightChanged(uid, airtight, (gridId.Value, tilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); } private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref ReAnchorEvent args) @@ -74,6 +77,9 @@ private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref R // Update and invalidate new position. airtight.LastPosition = (gridId, args.TilePos); InvalidatePosition(gridId, args.TilePos); + + var airtightEv = new AirtightChanged(uid, airtight, (gridId, args.TilePos)); + RaiseLocalEvent(uid, ref airtightEv, true); } } @@ -153,6 +159,5 @@ private AtmosDirection Rotate(AtmosDirection myDirection, Angle myAngle) } [ByRefEvent] - public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, - (EntityUid Grid, Vector2i Tile) Position); + public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, (EntityUid Grid, Vector2i Tile) Position); } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index a5e37398c6a..f711b235af6 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -3,6 +3,7 @@ using Content.Server.Atmos.Components; using Content.Shared.Administration; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -84,44 +85,72 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar continue; } - var transform = Transform(euid.Value); + // Force Invalidate & update air on all tiles + Entity grid = + new(euid.Value, gridAtmosphere, Comp(euid.Value), gridComp, Transform(euid.Value)); - foreach (var (indices, tileMain) in gridAtmosphere.Tiles) - { - var tile = tileMain.Air; - if (tile == null) - continue; + RebuildGridTiles(grid); - if (!_mapSystem.TryGetTile(gridComp, indices, out var gTile) || gTile.IsEmpty) - { - gridAtmosphere.Tiles.Remove(indices); + var query = GetEntityQuery(); + foreach (var (indices, tile) in gridAtmosphere.Tiles.ToArray()) + { + if (tile.Air is not {Immutable: false} air) continue; - } - if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices)) - { - tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; - tileMain.Air = tile; - } - - tile.Clear(); + air.Clear(); var mixtureId = 0; - foreach (var entUid in gridComp.GetAnchoredEntities(indices)) + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(grid, grid, indices); + while (enumerator.MoveNext(out var entUid)) { - if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) - continue; - mixtureId = afm.Mode; - break; + if (query.TryComp(entUid, out var marker)) + mixtureId = marker.Mode; } - var mixture = mixtures[mixtureId]; - Merge(tile, mixture); - tile.Temperature = mixture.Temperature; - gridAtmosphere.InvalidatedCoords.Add(indices); + var mixture = mixtures[mixtureId]; + Merge(air, mixture); + air.Temperature = mixture.Temperature; } } } + /// + /// Clears & re-creates all references to s stored on a grid. + /// + private void RebuildGridTiles( + Entity ent) + { + foreach (var indices in ent.Comp1.Tiles.Keys) + { + InvalidateVisuals((ent, ent), indices); + } + + var atmos = ent.Comp1; + atmos.MapTiles.Clear(); + atmos.ActiveTiles.Clear(); + atmos.ExcitedGroups.Clear(); + atmos.HotspotTiles.Clear(); + atmos.SuperconductivityTiles.Clear(); + atmos.HighPressureDelta.Clear(); + atmos.CurrentRunTiles.Clear(); + atmos.CurrentRunExcitedGroups.Clear(); + atmos.InvalidatedCoords.Clear(); + atmos.CurrentRunInvalidatedTiles.Clear(); + atmos.PossiblyDisconnectedTiles.Clear(); + atmos.Tiles.Clear(); + + var volume = GetVolumeForTiles(ent); + TryComp(ent.Comp4.MapUid, out MapAtmosphereComponent? mapAtmos); + + var enumerator = _map.GetAllTilesEnumerator(ent, ent); + while (enumerator.MoveNext(out var tileRef)) + { + var tile = GetOrNewTile(ent, ent, tileRef.Value.GridIndices); + UpdateTileData(ent, mapAtmos, tile); + UpdateAdjacentTiles(ent, tile, activate: true); + UpdateTileAir(ent, tile, volume); + } + } + private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args) { MapId? playerMap = null; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index bd023e8574a..85b1a93e20f 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -30,13 +30,15 @@ public sealed partial class AtmosphereSystem private int _currentRunAtmosphereIndex; private bool _simulationPaused; - private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index) + private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index, bool invalidateNew = true) { var tile = atmosphere.Tiles.GetOrNew(index, out var existing); if (existing) return tile; - atmosphere.InvalidatedCoords.Add(index); + if (invalidateNew) + atmosphere.InvalidatedCoords.Add(index); + tile.GridIndex = owner; tile.GridIndices = index; return tile; @@ -68,7 +70,7 @@ private bool ProcessRevalidate(Entity private void OnDisabledMessage(EntityUid uid, GasAnalyzerComponent component, GasAnalyzerDisableMessage message) { - if (message.Session.AttachedEntity is not {Valid: true}) + if (message.Session.AttachedEntity is not { Valid: true }) return; DisableAnalyzer(uid, component); } @@ -169,7 +169,7 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul // Check if position is out of range => don't update and disable if (!component.LastPosition.Value.InRange(EntityManager, _transform, userPos, SharedInteractionSystem.InteractionRange)) { - if(component.User is { } userId && component.Enabled) + if (component.User is { } userId && component.Enabled) _popup.PopupEntity(Loc.GetString("gas-analyzer-shutoff"), userId, userId); DisableAnalyzer(uid, component, component.User); return false; @@ -182,13 +182,13 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul var tileMixture = _atmo.GetContainingMixture(uid, true); if (tileMixture != null) { - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Pressure, tileMixture.Temperature, + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), tileMixture.Volume, tileMixture.Pressure, tileMixture.Temperature, GenerateGasEntryArray(tileMixture))); } else { // No gases were found - gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f)); + gasMixList.Add(new GasMixEntry(Loc.GetString("gas-analyzer-window-environment-tab-label"), 0f, 0f, 0f)); } var deviceFlipped = false; @@ -209,8 +209,8 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul { foreach (var mixes in ev.GasMixtures) { - if(mixes.Value != null) - gasMixList.Add(new GasMixEntry(mixes.Key, mixes.Value.Pressure, mixes.Value.Temperature, GenerateGasEntryArray(mixes.Value))); + if (mixes.Item2 != null) + gasMixList.Add(new GasMixEntry(mixes.Item1, mixes.Item2.Volume, mixes.Item2.Pressure, mixes.Item2.Temperature, GenerateGasEntryArray(mixes.Item2))); } deviceFlipped = ev.DeviceFlipped; @@ -223,7 +223,16 @@ private bool UpdateAnalyzer(EntityUid uid, GasAnalyzerComponent? component = nul foreach (var pair in node.Nodes) { if (pair.Value is PipeNode pipeNode) - gasMixList.Add(new GasMixEntry(pair.Key, pipeNode.Air.Pressure, pipeNode.Air.Temperature, GenerateGasEntryArray(pipeNode.Air))); + { + // check if the volume is zero for some reason so we don't divide by zero + if (pipeNode.Air.Volume == 0f) + continue; + // only display the gas in the analyzed pipe element, not the whole system + var pipeAir = pipeNode.Air.Clone(); + pipeAir.Multiply(pipeNode.Volume / pipeNode.Air.Volume); + pipeAir.Volume = pipeNode.Volume; + gasMixList.Add(new GasMixEntry(pair.Key, pipeAir.Volume, pipeAir.Pressure, pipeAir.Temperature, GenerateGasEntryArray(pipeAir))); + } } } } @@ -286,9 +295,9 @@ private GasEntry[] GenerateGasEntryArray(GasMixture? mixture) public sealed class GasAnalyzerScanEvent : EntityEventArgs { /// - /// Key is the mix name (ex "pipe", "inlet", "filter"), value is the pipe direction and GasMixture. Add all mixes that should be reported when scanned. + /// The string is for the name (ex "pipe", "inlet", "filter"), GasMixture for the corresponding gas mix. Add all mixes that should be reported when scanned. /// - public Dictionary? GasMixtures; + public List<(string, GasMixture?)>? GasMixtures; /// /// If the device is flipped. Flipped is defined as when the inline input is 90 degrees CW to the side input diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index 80842416e8b..dd84756e45d 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -359,7 +359,8 @@ public void CheckStatus(Entity ent) /// private void OnAnalyzed(EntityUid uid, GasTankComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); } private void OnGasTankPrice(EntityUid uid, GasTankComponent component, ref PriceCalculationEvent args) diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index fbd42604694..c0c2b930f69 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -73,7 +73,7 @@ private void OnFilterUpdated(EntityUid uid, GasFilterComponent filter, ref Atmos if (filter.FilteredGas.HasValue) { - var filteredOut = new GasMixture() {Temperature = removed.Temperature}; + var filteredOut = new GasMixture() { Temperature = removed.Temperature }; filteredOut.SetMoles(filter.FilteredGas.Value, removed.GetMoles(filter.FilteredGas.Value)); removed.SetMoles(filter.FilteredGas.Value, 0f); @@ -180,17 +180,30 @@ private void OnSelectGasMessage(EntityUid uid, GasFilterComponent filter, GasFil /// private void OnFilterAnalyzed(EntityUid uid, GasFilterComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - args.GasMixtures ??= new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletName, out PipeNode? inlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-inlet"), inlet.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.FilterName, out PipeNode? filterNode)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-filter"), filterNode.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - args.GasMixtures.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletName, out PipeNode? inlet) && inlet.Air.Volume != 0f) + { + var inletAirLocal = inlet.Air.Clone(); + inletAirLocal.Multiply(inlet.Volume / inlet.Air.Volume); + inletAirLocal.Volume = inlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-inlet"), inletAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.FilterName, out PipeNode? filterNode) && filterNode.Air.Volume != 0f) + { + var filterNodeAirLocal = filterNode.Air.Clone(); + filterNodeAirLocal.Multiply(filterNode.Volume / filterNode.Air.Volume); + filterNodeAirLocal.Volume = filterNode.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-filter"), filterNodeAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } args.DeviceFlipped = inlet != null && filterNode != null && inlet.CurrentPipeDirection.ToDirection() == filterNode.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index ba8ebf3c9ae..4d7fc134c70 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -205,19 +205,31 @@ private void OnChangeNodePercentageMessage(EntityUid uid, GasMixerComponent mixe /// private void OnMixerAnalyzed(EntityUid uid, GasMixerComponent component, GasAnalyzerScanEvent args) { - if (!EntityManager.TryGetComponent(uid, out NodeContainerComponent? nodeContainer)) - return; - - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletOneName, out PipeNode? inletOne)) - gasMixDict.Add($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOne.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.InletTwoName, out PipeNode? inletTwo)) - gasMixDict.Add($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwo.Air); - if(_nodeContainer.TryGetNode(nodeContainer, component.OutletName, out PipeNode? outlet)) - gasMixDict.Add(Loc.GetString("gas-analyzer-window-text-outlet"), outlet.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, component.InletOneName, out PipeNode? inletOne) && inletOne.Air.Volume != 0f) + { + var inletOneAirLocal = inletOne.Air.Clone(); + inletOneAirLocal.Multiply(inletOne.Volume / inletOne.Air.Volume); + inletOneAirLocal.Volume = inletOne.Volume; + args.GasMixtures.Add(($"{inletOne.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletOneAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.InletTwoName, out PipeNode? inletTwo) && inletTwo.Air.Volume != 0f) + { + var inletTwoAirLocal = inletTwo.Air.Clone(); + inletTwoAirLocal.Multiply(inletTwo.Volume / inletTwo.Air.Volume); + inletTwoAirLocal.Volume = inletTwo.Volume; + args.GasMixtures.Add(($"{inletTwo.CurrentPipeDirection} {Loc.GetString("gas-analyzer-window-text-inlet")}", inletTwoAirLocal)); + } + if (_nodeContainer.TryGetNode(uid, component.OutletName, out PipeNode? outlet) && outlet.Air.Volume != 0f) + { + var outletAirLocal = outlet.Air.Clone(); + outletAirLocal.Multiply(outlet.Volume / outlet.Air.Volume); + outletAirLocal.Volume = outlet.Volume; + args.GasMixtures.Add((Loc.GetString("gas-analyzer-window-text-outlet"), outletAirLocal)); + } - args.GasMixtures = gasMixDict; args.DeviceFlipped = inletOne != null && inletTwo != null && inletOne.CurrentPipeDirection.ToDirection() == inletTwo.CurrentPipeDirection.ToDirection().GetClockwise90Degrees(); } } diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 3e4340bf1db..bdc9e765381 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -294,9 +294,17 @@ private void CalculateCanisterPrice(EntityUid uid, GasCanisterComponent componen /// /// Returns the gas mixture for the gas analyzer /// - private void OnAnalyzed(EntityUid uid, GasCanisterComponent component, GasAnalyzerScanEvent args) + private void OnAnalyzed(EntityUid uid, GasCanisterComponent canisterComponent, GasAnalyzerScanEvent args) { - args.GasMixtures = new Dictionary { {Name(uid), component.Air} }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), canisterComponent.Air)); + // if a tank is inserted show it on the analyzer as well + if (canisterComponent.GasTankSlot.Item != null) + { + var tank = canisterComponent.GasTankSlot.Item.Value; + var tankComponent = Comp(tank); + args.GasMixtures.Add((Name(tank), tankComponent.Air)); + } } /// diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs index a986385f5e9..7c12cf3f77f 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasVentPumpSystem.cs @@ -80,7 +80,7 @@ private void OnGasVentPumpUpdated(EntityUid uid, GasVentPumpComponent vent, ref return; } - var timeDelta = args.dt; + var timeDelta = args.dt; var pressureDelta = timeDelta * vent.TargetPressureChange; if (vent.PumpDirection == VentPumpDirection.Releasing && pipe.Air.Pressure > 0) @@ -292,7 +292,7 @@ private void OnExamine(EntityUid uid, GasVentPumpComponent component, ExaminedEv /// private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyzerScanEvent args) { - var gasMixDict = new Dictionary(); + args.GasMixtures ??= new List<(string, GasMixture?)>(); // these are both called pipe, above it switches using this so I duplicated that...? var nodeName = component.PumpDirection switch @@ -301,10 +301,14 @@ private void OnAnalyzed(EntityUid uid, GasVentPumpComponent component, GasAnalyz VentPumpDirection.Siphoning => component.Outlet, _ => throw new ArgumentOutOfRangeException() }; - if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe)) - gasMixDict.Add(nodeName, pipe.Air); - - args.GasMixtures = gasMixDict; + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(uid, nodeName, out PipeNode? pipe) && pipe.Air.Volume != 0f) + { + var pipeAirLocal = pipe.Air.Clone(); + pipeAirLocal.Multiply(pipe.Volume / pipe.Air.Volume); + pipeAirLocal.Volume = pipe.Volume; + args.GasMixtures.Add((nodeName, pipeAirLocal)); + } } private void OnWeldChanged(EntityUid uid, GasVentPumpComponent component, ref WeldableChangedEvent args) diff --git a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs index f9043c091a8..91ee5880574 100644 --- a/Content.Server/Atmos/Portable/PortableScrubberSystem.cs +++ b/Content.Server/Atmos/Portable/PortableScrubberSystem.cs @@ -151,10 +151,8 @@ private void UpdateAppearance(EntityUid uid, bool isFull, bool isRunning) /// private void OnScrubberAnalyzed(EntityUid uid, PortableScrubberComponent component, GasAnalyzerScanEvent args) { - args.GasMixtures ??= new Dictionary { { Name(uid), component.Air } }; - // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(uid, component.PortName, out PipeNode? port)) - args.GasMixtures.Add(component.PortName, port.Air); + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), component.Air)); } } } diff --git a/Content.Server/Audio/AmbientSoundSystem.cs b/Content.Server/Audio/AmbientSoundSystem.cs index 53a03be2aa2..e78970d1243 100644 --- a/Content.Server/Audio/AmbientSoundSystem.cs +++ b/Content.Server/Audio/AmbientSoundSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Shared.Audio; +using Content.Shared.Mobs; namespace Content.Server.Audio; diff --git a/Content.Server/Audio/Jukebox/JukeboxSystem.cs b/Content.Server/Audio/Jukebox/JukeboxSystem.cs new file mode 100644 index 00000000000..bfb9b2099a4 --- /dev/null +++ b/Content.Server/Audio/Jukebox/JukeboxSystem.cs @@ -0,0 +1,152 @@ +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Audio.Jukebox; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Audio.Components; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Prototypes; +using JukeboxComponent = Content.Shared.Audio.Jukebox.JukeboxComponent; + +namespace Content.Server.Audio.Jukebox; + + +public sealed class JukeboxSystem : SharedJukeboxSystem +{ + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnJukeboxSelected); + SubscribeLocalEvent(OnJukeboxPlay); + SubscribeLocalEvent(OnJukeboxPause); + SubscribeLocalEvent(OnJukeboxStop); + SubscribeLocalEvent(OnJukeboxSetTime); + SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentShutdown); + + SubscribeLocalEvent(OnPowerChanged); + } + + private void OnComponentInit(EntityUid uid, JukeboxComponent component, ComponentInit args) + { + if (HasComp(uid)) + { + TryUpdateVisualState(uid, component); + } + } + + private void OnJukeboxPlay(EntityUid uid, JukeboxComponent component, ref JukeboxPlayingMessage args) + { + if (Exists(component.AudioStream)) + { + Audio.SetState(component.AudioStream, AudioState.Playing); + } + else + { + component.AudioStream = Audio.Stop(component.AudioStream); + + if (string.IsNullOrEmpty(component.SelectedSongId) || + !_protoManager.TryIndex(component.SelectedSongId, out var jukeboxProto)) + { + return; + } + + component.AudioStream = Audio.PlayPvs(jukeboxProto.Path, uid, AudioParams.Default.WithMaxDistance(10f))?.Entity; + Dirty(uid, component); + } + } + + private void OnJukeboxPause(Entity ent, ref JukeboxPauseMessage args) + { + Audio.SetState(ent.Comp.AudioStream, AudioState.Paused); + } + + private void OnJukeboxSetTime(EntityUid uid, JukeboxComponent component, JukeboxSetTimeMessage args) + { + var offset = (args.Session.Channel.Ping * 1.5f) / 1000f; + Audio.SetPlaybackPosition(component.AudioStream, args.SongTime + offset); + } + + private void OnPowerChanged(Entity entity, ref PowerChangedEvent args) + { + TryUpdateVisualState(entity); + + if (!this.IsPowered(entity.Owner, EntityManager)) + { + Stop(entity); + } + } + + private void OnJukeboxStop(Entity entity, ref JukeboxStopMessage args) + { + Stop(entity); + } + + private void Stop(Entity entity) + { + Audio.SetState(entity.Comp.AudioStream, AudioState.Stopped); + Dirty(entity); + } + + private void OnJukeboxSelected(EntityUid uid, JukeboxComponent component, JukeboxSelectedMessage args) + { + if (!Audio.IsPlaying(component.AudioStream)) + { + component.SelectedSongId = args.SongId; + DirectSetVisualState(uid, JukeboxVisualState.Select); + component.Selecting = true; + component.AudioStream = Audio.Stop(component.AudioStream); + } + + Dirty(uid, component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + if (comp.Selecting) + { + comp.SelectAccumulator += frameTime; + if (comp.SelectAccumulator >= 0.5f) + { + comp.SelectAccumulator = 0f; + comp.Selecting = false; + + TryUpdateVisualState(uid, comp); + } + } + } + } + + private void OnComponentShutdown(EntityUid uid, JukeboxComponent component, ComponentShutdown args) + { + component.AudioStream = Audio.Stop(component.AudioStream); + } + + private void DirectSetVisualState(EntityUid uid, JukeboxVisualState state) + { + _appearanceSystem.SetData(uid, JukeboxVisuals.VisualState, state); + } + + private void TryUpdateVisualState(EntityUid uid, JukeboxComponent? jukeboxComponent = null) + { + if (!Resolve(uid, ref jukeboxComponent)) + return; + + var finalState = JukeboxVisualState.On; + + if (!this.IsPowered(uid, EntityManager)) + { + finalState = JukeboxVisualState.Off; + } + + _appearanceSystem.SetData(uid, JukeboxVisuals.VisualState, finalState); + } +} diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index a3b7fb8d67b..2e7f8c4235a 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -1,11 +1,16 @@ +using System.Globalization; using System.Linq; using Content.Server.Chat.Managers; using Content.Server.GameTicking; using Content.Server.Hands.Systems; using Content.Server.Inventory; using Content.Server.Popups; +using Content.Server.Chat.Systems; using Content.Server.Station.Components; using Content.Server.Station.Systems; +using Content.Server.StationRecords; +using Content.Server.StationRecords.Systems; +using Content.Shared.StationRecords; using Content.Shared.UserInterface; using Content.Shared.Access.Systems; using Content.Shared.Bed.Cryostorage; @@ -32,6 +37,7 @@ public sealed class CryostorageSystem : SharedCryostorageSystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly ClimbSystem _climb = default!; [Dependency] private readonly ContainerSystem _container = default!; [Dependency] private readonly GameTicker _gameTicker = default!; @@ -40,6 +46,7 @@ public sealed class CryostorageSystem : SharedCryostorageSystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly StationSystem _station = default!; [Dependency] private readonly StationJobsSystem _stationJobs = default!; + [Dependency] private readonly StationRecordsSystem _stationRecords = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; @@ -163,26 +170,30 @@ public void HandleEnterCryostorage(Entity ent, Ne { var comp = ent.Comp; var cryostorageEnt = ent.Comp.Cryostorage; + + var station = _station.GetOwningStation(ent); + var name = Name(ent.Owner); + if (!TryComp(cryostorageEnt, out var cryostorageComponent)) return; // if we have a session, we use that to add back in all the job slots the player had. if (userId != null) { - foreach (var station in _station.GetStationsSet()) + foreach (var uniqueStation in _station.GetStationsSet()) { - if (!TryComp(station, out var stationJobs)) + if (!TryComp(uniqueStation, out var stationJobs)) continue; - if (!_stationJobs.TryGetPlayerJobs(station, userId.Value, out var jobs, stationJobs)) + if (!_stationJobs.TryGetPlayerJobs(uniqueStation, userId.Value, out var jobs, stationJobs)) continue; foreach (var job in jobs) { - _stationJobs.TryAdjustJobSlot(station, job, 1, clamp: true); + _stationJobs.TryAdjustJobSlot(uniqueStation, job, 1, clamp: true); } - _stationJobs.TryRemovePlayerJobs(station, userId.Value, stationJobs); + _stationJobs.TryRemovePlayerJobs(uniqueStation, userId.Value, stationJobs); } } @@ -203,12 +214,36 @@ public void HandleEnterCryostorage(Entity ent, Ne _gameTicker.OnGhostAttempt(mind.Value, false); } } + comp.AllowReEnteringBody = false; _transform.SetParent(ent, PausedMap.Value); cryostorageComponent.StoredPlayers.Add(ent); Dirty(ent, comp); UpdateCryostorageUIState((cryostorageEnt.Value, cryostorageComponent)); AdminLog.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent):player} was entered into cryostorage inside of {ToPrettyString(cryostorageEnt.Value)}"); + + if (!TryComp(station, out var stationRecords)) + return; + + var jobName = Loc.GetString("earlyleave-cryo-job-unknown"); + var recordId = _stationRecords.GetRecordByName(station.Value, name); + if (recordId != null) + { + var key = new StationRecordKey(recordId.Value, station.Value); + if (_stationRecords.TryGetRecord(key, out var entry, stationRecords)) + jobName = entry.JobTitle; + + _stationRecords.RemoveRecord(key, stationRecords); + } + + _chatSystem.DispatchStationAnnouncement(station.Value, + Loc.GetString( + "earlyleave-cryo-announcement", + ("character", name), + ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) + ), Loc.GetString("earlyleave-cryo-sender"), + playDefaultSound: false + ); } private void HandleCryostorageReconnection(Entity entity) diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 1a3c0473a48..0ae56bc5fc6 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -2,16 +2,16 @@ using Content.Server.Botany.Systems; using Content.Shared.Atmos; using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; -using Robust.Shared.Audio; namespace Content.Server.Botany; [Prototype("seed")] -public sealed class SeedPrototype : SeedData, IPrototype +public sealed partial class SeedPrototype : SeedData, IPrototype { [IdDataField] public string ID { get; private init; } = default!; } diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 0f54fd0da50..721536a7c07 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -159,7 +159,6 @@ private void OnInteractUsing(Entity entity, ref InteractUs if (!_botany.TryGetSeed(seeds, out var seed)) return; - float? seedHealth = seeds.HealthOverride; var name = Loc.GetString(seed.Name); var noun = Loc.GetString(seed.Noun); _popup.PopupCursor(Loc.GetString("plant-holder-component-plant-success-message", @@ -169,9 +168,9 @@ private void OnInteractUsing(Entity entity, ref InteractUs component.Seed = seed; component.Dead = false; component.Age = 1; - if (seedHealth is float realSeedHealth) + if (seeds.HealthOverride != null) { - component.Health = realSeedHealth; + component.Health = seeds.HealthOverride.Value; } else { @@ -288,8 +287,18 @@ private void OnInteractUsing(Entity entity, ref InteractUs } component.Health -= (_random.Next(3, 5) * 10); + + float? healthOverride; + if (component.Harvest) + { + healthOverride = null; + } + else + { + healthOverride = component.Health; + } component.Seed.Unique = false; - var seed = _botany.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User, component.Health); + var seed = _botany.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User, healthOverride); _randomHelper.RandomOffset(seed, 0.25f); var displayName = Loc.GetString(component.Seed.DisplayName); _popup.PopupCursor(Loc.GetString("plant-holder-component-take-sample-message", diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs index d26794a6323..a7735787cbb 100644 --- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Cargo; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Server.Cargo.Components; @@ -32,4 +33,16 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component /// [DataField] public HashSet CheckedBounties = new(); + + /// + /// The time at which players will be able to skip the next bounty. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextSkipTime = TimeSpan.Zero; + + /// + /// The time between skipping bounties. + /// + [DataField] + public TimeSpan SkipDelay = TimeSpan.FromMinutes(15); } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index ee5ae631fd9..22e5c67e175 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -4,7 +4,7 @@ using Content.Server.Labels; using Content.Server.NameIdentifier; using Content.Server.Paper; -using Content.Server.Station.Systems; +using Content.Shared.Access.Components; using Content.Shared.Cargo; using Content.Shared.Cargo.Components; using Content.Shared.Cargo.Prototypes; @@ -35,6 +35,7 @@ private void InitializeBounty() { SubscribeLocalEvent(OnBountyConsoleOpened); SubscribeLocalEvent(OnPrintLabelMessage); + SubscribeLocalEvent(OnSkipBountyMessage); SubscribeLocalEvent(OnGetBountyPrice); SubscribeLocalEvent(OnSold); SubscribeLocalEvent(OnMapInit); @@ -50,7 +51,8 @@ private void OnBountyConsoleOpened(EntityUid uid, CargoBountyConsoleComponent co !TryComp(station, out var bountyDb)) return; - _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties)); + var untilNextSkip = bountyDb.NextSkipTime - _timing.CurTime; + _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip)); } private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent component, BountyPrintLabelMessage args) @@ -70,6 +72,37 @@ private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent comp _audio.PlayPvs(component.PrintSound, uid); } + private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent component, BountySkipMessage args) + { + if (_station.GetOwningStation(uid) is not { } station || !TryComp(station, out var db)) + return; + + if (_timing.CurTime < db.NextSkipTime) + return; + + if (!TryGetBountyFromId(station, args.BountyId, out var bounty)) + return; + + if (args.Session.AttachedEntity is not { Valid: true } mob) + return; + + if (TryComp(uid, out var accessReaderComponent) && + !_accessReaderSystem.IsAllowed(mob, uid, accessReaderComponent)) + { + _audio.PlayPvs(component.DenySound, uid); + return; + } + + if (!TryRemoveBounty(station, bounty.Value)) + return; + + FillBountyDatabase(station); + db.NextSkipTime = _timing.CurTime + db.SkipDelay; + var untilNextSkip = db.NextSkipTime - _timing.CurTime; + _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip)); + _audio.PlayPvs(component.SkipSound, uid); + } + public void SetupBountyLabel(EntityUid uid, EntityUid stationId, CargoBountyData bounty, PaperComponent? paper = null, CargoBountyLabelComponent? label = null) { if (!Resolve(uid, ref paper, ref label) || !_protoMan.TryIndex(bounty.Bounty, out var prototype)) @@ -431,7 +464,8 @@ public void UpdateBountyConsoles() !TryComp(station, out var db)) continue; - _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties), ui: ui); + var untilNextSkip = db.NextSkipTime - _timing.CurTime; + _uiSystem.TrySetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip), ui: ui); } } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index d8b55a7237f..75a431007f8 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -184,6 +184,15 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); _audio.PlayPvs(component.ConfirmSound, uid); + var approverName = idCard.Comp?.FullName ?? Loc.GetString("access-reader-unknown-id"); + var approverJob = idCard.Comp?.JobTitle ?? Loc.GetString("access-reader-unknown-id"); + var message = Loc.GetString("cargo-console-unlock-approved-order-broadcast", + ("productName", Loc.GetString(order.ProductName)), + ("orderAmount", order.OrderQuantity), + ("approverName", approverName), + ("approverJob", approverJob), + ("cost", cost)); + _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); ConsolePopup(args.Session, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(tradeDestination.Value).EntityName))); // Log order approval @@ -329,7 +338,7 @@ private void PlayDenySound(EntityUid uid, CargoOrderConsoleComponent component) private static CargoOrderData GetOrderData(CargoConsoleAddOrderMessage args, CargoProductPrototype cargoProduct, int id) { - return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); + return new CargoOrderData(id, cargoProduct.Product, cargoProduct.Name, cargoProduct.Cost, args.Amount, args.Requester, args.Reason); } public static int GetOutstandingOrderCount(StationCargoOrderDatabaseComponent component) @@ -378,6 +387,7 @@ private void UpdateOrders(EntityUid dbUid, StationCargoOrderDatabaseComponent _) public bool AddAndApproveOrder( EntityUid dbUid, string spawnId, + string name, int cost, int qty, string sender, @@ -390,7 +400,7 @@ StationDataComponent stationData DebugTools.Assert(_protoMan.HasIndex(spawnId)); // Make an order var id = GenerateOrderId(component); - var order = new CargoOrderData(id, spawnId, cost, qty, sender, description); + var order = new CargoOrderData(id, spawnId, name, cost, qty, sender, description); // Approve it now order.SetApproverData(dest, sender); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 61d1cf02939..661067e3b40 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -178,7 +178,7 @@ private List GetProjectedOrders( // We won't be able to fit the whole order on, so make one // which represents the space we do have left: var reducedOrder = new CargoOrderData(order.OrderId, - order.ProductId, order.Price, spaceRemaining, order.Requester, order.Reason); + order.ProductId, order.ProductName, order.Price, spaceRemaining, order.Requester, order.Reason); orders.Add(reducedOrder); } else diff --git a/Content.Server/Cargo/Systems/CargoSystem.cs b/Content.Server/Cargo/Systems/CargoSystem.cs index 3d6fc964725..989a5e794b4 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.Administration.Logs; +using Content.Server.Radio.EntitySystems; using Content.Shared.Cargo; using Content.Shared.Cargo.Components; using Content.Shared.Containers.ItemSlots; @@ -48,6 +49,7 @@ public sealed partial class CargoSystem : SharedCargoSystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly MapLoaderSystem _mapLoader = default!; + [Dependency] private readonly RadioSystem _radio = default!; private EntityQuery _xformQuery; private EntityQuery _blacklistQuery; diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 9e1970d63c9..f878eeee75c 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -199,7 +199,7 @@ public double GetEstimatedPrice(EntityPrototype prototype) /// This fires off an event to calculate the price. /// Calculating the price of an entity that somehow contains itself will likely hang. /// - public double GetPrice(EntityUid uid) + public double GetPrice(EntityUid uid, bool includeContents = true) { var ev = new PriceCalculationEvent(); RaiseLocalEvent(uid, ref ev); @@ -222,7 +222,7 @@ public double GetPrice(EntityUid uid) price += GetStaticPrice(uid); } - if (TryComp(uid, out var containers)) + if (includeContents && TryComp(uid, out var containers)) { foreach (var container in containers.Containers.Values) { diff --git a/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs new file mode 100644 index 00000000000..1f9203d299f --- /dev/null +++ b/Content.Server/Chat/V2/Commands/DeleteChatMessageCommand.cs @@ -0,0 +1,36 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class DeleteChatMessageCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("id")] + public void DeleteChatMessage([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] uint messageId) + { + if (!_manager.GetEntitySystem().Delete(messageId)) + { + ctx.ReportError(new MessageIdDoesNotExist()); + } + } +} + +public record struct MessageIdDoesNotExist() : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Loc.GetString("command-error-deletechatmessage-id-notexist")); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs new file mode 100644 index 00000000000..3d8b69dd765 --- /dev/null +++ b/Content.Server/Chat/V2/Commands/NukeChatMessagesCommand.cs @@ -0,0 +1,41 @@ +using System.Diagnostics; +using Content.Server.Administration; +using Content.Server.Chat.V2.Repository; +using Content.Shared.Administration; +using Robust.Shared.Toolshed; +using Robust.Shared.Toolshed.Errors; +using Robust.Shared.Utility; + +namespace Content.Server.Chat.V2.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Admin)] +public sealed class NukeChatMessagesCommand : ToolshedCommand +{ + [Dependency] private readonly IEntitySystemManager _manager = default!; + + [CommandImplementation("usernames")] + public void Command([CommandInvocationContext] IInvocationContext ctx, [CommandArgument] string usernamesCsv) + { + var usernames = usernamesCsv.Split(','); + + foreach (var username in usernames) + { + if (!_manager.GetEntitySystem().NukeForUsername(username, out var reason)) + { + ctx.ReportError(new NukeMessagesForUsernameError(reason)); + } + } + } +} + +public record struct NukeMessagesForUsernameError(string Reason) : IConError +{ + public FormattedMessage DescribeInner() + { + return FormattedMessage.FromUnformatted(Reason); + } + + public string? Expression { get; set; } + public Vector2i? IssueSpan { get; set; } + public StackTrace? Trace { get; set; } +} diff --git a/Content.Server/Chat/V2/Messages.cs b/Content.Server/Chat/V2/Messages.cs new file mode 100644 index 00000000000..31a563cbebf --- /dev/null +++ b/Content.Server/Chat/V2/Messages.cs @@ -0,0 +1,94 @@ +using Content.Shared.Chat.Prototypes; +using Content.Shared.Chat.V2; +using Content.Shared.Radio; + +namespace Content.Server.Chat.V2; + +/// +/// Raised locally when a comms announcement is made. +/// +public sealed class CommsAnnouncementCreatedEvent(EntityUid sender, EntityUid console, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Announcement; + public EntityUid Console = console; +} + +/// +/// Raised locally when a character speaks in Dead Chat. +/// +public sealed class DeadChatCreatedEvent(EntityUid speaker, string message, bool isAdmin) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.DeadChat; + public bool IsAdmin = isAdmin; +} + +/// +/// Raised locally when a character emotes. +/// +public sealed class EmoteCreatedEvent(EntityUid sender, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = sender; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Emote; + public float Range = range; +} + +/// +/// Raised locally when a character talks in local. +/// +public sealed class LocalChatCreatedEvent(EntityUid speaker, string message, float range) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Local; + public float Range = range; +} + +/// +/// Raised locally when a character speaks in LOOC. +/// +public sealed class LoocCreatedEvent(EntityUid speaker, string message) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Looc; +} + +/// +/// Raised locally when a character speaks on the radio. +/// +public sealed class RadioCreatedEvent( + EntityUid speaker, + string message, + RadioChannelPrototype channel) + : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public RadioChannelPrototype Channel = channel; + public MessageType Type => MessageType.Radio; +} + +/// +/// Raised locally when a character whispers. +/// +public sealed class WhisperCreatedEvent(EntityUid speaker, string message, float minRange, float maxRange) : IChatEvent +{ + public uint Id { get; set; } + public EntityUid Sender { get; set; } = speaker; + public string Message { get; set; } = message; + public MessageType Type => MessageType.Whisper; + public float MinRange = minRange; + public float MaxRange = maxRange; +} + diff --git a/Content.Server/Chat/V2/Repository/ChatRepository.cs b/Content.Server/Chat/V2/Repository/ChatRepository.cs new file mode 100644 index 00000000000..06de37128f5 --- /dev/null +++ b/Content.Server/Chat/V2/Repository/ChatRepository.cs @@ -0,0 +1,196 @@ +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Runtime.InteropServices; +using Content.Shared.Chat.V2; +using Content.Shared.Chat.V2.Repository; +using Robust.Server.Player; +using Robust.Shared.Network; +using Robust.Shared.Replays; + +namespace Content.Server.Chat.V2.Repository; + +/// +/// Stores , gives them UIDs, and issues . +/// Allows for deletion of messages. +/// +public sealed class ChatRepositorySystem : EntitySystem +{ + [Dependency] private readonly IReplayRecordingManager _replay = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + // Clocks should start at 1, as 0 indicates "clock not set" or "clock forgotten to be set by bad programmer". + private uint _nextMessageId = 1; + private Dictionary _messages = new(); + private Dictionary> _playerMessages = new(); + + public override void Initialize() + { + Refresh(); + + _replay.RecordingFinished += _ => + { + // TODO: resolve https://github.com/space-wizards/space-station-14/issues/25485 so we can dump the chat to disc. + Refresh(); + }; + } + + /// + /// Adds an to the repo and raises it with a UID for consumption elsewhere. + /// + /// The event to store and raise + /// If storing and raising succeeded. + public bool Add(IChatEvent ev) + { + if (!_player.TryGetSessionByEntity(ev.Sender, out var session)) + { + return false; + } + + var messageId = _nextMessageId; + + _nextMessageId++; + + ev.Id = messageId; + + var storedEv = new ChatRecord + { + UserName = session.Name, + UserId = session.UserId, + EntityName = Name(ev.Sender), + StoredEvent = ev + }; + + _messages[messageId] = storedEv; + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, storedEv.UserId, out _)?.Add(messageId); + + RaiseLocalEvent(ev.Sender, new MessageCreatedEvent(ev), true); + + return true; + } + + /// + /// Returns the event associated with a UID, if it exists. + /// + /// The UID of a event. + /// The event, if it exists. + public IChatEvent? GetEventFor(uint id) + { + return _messages.TryGetValue(id, out var record) ? record.StoredEvent : null; + } + + /// + /// Edits a specific message and issues a that says this happened both locally and + /// on the network. Note that this doesn't replay the message (yet), so translators and mutators won't act on it. + /// + /// The ID to edit + /// The new message to send + /// If patching did anything did anything + /// Should be used for admining and admemeing only. + public bool Patch(uint id, string message) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + ev.StoredEvent.Message = message; + + RaiseLocalEvent(new MessagePatchedEvent(id, message)); + + return true; + } + + /// + /// Deletes a message from the repository and issues a that says this has happened + /// both locally and on the network. + /// + /// The ID to delete + /// If deletion did anything + /// Should only be used for adminning + public bool Delete(uint id) + { + if (!_messages.TryGetValue(id, out var ev)) + { + return false; + } + + _messages.Remove(id); + + if (_playerMessages.TryGetValue(ev.UserId, out var set)) + { + set.Remove(id); + } + + RaiseLocalEvent(new MessageDeletedEvent(id)); + + return true; + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUsername(string userName, [NotNullWhen(false)] out string? reason) + { + if (!_player.TryGetUserId(userName, out var userId)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenotexist", ("username", userName)); + + return false; + } + + return NukeForUserId(userId, out reason); + } + + /// + /// Nukes a user's entire chat history from the repo and issues a saying this has + /// happened. + /// + /// The user ID to nuke. + /// Why nuking failed, if it did. + /// If nuking did anything. + /// Note that this could be a very large event, as we send every single event ID over the wire. + /// By necessity we can't leak the player-source of chat messages (or if they even have the same origin) because of + /// client modders who could use that information to cheat/metagrudge/etc >:( + public bool NukeForUserId(NetUserId userId, [NotNullWhen(false)] out string? reason) + { + if (!_playerMessages.TryGetValue(userId, out var dict)) + { + reason = Loc.GetString("command-error-nukechatmessages-usernames-usernamenomessages", ("userId", userId.UserId.ToString())); + + return false; + } + + foreach (var id in dict) + { + _messages.Remove(id); + } + + var ev = new MessagesNukedEvent(dict); + + CollectionsMarshal.GetValueRefOrAddDefault(_playerMessages, userId, out _)?.Clear(); + + RaiseLocalEvent(ev); + + reason = null; + + return true; + } + + /// + /// Dumps held chat storage data and refreshes the repo. + /// + public void Refresh() + { + _nextMessageId = 1; + _messages.Clear(); + _playerMessages.Clear(); + } +} diff --git a/Content.Server/Chemistry/Components/ReagentTankComponent.cs b/Content.Server/Chemistry/Components/ReagentTankComponent.cs deleted file mode 100644 index cc0d2657d7d..00000000000 --- a/Content.Server/Chemistry/Components/ReagentTankComponent.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.FixedPoint; - - -namespace Content.Server.Chemistry.Components -{ - [RegisterComponent] - public sealed partial class ReagentTankComponent : Component - { - [DataField("transferAmount")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); - - [DataField("tankType")] - [ViewVariables(VVAccess.ReadWrite)] - public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; - } - - public enum ReagentTankType : byte - { - Unspecified, - Fuel - } -} diff --git a/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs b/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs index 468212f5eaf..755312554c2 100644 --- a/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Server/Chemistry/Containers/EntitySystems/SolutionContainerSystem.cs @@ -149,12 +149,12 @@ private Entity SpawnSolutionUnini var relation = new ContainedSolutionComponent() { Container = container.Owner, ContainerName = name }; AddComp(uid, relation); + MetaData.SetEntityName(uid, $"solution - {name}"); ContainerSystem.Insert(uid, container, force: true); return (uid, solution, relation); } - #region Event Handlers private void OnMapInit(Entity entity, ref MapInitEvent args) diff --git a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs index 032374d4a55..d5f7655f884 100644 --- a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs @@ -30,7 +30,7 @@ private void OnAfterInteract(Entity entity, ref AfterInt return; } - if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution)) + if (!_solutionContainers.TryGetMixableSolution(args.Target.Value, out var solution, out _)) return; _popup.PopupEntity(Loc.GetString(entity.Comp.MixMessage, ("mixed", Identity.Entity(args.Target.Value, EntityManager)), ("mixer", Identity.Entity(entity.Owner, EntityManager))), args.User, args.User); diff --git a/Content.Server/Clothing/MagbootsSystem.cs b/Content.Server/Clothing/MagbootsSystem.cs index bc6880552fc..f12558389e3 100644 --- a/Content.Server/Clothing/MagbootsSystem.cs +++ b/Content.Server/Clothing/MagbootsSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Atmos.Components; using Content.Shared.Alert; using Content.Shared.Clothing; -using Content.Shared.Inventory.Events; namespace Content.Server.Clothing; @@ -13,8 +12,8 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } protected override void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) @@ -38,19 +37,13 @@ protected override void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bo } } - private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, MagbootsComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, false, component); - } + UpdateMagbootEffects(args.Wearer, uid, false, component); } - private void OnGotEquipped(EntityUid uid, MagbootsComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, MagbootsComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - UpdateMagbootEffects(args.Equipee, uid, true, component); - } + UpdateMagbootEffects(args.Wearer, uid, true, component); } } diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 7fd73de9c38..56660683822 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -1,4 +1,5 @@ using System.Collections.Immutable; +using System.Runtime.InteropServices; using System.Text.Json.Nodes; using System.Threading.Tasks; using Content.Server.Database; @@ -10,6 +11,7 @@ using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; +using Robust.Shared.Timing; namespace Content.Server.Connection @@ -17,6 +19,18 @@ namespace Content.Server.Connection public interface IConnectionManager { void Initialize(); + + /// + /// Temporarily allow a user to bypass regular connection requirements. + /// + /// + /// The specified user will be allowed to bypass regular player cap, + /// whitelist and panic bunker restrictions for . + /// Bans are not bypassed. + /// + /// The user to give a temporary bypass. + /// How long the bypass should last for. + void AddTemporaryConnectBypass(NetUserId user, TimeSpan duration); } /// @@ -31,11 +45,18 @@ public sealed class ConnectionManager : IConnectionManager [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly ILocalizationManager _loc = default!; [Dependency] private readonly ServerDbEntryManager _serverDbEntry = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ILogManager _logManager = default!; + + private readonly Dictionary _temporaryBypasses = []; + private ISawmill _sawmill = default!; private List _connectedWhitelistedPlayers = new(); // DeltaV - Soft whitelist improvements public void Initialize() { + _sawmill = _logManager.GetSawmill("connections"); + _netMgr.Connecting += NetMgrOnConnecting; _netMgr.Connected += OnConnected; // DeltaV - Soft whitelist improvements _netMgr.Disconnect += OnDisconnected; // DeltaV - Soft whitelist improvements @@ -44,6 +65,15 @@ public void Initialize() // _netMgr.HandleApprovalCallback = HandleApproval; } + public void AddTemporaryConnectBypass(NetUserId user, TimeSpan duration) + { + ref var time = ref CollectionsMarshal.GetValueRefOrAddDefault(_temporaryBypasses, user, out _); + var newTime = _gameTiming.RealTime + duration; + // Make sure we only update the time if we wouldn't shrink it. + if (newTime > time) + time = newTime; + } + /* private async Task HandleApproval(NetApprovalEventArgs eventArgs) { @@ -113,6 +143,20 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) hwId = null; } + var bans = await _db.GetServerBansAsync(addr, userId, hwId, includeUnbanned: false); + if (bans.Count > 0) + { + var firstBan = bans[0]; + var message = firstBan.FormatBanMessage(_cfg, _loc); + return (ConnectionDenyReason.Ban, message, bans); + } + + if (HasTemporaryBypass(userId)) + { + _sawmill.Verbose("User {UserId} has temporary bypass, skipping further connection checks", userId); + return null; + } + var adminData = await _dbManager.GetAdminDataForAsync(e.UserId); if (_cfg.GetCVar(CCVars.PanicBunkerEnabled) && adminData == null) @@ -171,16 +215,8 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) return (ConnectionDenyReason.Full, Loc.GetString("soft-player-cap-full"), null); } - var bans = await _db.GetServerBansAsync(addr, userId, hwId, includeUnbanned: false); - if (bans.Count > 0) - { - var firstBan = bans[0]; - var message = firstBan.FormatBanMessage(_cfg, _loc); - return (ConnectionDenyReason.Ban, message, bans); - } - // DeltaV - Replace existing softwhitelist implementation - if (false) //_cfg.GetCVar(CCVars.WhitelistEnabled)) + if (false)// _cfg.GetCVar(CCVars.WhitelistEnabled)) { var min = _cfg.GetCVar(CCVars.WhitelistMinPlayers); var max = _cfg.GetCVar(CCVars.WhitelistMaxPlayers); @@ -222,6 +258,11 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) return null; } + private bool HasTemporaryBypass(NetUserId user) + { + return _temporaryBypasses.TryGetValue(user, out var time) && time > _gameTiming.RealTime; + } + private async Task AssignUserIdCallback(string name) { if (!_cfg.GetCVar(CCVars.GamePersistGuests)) diff --git a/Content.Server/Connection/GrantConnectBypassCommand.cs b/Content.Server/Connection/GrantConnectBypassCommand.cs new file mode 100644 index 00000000000..e2d0d7338a4 --- /dev/null +++ b/Content.Server/Connection/GrantConnectBypassCommand.cs @@ -0,0 +1,60 @@ +using Content.Server.Administration; +using Content.Shared.Administration; +using Robust.Shared.Console; + +namespace Content.Server.Connection; + +[AdminCommand(AdminFlags.Admin)] +public sealed class GrantConnectBypassCommand : LocalizedCommands +{ + private static readonly TimeSpan DefaultDuration = TimeSpan.FromHours(1); + + [Dependency] private readonly IPlayerLocator _playerLocator = default!; + [Dependency] private readonly IConnectionManager _connectionManager = default!; + + public override string Command => "grant_connect_bypass"; + + public override async void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (args.Length is not (1 or 2)) + { + shell.WriteError(Loc.GetString("cmd-grant_connect_bypass-invalid-args")); + return; + } + + var argPlayer = args[0]; + var info = await _playerLocator.LookupIdByNameOrIdAsync(argPlayer); + if (info == null) + { + shell.WriteError(Loc.GetString("cmd-grant_connect_bypass-unknown-user", ("user", argPlayer))); + return; + } + + var duration = DefaultDuration; + if (args.Length > 1) + { + var argDuration = args[2]; + if (!uint.TryParse(argDuration, out var minutes)) + { + shell.WriteLine(Loc.GetString("cmd-grant_connect_bypass-invalid-duration", ("duration", argDuration))); + return; + } + + duration = TimeSpan.FromMinutes(minutes); + } + + _connectionManager.AddTemporaryConnectBypass(info.UserId, duration); + shell.WriteLine(Loc.GetString("cmd-grant_connect_bypass-success", ("user", argPlayer))); + } + + public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length == 1) + return CompletionResult.FromHint(Loc.GetString("cmd-grant_connect_bypass-arg-user")); + + if (args.Length == 2) + return CompletionResult.FromHint(Loc.GetString("cmd-grant_connect_bypass-arg-duration")); + + return CompletionResult.Empty; + } +} diff --git a/Content.Server/Construction/Components/WelderRefinableComponent.cs b/Content.Server/Construction/Components/WelderRefinableComponent.cs index 9d8958f7614..ed37d6f74b8 100644 --- a/Content.Server/Construction/Components/WelderRefinableComponent.cs +++ b/Content.Server/Construction/Components/WelderRefinableComponent.cs @@ -1,22 +1,24 @@ using Content.Shared.Tools; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Prototypes; -namespace Content.Server.Construction.Components +namespace Content.Server.Construction.Components; + +/// +/// Used for something that can be refined by welder. +/// For example, glass shard can be refined to glass sheet. +/// +[RegisterComponent] +public sealed partial class WelderRefinableComponent : Component { - /// - /// Used for something that can be refined by welder. - /// For example, glass shard can be refined to glass sheet. - /// - [RegisterComponent] - public sealed partial class WelderRefinableComponent : Component - { - [DataField("refineResult")] - public HashSet? RefineResult = new(); + [DataField] + public HashSet? RefineResult = new(); + + [DataField] + public float RefineTime = 2f; - [DataField("refineTime")] - public float RefineTime = 2f; + [DataField] + public float RefineFuel; - [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; - } + [DataField] + public ProtoId QualityNeeded = "Welding"; } diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 59a5fd6af51..ad7b2a11b0e 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -11,10 +11,8 @@ using Content.Shared.Interaction; using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; -using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; using Robust.Shared.Containers; -using Robust.Shared.Map; using Robust.Shared.Utility; #if EXCEPTION_TOLERANCE // ReSharper disable once RedundantUsingDirective @@ -369,7 +367,8 @@ private HandleResult HandleInteraction(EntityUid uid, object ev, ConstructionGra TimeSpan.FromSeconds(toolInsertStep.DoAfter), new [] { toolInsertStep.Tool }, new ConstructionInteractDoAfterEvent(EntityManager, interactUsing), - out var doAfter); + out var doAfter, + toolInsertStep.Fuel); return result && doAfter != null ? HandleResult.DoAfter : HandleResult.False; } diff --git a/Content.Server/Construction/RefiningSystem.cs b/Content.Server/Construction/RefiningSystem.cs index b9d80c7170a..53cfb14528e 100644 --- a/Content.Server/Construction/RefiningSystem.cs +++ b/Content.Server/Construction/RefiningSystem.cs @@ -1,11 +1,8 @@ using Content.Server.Construction.Components; using Content.Server.Stack; using Content.Shared.Construction; -using Content.Shared.DoAfter; using Content.Shared.Interaction; using Content.Shared.Stacks; -using Content.Shared.Tools; -using Robust.Shared.Serialization; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; namespace Content.Server.Construction @@ -26,7 +23,7 @@ private void OnInteractUsing(EntityUid uid, WelderRefinableComponent component, if (args.Handled) return; - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent()); + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, component.RefineTime, component.QualityNeeded, new WelderRefineDoAfterEvent(), fuel: component.RefineFuel); } private void OnDoAfter(EntityUid uid, WelderRefinableComponent component, WelderRefineDoAfterEvent args) @@ -41,7 +38,7 @@ private void OnDoAfter(EntityUid uid, WelderRefinableComponent component, Welder // spawn each result after refine foreach (var result in component.RefineResult!) { - var droppedEnt = EntityManager.SpawnEntity(result, resultPosition); + var droppedEnt = Spawn(result, resultPosition); // TODO: If something has a stack... Just use a prototype with a single thing in the stack. // This is not a good way to do it. diff --git a/Content.Server/Content.Server.csproj b/Content.Server/Content.Server.csproj index 8782454eacb..70e404fdef0 100644 --- a/Content.Server/Content.Server.csproj +++ b/Content.Server/Content.Server.csproj @@ -28,7 +28,6 @@ - diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs index efec18485c2..9ffe9444867 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs @@ -3,7 +3,7 @@ using Content.Shared.CriminalRecords; using Content.Shared.Security; using Content.Shared.StationRecords; -using Robust.Shared.Timing; +using Content.Server.GameTicking; namespace Content.Server.CriminalRecords.Systems; @@ -17,7 +17,7 @@ namespace Content.Server.CriminalRecords.Systems; /// public sealed class CriminalRecordsSystem : EntitySystem { - [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly StationRecordsSystem _stationRecords = default!; public override void Initialize() @@ -71,7 +71,7 @@ public bool TryAddHistory(StationRecordKey key, CrimeHistory entry) /// public bool TryAddHistory(StationRecordKey key, string line) { - var entry = new CrimeHistory(_timing.CurTime, line); + var entry = new CrimeHistory(_ticker.RoundDuration(), line); return TryAddHistory(key, entry); } diff --git a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs index 264ec4a8ec4..42676c1891c 100644 --- a/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnToolInteractSystem.cs @@ -1,7 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Damage.Components; -using Content.Server.Tools.Components; -using Content.Shared.Item; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Interaction; diff --git a/Content.Server/Database/DatabaseRecords.cs b/Content.Server/Database/DatabaseRecords.cs index 460a6c8222a..c0d81147bb4 100644 --- a/Content.Server/Database/DatabaseRecords.cs +++ b/Content.Server/Database/DatabaseRecords.cs @@ -123,6 +123,6 @@ public sealed record PlayerRecord( IPAddress LastSeenAddress, ImmutableArray? HWId); -public sealed record RoundRecord(int Id, DateTimeOffset StartDate, ServerRecord Server); +public sealed record RoundRecord(int Id, DateTimeOffset? StartDate, ServerRecord Server); public sealed record ServerRecord(int Id, string Name); diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index ad72e16d9fa..67b29209a34 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -696,7 +696,7 @@ public async Task AddAdminRankAsync(AdminRank rank, CancellationToken cancel) await db.DbContext.SaveChangesAsync(cancel); } - public virtual async Task AddNewRound(Server server, params Guid[] playerIds) + public async Task AddNewRound(Server server, params Guid[] playerIds) { await using var db = await GetDb(); diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index 46886fe4d18..88ecf820020 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -452,34 +452,6 @@ public override async Task AddConnectionLogAsync( return (admins.Select(p => (p.a, p.LastSeenUserName)).ToArray(), adminRanks)!; } - public override async Task AddNewRound(Server server, params Guid[] playerIds) - { - await using var db = await GetDb(); - - var players = await db.DbContext.Player - .Where(player => playerIds.Contains(player.UserId)) - .ToListAsync(); - - var nextId = 1; - if (await db.DbContext.Round.AnyAsync()) - { - nextId = db.DbContext.Round.Max(round => round.Id) + 1; - } - - var round = new Round - { - Id = nextId, - Players = players, - ServerId = server.Id - }; - - db.DbContext.Round.Add(round); - - await db.DbContext.SaveChangesAsync(); - - return round.Id; - } - protected override IQueryable StartAdminLogsQuery(ServerDbContext db, LogFilter? filter = null) { IQueryable query = db.AdminLog; diff --git a/Content.Server/DeltaV/Abilities/Borgs/CandyFlavorPrototype.cs b/Content.Server/DeltaV/Abilities/Borgs/CandyFlavorPrototype.cs new file mode 100644 index 00000000000..3b5d2dbe9df --- /dev/null +++ b/Content.Server/DeltaV/Abilities/Borgs/CandyFlavorPrototype.cs @@ -0,0 +1,31 @@ +using Content.Shared.Nutrition; +using Robust.Shared.Prototypes; + +namespace Content.Server.DeltaV.Abilities.Borgs; + +/// +/// Describes the color and flavor profile of lollipops and gumballs. Yummy! +/// +[Prototype("candyFlavor")] +public sealed partial class CandyFlavorPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The display name for this candy. Not localized. + /// + [DataField] public string Name { get; private set; } = ""; + + /// + /// The color of the candy. + /// + [DataField] public Color Color { get; private set; } = Color.White; + + /// + /// How the candy tastes like. + /// + [DataField] + public HashSet> Flavors { get; private set; } = []; +} diff --git a/Content.Server/DeltaV/Abilities/Borgs/RandomizedCandySystem.cs b/Content.Server/DeltaV/Abilities/Borgs/RandomizedCandySystem.cs new file mode 100644 index 00000000000..e2ad0c24114 --- /dev/null +++ b/Content.Server/DeltaV/Abilities/Borgs/RandomizedCandySystem.cs @@ -0,0 +1,83 @@ +using System.Linq; +using Content.Server.Nutrition.Components; +using Content.Shared.DeltaV.Abilities.Borgs; +using Content.Shared.Nutrition; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.DeltaV.Abilities.Borgs; + +/// +/// Gives things with a a random flavor, with corresponding appearance and +/// examine text. +/// +public sealed partial class RandomizedCandySystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + /// + /// Flavors that are masked by the candy. + /// + private static readonly string[] MaskedReagents = { "Sugar", "Iron" }; // sugar is obvious and iron is "metallic" :( + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnInit); + } + + private void OnInit(EntityUid uid, RandomizedCandyComponent candyComp, MapInitEvent args) + { + // pick a random flavor + var flavors = _prototypeManager.EnumeratePrototypes(); + var candyFlavor = _random.Pick(flavors.ToList()); + + // color the candy :3 + _appearance.SetData(uid, RandomizedCandyVisuals.Color, candyFlavor.Color); + + // flavor the candy! yummy + var flavorProfile = EnsureComp(uid); + flavorProfile.Flavors.Clear(); // it shouldn't be flavored but clear it anyway + foreach (var flavorId in candyFlavor.Flavors) + { + flavorProfile.Flavors.Add(flavorId); + } + flavorProfile.IgnoreReagents.UnionWith(MaskedReagents); // otherwise the nom text gets too long + + // update the candy's metadata with fluff + var meta = MetaData(uid); + if (!string.IsNullOrEmpty(candyFlavor.Name)) + _metaData.SetEntityName(uid, $"{candyFlavor.Name} {meta.EntityName}", meta); + _metaData.SetEntityDescription(uid, $"{meta.EntityDescription} {GetExamineFluff(candyFlavor.Flavors)}"); + Dirty(uid, meta); + } + + // this technically duplicates code from FlavorProfileSystem but what we would need to call + // is upstream code in a private method with fixed loc strings and unnecessary sorting, so i don't want to touch it + private string GetExamineFluff(HashSet> flavorIds) + { + var flavors = new List(); + foreach (var flavorId in flavorIds) + { + if (_prototypeManager.TryIndex(flavorId, out var flavor) && + Loc.TryGetString(flavor.FlavorDescription, out var flavorText)) + { + flavors.Add(flavorText); + } + } + + return flavors.Count switch + { + > 1 => Loc.GetString("candy-flavor-profile-multiple", + ("lastFlavor", flavors.Pop()), + ("flavors", string.Join(", ", flavors)) + ), + 1 => Loc.GetString("candy-flavor-profile", ("flavor", flavors.Single())), + _ => Loc.GetString("candy-flavor-profile-unknown") + }; + } +} diff --git a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs index f0538c47f95..ba042d89662 100644 --- a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs +++ b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs @@ -39,7 +39,7 @@ protected override void Started(EntityUid uid, PirateRadioSpawnRuleComponent com var xformQuery = GetEntityQuery(); var aabbs = EntityQuery().SelectMany(x => x.Grids.Select(x => - xformQuery.GetComponent(x).WorldMatrix.TransformBox(_mapManager.GetGridComp(x).LocalAABB))) + xformQuery.GetComponent(x).WorldMatrix.TransformBox(_entities.GetComponent(x).LocalAABB))) .ToArray(); if (aabbs.Length < 1) return; var aabb = aabbs[0]; diff --git a/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs new file mode 100644 index 00000000000..f0499dc6a2d --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/BurnBodyBehavior.cs @@ -0,0 +1,32 @@ +using Content.Shared.Body.Components; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using JetBrains.Annotations; +using Robust.Server.GameObjects; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[UsedImplicitly] +[DataDefinition] +public sealed partial class BurnBodyBehavior : IThresholdBehavior +{ + + public void Execute(EntityUid bodyId, DestructibleSystem system, EntityUid? cause = null) + { + var transformSystem = system.EntityManager.System(); + var inventorySystem = system.EntityManager.System(); + var sharedPopupSystem = system.EntityManager.System(); + + if (system.EntityManager.TryGetComponent(bodyId, out var comp)) + { + foreach (var item in inventorySystem.GetHandOrInventoryEntities(bodyId)) + { + transformSystem.DropNextTo(item, bodyId); + } + } + + sharedPopupSystem.PopupCoordinates(Loc.GetString("bodyburn-text-others", ("name", bodyId)), transformSystem.GetMoverCoordinates(bodyId), PopupType.LargeCaution); + + system.EntityManager.QueueDeleteEntity(bodyId); + } +} diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs index ed5777c42aa..0fa3c06c04b 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SpawnEntitiesBehavior.cs @@ -23,7 +23,10 @@ public sealed partial class SpawnEntitiesBehavior : IThresholdBehavior public float Offset { get; set; } = 0.5f; [DataField("transferForensics")] - public bool DoTransferForensics = false; + public bool DoTransferForensics; + + [DataField] + public bool SpawnInContainer; public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause = null) { @@ -49,7 +52,9 @@ public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause if (EntityPrototypeHelpers.HasComponent(entityId, system.PrototypeManager, system.ComponentFactory)) { - var spawned = system.EntityManager.SpawnEntity(entityId, position.Offset(getRandomVector())); + var spawned = SpawnInContainer + ? system.EntityManager.SpawnNextToOrDrop(entityId, owner) + : system.EntityManager.SpawnEntity(entityId, position.Offset(getRandomVector())); system.StackSystem.SetCount(spawned, count); TransferForensics(spawned, system, owner); @@ -58,7 +63,9 @@ public void Execute(EntityUid owner, DestructibleSystem system, EntityUid? cause { for (var i = 0; i < count; i++) { - var spawned = system.EntityManager.SpawnEntity(entityId, position.Offset(getRandomVector())); + var spawned = SpawnInContainer + ? system.EntityManager.SpawnNextToOrDrop(entityId, owner) + : system.EntityManager.SpawnEntity(entityId, position.Offset(getRandomVector())); TransferForensics(spawned, system, owner); } diff --git a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs index 65a539eb08e..4ef07a0cca8 100644 --- a/Content.Server/Electrocution/Components/ElectrifiedComponent.cs +++ b/Content.Server/Electrocution/Components/ElectrifiedComponent.cs @@ -85,4 +85,7 @@ public sealed partial class ElectrifiedComponent : Component [DataField("shockVolume")] public float ShockVolume = 20; + + [DataField] + public float Probability = 1f; } diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 11633062829..8291e97efe4 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -213,6 +213,9 @@ public bool TryDoElectrifiedAct(EntityUid uid, EntityUid targetUid, if (!IsPowered(uid, electrified, transform)) return false; + if (!_random.Prob(electrified.Probability)) + return false; + EnsureComp(uid); _appearance.SetData(uid, ElectrifiedVisuals.IsPowered, true); diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index bf7f3ea84ab..3cdf3bfe8e2 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -102,6 +102,7 @@ public override void Init() IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); _voteManager.Initialize(); _updateManager.Initialize(); @@ -167,6 +168,7 @@ protected override void Dispose(bool disposing) { _playTimeTracking?.Shutdown(); _dbManager?.Shutdown(); + IoCManager.Resolve().Shutdown(); } private static void LoadConfigPresets(IConfigurationManager cfg, IResourceManager res, ISawmill sawmill) diff --git a/Content.Server/Entry/IgnoredComponents.cs b/Content.Server/Entry/IgnoredComponents.cs index fe073da7a49..d9b81c8e5a5 100644 --- a/Content.Server/Entry/IgnoredComponents.cs +++ b/Content.Server/Entry/IgnoredComponents.cs @@ -14,12 +14,13 @@ public static class IgnoredComponents "Icon", "HandheldGPS", "CableVisualizer", + "SolutionItemStatus", "UIFragment", "PdaBorderColor", "InventorySlots", "LightFade", "HolidayRsiSwap", - "OptionsVisualizer", + "OptionsVisualizer" }; } } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 94f55855362..3675c214b14 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -153,7 +153,7 @@ private void HandleExplodeTrigger(EntityUid uid, ExplodeOnTriggerComponent compo private void HandleFlashTrigger(EntityUid uid, FlashOnTriggerComponent component, TriggerEvent args) { // TODO Make flash durations sane ffs. - _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f); + _flashSystem.FlashArea(uid, args.User, component.Range, component.Duration * 1000f, probability: component.Probability); args.Handled = true; } diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index fe7eb81d1e1..dd8cdab426c 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -19,6 +19,7 @@ using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Random; using Robust.Shared.Timing; using InventoryComponent = Content.Shared.Inventory.InventoryComponent; @@ -37,6 +38,7 @@ internal sealed class FlashSystem : SharedFlashSystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() { @@ -63,7 +65,7 @@ private void OnFlashMeleeHit(EntityUid uid, FlashComponent comp, MeleeHitEvent a args.Handled = true; foreach (var e in args.HitEntities) { - Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true); + Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true, stunDuration: comp.MeleeStunDuration); } } @@ -73,7 +75,7 @@ private void OnFlashUseInHand(EntityUid uid, FlashComponent comp, UseInHandEvent return; args.Handled = true; - FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true); + FlashArea(uid, args.User, comp.Range, comp.AoeFlashDuration, comp.SlowTo, true, comp.Probability); } private bool UseFlash(EntityUid uid, FlashComponent comp, EntityUid user) @@ -113,7 +115,8 @@ public void Flash(EntityUid target, float slowTo, bool displayPopup = true, FlashableComponent? flashable = null, - bool melee = false) + bool melee = false, + TimeSpan? stunDuration = null) { if (!Resolve(target, ref flashable, false)) return; @@ -137,41 +140,46 @@ public void Flash(EntityUid target, flashable.Duration = flashDuration / 1000f; // TODO: Make this sane... Dirty(target, flashable); - _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, + if (stunDuration != null) + { + _stun.TryParalyze(target, stunDuration.Value, true); + } + else + { + _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, slowTo, slowTo); + } if (displayPopup && user != null && target != user && Exists(user.Value)) { _popup.PopupEntity(Loc.GetString("flash-component-user-blinds-you", ("user", Identity.Entity(user.Value, EntityManager))), target, target); } - } - public void FlashArea(EntityUid source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, SoundSpecifier? sound = null) + public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - var transform = EntityManager.GetComponent(source); + var transform = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); var flashableQuery = GetEntityQuery(); foreach (var entity in _entityLookup.GetEntitiesInRange(transform.Coordinates, range)) { - if (!flashableQuery.TryGetComponent(entity, out var flashable)) + if (!_random.Prob(probability)) continue; + if (!flashableQuery.TryGetComponent(entity, out var flashable)) + continue; // Check for unobstructed entities while ignoring the mobs with flashable components. - if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, (e) => e == source)) + if (!_interaction.InRangeUnobstructed(entity, mapPosition, range, flashable.CollisionGroup, predicate: (e) => flashableQuery.HasComponent(e) || e == source.Owner)) continue; // They shouldn't have flash removed in between right? Flash(entity, user, source, duration, slowTo, displayPopup, flashableQuery.GetComponent(entity)); } - if (sound != null) - { - _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); - } + _audio.PlayPvs(sound, source, AudioParams.Default.WithVolume(1f).WithMaxDistance(3f)); } private void OnInventoryFlashAttempt(EntityUid uid, InventoryComponent component, FlashAttemptEvent args) diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index 7780e5d4676..d02dd44e81f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -1,16 +1,14 @@ using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Fluids.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.CombatMode.Pacification; using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Fluids.Components; using Content.Shared.IdentityManagement; -using Content.Shared.Inventory.Events; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Spillable; @@ -29,8 +27,8 @@ protected override void InitializeSpillable() SubscribeLocalEvent(SpillOnLand); // Openable handles the event if it's closed SubscribeLocalEvent(SplashOnMeleeHit, after: [typeof(OpenableSystem)]); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnAttemptPacifiedThrow); @@ -99,20 +97,11 @@ private void SplashOnMeleeHit(Entity entity, ref MeleeHitEve } } - private void OnGotEquipped(Entity entity, ref GotEquippedEvent args) + private void OnGotEquipped(Entity entity, ref ClothingGotEquippedEvent args) { if (!entity.Comp.SpillWorn) return; - if (!TryComp(entity, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - if (!_solutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.SolutionName, out var soln, out var solution)) return; @@ -124,10 +113,10 @@ private void OnGotEquipped(Entity entity, ref GotEquippedEve // spill all solution on the player var drainedSolution = _solutionContainerSystem.Drain(entity.Owner, soln.Value, solution.Volume); - TrySplashSpillAt(entity.Owner, Transform(args.Equipee).Coordinates, drainedSolution, out _); + TrySplashSpillAt(entity.Owner, Transform(args.Wearer).Coordinates, drainedSolution, out _); } - private void OnGotUnequipped(Entity entity, ref GotUnequippedEvent args) + private void OnGotUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) { if (!entity.Comp.SpillWorn) return; diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index a9ef23a2f58..1445e253f38 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -103,7 +103,7 @@ public void CopyForensicsFrom(ForensicsComponent src, EntityUid target) private void OnAfterInteract(EntityUid uid, CleansForensicsComponent component, AfterInteractEvent args) { - if (args.Handled) + if (args.Handled || !args.CanReach) return; if (!TryComp(args.Target, out var forensicsComp)) diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 900554d8241..797d086710c 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -24,6 +24,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -180,7 +181,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var aabbs = EntityQuery().SelectMany(x => x.Grids.Select(x => - xformQuery.GetComponent(x).WorldMatrix.TransformBox(_mapManager.GetGridComp(x).LocalAABB))) + xformQuery.GetComponent(x).WorldMatrix.TransformBox(Comp(x).LocalAABB))) .ToArray(); var aabb = aabbs[0]; diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs index 5caa223c9c1..ba9fb2ccbcc 100644 --- a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -217,7 +217,6 @@ private void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref Aft _npcFaction.AddFaction(ev.Target, RevolutionaryNpcFaction); var revComp = EnsureComp(ev.Target); - _stun.TryParalyze(ev.Target, comp.StunTime, true); if (ev.User != null) { diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index bfd6393790a..e7527e2c76d 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Explosion; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; -using Content.Shared.IdentityManagement; using Content.Shared.Input; using Content.Shared.Inventory.VirtualItem; using Content.Shared.Movement.Pulling.Components; @@ -17,8 +16,6 @@ using Content.Shared.Movement.Pulling.Systems; using Content.Shared.Stacks; using Content.Shared.Throwing; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; using Robust.Shared.GameStates; using Robust.Shared.Input.Binding; using Robust.Shared.Map; @@ -160,7 +157,7 @@ private void HandlePullStopped(EntityUid uid, HandsComponent component, PullStop continue; } - QueueDel(hand.HeldEntity.Value); + TryDrop(args.PullerUid, hand, handsComp: component); break; } } diff --git a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs index 233a48c95ff..9631decaaef 100644 --- a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs +++ b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.cs @@ -1,36 +1,23 @@ -using Content.Shared.Examine; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; -using Content.Shared.IdentityManagement; using Content.Shared.Preferences; using Content.Shared.Verbs; using Robust.Shared.GameObjects.Components.Localization; -using Robust.Shared.Prototypes; namespace Content.Server.Humanoid; public sealed partial class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem { [Dependency] private readonly MarkingManager _markingManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnMarkingsSet); SubscribeLocalEvent(OnBaseLayersSet); SubscribeLocalEvent>(OnVerbsRequest); - SubscribeLocalEvent(OnExamined); - } - - private void OnExamined(EntityUid uid, HumanoidAppearanceComponent component, ExaminedEvent args) - { - var identity = Identity.Entity(uid, EntityManager); - var species = GetSpeciesRepresentation(component.Species).ToLower(); - var age = GetAgeRepresentation(component.Species, component.Age); - - args.PushText(Loc.GetString("humanoid-appearance-component-examine", ("user", identity), ("age", age), ("species", species))); } // this was done enough times that it only made sense to do it here @@ -166,42 +153,4 @@ public void SetMarkingColor(EntityUid uid, MarkingCategories category, int index Dirty(uid, humanoid); } - - /// - /// Takes ID of the species prototype, returns UI-friendly name of the species. - /// - public string GetSpeciesRepresentation(string speciesId) - { - if (_prototypeManager.TryIndex(speciesId, out var species)) - { - return Loc.GetString(species.Name); - } - else - { - return Loc.GetString("humanoid-appearance-component-unknown-species"); - } - } - - public string GetAgeRepresentation(string species, int age) - { - _prototypeManager.TryIndex(species, out var speciesPrototype); - - if (speciesPrototype == null) - { - Log.Error("Tried to get age representation of species that couldn't be indexed: " + species); - return Loc.GetString("identity-age-young"); - } - - if (age < speciesPrototype.YoungAge) - { - return Loc.GetString("identity-age-young"); - } - - if (age < speciesPrototype.OldAge) - { - return Loc.GetString("identity-age-middle-aged"); - } - - return Loc.GetString("identity-age-old"); - } } diff --git a/Content.Server/IdentityManagement/IdentitySystem.cs b/Content.Server/IdentityManagement/IdentitySystem.cs index ec8412ed1ab..a959b96ef97 100644 --- a/Content.Server/IdentityManagement/IdentitySystem.cs +++ b/Content.Server/IdentityManagement/IdentitySystem.cs @@ -62,6 +62,7 @@ private void OnMapInit(EntityUid uid, IdentityComponent component, MapInitEvent { var ident = Spawn(null, Transform(uid).Coordinates); + _metaData.SetEntityName(ident, "identity"); QueueIdentityUpdate(uid); _container.Insert(ident, component.IdentityEntitySlot); } diff --git a/Content.Server/ImmovableRod/ImmovableRodComponent.cs b/Content.Server/ImmovableRod/ImmovableRodComponent.cs index f3605914795..05fa3d9d9b2 100644 --- a/Content.Server/ImmovableRod/ImmovableRodComponent.cs +++ b/Content.Server/ImmovableRod/ImmovableRodComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Damage; using Robust.Shared.Audio; namespace Content.Server.ImmovableRod; @@ -36,4 +37,16 @@ public sealed partial class ImmovableRodComponent : Component /// [DataField("destroyTiles")] public bool DestroyTiles = true; + + /// + /// If true, this will gib & delete bodies + /// + [DataField] + public bool ShouldGib = true; + + /// + /// Damage done, if not gibbing + /// + [DataField] + public DamageSpecifier? Damage; } diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index 429361cd8cd..f9873b0d6a9 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -1,9 +1,10 @@ using Content.Server.Body.Systems; +using Content.Server.Polymorph.Components; using Content.Server.Popups; using Content.Shared.Body.Components; +using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Popups; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -22,6 +23,8 @@ public sealed class ImmovableRodSystem : EntitySystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; public override void Update(float frameTime) { @@ -57,18 +60,21 @@ private void OnMapInit(EntityUid uid, ImmovableRodComponent component, MapInitEv _physics.SetFriction(uid, phys, 0f); _physics.SetBodyStatus(uid, phys, BodyStatus.InAir); - if (!component.RandomizeVelocity) - return; - var xform = Transform(uid); - var vel = component.DirectionOverride.Degrees switch + var (worldPos, worldRot) = _transform.GetWorldPositionRotation(uid); + var vel = worldRot.ToWorldVec() * component.MaxSpeed; + + if (component.RandomizeVelocity) { - 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), - _ => xform.WorldRotation.RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) - }; + vel = component.DirectionOverride.Degrees switch + { + 0f => _random.NextVector2(component.MinSpeed, component.MaxSpeed), + _ => worldRot.RotateVec(component.DirectionOverride.ToVec()) * _random.NextFloat(component.MinSpeed, component.MaxSpeed) + }; + } _physics.ApplyLinearImpulse(uid, vel, body: phys); - xform.LocalRotation = (vel - xform.WorldPosition).ToWorldAngle() + MathHelper.PiOver2; + xform.LocalRotation = (vel - worldPos).ToWorldAngle() + MathHelper.PiOver2; } } @@ -94,12 +100,28 @@ private void OnCollide(EntityUid uid, ImmovableRodComponent component, ref Start return; } - // gib em + // dont delete/hurt self if polymoprhed into a rod + if (TryComp(uid, out var polymorphed)) + { + if (polymorphed.Parent == ent) + return; + } + + // gib or damage em if (TryComp(ent, out var body)) { component.MobCount++; - _popup.PopupEntity(Loc.GetString("immovable-rod-penetrated-mob", ("rod", uid), ("mob", ent)), uid, PopupType.LargeCaution); + + if (!component.ShouldGib) + { + if (component.Damage == null) + return; + + _damageable.TryChangeDamage(ent, component.Damage, ignoreResistances: true); + return; + } + _bodySystem.GibBody(ent, body: body); return; } diff --git a/Content.Server/Inventory/ServerInventorySystem.cs b/Content.Server/Inventory/ServerInventorySystem.cs index 29d39f37234..e3783753bbc 100644 --- a/Content.Server/Inventory/ServerInventorySystem.cs +++ b/Content.Server/Inventory/ServerInventorySystem.cs @@ -1,21 +1,15 @@ -using Content.Server.Storage.EntitySystems; using Content.Shared.Explosion; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; -using Content.Shared.Storage; namespace Content.Server.Inventory { public sealed class ServerInventorySystem : InventorySystem { - [Dependency] private readonly StorageSystem _storageSystem = default!; - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExploded); - SubscribeNetworkEvent(OnOpenSlotStorage); } private void OnExploded(Entity ent, ref BeforeExplodeEvent args) @@ -29,17 +23,6 @@ private void OnExploded(Entity ent, ref BeforeExplodeEvent a } } - private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) - { - if (args.SenderSession.AttachedEntity is not { Valid: true } uid) - return; - - if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) - { - _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); - } - } - public void TransferEntityInventories(Entity source, Entity target) { if (!Resolve(source.Owner, ref source.Comp) || !Resolve(target.Owner, ref target.Comp)) diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 2a63ace8e30..25bb1072a52 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -58,6 +58,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 2caab4063cf..3c1e89b1f2d 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -1,5 +1,7 @@ using Content.Server.Body.Systems; using Content.Server.Kitchen.Components; +using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Body.Components; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; using Content.Shared.Database; @@ -11,9 +13,14 @@ using Content.Shared.Verbs; using Content.Shared.Destructible; using Content.Shared.DoAfter; +using Content.Shared.Interaction; using Content.Shared.Kitchen; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Storage; +using Content.Shared.Verbs; using Robust.Server.Containers; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -35,7 +42,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnAfterInteract, before: new[] { typeof(UtensilSystem) }); + SubscribeLocalEvent(OnAfterInteract, before: [typeof(UtensilSystem)]); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent>(OnGetInteractionVerbs); @@ -43,16 +50,14 @@ public override void Initialize() private void OnAfterInteract(EntityUid uid, SharpComponent component, AfterInteractEvent args) { - if (args.Handled) - return; - - if (args.Target is null || !args.CanReach) + if (args.Handled || args.Target is null || !args.CanReach) return; - args.Handled = TryStartButcherDoAfter(uid, args.Target.Value, args.User); + if (TryStartButcherDoafter(uid, args.Target.Value, args.User)) + args.Handled = true; } - private bool TryStartButcherDoAfter(EntityUid knife, EntityUid target, EntityUid user) + private bool TryStartButcherDoafter(EntityUid knife, EntityUid target, EntityUid user) { if (!TryComp(target, out var butcher)) return false; @@ -66,11 +71,11 @@ private bool TryStartButcherDoAfter(EntityUid knife, EntityUid target, EntityUid if (butcher.Type != ButcheringType.Knife && target != user) { _popupSystem.PopupEntity(Loc.GetString("butcherable-different-tool", ("target", target)), knife, user); - return true; + return false; } if (!sharp.Butchering.Add(target)) - return true; + return false; var doAfter = new DoAfterArgs(EntityManager, user, sharp.ButcherDelayModifier * butcher.ButcherDelay, new SharpDoAfterEvent(), knife, target: target, used: knife) @@ -165,7 +170,7 @@ private void OnGetInteractionVerbs(EntityUid uid, ButcherableComponent component Act = () => { if (!disabled) - TryStartButcherDoAfter(args.Using!.Value, args.Target, args.User); + TryStartButcherDoafter(args.Using!.Value, args.Target, args.User); }, Message = message, Disabled = disabled, diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index f45eac8eabc..52184fb58f2 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -90,10 +90,7 @@ private void OnComponentInit(EntityUid uid, PaperLabelComponent component, Compo { _itemSlotsSystem.AddItemSlot(uid, ContainerName, component.LabelSlot); - if (!EntityManager.TryGetComponent(uid, out AppearanceComponent? appearance)) - return; - - _appearance.SetData(uid, PaperLabelVisuals.HasLabel, false, appearance); + UpdateAppearance((uid, component)); } private void OnComponentRemove(EntityUid uid, PaperLabelComponent component, ComponentRemove args) @@ -137,10 +134,18 @@ private void OnContainerModified(EntityUid uid, PaperLabelComponent label, Conta if (args.Container.ID != label.LabelSlot.ID) return; - if (!EntityManager.TryGetComponent(uid, out AppearanceComponent? appearance)) + UpdateAppearance((uid, label)); + } + + private void UpdateAppearance(Entity ent) + { + if (!Resolve(ent, ref ent.Comp2, false)) return; - _appearance.SetData(uid, PaperLabelVisuals.HasLabel, label.LabelSlot.HasItem, appearance); + var slot = ent.Comp1.LabelSlot; + _appearance.SetData(ent, PaperLabelVisuals.HasLabel, slot.HasItem, ent.Comp2); + if (TryComp(slot.Item, out var type)) + _appearance.SetData(ent, PaperLabelVisuals.LabelType, type.PaperType, ent.Comp2); } } } diff --git a/Content.Server/Light/Components/EmergencyLightComponent.cs b/Content.Server/Light/Components/EmergencyLightComponent.cs index 20de7f1c03b..b49a8c3868a 100644 --- a/Content.Server/Light/Components/EmergencyLightComponent.cs +++ b/Content.Server/Light/Components/EmergencyLightComponent.cs @@ -14,7 +14,7 @@ public sealed partial class EmergencyLightComponent : SharedEmergencyLightCompon /// /// Is this emergency light forced on for some reason and cannot be disabled through normal means - /// (i.e. delta alert level?) + /// (i.e. blue alert or higher?) /// public bool ForciblyEnabled = false; diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index 3fa5237948c..f2c4c7dcc59 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -31,9 +31,9 @@ public override void Initialize() SubscribeLocalEvent(OnEmergencyPower); } - private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, ref PowerChangedEvent args) + private void OnEmergencyPower(Entity entity, ref PowerChangedEvent args) { - var meta = MetaData(uid); + var meta = MetaData(entity.Owner); // TODO: PowerChangedEvent shouldn't be issued for paused ents but this is the world we live in. if (meta.EntityLifeStage >= EntityLifeStage.Terminating || @@ -42,7 +42,7 @@ private void OnEmergencyPower(EntityUid uid, EmergencyLightComponent component, return; } - UpdateState(uid, component); + UpdateState(entity); } private void OnEmergencyExamine(EntityUid uid, EmergencyLightComponent component, ExaminedEvent args) @@ -111,13 +111,13 @@ private void OnAlertLevelChanged(AlertLevelChangedEvent ev) if (details.ForceEnableEmergencyLights && !light.ForciblyEnabled) { light.ForciblyEnabled = true; - TurnOn(uid, light); + TurnOn((uid, light)); } else if (!details.ForceEnableEmergencyLights && light.ForciblyEnabled) { // Previously forcibly enabled, and we went down an alert level. light.ForciblyEnabled = false; - UpdateState(uid, light); + UpdateState((uid, light)); } } } @@ -135,31 +135,31 @@ public override void Update(float frameTime) var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out _, out var emergencyLight, out var battery)) { - Update(uid, emergencyLight, battery, frameTime); + Update((uid, emergencyLight), battery, frameTime); } } - private void Update(EntityUid uid, EmergencyLightComponent component, BatteryComponent battery, float frameTime) + private void Update(Entity entity, BatteryComponent battery, float frameTime) { - if (component.State == EmergencyLightState.On) + if (entity.Comp.State == EmergencyLightState.On) { - if (!_battery.TryUseCharge(uid, component.Wattage * frameTime, battery)) + if (!_battery.TryUseCharge(entity.Owner, entity.Comp.Wattage * frameTime, battery)) { - SetState(uid, component, EmergencyLightState.Empty); - TurnOff(uid, component); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Empty); + TurnOff(entity); } } else { - _battery.SetCharge(uid, battery.CurrentCharge + component.ChargingWattage * frameTime * component.ChargingEfficiency, battery); + _battery.SetCharge(entity.Owner, battery.CurrentCharge + entity.Comp.ChargingWattage * frameTime * entity.Comp.ChargingEfficiency, battery); if (battery.IsFullyCharged) { - if (TryComp(uid, out var receiver)) + if (TryComp(entity.Owner, out var receiver)) { receiver.Load = 1; } - SetState(uid, component, EmergencyLightState.Full); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Full); } } } @@ -167,35 +167,73 @@ private void Update(EntityUid uid, EmergencyLightComponent component, BatteryCom /// /// Updates the light's power drain, battery drain, sprite and actual light state. /// - public void UpdateState(EntityUid uid, EmergencyLightComponent component) + public void UpdateState(Entity entity) { - if (!TryComp(uid, out var receiver)) + if (!TryComp(entity.Owner, out var receiver)) return; - if (receiver.Powered && !component.ForciblyEnabled) + if (!TryComp(_station.GetOwningStation(entity.Owner), out var alerts)) + return; + + if (alerts.AlertLevels == null || !alerts.AlertLevels.Levels.TryGetValue(alerts.CurrentLevel, out var details)) { - receiver.Load = (int) Math.Abs(component.Wattage); - TurnOff(uid, component); - SetState(uid, component, EmergencyLightState.Charging); + TurnOff(entity, Color.Red); // if no alert, default to off red state + return; } - else + + if (receiver.Powered && !entity.Comp.ForciblyEnabled) // Green alert { - TurnOn(uid, component); - SetState(uid, component, EmergencyLightState.On); + receiver.Load = (int) Math.Abs(entity.Comp.Wattage); + TurnOff(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.Charging); + } + else if (!receiver.Powered) // If internal battery runs out it will end in off red state + { + TurnOn(entity, Color.Red); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); + } + else // Powered and enabled + { + TurnOn(entity, details.Color); + SetState(entity.Owner, entity.Comp, EmergencyLightState.On); } } - private void TurnOff(EntityUid uid, EmergencyLightComponent component) + private void TurnOff(Entity entity) { - _pointLight.SetEnabled(uid, false); - _appearance.SetData(uid, EmergencyLightVisuals.On, false); - _ambient.SetAmbience(uid, false); + _pointLight.SetEnabled(entity.Owner, false); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); } - private void TurnOn(EntityUid uid, EmergencyLightComponent component) + /// + /// Turn off emergency light and set color. + /// + private void TurnOff(Entity entity, Color color) + { + _pointLight.SetEnabled(entity.Owner, false); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, false); + _ambient.SetAmbience(entity.Owner, false); + } + + private void TurnOn(Entity entity) + { + _pointLight.SetEnabled(entity.Owner, true); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); + } + + /// + /// Turn on emergency light and set color. + /// + private void TurnOn(Entity entity, Color color) { - _pointLight.SetEnabled(uid, true); - _appearance.SetData(uid, EmergencyLightVisuals.On, true); - _ambient.SetAmbience(uid, true); + _pointLight.SetEnabled(entity.Owner, true); + _pointLight.SetColor(entity.Owner, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.Color, color); + _appearance.SetData(entity.Owner, EmergencyLightVisuals.On, true); + _ambient.SetAmbience(entity.Owner, true); } } diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index 08ba0de8334..08f3dcccf9f 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -1,17 +1,14 @@ -// ReSharper disable once RedundantUsingDirective -// Used to warn the player in big red letters in debug mode - using System.Linq; using Content.Server.Administration; using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.Player; +using Robust.Server.GameObjects; +using Robust.Server.Maps; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.Map; -using Robust.Shared.Utility; namespace Content.Server.Mapping { @@ -19,6 +16,8 @@ namespace Content.Server.Mapping sealed class MappingCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IMapManager _map = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; public string Command => "mapping"; public string Description => Loc.GetString("cmd-mapping-desc"); @@ -57,13 +56,13 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.WriteError(Loc.GetString("cmd-mapping-warning")); #endif - var mapManager = IoCManager.Resolve(); MapId mapId; + string? toLoad = null; + var mapSys = _entities.System(); // Get the map ID to use if (args.Length is 1 or 2) { - if (!int.TryParse(args[0], out var intMapId)) { shell.WriteError(Loc.GetString("cmd-mapping-failure-integer", ("arg", args[0]))); @@ -79,35 +78,33 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (mapManager.MapExists(mapId)) + if (_map.MapExists(mapId)) { shell.WriteError(Loc.GetString("cmd-mapping-exists", ("mapId", mapId))); return; } - } - else - { - mapId = mapManager.NextMapId(); - } + // either load a map or create a new one. + if (args.Length <= 1) + { + mapSys.CreateMap(mapId, runMapInit: false); + } + else + { + var loadOptions = new MapLoadOptions {StoreMapUids = true}; + _entities.System().TryLoad(mapId, args[1], out _, loadOptions); + } - string? toLoad = null; - // either load a map or create a new one. - if (args.Length <= 1) - { - shell.ExecuteCommand($"addmap {mapId} false"); + // was the map actually created or did it fail somehow? + if (!_map.MapExists(mapId)) + { + shell.WriteError(Loc.GetString("cmd-mapping-error")); + return; + } } else { - toLoad = CommandParsing.Escape(args[1]); - shell.ExecuteCommand($"loadmap {mapId} \"{toLoad}\" 0 0 0 true"); - } - - // was the map actually created? - if (!mapManager.MapExists(mapId)) - { - shell.WriteError(Loc.GetString("cmd-mapping-error")); - return; + mapSys.CreateMap(out mapId, runMapInit: false); } // map successfully created. run misc helpful mapping commands @@ -117,17 +114,15 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) shell.ExecuteCommand("aghost"); } - var cfg = IoCManager.Resolve(); - // don't interrupt mapping with events or auto-shuttle shell.ExecuteCommand("sudo cvar events.enabled false"); shell.ExecuteCommand("sudo cvar shuttle.auto_call_time 0"); - if (cfg.GetCVar(CCVars.AutosaveEnabled)) + if (_cfg.GetCVar(CCVars.AutosaveEnabled)) shell.ExecuteCommand($"toggleautosave {mapId} {toLoad ?? "NEWMAP"}"); shell.ExecuteCommand($"tp 0 0 {mapId}"); shell.RemoteExecuteCommand("mappingclientsidesetup"); - mapManager.SetMapPaused(mapId, true); + _map.SetMapPaused(mapId, true); if (args.Length == 2) shell.WriteLine(Loc.GetString("cmd-mapping-success-load",("mapId",mapId),("path", args[1]))); diff --git a/Content.Server/Medical/Components/CryoPodAirComponent.cs b/Content.Server/Medical/Components/CryoPodAirComponent.cs index baaa3bcda0e..72a10b391e7 100644 --- a/Content.Server/Medical/Components/CryoPodAirComponent.cs +++ b/Content.Server/Medical/Components/CryoPodAirComponent.cs @@ -11,5 +11,5 @@ public sealed partial class CryoPodAirComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] [DataField("gasMixture")] - public GasMixture Air { get; set; } = new(Atmospherics.OneAtmosphere); + public GasMixture Air { get; set; } = new GasMixture(1000f); } diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index a949d980bef..02e8cebbe06 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -276,10 +276,17 @@ private void OnGasAnalyzed(Entity entity, ref GasAnalyzerScanE if (!TryComp(entity, out CryoPodAirComponent? cryoPodAir)) return; - args.GasMixtures ??= new Dictionary { { Name(entity.Owner), cryoPodAir.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(entity.Owner), cryoPodAir.Air)); // If it's connected to a port, include the port side - if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port)) - args.GasMixtures.Add(entity.Comp.PortName, port.Air); + // multiply by volume fraction to make sure to send only the gas inside the analyzed pipe element, not the whole pipe system + if (_nodeContainer.TryGetNode(entity.Owner, entity.Comp.PortName, out PipeNode? port) && port.Air.Volume != 0f) + { + var portAirLocal = port.Air.Clone(); + portAirLocal.Multiply(port.Volume / port.Air.Volume); + portAirLocal.Volume = port.Volume; + args.GasMixtures.Add((entity.Comp.PortName, portAirLocal)); + } } private void OnEjected(Entity cryoPod, ref EntRemovedFromContainerMessage args) diff --git a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs index f1864bb3a1c..b8304c562a4 100644 --- a/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs +++ b/Content.Server/Medical/Stethoscope/StethoscopeSystem.cs @@ -3,11 +3,10 @@ using Content.Server.Medical.Stethoscope.Components; using Content.Server.Popups; using Content.Shared.Actions; -using Content.Shared.Clothing.Components; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DoAfter; using Content.Shared.FixedPoint; -using Content.Shared.Inventory.Events; using Content.Shared.Medical; using Content.Shared.Medical.Stethoscope; using Content.Shared.Mobs.Components; @@ -26,8 +25,8 @@ public sealed class StethoscopeSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent>(AddStethoscopeVerb); SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnStethoscopeAction); @@ -37,26 +36,20 @@ public override void Initialize() /// /// Add the component the verb event subs to if the equippee is wearing the stethoscope. /// - private void OnEquipped(EntityUid uid, StethoscopeComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing)) - return; - // Is the clothing in its actual slot? - if (!clothing.Slots.HasFlag(args.SlotFlags)) - return; - component.IsActive = true; - var wearingComp = EnsureComp(args.Equipee); + var wearingComp = EnsureComp(args.Wearer); wearingComp.Stethoscope = uid; } - private void OnUnequipped(EntityUid uid, StethoscopeComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, StethoscopeComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; - RemComp(args.Equipee); + RemComp(args.Wearer); component.IsActive = false; } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 9864badc620..38e88f6e1ed 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -7,10 +7,10 @@ using Content.Server.Medical.CrewMonitoring; using Content.Server.Popups; using Content.Server.Station.Systems; +using Content.Shared.Clothing; using Content.Shared.Damage; using Content.Shared.DeviceNetwork; using Content.Shared.Examine; -using Content.Shared.Inventory.Events; using Content.Shared.Medical.SuitSensor; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; @@ -40,8 +40,8 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnPlayerSpawn); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnEquipped); - SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent>(OnVerb); SubscribeLocalEvent(OnInsert); @@ -160,19 +160,13 @@ private void OnMapInit(EntityUid uid, SuitSensorComponent component, MapInitEven } } - private void OnEquipped(EntityUid uid, SuitSensorComponent component, GotEquippedEvent args) + private void OnEquipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotEquippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - - component.User = args.Equipee; + component.User = args.Wearer; } - private void OnUnequipped(EntityUid uid, SuitSensorComponent component, GotUnequippedEvent args) + private void OnUnequipped(EntityUid uid, SuitSensorComponent component, ref ClothingGotUnequippedEvent args) { - if (args.Slot != component.ActivationSlot) - return; - component.User = null; } diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index 4035fa0f864..dc12836d904 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -357,16 +357,17 @@ public override void SetUserId(EntityUid mindId, NetUserId? userId, MindComponen mind.UserId = userId; mind.OriginalOwnerUserId ??= userId; + // The UserId may not have a current session, but user data may still exist for disconnected players. + // So we cannot combine this with the TryGetSessionById() check below. + if (_players.GetPlayerData(userId.Value).ContentData() is { } data) + data.Mind = mindId; + if (_players.TryGetSessionById(userId.Value, out var ret)) { mind.Session = ret; _pvsOverride.AddSessionOverride(netMind, ret); _players.SetAttachedEntity(ret, mind.CurrentEntity); } - - // session may be null, but user data may still exist for disconnected players. - if (_players.GetPlayerData(userId.Value).ContentData() is { } data) - data.Mind = mindId; } public void ControlMob(EntityUid user, EntityUid target) diff --git a/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs b/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs new file mode 100644 index 00000000000..26439d2b300 --- /dev/null +++ b/Content.Server/NPC/Components/NPCImprintingOnSpawnBehaviourComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Whitelist; +using Robust.Shared.Collections; + +namespace Content.Server.NPC.Components; +/// +/// A component that makes the entity friendly to nearby creatures it sees on init. +/// +[RegisterComponent] +public sealed partial class NPCImprintingOnSpawnBehaviourComponent : Component +{ + /// + /// filter who can be a friend to this creature + /// + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// when a creature appears, it will memorize all creatures in the radius to remember them as friends + /// + [DataField] + public float SpawnFriendsSearchRadius = 3f; + + /// + /// if there is a FollowCompound in HTN, the target of the following will be selected from random nearby targets when it appears + /// + [DataField] + public bool Follow = true; + + /// + /// is used to determine who became a friend from this component + /// + [DataField] + public List Friends = new(); +} diff --git a/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs b/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs new file mode 100644 index 00000000000..cfd3b08c61a --- /dev/null +++ b/Content.Server/NPC/Systems/NPCImprintingOnSpawnBehaviourSystem.cs @@ -0,0 +1,49 @@ +using System.Numerics; +using Content.Shared.NPC.Components; +using Content.Shared.NPC.Systems; +using Robust.Shared.Collections; +using Robust.Shared.Map; +using Robust.Shared.Random; +using NPCImprintingOnSpawnBehaviourComponent = Content.Server.NPC.Components.NPCImprintingOnSpawnBehaviourComponent; + +namespace Content.Server.NPC.Systems; + +public sealed partial class NPCImprintingOnSpawnBehaviourSystem : SharedNPCImprintingOnSpawnBehaviourSystem +{ + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly NPCSystem _npc = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(Entity imprinting, ref MapInitEvent args) + { + HashSet friends = new(); + _lookup.GetEntitiesInRange(imprinting, imprinting.Comp.SpawnFriendsSearchRadius, friends); + + foreach (var friend in friends) + { + if (imprinting.Comp.Whitelist?.IsValid(friend) != false) + { + AddImprintingTarget(imprinting, friend, imprinting.Comp); + } + } + + if (imprinting.Comp.Follow && imprinting.Comp.Friends.Count > 0) + { + var mommy = _random.Pick(imprinting.Comp.Friends); + _npc.SetBlackboard(imprinting, NPCBlackboard.FollowTarget, new EntityCoordinates(mommy, Vector2.Zero)); + } + } + + public void AddImprintingTarget(EntityUid entity, EntityUid friend, NPCImprintingOnSpawnBehaviourComponent component) + { + component.Friends.Add(friend); + var exception = EnsureComp(entity); + exception.Ignored.Add(friend); + } +} diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 8abe0f7f54c..91086294350 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.NPC; +using Content.Shared.NPC.Systems; using Robust.Server.GameObjects; using Robust.Shared.Configuration; using Robust.Shared.Player; diff --git a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs b/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs deleted file mode 100644 index aafb3bc1065..00000000000 --- a/Content.Server/Nutrition/Components/PressurizedDrinkComponent.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Nutrition.EntitySystems; -using Robust.Shared.Audio; - -namespace Content.Server.Nutrition.Components; - -/// -/// Lets a drink burst open when thrown while closed. -/// Requires and to work. -/// -[RegisterComponent, Access(typeof(DrinkSystem))] -public sealed partial class PressurizedDrinkComponent : Component -{ - /// - /// Chance for the drink to burst when thrown while closed. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public float BurstChance = 0.25f; - - /// - /// Sound played when the drink bursts. - /// - [DataField] - public SoundSpecifier BurstSound = new SoundPathSpecifier("/Audio/Effects/flash_bang.ogg") - { - Params = AudioParams.Default.WithVolume(-4) - }; -} diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index 74637d48137..aa2ed71d8f3 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -5,7 +5,6 @@ using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; using Content.Server.Inventory; -using Content.Server.Nutrition.Components; using Content.Server.Popups; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; @@ -16,7 +15,6 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Database; using Content.Shared.DoAfter; -using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; @@ -25,24 +23,21 @@ using Content.Shared.Nutrition; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Nutrition.EntitySystems; -public sealed class DrinkSystem : EntitySystem +public sealed class DrinkSystem : SharedDrinkSystem { [Dependency] private readonly BodySystem _body = default!; [Dependency] private readonly FlavorProfileSystem _flavorProfile = default!; [Dependency] private readonly FoodSystem _food = default!; [Dependency] private readonly IPrototypeManager _proto = default!; - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly OpenableSystem _openable = default!; @@ -66,33 +61,10 @@ public override void Initialize() SubscribeLocalEvent(OnDrinkInit); // run before inventory so for bucket it always tries to drink before equipping (when empty) // run after openable so its always open -> drink - SubscribeLocalEvent(OnUse, before: new[] { typeof(ServerInventorySystem) }, after: new[] { typeof(OpenableSystem) }); + SubscribeLocalEvent(OnUse, before: [typeof(ServerInventorySystem)], after: [typeof(OpenableSystem)]); SubscribeLocalEvent(AfterInteract); SubscribeLocalEvent>(AddDrinkVerb); - // put drink amount after opened - SubscribeLocalEvent(OnExamined, after: new[] { typeof(OpenableSystem) }); SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnPressurizedDrinkLand); - } - - private FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return FixedPoint2.Zero; - - if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) - return FixedPoint2.Zero; - - return sol.Volume; - } - - public bool IsEmpty(EntityUid uid, DrinkComponent? component = null) - { - if (!Resolve(uid, ref component)) - return true; - - return DrinkVolume(uid, component) <= 0; } /// @@ -129,38 +101,6 @@ public float TotalHydration(EntityUid uid, DrinkComponent? comp = null) return total; } - private void OnExamined(Entity entity, ref ExaminedEvent args) - { - TryComp(entity, out var openable); - if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) - return; - - var empty = IsEmpty(entity, entity.Comp); - if (empty) - { - args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); - return; - } - - if (HasComp(entity)) - { - //provide exact measurement for beakers - args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); - } - else - { - //general approximation - var remainingString = (int) _solutionContainer.PercentFull(entity) switch - { - 100 => "drink-component-on-examine-is-full", - > 66 => "drink-component-on-examine-is-mostly-full", - > 33 => HalfEmptyOrHalfFull(args), - _ => "drink-component-on-examine-is-mostly-empty", - }; - args.PushMarkup(Loc.GetString(remainingString)); - } - } - private void AfterInteract(Entity entity, ref AfterInteractEvent args) { if (args.Handled || args.Target == null || !args.CanReach) @@ -177,25 +117,6 @@ private void OnUse(Entity entity, ref UseInHandEvent args) args.Handled = TryDrink(args.User, args.User, entity.Comp, entity); } - private void OnPressurizedDrinkLand(Entity entity, ref LandEvent args) - { - if (!TryComp(entity, out var drink) || !TryComp(entity, out var openable)) - return; - - if (!openable.Opened && - _random.Prob(entity.Comp.BurstChance) && - _solutionContainer.TryGetSolution(entity.Owner, drink.Solution, out var soln, out var interactions)) - { - // using SetOpen instead of TryOpen to not play 2 sounds - _openable.SetOpen(entity, true, openable); - - var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); - _puddle.TrySpillAt(entity, solution, out _); - - _audio.PlayPvs(entity.Comp.BurstSound, entity); - } - } - private void OnDrinkInit(Entity entity, ref ComponentInit args) { if (TryComp(entity, out var existingDrainable)) @@ -433,16 +354,4 @@ private void AddDrinkVerb(Entity entity, ref GetVerbsEvent(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 - && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) - remainingString = "drink-component-on-examine-is-half-empty"; - - return remainingString; - } } diff --git a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs index 0edd0711b67..43087214a45 100644 --- a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs @@ -1,12 +1,11 @@ using Content.Shared.Containers.ItemSlots; using Content.Server.Nutrition.Components; -using Content.Shared.Nutrition.Components; -using Content.Shared.Nutrition.EntitySystems; using Content.Server.Popups; using Content.Shared.Interaction; +using Content.Shared.Nutrition.Components; +using Content.Shared.Nutrition.EntitySystems; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Nutrition.EntitySystems @@ -34,10 +33,7 @@ public override void Initialize() /// private void OnAfterInteract(EntityUid uid, UtensilComponent component, AfterInteractEvent ev) { - if (ev.Handled) - return; - - if (ev.Target == null || !ev.CanReach) + if (ev.Handled || ev.Target == null || !ev.CanReach) return; var result = TryUseUtensil(ev.User, ev.Target.Value, component); diff --git a/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandyComponent.cs b/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandyComponent.cs index d0a399c1fea..36546359829 100644 --- a/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandyComponent.cs +++ b/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandyComponent.cs @@ -1,11 +1,25 @@ +using Robust.Shared.Audio; + namespace Content.Server.Abilities.Borgs; [RegisterComponent] public sealed partial class FabricateCandyComponent : Component { - [DataField("lollipopAction")] + [DataField] public EntityUid? LollipopAction; - [DataField("gumballAction")] + [DataField] public EntityUid? GumballAction; + + /// + /// The sound played when fabricating candy. + /// + [DataField] + public SoundSpecifier FabricationSound = new SoundPathSpecifier("/Audio/Machines/machine_vend.ogg") + { + Params = new AudioParams + { + Volume = -2f + } + }; } diff --git a/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandySystem.cs b/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandySystem.cs index 6451c7cbb27..b9c7540d750 100644 --- a/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandySystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Borgs/FabricateCandySystem.cs @@ -1,3 +1,5 @@ +using Robust.Server.Audio; +using Robust.Shared.Prototypes; using Content.Shared.Actions; using Content.Shared.Actions.Events; @@ -6,6 +8,8 @@ namespace Content.Server.Abilities.Borgs; public sealed partial class FabricateCandySystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly AudioSystem _audioSystem = default!; + public override void Initialize() { base.Initialize(); @@ -25,13 +29,19 @@ private void OnInit(EntityUid uid, FabricateCandyComponent component, ComponentI private void OnLollipop(FabricateLollipopActionEvent args) { - Spawn("FoodLollipop", Transform(args.Performer).Coordinates); - args.Handled = true; + OnCandy("FoodLollipop", args); } private void OnGumball(FabricateGumballActionEvent args) { - Spawn("FoodGumball", Transform(args.Performer).Coordinates); - args.Handled = true; + OnCandy("FoodGumball", args); + } + + private void OnCandy(EntProtoId proto, BaseActionEvent evt) + { + Spawn(proto, Transform(evt.Performer).Coordinates); + if (TryComp(evt.Performer, out FabricateCandyComponent? comp)) + _audioSystem.PlayPvs(comp.FabricationSound, evt.Performer); + evt.Handled = true; } } diff --git a/Content.Server/Pinpointer/NavMapSystem.cs b/Content.Server/Pinpointer/NavMapSystem.cs index 2a5639886ed..34c76a13206 100644 --- a/Content.Server/Pinpointer/NavMapSystem.cs +++ b/Content.Server/Pinpointer/NavMapSystem.cs @@ -1,36 +1,33 @@ -using System.Diagnostics.CodeAnalysis; using Content.Server.Administration.Logs; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; using Content.Server.Station.Systems; using Content.Server.Warps; using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.Localizations; +using Content.Shared.Maps; using Content.Shared.Pinpointer; -using Content.Shared.Tag; using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using System.Diagnostics.CodeAnalysis; namespace Content.Server.Pinpointer; /// /// Handles data to be used for in-grid map displays. /// -public sealed class NavMapSystem : SharedNavMapSystem +public sealed partial class NavMapSystem : SharedNavMapSystem { [Dependency] private readonly IAdminLogManager _adminLog = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly IMapManager _mapManager = default!; - [Dependency] private readonly TransformSystem _transform = default!; - - private EntityQuery _physicsQuery; - private EntityQuery _tagQuery; + [Dependency] private readonly IGameTiming _gameTiming = default!; public const float CloseDistance = 15f; public const float FarDistance = 30f; @@ -39,63 +36,121 @@ public override void Initialize() { base.Initialize(); - _physicsQuery = GetEntityQuery(); - _tagQuery = GetEntityQuery(); - - SubscribeLocalEvent(OnAnchorChange); - SubscribeLocalEvent(OnReAnchor); + // Initialization events SubscribeLocalEvent(OnStationInit); - SubscribeLocalEvent(OnNavMapStartup); - SubscribeLocalEvent(OnGetState); + + // Grid change events SubscribeLocalEvent(OnNavMapSplit); + SubscribeLocalEvent(OnTileChanged); + // Airtight structure change event + SubscribeLocalEvent(OnAirtightChanged); + + // Beacon events SubscribeLocalEvent(OnNavMapBeaconMapInit); - SubscribeLocalEvent(OnNavMapBeaconStartup); SubscribeLocalEvent(OnNavMapBeaconAnchor); - - SubscribeLocalEvent(OnNavMapDoorStartup); - SubscribeLocalEvent(OnNavMapDoorAnchor); - SubscribeLocalEvent(OnConfigureMessage); SubscribeLocalEvent(OnConfigurableMapInit); SubscribeLocalEvent(OnConfigurableExamined); } + #region: Initialization event handling private void OnStationInit(StationGridAddedEvent ev) { var comp = EnsureComp(ev.GridId); RefreshGrid(ev.GridId, comp, Comp(ev.GridId)); } - private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) + #endregion + + #region: Grid change event handling + + private void OnNavMapSplit(ref GridSplitEvent args) { - if (component.DefaultText == null || component.Text != null) + if (!TryComp(args.Grid, out NavMapComponent? comp)) return; - component.Text = Loc.GetString(component.DefaultText); - Dirty(uid, component); - RefreshNavGrid(uid); + var gridQuery = GetEntityQuery(); + + foreach (var grid in args.NewGrids) + { + var newComp = EnsureComp(grid); + RefreshGrid(grid, newComp, gridQuery.GetComponent(grid)); + } + + RefreshGrid(args.Grid, comp, gridQuery.GetComponent(args.Grid)); } - private void OnNavMapBeaconStartup(EntityUid uid, NavMapBeaconComponent component, ComponentStartup args) + private void OnTileChanged(ref TileChangedEvent ev) { - RefreshNavGrid(uid); + if (!TryComp(ev.NewTile.GridUid, out var navMap)) + return; + + var tile = ev.NewTile.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + if (!navMap.Chunks.TryGetValue((NavMapChunkType.Floor, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); + + // This could be easily replaced in the future to accommodate diagonal tiles + if (ev.NewTile.IsSpace()) + chunk = UnsetAllEdgesForChunkTile(chunk, tile); + + else + chunk = SetAllEdgesForChunkTile(chunk, tile); + + chunk.LastUpdate = _gameTiming.CurTick; + navMap.Chunks[(NavMapChunkType.Floor, chunkOrigin)] = chunk; + + Dirty(ev.NewTile.GridUid, navMap); } - private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) + private void OnAirtightChanged(ref AirtightChanged ev) { - UpdateBeaconEnabledVisuals((uid, component)); - RefreshNavGrid(uid); + var gridUid = ev.Position.Grid; + + if (!TryComp(gridUid, out var navMap) || + !TryComp(gridUid, out var mapGrid)) + return; + + // Refresh the affected tile + var tile = ev.Position.Tile; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); + + RefreshTileEntityContents(gridUid, navMap, mapGrid, chunkOrigin, tile); + + // Update potentially affected chunks + foreach (var category in EntityChunkTypes) + { + if (!navMap.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) + continue; + + chunk.LastUpdate = _gameTiming.CurTick; + navMap.Chunks[(category, chunkOrigin)] = chunk; + } + + Dirty(gridUid, navMap); } - private void OnNavMapDoorStartup(Entity ent, ref ComponentStartup args) + #endregion + + #region: Beacon event handling + + private void OnNavMapBeaconMapInit(EntityUid uid, NavMapBeaconComponent component, MapInitEvent args) { - RefreshNavGrid(ent); + if (component.DefaultText == null || component.Text != null) + return; + + component.Text = Loc.GetString(component.DefaultText); + Dirty(uid, component); + + UpdateNavMapBeaconData(uid, component); } - private void OnNavMapDoorAnchor(Entity ent, ref AnchorStateChangedEvent args) + private void OnNavMapBeaconAnchor(EntityUid uid, NavMapBeaconComponent component, ref AnchorStateChangedEvent args) { - RefreshNavGrid(ent); + UpdateBeaconEnabledVisuals((uid, component)); + UpdateNavMapBeaconData(uid, component); } private void OnConfigureMessage(Entity ent, ref NavMapBeaconConfigureBuiMessage args) @@ -103,12 +158,12 @@ private void OnConfigureMessage(Entity ent, r if (args.Session.AttachedEntity is not { } user) return; - if (!TryComp(ent, out var navMap)) + if (!TryComp(ent, out var beacon)) return; - if (navMap.Text == args.Text && - navMap.Color == args.Color && - navMap.Enabled == args.Enabled) + if (beacon.Text == args.Text && + beacon.Color == args.Color && + beacon.Enabled == args.Enabled) return; _adminLog.Add(LogType.Action, LogImpact.Medium, @@ -119,12 +174,12 @@ private void OnConfigureMessage(Entity ent, r warpPoint.Location = args.Text; } - navMap.Text = args.Text; - navMap.Color = args.Color; - navMap.Enabled = args.Enabled; - UpdateBeaconEnabledVisuals((ent, navMap)); - Dirty(ent, navMap); - RefreshNavGrid(ent); + beacon.Text = args.Text; + beacon.Color = args.Color; + beacon.Enabled = args.Enabled; + + UpdateBeaconEnabledVisuals((ent, beacon)); + UpdateNavMapBeaconData(ent, beacon); } private void OnConfigurableMapInit(Entity ent, ref MapInitEvent args) @@ -134,9 +189,7 @@ private void OnConfigurableMapInit(Entity ent // We set this on mapinit just in case the text was edited via VV or something. if (TryComp(ent, out var warpPoint)) - { warpPoint.Location = navMap.Text; - } UpdateBeaconEnabledVisuals((ent, navMap)); } @@ -152,231 +205,134 @@ private void OnConfigurableExamined(Entity en ("label", navMap.Text ?? string.Empty))); } - private void UpdateBeaconEnabledVisuals(Entity ent) - { - _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); - } - - /// - /// Refreshes the grid for the corresponding beacon. - /// - /// - private void RefreshNavGrid(EntityUid uid) - { - var xform = Transform(uid); + #endregion - if (!TryComp(xform.GridUid, out var navMap)) - return; - - Dirty(xform.GridUid.Value, navMap); - } + #region: Grid functions - private bool CanBeacon(EntityUid uid, TransformComponent? xform = null) + private void RefreshGrid(EntityUid uid, NavMapComponent component, MapGridComponent mapGrid) { - if (!Resolve(uid, ref xform)) - return false; + // Clear stale data + component.Chunks.Clear(); + component.Beacons.Clear(); - return xform.GridUid != null && xform.Anchored; - } + // Loop over all tiles + var tileRefs = _mapSystem.GetAllTiles(uid, mapGrid); - private void OnNavMapStartup(EntityUid uid, NavMapComponent component, ComponentStartup args) - { - if (!TryComp(uid, out var grid)) - return; + foreach (var tileRef in tileRefs) + { + var tile = tileRef.GridIndices; + var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); - RefreshGrid(uid, component, grid); - } + if (!component.Chunks.TryGetValue((NavMapChunkType.Floor, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); - private void OnNavMapSplit(ref GridSplitEvent args) - { - if (!TryComp(args.Grid, out NavMapComponent? comp)) - return; + chunk.LastUpdate = _gameTiming.CurTick; - var gridQuery = GetEntityQuery(); + // Refresh the floor tile + component.Chunks[(NavMapChunkType.Floor, chunkOrigin)] = SetAllEdgesForChunkTile(chunk, tile); - foreach (var grid in args.NewGrids) - { - var newComp = EnsureComp(grid); - RefreshGrid(grid, newComp, gridQuery.GetComponent(grid)); + // Refresh the contents of the tile + RefreshTileEntityContents(uid, component, mapGrid, chunkOrigin, tile); } - RefreshGrid(args.Grid, comp, gridQuery.GetComponent(args.Grid)); + Dirty(uid, component); } - private void RefreshGrid(EntityUid uid, NavMapComponent component, MapGridComponent grid) + private void RefreshTileEntityContents(EntityUid uid, NavMapComponent component, MapGridComponent mapGrid, Vector2i chunkOrigin, Vector2i tile) { - component.Chunks.Clear(); - - var tiles = grid.GetAllTilesEnumerator(); + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = (ushort) GetFlag(relative); + var invFlag = (ushort) ~flag; - while (tiles.MoveNext(out var tile)) + // Clear stale data from the tile across all entity associated chunks + foreach (var category in EntityChunkTypes) { - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile.Value.GridIndices, ChunkSize); + if (!component.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) + chunk = new(chunkOrigin); - if (!component.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - chunk = new NavMapChunk(chunkOrigin); - component.Chunks[chunkOrigin] = chunk; - } + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] &= invFlag; - RefreshTile(uid, grid, component, chunk, tile.Value.GridIndices); + chunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(category, chunkOrigin)] = chunk; } - } - private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) - { - if (!TryComp(uid, out var mapGrid)) - return; + // Update the tile data based on what entities are still anchored to the tile + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(uid, mapGrid, tile); - var data = new Dictionary(component.Chunks.Count); - foreach (var (index, chunk) in component.Chunks) + while (enumerator.MoveNext(out var ent)) { - data.Add(index, chunk.TileData); - } + if (!TryComp(ent, out var entAirtight)) + continue; - var beaconQuery = AllEntityQuery(); - var beacons = new List(); + var category = GetAssociatedEntityChunkType(ent.Value); - while (beaconQuery.MoveNext(out var beaconUid, out var beacon, out var xform)) - { - if (!beacon.Enabled || xform.GridUid != uid || !CanBeacon(beaconUid, xform)) + if (!component.Chunks.TryGetValue((category, chunkOrigin), out var chunk)) continue; - // TODO: Make warp points use metadata name instead. - string? name = beacon.Text; - - if (string.IsNullOrEmpty(name)) + foreach (var (direction, _) in chunk.TileData) { - if (TryComp(beaconUid, out var warpPoint) && warpPoint.Location != null) - { - name = warpPoint.Location; - } - else - { - name = MetaData(beaconUid).EntityName; - } + if ((direction & entAirtight.AirBlockedDirection) > 0) + chunk.TileData[direction] |= flag; } - beacons.Add(new NavMapBeacon(beacon.Color, name, xform.LocalPosition)); + chunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(category, chunkOrigin)] = chunk; } - var airlockQuery = EntityQueryEnumerator(); - var airlocks = new List(); - while (airlockQuery.MoveNext(out _, out _, out var xform)) + // Remove walls that intersect with doors (unless they can both physically fit on the same tile) + if (component.Chunks.TryGetValue((NavMapChunkType.Wall, chunkOrigin), out var wallChunk) && + component.Chunks.TryGetValue((NavMapChunkType.Airlock, chunkOrigin), out var airlockChunk)) { - if (xform.GridUid != uid || !xform.Anchored) - continue; - - var pos = _map.TileIndicesFor(uid, mapGrid, xform.Coordinates); - var enumerator = _map.GetAnchoredEntitiesEnumerator(uid, mapGrid, pos); - - var wallPresent = false; - while (enumerator.MoveNext(out var ent)) + foreach (var (direction, _) in wallChunk.TileData) { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { - continue; - } - - wallPresent = true; - break; + var airlockInvFlag = (ushort) ~airlockChunk.TileData[direction]; + wallChunk.TileData[direction] &= airlockInvFlag; } - if (wallPresent) - continue; - - airlocks.Add(new NavMapAirlock(xform.LocalPosition)); + wallChunk.LastUpdate = _gameTiming.CurTick; + component.Chunks[(NavMapChunkType.Wall, chunkOrigin)] = wallChunk; } - - // TODO: Diffs - args.State = new NavMapComponentState() - { - TileData = data, - Beacons = beacons, - Airlocks = airlocks - }; } - private void OnReAnchor(ref ReAnchorEvent ev) - { - if (TryComp(ev.OldGrid, out var oldGrid) && - TryComp(ev.OldGrid, out var navMap)) - { - var chunkOrigin = SharedMapSystem.GetChunkIndices(ev.TilePos, ChunkSize); - - if (navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - RefreshTile(ev.OldGrid, oldGrid, navMap, chunk, ev.TilePos); - } - } + #endregion - HandleAnchor(ev.Xform); - } + #region: Beacon functions - private void OnAnchorChange(ref AnchorStateChangedEvent ev) + private void UpdateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent? xform = null) { - HandleAnchor(ev.Transform); - } - - private void HandleAnchor(TransformComponent xform) - { - if (!TryComp(xform.GridUid, out var navMap) || - !TryComp(xform.GridUid, out var grid)) + if (!Resolve(uid, ref xform)) return; - var tile = grid.LocalToTile(xform.Coordinates); - var chunkOrigin = SharedMapSystem.GetChunkIndices(tile, ChunkSize); - - if (!navMap.Chunks.TryGetValue(chunkOrigin, out var chunk)) - { - chunk = new NavMapChunk(chunkOrigin); - navMap.Chunks[chunkOrigin] = chunk; - } - - RefreshTile(xform.GridUid.Value, grid, navMap, chunk, tile); - } - - private void RefreshTile(EntityUid uid, MapGridComponent grid, NavMapComponent component, NavMapChunk chunk, Vector2i tile) - { - var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); - var existing = chunk.TileData; - var flag = GetFlag(relative); + if (xform.GridUid == null) + return; - chunk.TileData &= ~flag; + if (!TryComp(xform.GridUid, out var navMap)) + return; - var enumerator = grid.GetAnchoredEntitiesEnumerator(tile); - // TODO: Use something to get convex poly. + var netEnt = GetNetEntity(uid); + var oldBeacon = navMap.Beacons.FirstOrNull(x => x.NetEnt == netEnt); + var changed = false; - while (enumerator.MoveNext(out var ent)) + if (oldBeacon != null) { - if (!_physicsQuery.TryGetComponent(ent, out var body) || - !body.CanCollide || - !body.Hard || - body.BodyType != BodyType.Static || - !_tags.HasTag(ent.Value, "Wall", _tagQuery) && - !_tags.HasTag(ent.Value, "Window", _tagQuery)) - { - continue; - } - - chunk.TileData |= flag; - break; + navMap.Beacons.Remove(oldBeacon.Value); + changed = true; } - if (chunk.TileData == 0) + if (TryCreateNavMapBeaconData(uid, component, xform, out var beaconData)) { - component.Chunks.Remove(chunk.Origin); + navMap.Beacons.Add(beaconData.Value); + changed = true; } - if (existing == chunk.TileData) - return; + if (changed) + Dirty(xform.GridUid.Value, navMap); + } - Dirty(uid, component); + private void UpdateBeaconEnabledVisuals(Entity ent) + { + _appearance.SetData(ent, NavMapBeaconVisuals.Enabled, ent.Comp.Enabled && Transform(ent).Anchored); } /// @@ -389,9 +345,6 @@ public void SetBeaconEnabled(EntityUid uid, bool enabled, NavMapBeaconComponent? comp.Enabled = enabled; UpdateBeaconEnabledVisuals((uid, comp)); - Dirty(uid, comp); - - RefreshNavGrid(uid); } /// @@ -419,7 +372,7 @@ public bool TryGetNearestBeacon(Entity ent, if (!Resolve(ent, ref ent.Comp)) return false; - return TryGetNearestBeacon(_transform.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); + return TryGetNearestBeacon(_transformSystem.GetMapCoordinates(ent, ent.Comp), out beacon, out beaconCoords); } /// @@ -446,7 +399,7 @@ public bool TryGetNearestBeacon(MapCoordinates coordinates, if (coordinates.MapId != xform.MapID) continue; - var coords = _transform.GetWorldPosition(xform); + var coords = _transformSystem.GetWorldPosition(xform); var distanceSquared = (coordinates.Position - coords).LengthSquared(); if (!float.IsInfinity(minDistance) && distanceSquared >= minDistance) continue; @@ -465,7 +418,7 @@ public string GetNearestBeaconString(Entity ent) if (!Resolve(ent, ref ent.Comp)) return Loc.GetString("nav-beacon-pos-no-beacons"); - return GetNearestBeaconString(_transform.GetMapCoordinates(ent, ent.Comp)); + return GetNearestBeaconString(_transformSystem.GetMapCoordinates(ent, ent.Comp)); } public string GetNearestBeaconString(MapCoordinates coordinates) @@ -494,11 +447,13 @@ public string GetNearestBeaconString(MapCoordinates coordinates) ? Loc.GetString("nav-beacon-pos-format-direction-mod-far") : string.Empty; - // we can null suppress the text being null because TRyGetNearestVisibleStationBeacon always gives us a beacon with not-null text. + // we can null suppress the text being null because TryGetNearestVisibleStationBeacon always gives us a beacon with not-null text. return Loc.GetString("nav-beacon-pos-format-direction", ("modifier", modifier), ("direction", ContentLocalizationManager.FormatDirection(adjustedDir).ToLowerInvariant()), ("color", beacon.Value.Comp.Color), ("marker", beacon.Value.Comp.Text!)); } + + #endregion } diff --git a/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs new file mode 100644 index 00000000000..1586973a21e --- /dev/null +++ b/Content.Server/Polymorph/Systems/ChameleonProjectorSystem.cs @@ -0,0 +1,99 @@ +using Content.Server.Polymorph.Components; +using Content.Shared.Actions; +using Content.Shared.Construction.Components; +using Content.Shared.Hands; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Polymorph.Systems; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Physics.Components; + +namespace Content.Server.Polymorph.Systems; + +public sealed class ChameleonProjectorSystem : SharedChameleonProjectorSystem +{ + [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + [Dependency] private readonly PolymorphSystem _polymorph = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedTransformSystem _xform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEquippedHand); + SubscribeLocalEvent(OnToggleNoRot); + SubscribeLocalEvent(OnToggleAnchored); + } + + private void OnEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + if (!TryComp(ent, out var poly)) + return; + + _polymorph.Revert((ent, poly)); + args.Handled = true; + } + + public override void Disguise(ChameleonProjectorComponent proj, EntityUid user, EntityUid entity) + { + if (_polymorph.PolymorphEntity(user, proj.Polymorph) is not {} disguise) + return; + + // make disguise look real (for simple things at least) + var meta = MetaData(entity); + _meta.SetEntityName(disguise, meta.EntityName); + _meta.SetEntityDescription(disguise, meta.EntityDescription); + + var comp = EnsureComp(disguise); + comp.SourceEntity = entity; + comp.SourceProto = Prototype(entity)?.ID; + Dirty(disguise, comp); + + // no sechud trolling + RemComp(disguise); + + _appearance.CopyData(entity, disguise); + + var mass = CompOrNull(entity)?.Mass ?? 0f; + + // let the disguise die when its taken enough damage, which then transfers to the player + // health is proportional to mass, and capped to not be insane + if (TryComp(disguise, out var thresholds)) + { + // if the player is of flesh and blood, cap max health to theirs + // so that when reverting damage scales 1:1 and not round removing + var playerMax = _mobThreshold.GetThresholdForState(user, MobState.Dead).Float(); + var max = playerMax == 0f ? proj.MaxHealth : Math.Max(proj.MaxHealth, playerMax); + + var health = Math.Clamp(mass, proj.MinHealth, proj.MaxHealth); + _mobThreshold.SetMobStateThreshold(disguise, health, MobState.Critical, thresholds); + _mobThreshold.SetMobStateThreshold(disguise, max, MobState.Dead, thresholds); + } + + // add actions for controlling transform aspects + _actions.AddAction(disguise, proj.NoRotAction); + _actions.AddAction(disguise, proj.AnchorAction); + } + + private void OnToggleNoRot(Entity ent, ref DisguiseToggleNoRotEvent args) + { + var xform = Transform(ent); + xform.NoLocalRotation = !xform.NoLocalRotation; + } + + private void OnToggleAnchored(Entity ent, ref DisguiseToggleAnchoredEvent args) + { + var uid = ent.Owner; + var xform = Transform(uid); + if (xform.Anchored) + _xform.Unanchor(uid, xform); + else + _xform.AnchorEntity((uid, xform)); + } +} diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index b7640ff9843..8cae15d70df 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -118,10 +118,12 @@ private void OnMapInit(Entity ent, ref MapInitEvent private void OnPolymorphActionEvent(Entity ent, ref PolymorphActionEvent args) { - if (!_proto.TryIndex(args.ProtoId, out var prototype)) + if (!_proto.TryIndex(args.ProtoId, out var prototype) || args.Handled) return; PolymorphEntity(ent, prototype.Configuration); + + args.Handled = true; } private void OnRevertPolymorphActionEvent(Entity ent, diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index 237ca33a4db..d1163a2be1b 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -126,5 +126,10 @@ public override void PopupPredicted(string? message, EntityUid uid, EntityUid? r RaiseNetworkEvent(new PopupEntityEvent(message, type, GetNetEntity(uid))); } } + + public override void PopupPredicted(string? recipientMessage, string? othersMessage, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small) + { + PopupPredicted(othersMessage, uid, recipient, type); + } } } diff --git a/Content.Server/Power/Generation/Teg/TegNodeGroup.cs b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs index ed6b46e304a..3c937f8f71d 100644 --- a/Content.Server/Power/Generation/Teg/TegNodeGroup.cs +++ b/Content.Server/Power/Generation/Teg/TegNodeGroup.cs @@ -66,11 +66,16 @@ public override void Initialize(Node sourceNode, IEntityManager entMan) public override void LoadNodes(List groupNodes) { - DebugTools.Assert(groupNodes.Count <= 3, "The TEG has at most 3 parts"); DebugTools.Assert(_entityManager != null); base.LoadNodes(groupNodes); + if (groupNodes.Count > 3) + { + // Somehow got more TEG parts. Probably shenanigans. Bail. + return; + } + Generator = groupNodes.OfType().SingleOrDefault(); if (Generator != null) { diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index f5051741c03..c8ef368dadf 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -39,7 +39,7 @@ private void AddPrayVerb(EntityUid uid, PrayableComponent comp, GetVerbsEvent - [ViewVariables(VVAccess.ReadWrite)] [DataField("damage")] + [DataField] public DamageSpecifier? Damage; - [ViewVariables(VVAccess.ReadWrite)] [DataField("fuelCost")] + [DataField] public int FuelCost = 5; - [ViewVariables(VVAccess.ReadWrite)] [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string QualityNeeded = "Welding"; + [DataField] + public ProtoId QualityNeeded = "Welding"; - [ViewVariables(VVAccess.ReadWrite)] [DataField("doAfterDelay")] + [DataField] public int DoAfterDelay = 1; /// /// A multiplier that will be applied to the above if an entity is repairing themselves. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField("selfRepairPenalty")] + [DataField] public float SelfRepairPenalty = 3f; /// /// Whether or not an entity is allowed to repair itself. /// - [DataField("allowSelfRepair")] + [DataField] public bool AllowSelfRepair = true; } } diff --git a/Content.Server/Repairable/RepairableSystem.cs b/Content.Server/Repairable/RepairableSystem.cs index 5bd580756da..ec24cd81975 100644 --- a/Content.Server/Repairable/RepairableSystem.cs +++ b/Content.Server/Repairable/RepairableSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Interaction; using Content.Shared.Popups; using Content.Shared.Repairable; -using Content.Shared.Tools; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; namespace Content.Server.Repairable @@ -70,7 +69,7 @@ public async void Repair(EntityUid uid, RepairableComponent component, InteractU } // Run the repairing doafter - args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent()); + args.Handled = _toolSystem.UseTool(args.Used, args.User, uid, delay, component.QualityNeeded, new RepairFinishedEvent(), component.FuelCost); } } } diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 3a8331f3f7a..42783f163bf 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -145,11 +145,15 @@ public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = tr public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") { - if (_gameTicker.RunLevel != GameRunLevel.InRound) return; + if (_gameTicker.RunLevel != GameRunLevel.InRound) + return; - if (checkCooldown && _cooldownTokenSource != null) return; + if (checkCooldown && _cooldownTokenSource != null) + return; + + if (_countdownTokenSource != null) + return; - if (_countdownTokenSource != null) return; _countdownTokenSource = new(); if (requester != null) @@ -188,6 +192,8 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, LastCountdownStart = _gameTiming.CurTime; ExpectedCountdownEnd = _gameTiming.CurTime + countdownTime; + + // TODO full game saves Timer.Spawn(countdownTime, _shuttle.CallEmergencyShuttle, _countdownTokenSource.Token); ActivateCooldown(); @@ -333,6 +339,8 @@ private void ActivateCooldown() { _cooldownTokenSource?.Cancel(); _cooldownTokenSource = new(); + + // TODO full game saves Timer.Spawn(DefaultCooldownDuration, () => { _cooldownTokenSource.Cancel(); diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 839730ec873..4d5d569dabd 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -164,6 +164,7 @@ private void SpawnMission(SalvageMissionParams missionParams, EntityUid station, _dungeon, _metaData, _transform, + _mapSystem, station, coordinatesDisk, missionParams, diff --git a/Content.Server/Salvage/SalvageSystem.cs b/Content.Server/Salvage/SalvageSystem.cs index 9af4736345e..eb5719c892f 100644 --- a/Content.Server/Salvage/SalvageSystem.cs +++ b/Content.Server/Salvage/SalvageSystem.cs @@ -40,7 +40,6 @@ public sealed partial class SalvageSystem : SharedSalvageSystem { [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly IConfigurationManager _configurationManager = default!; - [Dependency] private readonly IEntityManager _entManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IMapManager _mapManager = default!; @@ -56,6 +55,7 @@ public sealed partial class SalvageSystem : SharedSalvageSystem [Dependency] private readonly RadioSystem _radioSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; [Dependency] private readonly ShuttleConsoleSystem _shuttleConsoles = default!; [Dependency] private readonly StationSystem _station = default!; diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 180c8d145cf..47123e97845 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -50,6 +50,7 @@ public sealed class SpawnSalvageMissionJob : Job private readonly DungeonSystem _dungeon; private readonly MetaDataSystem _metaData; private readonly SharedTransformSystem _xforms; + private readonly SharedMapSystem _map; public readonly EntityUid Station; public readonly EntityUid? CoordinatesDisk; @@ -69,6 +70,7 @@ public SpawnSalvageMissionJob( DungeonSystem dungeon, MetaDataSystem metaData, SharedTransformSystem xform, + SharedMapSystem map, EntityUid station, EntityUid? coordinatesDisk, SalvageMissionParams missionParams, @@ -83,6 +85,7 @@ public SpawnSalvageMissionJob( _dungeon = dungeon; _metaData = metaData; _xforms = xform; + _map = map; Station = station; CoordinatesDisk = coordinatesDisk; _missionParams = missionParams; @@ -95,9 +98,7 @@ public SpawnSalvageMissionJob( protected override async Task Process() { _sawmill.Debug("salvage", $"Spawning salvage mission with seed {_missionParams.Seed}"); - var mapId = _mapManager.CreateMap(); - var mapUid = _mapManager.GetMapEntityId(mapId); - _mapManager.AddUninitializedMap(mapId); + var mapUid = _map.CreateMap(out var mapId, runMapInit: false); MetaDataComponent? metadata = null; var grid = _entManager.EnsureComponent(mapUid); var random = new Random(_missionParams.Seed); diff --git a/Content.Server/Shuttles/Components/FTLComponent.cs b/Content.Server/Shuttles/Components/FTLComponent.cs index ab40875e29a..c9b84064234 100644 --- a/Content.Server/Shuttles/Components/FTLComponent.cs +++ b/Content.Server/Shuttles/Components/FTLComponent.cs @@ -14,6 +14,8 @@ namespace Content.Server.Shuttles.Components; [RegisterComponent] public sealed partial class FTLComponent : Component { + // TODO Full game save / add datafields + [ViewVariables] public FTLState State = FTLState.Available; @@ -23,6 +25,7 @@ public sealed partial class FTLComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float StartupTime = 0f; + // Because of sphagetti, actual travel time is Math.Max(TravelTime, DefaultArrivalTime) [ViewVariables(VVAccess.ReadWrite)] public float TravelTime = 0f; diff --git a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs index bdfdcb273aa..58d23ee4326 100644 --- a/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs +++ b/Content.Server/Shuttles/Components/StationEmergencyShuttleComponent.cs @@ -13,7 +13,7 @@ public sealed partial class StationEmergencyShuttleComponent : Component /// /// The emergency shuttle assigned to this station. /// - [ViewVariables, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] + [DataField, Access(typeof(ShuttleSystem), typeof(EmergencyShuttleSystem), Friend = AccessPermissions.ReadWrite)] public EntityUid? EmergencyShuttle; /// diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index ae742cf1f9e..12df965f45a 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -10,6 +10,7 @@ using Content.Server.Shuttles.Events; using Content.Server.Spawners.Components; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.CCVar; @@ -77,7 +78,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnArrivalsStartup); + SubscribeLocalEvent(OnStationPostInit); SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleTag); @@ -530,7 +531,7 @@ private void SetArrivals(bool obj) } } - private void OnArrivalsStartup(EntityUid uid, StationArrivalsComponent component, ComponentStartup args) + private void OnStationPostInit(EntityUid uid, StationArrivalsComponent component, ref StationPostInitEvent args) { if (!Enabled) return; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index aeb2ebdbba1..803aa963f39 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -19,6 +19,8 @@ namespace Content.Server.Shuttles.Systems; +// TODO full game saves +// Move state data into the emergency shuttle component public sealed partial class EmergencyShuttleSystem { /* @@ -55,7 +57,7 @@ public sealed partial class EmergencyShuttleSystem /// /// How long it will take for the emergency shuttle to arrive at CentComm. /// - public float TransitTime { get; private set; } + public float TransitTime; /// /// @@ -132,6 +134,14 @@ private void UpdateEmergencyConsole(float frameTime) var minTime = -(TransitTime - (ShuttleSystem.DefaultStartupTime + ShuttleSystem.DefaultTravelTime + 1f)); // TODO: I know this is shit but I already just cleaned up a billion things. + + // This is very cursed spaghetti code. I don't even know what the fuck this is doing or why it exists. + // But I think it needs to be less than or equal to zero or the shuttle might never leave??? + // TODO Shuttle AAAAAAAAAAAAAAAAAAAAAAAAA + // Clean this up, just have a single timer with some state system. + // I.e., dont infer state from the current interval that the accumulator is in??? + minTime = Math.Min(0, minTime); // ???? + if (_consoleAccumulator < minTime) { return; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index c043861b377..f0256aa15b9 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -15,6 +15,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Station.Components; +using Content.Server.Station.Events; using Content.Server.Station.Systems; using Content.Shared.Access.Systems; using Content.Shared.CCVar; @@ -82,9 +83,9 @@ public override void Initialize() SubscribeLocalEvent(OnRoundStart); SubscribeLocalEvent(OnRoundCleanup); - SubscribeLocalEvent(OnStationStartup); + SubscribeLocalEvent(OnStationStartup); SubscribeLocalEvent(OnCentcommShutdown); - SubscribeLocalEvent(OnCentcommInit); + SubscribeLocalEvent(OnStationInit); SubscribeLocalEvent(OnEmergencyFTL); SubscribeLocalEvent(OnEmergencyFTLComplete); @@ -258,10 +259,13 @@ private void OnEmergencyFTLComplete(EntityUid uid, EmergencyShuttleComponent com /// public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleComponent? stationShuttle = null) { - if (!Resolve(stationUid, ref stationShuttle) || - !TryComp(stationShuttle.EmergencyShuttle, out var xform) || + if (!Resolve(stationUid, ref stationShuttle)) + return; + + if (!TryComp(stationShuttle.EmergencyShuttle, out var xform) || !TryComp(stationShuttle.EmergencyShuttle, out var shuttle)) { + Log.Error($"Attempted to call an emergency shuttle for an uninitialized station? Station: {ToPrettyString(stationUid)}. Shuttle: {ToPrettyString(stationShuttle.EmergencyShuttle)}"); return; } @@ -319,8 +323,10 @@ public void CallEmergencyShuttle(EntityUid stationUid, StationEmergencyShuttleCo } } - private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, ComponentInit args) + private void OnStationInit(EntityUid uid, StationCentcommComponent component, MapInitEvent args) { + // This is handled on map-init, so that centcomm has finished initializing by the time the StationPostInitEvent + // gets raised if (!_emergencyShuttleEnabled) return; @@ -331,12 +337,12 @@ private void OnCentcommInit(EntityUid uid, StationCentcommComponent component, C return; } - AddCentcomm(component); + AddCentcomm(uid, component); } - private void OnStationStartup(EntityUid uid, StationEmergencyShuttleComponent component, ComponentStartup args) + private void OnStationStartup(Entity ent, ref StationPostInitEvent args) { - AddEmergencyShuttle(uid, component); + AddEmergencyShuttle((ent, ent)); } /// @@ -373,19 +379,22 @@ private void SetupEmergencyShuttle() var centcommQuery = AllEntityQuery(); - while (centcommQuery.MoveNext(out var centcomm)) + while (centcommQuery.MoveNext(out var uid, out var centcomm)) { - AddCentcomm(centcomm); + AddCentcomm(uid, centcomm); } var query = AllEntityQuery(); while (query.MoveNext(out var uid, out var comp)) - AddEmergencyShuttle(uid, comp); + { + AddEmergencyShuttle((uid, comp)); + } } - private void AddCentcomm(StationCentcommComponent component) + private void AddCentcomm(EntityUid station, StationCentcommComponent component) { + DebugTools.Assert(LifeStage(station)>= EntityLifeStage.MapInitialized); if (component.MapEntity != null || component.Entity != null) { Log.Warning("Attempted to re-add an existing centcomm map."); @@ -401,12 +410,13 @@ private void AddCentcomm(StationCentcommComponent component) if (!Exists(otherComp.MapEntity) || !Exists(otherComp.Entity)) { - Log.Error($"Disconvered invalid centcomm component?"); + Log.Error($"Discovered invalid centcomm component?"); ClearCentcomm(otherComp); continue; } component.MapEntity = otherComp.MapEntity; + component.Entity = otherComp.Entity; component.ShuttleIndex = otherComp.ShuttleIndex; return; } @@ -450,6 +460,7 @@ private void AddCentcomm(StationCentcommComponent component) component.MapEntity = map; component.Entity = grid; _shuttle.TryAddFTLDestination(mapId, false, out _); + Log.Info($"Created centcomm grid {ToPrettyString(grid)} on map {ToPrettyString(map)} for station {ToPrettyString(station)}"); } public HashSet GetCentcommMaps() @@ -466,49 +477,67 @@ public HashSet GetCentcommMaps() return maps; } - private void AddEmergencyShuttle(EntityUid uid, StationEmergencyShuttleComponent component) + private void AddEmergencyShuttle(Entity ent) { - if (!_emergencyShuttleEnabled - || component.EmergencyShuttle != null || - !TryComp(uid, out var centcomm) - || !TryComp(centcomm.MapEntity, out MapComponent? map)) + if (!Resolve(ent.Owner, ref ent.Comp1, ref ent.Comp2)) + return; + + if (!_emergencyShuttleEnabled) + return; + + if (ent.Comp1.EmergencyShuttle != null ) + { + if (Exists(ent.Comp1.EmergencyShuttle)) + { + Log.Error($"Attempted to add an emergency shuttle to {ToPrettyString(ent)}, despite a shuttle already existing?"); + return; + } + + Log.Error($"Encountered deleted emergency shuttle during initialization of {ToPrettyString(ent)}"); + ent.Comp1.EmergencyShuttle = null; + } + + if (!TryComp(ent.Comp2.MapEntity, out MapComponent? map)) { + Log.Error($"Failed to add emergency shuttle - centcomm has not been initialized? {ToPrettyString(ent)}"); return; } // Load escape shuttle - var shuttlePath = component.EmergencyShuttlePath; + var shuttlePath = ent.Comp1.EmergencyShuttlePath; var shuttle = _map.LoadGrid(map.MapId, shuttlePath.ToString(), new MapLoadOptions() { // Should be far enough... right? I'm too lazy to bounds check CentCom rn. - Offset = new Vector2(500f + centcomm.ShuttleIndex, 0f), + Offset = new Vector2(500f + ent.Comp2.ShuttleIndex, 0f), // fun fact: if you just fucking yeet centcomm into nullspace anytime you try to spawn the shuttle, then any distance is far enough. so lets not do that LoadMap = false, }); if (shuttle == null) { - Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(uid)}"); + Log.Error($"Unable to spawn emergency shuttle {shuttlePath} for {ToPrettyString(ent)}"); return; } - centcomm.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; + ent.Comp2.ShuttleIndex += Comp(shuttle.Value).LocalAABB.Width + ShuttleSpawnBuffer; // Update indices for all centcomm comps pointing to same map var query = AllEntityQuery(); while (query.MoveNext(out var comp)) { - if (comp == centcomm || comp.MapEntity != centcomm.MapEntity) + if (comp == ent.Comp2 || comp.MapEntity != ent.Comp2.MapEntity) continue; - comp.ShuttleIndex = centcomm.ShuttleIndex; + comp.ShuttleIndex = ent.Comp2.ShuttleIndex; } - component.EmergencyShuttle = shuttle; + ent.Comp1.EmergencyShuttle = shuttle; EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); EnsureComp(shuttle.Value); + + Log.Info($"Added emergency shuttle {ToPrettyString(shuttle)} for station {ToPrettyString(ent)} and centcomm {ToPrettyString(ent.Comp2.Entity)}"); } /// diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 51288691039..a3cc2fde9b8 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -6,6 +6,7 @@ using Content.Server.Station.Events; using Content.Shared.Body.Components; using Content.Shared.Buckle.Components; +using Content.Shared.Database; using Content.Shared.Ghost; using Content.Shared.Maps; using Content.Shared.Parallax; @@ -40,6 +41,10 @@ public sealed partial class ShuttleSystem public const float FTLMassLimit = 300f; // I'm too lazy to make CVars. + // >:( + // Confusingly, some of them already are cvars? + // I.e., shuttle transit time??? + // TODO Shuttle: fix spaghetti private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg") { @@ -863,6 +868,8 @@ private void Smimsh(EntityUid uid, FixturesComponent? manager = null, MapGridCom if (_bodyQuery.TryGetComponent(ent, out var mob)) { + _logger.Add(LogType.Gib, LogImpact.Extreme, $"{ToPrettyString(ent):player} got gibbed by the shuttle" + + $" {ToPrettyString(uid)} arriving from FTL at {xform.Coordinates:coordinates}"); var gibs = _bobby.GibBody(ent, body: mob); _immuneEnts.UnionWith(gibs); continue; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 6dc25e8d766..6fe2324d51e 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Administration.Logs; using Content.Server.Body.Systems; using Content.Server.Doors.Systems; using Content.Server.Parallax; @@ -48,6 +49,7 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly IAdminLogManager _logger = default!; public const float TileMassMultiplier = 0.5f; diff --git a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs index b26ab301c64..9107ff2e32e 100644 --- a/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/RadiationCollectorSystem.cs @@ -151,7 +151,8 @@ private void OnAnalyzed(EntityUid uid, RadiationCollectorComponent component, Ga if (!TryGetLoadedGasTank(uid, out var gasTankComponent)) return; - args.GasMixtures = new Dictionary { { Name(uid), gasTankComponent.Air } }; + args.GasMixtures ??= new List<(string, GasMixture?)>(); + args.GasMixtures.Add((Name(uid), gasTankComponent.Air)); } public void ToggleCollector(EntityUid uid, EntityUid? user = null, RadiationCollectorComponent? component = null) diff --git a/Content.Server/Sound/EmitSoundSystem.cs b/Content.Server/Sound/EmitSoundSystem.cs index 5b9620990eb..fc10d951e76 100644 --- a/Content.Server/Sound/EmitSoundSystem.cs +++ b/Content.Server/Sound/EmitSoundSystem.cs @@ -40,7 +40,6 @@ public override void Initialize() SubscribeLocalEvent(HandleEmitSoundOnTrigger); SubscribeLocalEvent(HandleEmitSoundOnUIOpen); - SubscribeLocalEvent(HandleSpamEmitSoundMapInit); } diff --git a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs index 1f707c2249c..897cd061f42 100644 --- a/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs +++ b/Content.Server/Speech/EntitySystems/AddAccentClothingSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Speech.Components; -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Server.Speech.EntitySystems; @@ -11,29 +10,20 @@ public sealed class AddAccentClothingSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotEquippedEvent args) { - if (!TryComp(uid, out ClothingComponent? clothing)) - return; - - // check if entity was actually used as clothing - // not just taken in pockets or something - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) - return; - // does the user already has this accent? var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (HasComp(args.Equipee, componentType)) + if (HasComp(args.Wearer, componentType)) return; // add accent to the user var accentComponent = (Component) _componentFactory.GetComponent(componentType); - AddComp(args.Equipee, accentComponent); + AddComp(args.Wearer, accentComponent); // snowflake case for replacement accent if (accentComponent is ReplacementAccentComponent rep) @@ -42,16 +32,16 @@ private void OnGotEquipped(EntityUid uid, AddAccentClothingComponent component, component.IsActive = true; } - private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, AddAccentClothingComponent component, ref ClothingGotUnequippedEvent args) { if (!component.IsActive) return; // try to remove accent var componentType = _componentFactory.GetRegistration(component.Accent).Type; - if (EntityManager.HasComponent(args.Equipee, componentType)) + if (EntityManager.HasComponent(args.Wearer, componentType)) { - EntityManager.RemoveComponent(args.Equipee, componentType); + EntityManager.RemoveComponent(args.Wearer, componentType); } component.IsActive = false; diff --git a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs index dfc3ab7e124..d1a6a049d5e 100644 --- a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs @@ -1,4 +1,5 @@ -using System.Globalization; +using System.Globalization; +using System.Linq; using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Robust.Shared.Random; @@ -49,20 +50,30 @@ public string Accentuate(string message, MobsterAccentComponent component) // thinking -> thinkin' // king -> king - msg = Regex.Replace(msg, @"(?<=\w\w)ing(?!\w)", "in'", RegexOptions.IgnoreCase); + //Uses captures groups to make sure the captialization of IN is kept + msg = Regex.Replace(msg, @"(?<=\w\w)(in)g(?!\w)", "$1'", RegexOptions.IgnoreCase); // or -> uh and ar -> ah in the middle of words (fuhget, tahget) - msg = Regex.Replace(msg, @"(?<=\w)or(?=\w)", "uh", RegexOptions.IgnoreCase); - msg = Regex.Replace(msg, @"(?<=\w)ar(?=\w)", "ah", RegexOptions.IgnoreCase); + msg = Regex.Replace(msg, @"(?<=\w)o[Rr](?=\w)", "uh"); + msg = Regex.Replace(msg, @"(?<=\w)O[Rr](?=\w)", "UH"); + msg = Regex.Replace(msg, @"(?<=\w)a[Rr](?=\w)", "ah"); + msg = Regex.Replace(msg, @"(?<=\w)A[Rr](?=\w)", "AH"); // Prefix if (_random.Prob(0.15f)) { + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); var pick = _random.Next(1, 2); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString($"accent-mobster-prefix-{pick}") + " " + msg; + var prefix = Loc.GetString($"accent-mobster-prefix-{pick}"); + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + prefix = prefix.ToUpper(); + msg = prefix + " " + msg; } // Sanitize capital again, in case we substituted a word that should be capitalized @@ -71,16 +82,23 @@ public string Accentuate(string message, MobsterAccentComponent component) // Suffixes if (_random.Prob(0.4f)) { + //Checks if the last word of the sentence is all caps + //So the suffix can be allcapped + var lastWordAllCaps = !Regex.Match(msg, @"(\S+)$").Value.Any(char.IsLower); + var suffix = ""; if (component.IsBoss) { var pick = _random.Next(1, 4); - msg += Loc.GetString($"accent-mobster-suffix-boss-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-boss-{pick}"); } else { var pick = _random.Next(1, 3); - msg += Loc.GetString($"accent-mobster-suffix-minion-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); } + if (lastWordAllCaps) + suffix = suffix.ToUpper(); + msg += suffix; } return msg; diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index f1d64ede101..9f5f8080b9b 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Speech.Components; using Robust.Shared.Random; using System.Text.RegularExpressions; @@ -19,17 +20,22 @@ public override void Initialize() // converts left word when typed into the right word. For example typing you becomes ye. public string Accentuate(string message, PirateAccentComponent component) { - var msg = message; - - msg = _replacement.ApplyReplacements(msg, "pirate"); + var msg = _replacement.ApplyReplacements(message, "pirate"); if (!_random.Prob(component.YarrChance)) return msg; + //Checks if the first word of the sentence is all caps + //So the prefix can be allcapped and to not resanitize the captial + var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); var pick = _random.Pick(component.PirateWords); + var pirateWord = Loc.GetString(pick); // Reverse sanitize capital - msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); - msg = Loc.GetString(pick) + " " + msg; + if (!firstWordAllCaps) + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + else + pirateWord = pirateWord.ToUpper(); + msg = pirateWord + " " + msg; return msg; } diff --git a/Content.Server/Station/Components/StationBiomeComponent.cs b/Content.Server/Station/Components/StationBiomeComponent.cs new file mode 100644 index 00000000000..38800579a93 --- /dev/null +++ b/Content.Server/Station/Components/StationBiomeComponent.cs @@ -0,0 +1,19 @@ +using Content.Server.Station.Systems; +using Content.Shared.Parallax.Biomes; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Components; + +/// +/// Runs EnsurePlanet against the largest grid on Mapinit. +/// +[RegisterComponent, Access(typeof(StationBiomeSystem))] +public sealed partial class StationBiomeComponent : Component +{ + [DataField(required: true)] + public ProtoId Biome = "Grasslands"; + + // If null, its random + [DataField] + public int? Seed = null; +} diff --git a/Content.Server/Station/Components/StationRandomTransformComponent.cs b/Content.Server/Station/Components/StationRandomTransformComponent.cs new file mode 100644 index 00000000000..ea0fc5f2696 --- /dev/null +++ b/Content.Server/Station/Components/StationRandomTransformComponent.cs @@ -0,0 +1,16 @@ +using Content.Server.Station.Systems; + +namespace Content.Server.Station.Components; + +/// +/// Stores station parameters that can be randomized by the roundstart +/// +[RegisterComponent, Access(typeof(StationSystem))] +public sealed partial class StationRandomTransformComponent : Component +{ + [DataField] + public float? MaxStationOffset = 100.0f; + + [DataField] + public bool EnableStationRotation = true; +} diff --git a/Content.Server/Station/Events/StationPostInitEvent.cs b/Content.Server/Station/Events/StationPostInitEvent.cs index 4f7927cee52..54b8eeeb312 100644 --- a/Content.Server/Station/Events/StationPostInitEvent.cs +++ b/Content.Server/Station/Events/StationPostInitEvent.cs @@ -4,6 +4,8 @@ namespace Content.Server.Station.Events; /// /// Raised directed on a station after it has been initialized, as well as broadcast. +/// This gets raised after the entity has been map-initialized, and the station's centcomm map/entity (if any) has been +/// set up. /// [ByRefEvent] public readonly record struct StationPostInitEvent(Entity Station); diff --git a/Content.Server/Station/Systems/StationBiomeSystem.cs b/Content.Server/Station/Systems/StationBiomeSystem.cs new file mode 100644 index 00000000000..821745fc4d7 --- /dev/null +++ b/Content.Server/Station/Systems/StationBiomeSystem.cs @@ -0,0 +1,35 @@ +using Content.Server.Parallax; +using Content.Server.Station.Components; +using Content.Server.Station.Events; +using Content.Server.Station.Systems; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; + +namespace Content.Server.Station.Systems; +public sealed partial class StationBiomeSystem : EntitySystem +{ + [Dependency] private readonly BiomeSystem _biome = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly StationSystem _station = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStationPostInit); + } + + private void OnStationPostInit(Entity map, ref StationPostInitEvent args) + { + if (!TryComp(map, out StationDataComponent? dataComp)) + return; + + var station = _station.GetLargestGrid(dataComp); + if (station == null) return; + + var mapId = Transform(station.Value).MapID; + var mapUid = _mapManager.GetMapEntityId(mapId); + + _biome.EnsurePlanet(mapUid, _proto.Index(map.Comp.Biome), map.Comp.Seed); + } +} diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 492f15c8e2b..2fa2671b196 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -1,9 +1,10 @@ using System.Linq; +using System.Numerics; using Content.Server.Chat.Systems; using Content.Server.GameTicking; using Content.Server.Station.Components; using Content.Server.Station.Events; -using Content.Shared.CCVar; +using Content.Shared.Fax; using Content.Shared.Station; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -49,17 +50,12 @@ public override void Initialize() _sawmill = _logManager.GetSawmill("station"); SubscribeLocalEvent(OnRoundEnd); - SubscribeLocalEvent(OnPreGameMapLoad); SubscribeLocalEvent(OnPostGameMapLoad); SubscribeLocalEvent(OnStationAdd); SubscribeLocalEvent(OnStationDeleted); SubscribeLocalEvent(OnStationGridDeleted); SubscribeLocalEvent(OnStationSplitEvent); - Subs.CVar(_configurationManager, CCVars.StationOffset, x => _randomStationOffset = x, true); - Subs.CVar(_configurationManager, CCVars.MaxStationOffset, x => _maxRandomStationOffset = x, true); - Subs.CVar(_configurationManager, CCVars.StationRotation, x => _randomStationRotation = x, true); - _player.PlayerStatusChanged += OnPlayerStatusChanged; } @@ -112,43 +108,16 @@ private void OnStationDeleted(EntityUid uid, StationDataComponent component, Com RaiseNetworkEvent(new StationsUpdatedEvent(GetStationNames()), Filter.Broadcast()); } - private void OnPreGameMapLoad(PreGameMapLoad ev) - { - // this is only for maps loaded during round setup! - if (_gameTicker.RunLevel == GameRunLevel.InRound) - return; - - if (_randomStationOffset) - ev.Options.Offset += _random.NextVector2(_maxRandomStationOffset); - - if (_randomStationRotation) - ev.Options.Rotation = _random.NextAngle(); - } - private void OnPostGameMapLoad(PostGameMapLoad ev) { var dict = new Dictionary>(); - void AddGrid(string station, EntityUid grid) - { - if (dict.ContainsKey(station)) - { - dict[station].Add(grid); - } - else - { - dict[station] = new List {grid}; - } - } - // Iterate over all BecomesStation foreach (var grid in ev.Grids) { // We still setup the grid - if (!TryComp(grid, out var becomesStation)) - continue; - - AddGrid(becomesStation.Id, grid); + if (TryComp(grid, out var becomesStation)) + dict.GetOrNew(becomesStation.Id).Add(grid); } if (!dict.Any()) @@ -319,11 +288,51 @@ public EntityUid InitializeNewStation(StationConfig stationConfig, IEnumerable(station); name ??= MetaData(station).EntityName; - foreach (var grid in gridIds ?? Array.Empty()) + var entry = gridIds ?? Array.Empty(); + + foreach (var grid in entry) { AddGridToStation(station, grid, null, data, name); } + if (TryComp(station, out var random)) + { + Angle? rotation = null; + Vector2? offset = null; + + if (random.MaxStationOffset != null) + offset = _random.NextVector2(-random.MaxStationOffset.Value, random.MaxStationOffset.Value); + + if (random.EnableStationRotation) + rotation = _random.NextAngle(); + + foreach (var grid in entry) + { + //planetary maps give an error when trying to change from position or rotation. + //This is still the case, but it will be irrelevant after the https://github.com/space-wizards/space-station-14/pull/26510 + if (rotation != null && offset != null) + { + var pos = _transform.GetWorldPosition(grid); + _transform.SetWorldPositionRotation(grid, pos + offset.Value, rotation.Value); + continue; + } + if (rotation != null) + { + _transform.SetWorldRotation(grid, rotation.Value); + continue; + } + if (offset != null) + { + var pos = _transform.GetWorldPosition(grid); + _transform.SetWorldPosition(grid, pos + offset.Value); + continue; + } + } + } + + if (LifeStage(station) < EntityLifeStage.MapInitialized) + throw new Exception($"Station must be man-initialized"); + var ev = new StationPostInitEvent((station, data)); RaiseLocalEvent(station, ref ev, true); diff --git a/Content.Server/StationEvents/Events/CargoGiftsRule.cs b/Content.Server/StationEvents/Events/CargoGiftsRule.cs index c174cc48c09..194786fca7a 100644 --- a/Content.Server/StationEvents/Events/CargoGiftsRule.cs +++ b/Content.Server/StationEvents/Events/CargoGiftsRule.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.GameTicking; @@ -62,6 +62,7 @@ protected override void ActiveTick(EntityUid uid, CargoGiftsRuleComponent compon if (!_cargoSystem.AddAndApproveOrder( station!.Value, product.Product, + product.Name, product.Cost, qty, Loc.GetString(component.Sender), diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs index 10278cc8051..768491f9876 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.Fill.cs @@ -65,12 +65,23 @@ private void FillStorage(Entity entity var sortedItems = items .OrderByDescending(x => ItemSystem.GetItemShape(x.Comp).GetArea()); + ClearCantFillReasons(); foreach (var ent in sortedItems) { if (Insert(uid, ent, out _, out var reason, storageComp: storage, playSound: false)) continue; + if (CantFillReasons.Count > 0) + { + var reasons = string.Join(", ", CantFillReasons.Select(s => Loc.GetString(s))); + if (reason == null) + reason = reasons; + else + reason += $", {reasons}"; + } + Log.Error($"Tried to StorageFill {ToPrettyString(ent)} inside {ToPrettyString(uid)} but can't. reason: {reason}"); + ClearCantFillReasons(); Del(ent); } } diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 0f5efda74de..27694ee61c4 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -3,8 +3,6 @@ using Content.Shared.Explosion; using Content.Shared.Ghost; using Content.Shared.Hands; -using Content.Shared.Input; -using Content.Shared.Inventory; using Content.Shared.Lock; using Content.Shared.Storage; using Content.Shared.Storage.Components; @@ -13,7 +11,6 @@ using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; -using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -25,7 +22,6 @@ public sealed partial class StorageSystem : SharedStorageSystem { [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; - [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; @@ -41,11 +37,6 @@ public override void Initialize() SubscribeLocalEvent(OnExploded); SubscribeLocalEvent(OnStorageFillMapInit); - - CommandBinds.Builder - .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack)) - .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt)) - .Register(); } private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent args) @@ -180,31 +171,4 @@ public void CloseNestedInterfaces(EntityUid uid, ICommonSession session, Storage } } } - - private void HandleOpenBackpack(ICommonSession? session) - { - HandleOpenSlotUI(session, "back"); - } - - private void HandleOpenBelt(ICommonSession? session) - { - HandleOpenSlotUI(session, "belt"); - } - - private void HandleOpenSlotUI(ICommonSession? session, string slot) - { - if (session is not { } playerSession) - return; - - if (playerSession.AttachedEntity is not {Valid: true} playerEnt || !Exists(playerEnt)) - return; - - if (!_inventory.TryGetSlotEntity(playerEnt, slot, out var storageEnt)) - return; - - if (!ActionBlocker.CanInteract(playerEnt, storageEnt)) - return; - - OpenStorageUI(storageEnt.Value, playerEnt); - } } diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index e6c4eb0ccea..25f64ba4b64 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -5,7 +5,6 @@ using Content.Server.Stack; using Content.Server.Store.Components; using Content.Shared.Actions; -using Content.Shared.Administration.Logs; using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Hands.EntitySystems; @@ -99,13 +98,13 @@ public void UpdateUserInterface(EntityUid? user, EntityUid store, StoreComponent } //dictionary for all currencies, including 0 values for currencies on the whitelist - Dictionary allCurrency = new(); + Dictionary, FixedPoint2> allCurrency = new(); foreach (var supported in component.CurrencyWhitelist) { allCurrency.Add(supported, FixedPoint2.Zero); - if (component.Balance.ContainsKey(supported)) - allCurrency[supported] = component.Balance[supported]; + if (component.Balance.TryGetValue(supported, out var value)) + allCurrency[supported] = value; } // TODO: if multiple users are supposed to be able to interact with a single BUI & see different diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index d28744fe4a8..9447dec4172 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Ensnaring; using Content.Shared.CombatMode; @@ -20,7 +21,6 @@ using Robust.Server.GameObjects; using Robust.Shared.Player; using Robust.Shared.Utility; -using System.Linq; namespace Content.Server.Strip { @@ -111,7 +111,7 @@ public override void StartOpeningStripper(EntityUid user, Entity(user, out var mode) && mode.IsInCombatMode && !openInCombat) return; - if (TryComp(user, out var actor)) + if (TryComp(user, out var actor) && HasComp(user)) { if (_userInterfaceSystem.SessionHasOpenUi(strippable, StrippingUiKey.Key, actor.PlayerSession)) return; diff --git a/Content.Server/Tools/Components/WelderComponent.cs b/Content.Server/Tools/Components/WelderComponent.cs deleted file mode 100644 index b0db2c58e88..00000000000 --- a/Content.Server/Tools/Components/WelderComponent.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.FixedPoint; -using Content.Shared.Tools.Components; -using Robust.Shared.Audio; -using Robust.Shared.Prototypes; - -namespace Content.Server.Tools.Components -{ - [RegisterComponent] - public sealed partial class WelderComponent : SharedWelderComponent - { - /// - /// Name of . - /// - [DataField("fuelSolution"), ViewVariables(VVAccess.ReadWrite)] - public string FuelSolutionName = "Welder"; - - /// - /// Solution on the entity that contains the fuel. - /// - [DataField("fuelSolutionRef")] - public Entity? FuelSolution = null; - - /// - /// Reagent that will be used as fuel for welding. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public ProtoId FuelReagent = "WeldingFuel"; - - /// - /// Fuel consumption per second while the welder is active. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelConsumption = FixedPoint2.New(2.0f); - - /// - /// A fuel amount to be consumed when the welder goes from being unlit to being lit. - /// - [DataField, ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); - - /// - /// Sound played when refilling the welder. - /// - [DataField] - public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); - - /// - /// Whether the item is safe to refill while lit without exploding the tank. - /// - [DataField] - public bool TankSafe = false; //I have no idea what I'm doing - - } -} diff --git a/Content.Server/Tools/ToolSystem.Welder.cs b/Content.Server/Tools/ToolSystem.Welder.cs deleted file mode 100644 index 727526b3989..00000000000 --- a/Content.Server/Tools/ToolSystem.Welder.cs +++ /dev/null @@ -1,211 +0,0 @@ -using Content.Server.Chemistry.Components; -using Content.Server.IgnitionSource; -using Content.Server.Tools.Components; -using Content.Shared.Chemistry.Components.SolutionManager; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.Examine; -using Content.Shared.FixedPoint; -using Content.Shared.Interaction; -using Content.Shared.Item.ItemToggle; -using Content.Shared.Tools.Components; -using Robust.Shared.GameStates; -using System.Linq; -using Content.Shared.Item.ItemToggle.Components; - -namespace Content.Server.Tools -{ - public sealed partial class ToolSystem - { - [Dependency] private readonly SharedItemToggleSystem _itemToggle = default!; - [Dependency] private readonly IgnitionSourceSystem _ignitionSource = default!; - private readonly HashSet _activeWelders = new(); - - private const float WelderUpdateTimer = 1f; - private float _welderTimer; - - public void InitializeWelders() - { - SubscribeLocalEvent(OnWelderExamine); - SubscribeLocalEvent(OnWelderAfterInteract); - SubscribeLocalEvent>(OnWelderToolUseAttempt); - SubscribeLocalEvent(OnWelderShutdown); - SubscribeLocalEvent(OnWelderGetState); - SubscribeLocalEvent(OnToggle); - SubscribeLocalEvent(OnActivateAttempt); - } - - public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) - { - if (!Resolve(uid, ref welder, ref solutionContainer) - || !_solutionContainer.ResolveSolution((uid, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var fuelSolution)) - return (FixedPoint2.Zero, FixedPoint2.Zero); - - return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); - } - - private void OnToggle(Entity entity, ref ItemToggledEvent args) - { - if (args.Activated) - TurnOn(entity, args.User); - else - TurnOff(entity, args.User); - } - - private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var solution)) - { - args.Cancelled = true; - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - return; - } - - var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); - if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) - { - args.Popup = Loc.GetString("welder-component-no-fuel-message"); - args.Cancelled = true; - } - } - - public void TurnOn(Entity entity, EntityUid? user) - { - if (!_solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution)) - return; - - _solutionContainer.RemoveReagent(entity.Comp.FuelSolution.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); - - var xform = Transform(entity); - if (xform.GridUid is { } gridUid) - { - var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); - _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); - } - - _activeWelders.Add(entity); - } - - public void TurnOff(Entity entity, EntityUid? user) - { - AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, - $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); - _activeWelders.Remove(entity); - } - - private void OnWelderExamine(Entity entity, ref ExaminedEvent args) - { - using (args.PushGroup(nameof(WelderComponent))) - { - if (_itemToggle.IsActivated(entity.Owner)) - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); - } - else - { - args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); - } - - if (args.IsInDetailsRange) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - - args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", - ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), - ("fuelLeft", fuel), - ("fuelCapacity", capacity), - ("status", string.Empty))); // Lit status is handled above - } - } - } - - private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) - { - if (args.Handled) - return; - - if (args.Target is not { Valid: true } target || !args.CanReach) - return; - - if (TryComp(target, out ReagentTankComponent? tank) - && tank.TankType == ReagentTankType.Fuel - && _solutionContainer.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) - && _solutionContainer.ResolveSolution(entity.Owner, entity.Comp.FuelSolutionName, ref entity.Comp.FuelSolution, out var welderSolution)) - { - var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); - if (trans > 0) - { - var drained = _solutionContainer.Drain(target, targetSoln.Value, trans); - _solutionContainer.TryAddSolution(entity.Comp.FuelSolution.Value, drained); - _audio.PlayPvs(entity.Comp.WelderRefill, entity); - _popup.PopupEntity(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); - } - else if (welderSolution.AvailableVolume <= 0) - { - _popup.PopupEntity(Loc.GetString("welder-component-already-full"), entity, args.User); - } - else - { - _popup.PopupEntity(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); - } - - args.Handled = true; - } - } - - private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) - { - var user = args.DoAfter.Args.User; - - if (!_itemToggle.IsActivated(entity.Owner)) - { - _popup.PopupEntity(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); - args.Cancel(); - } - } - - private void OnWelderShutdown(Entity entity, ref ComponentShutdown args) - { - _activeWelders.Remove(entity); - } - - private void OnWelderGetState(Entity entity, ref ComponentGetState args) - { - var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); - args.State = new WelderComponentState(capacity.Float(), fuel.Float()); - } - - private void UpdateWelders(float frameTime) - { - _welderTimer += frameTime; - - if (_welderTimer < WelderUpdateTimer) - return; - - // TODO Serialization. _activeWelders is not serialized. - // Need to use some "active" component, and EntityQuery over that. - // Probably best to generalize it to a "ToggleableFuelDrain" component. - foreach (var tool in _activeWelders.ToArray()) - { - if (!TryComp(tool, out WelderComponent? welder) - || !TryComp(tool, out SolutionContainerManagerComponent? solutionContainer)) - continue; - - if (!_solutionContainer.ResolveSolution((tool, solutionContainer), welder.FuelSolutionName, ref welder.FuelSolution, out var solution)) - continue; - - _solutionContainer.RemoveReagent(welder.FuelSolution.Value, welder.FuelReagent, welder.FuelConsumption * _welderTimer); - - if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) - { - _itemToggle.Toggle(tool, predicted: false); - } - - Dirty(tool, welder); - } - _welderTimer -= WelderUpdateTimer; - } - } -} diff --git a/Content.Server/Tools/ToolSystem.cs b/Content.Server/Tools/ToolSystem.cs index 7bae1778923..7738a6398fa 100644 --- a/Content.Server/Tools/ToolSystem.cs +++ b/Content.Server/Tools/ToolSystem.cs @@ -1,40 +1,63 @@ using Content.Server.Atmos.EntitySystems; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Server.Popups; -using Content.Server.Tools.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Components; using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; -namespace Content.Server.Tools +namespace Content.Server.Tools; + +public sealed class ToolSystem : SharedToolSystem { - // TODO move tool system to shared, and make it a friend of Tool Component. - public sealed partial class ToolSystem : SharedToolSystem - { - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly TransformSystem _transformSystem = default!; + [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; + [Dependency] private readonly TransformSystem _transformSystem = default!; - public override void Initialize() + public override void TurnOn(Entity entity, EntityUid? user) + { + base.TurnOn(entity, user); + var xform = Transform(entity); + if (xform.GridUid is { } gridUid) { - base.Initialize(); - - InitializeWelders(); + var position = _transformSystem.GetGridOrMapTilePosition(entity.Owner, xform); + _atmosphereSystem.HotspotExpose(gridUid, position, 700, 50, entity.Owner, true); } + } - public override void Update(float frameTime) - { - base.Update(frameTime); + public override void Update(float frameTime) + { + base.Update(frameTime); - UpdateWelders(frameTime); - } + UpdateWelders(frameTime); + } - protected override bool IsWelder(EntityUid uid) + //todo move to shared once you can remove reagents from shared without it freaking out. + private void UpdateWelders(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var welder, out var solutionContainer)) { - return HasComp(uid); + if (!welder.Enabled) + continue; + + welder.WelderTimer += frameTime; + + if (welder.WelderTimer < welder.WelderUpdateTimer) + continue; + + if (!SolutionContainerSystem.TryGetSolution((uid, solutionContainer), welder.FuelSolutionName, out var solutionComp, out var solution)) + continue; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, welder.FuelReagent, welder.FuelConsumption * welder.WelderTimer); + + if (solution.GetTotalPrototypeQuantity(welder.FuelReagent) <= FixedPoint2.Zero) + { + ItemToggle.Toggle(uid, predicted: false); + } + + Dirty(uid, welder); + welder.WelderTimer -= welder.WelderUpdateTimer; } } } + diff --git a/Content.Server/UserInterface/ActivatableUISystem.cs b/Content.Server/UserInterface/ActivatableUISystem.cs index e3a11af4295..5f2314df90b 100644 --- a/Content.Server/UserInterface/ActivatableUISystem.cs +++ b/Content.Server/UserInterface/ActivatableUISystem.cs @@ -93,6 +93,9 @@ private void OnActivate(EntityUid uid, ActivatableUIComponent component, Activat if (component.InHandsOnly) return; + if (component.AllowedItems != null) + return; + args.Handled = InteractUI(args.User, uid, component); } @@ -104,6 +107,9 @@ private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInH if (component.RightClickOnly) return; + if (component.AllowedItems != null) + return; + args.Handled = InteractUI(args.User, uid, component); } diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs index bd0c40f26a1..b97c47ceefc 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs @@ -1,6 +1,6 @@ using Content.Server.Actions; +using Content.Shared.Clothing; using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; namespace Content.Server.VoiceMask; @@ -12,13 +12,9 @@ public sealed partial class VoiceMaskSystem private const string MaskSlot = "mask"; - private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedEvent args) + private void OnEquip(EntityUid uid, VoiceMaskerComponent component, ClothingGotEquippedEvent args) { - var user = args.Equipee; - // have to be wearing the mask to use it, duh. - if (!_inventory.TryGetSlotEntity(user, MaskSlot, out var maskEntity) || maskEntity != uid) - return; - + var user = args.Wearer; var comp = EnsureComp(user); comp.VoiceName = component.LastSetName; comp.SpeechVerb = component.LastSpeechVerb; @@ -26,9 +22,9 @@ private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedE _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); } - private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, GotUnequippedEvent args) + private void OnUnequip(EntityUid uid, VoiceMaskerComponent compnent, ClothingGotUnequippedEvent args) { - RemComp(args.Equipee); + RemComp(args.Wearer); } private VoiceMaskerComponent? TryGetMask(EntityUid user) diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index 19ed156a0b4..aec6f3a2e2a 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -3,7 +3,6 @@ using Content.Server.Popups; using Content.Shared.Clothing; using Content.Shared.Database; -using Content.Shared.Inventory.Events; using Content.Shared.Popups; using Content.Shared.Preferences; using Content.Shared.Speech; @@ -27,8 +26,8 @@ public override void Initialize() SubscribeLocalEvent(OnChangeName); SubscribeLocalEvent(OnChangeVerb); SubscribeLocalEvent(OnMaskToggled); - SubscribeLocalEvent(OnEquip); - SubscribeLocalEvent(OnUnequip); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnUnequip); SubscribeLocalEvent(OnSetName); // SubscribeLocalEvent>(GetVerbs); } diff --git a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs index 67da4c4df18..02ca383d300 100644 --- a/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs +++ b/Content.Server/Worldgen/Prototypes/NoiseChannelPrototype.cs @@ -80,7 +80,7 @@ public class NoiseChannelConfig } [Prototype("noiseChannel")] -public sealed class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype +public sealed partial class NoiseChannelPrototype : NoiseChannelConfig, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs index ec16083c538..fe95114f737 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs @@ -8,7 +8,7 @@ public sealed partial class TraversalDistorterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public BiasDirection BiasDirection = BiasDirection.In; + public BiasDirection BiasDirection = BiasDirection.Up; public TimeSpan NextActivation = default!; public TimeSpan ActivationDelay = TimeSpan.FromSeconds(1); @@ -16,6 +16,6 @@ public sealed partial class TraversalDistorterComponent : Component public enum BiasDirection : byte { - In, //down the tree, towards depth 0 - Out //up the tree, away from depth 0 + Up, //Towards depth 0 + Down, //Away from depth 0 } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 27caebef808..caf3081204c 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -42,6 +42,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem [Dependency] private readonly ResearchSystem _research = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly GlimmerSystem _glimmerSystem = default!; //Nyano - Summary: pulls in the glimmer system. + [Dependency] private readonly TraversalDistorterSystem _traversalDistorter = default!; /// public override void Initialize() @@ -63,6 +64,7 @@ public override void Initialize() SubscribeLocalEvent(OnScanButton); SubscribeLocalEvent(OnPrintButton); SubscribeLocalEvent(OnExtractButton); + SubscribeLocalEvent(OnBiasButton); SubscribeLocalEvent((e, c, _) => UpdateUserInterface(e, c), after: new[] { typeof(ResearchSystem) }); @@ -194,6 +196,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon var canScan = false; var canPrint = false; var points = 0; + if (TryComp(component.AnalyzerEntity, out var analyzer)) { artifact = analyzer.LastAnalyzedArtifact; @@ -207,15 +210,20 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon if (GetArtifactForAnalysis(component.AnalyzerEntity, placer) is { } current) points = _artifact.GetResearchPointValue(current); } + var analyzerConnected = component.AnalyzerEntity != null; var serverConnected = TryComp(uid, out var client) && client.ConnectedToServer; var scanning = TryComp(component.AnalyzerEntity, out var active); var paused = active != null ? active.AnalysisPaused : false; + var biasDirection = BiasDirection.Up; - var state = new AnalysisConsoleScanUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, - canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points); + if (TryComp(component.AnalyzerEntity, out var trav)) + biasDirection = trav.BiasDirection; + + var state = new AnalysisConsoleUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, + canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points, biasDirection == BiasDirection.Down); var bui = _ui.GetUi(uid, ArtifactAnalzyerUiKey.Key); _ui.SetUiState(bui, state); @@ -382,6 +390,20 @@ private void OnExtractButton(EntityUid uid, AnalysisConsoleComponent component, UpdateUserInterface(uid, component); } + private void OnBiasButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleBiasButtonPressedMessage args) + { + if (component.AnalyzerEntity == null) + return; + + if (!TryComp(component.AnalyzerEntity, out var trav)) + return; + + if (!_traversalDistorter.SetState(component.AnalyzerEntity.Value, trav, args.IsDown)) + return; + + UpdateUserInterface(uid, component); + } + /// /// Cancels scans if the artifact changes nodes (is activated) during the scan. /// diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs index 230e639af49..2092f79f05b 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs @@ -17,8 +17,6 @@ public sealed class TraversalDistorterSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnInit); - - SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnItemPlaced); @@ -30,30 +28,25 @@ private void OnInit(EntityUid uid, TraversalDistorterComponent component, MapIni component.NextActivation = _timing.CurTime; } - private void OnInteract(EntityUid uid, TraversalDistorterComponent component, ActivateInWorldEvent args) + /// + /// Switches the state of the traversal distorter between up and down. + /// + /// The distorter's entity + /// The component on the entity + /// If the distorter changed state + public bool SetState(EntityUid uid, TraversalDistorterComponent component, bool isDown) { - if (args.Handled || !this.IsPowered(uid, EntityManager)) - return; + if (!this.IsPowered(uid, EntityManager)) + return false; + if (_timing.CurTime < component.NextActivation) - return; - args.Handled = true; + return false; + component.NextActivation = _timing.CurTime + component.ActivationDelay; - component.BiasDirection = component.BiasDirection == BiasDirection.In - ? BiasDirection.Out - : BiasDirection.In; + component.BiasDirection = isDown ? BiasDirection.Down : BiasDirection.Up; - var toPopup = string.Empty; - switch (component.BiasDirection) - { - case BiasDirection.In: - toPopup = Loc.GetString("traversal-distorter-set-in"); - break; - case BiasDirection.Out: - toPopup = Loc.GetString("traversal-distorter-set-out"); - break; - } - _popup.PopupEntity(toPopup, uid); + return true; } private void OnExamine(EntityUid uid, TraversalDistorterComponent component, ExaminedEvent args) @@ -61,11 +54,11 @@ private void OnExamine(EntityUid uid, TraversalDistorterComponent component, Exa string examine = string.Empty; switch (component.BiasDirection) { - case BiasDirection.In: - examine = Loc.GetString("traversal-distorter-desc-in"); + case BiasDirection.Up: + examine = Loc.GetString("traversal-distorter-desc-up"); break; - case BiasDirection.Out: - examine = Loc.GetString("traversal-distorter-desc-out"); + case BiasDirection.Down: + examine = Loc.GetString("traversal-distorter-desc-down"); break; } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index 647f31a8953..895bb0217b3 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -19,26 +19,46 @@ public sealed partial class ArtifactSystem /// /// /// - /// The amount of nodes it has. - private void GenerateArtifactNodeTree(EntityUid artifact, ref List allNodes, int nodeAmount) + /// The amount of nodes it has. + private void GenerateArtifactNodeTree(EntityUid artifact, List allNodes, int nodesToCreate) { - if (nodeAmount < 1) + if (nodesToCreate < 1) { - Log.Error($"nodeAmount {nodeAmount} is less than 1. Aborting artifact tree generation."); + Log.Error($"nodesToCreate {nodesToCreate} is less than 1. Aborting artifact tree generation."); return; } _usedNodeIds.Clear(); + var uninitializedNodes = new List { new(){ Id = GetValidNodeId() } }; + var createdNodes = 1; - var rootNode = new ArtifactNode + while (uninitializedNodes.Count > 0) { - Id = GetValidNodeId() - }; - var uninitializedNodes = new List { rootNode }; - while (uninitializedNodes.Any()) - { - GenerateNode(artifact, ref uninitializedNodes, ref allNodes, nodeAmount); + var node = uninitializedNodes[0]; + uninitializedNodes.Remove(node); + + node.Trigger = GetRandomTrigger(artifact, ref node); + node.Effect = GetRandomEffect(artifact, ref node); + + var maxChildren = _random.Next(1, MaxEdgesPerNode - 1); + + for (var i = 0; i < maxChildren; i++) + { + if (nodesToCreate <= createdNodes) + { + break; + } + + var child = new ArtifactNode {Id = GetValidNodeId(), Depth = node.Depth + 1}; + node.Edges.Add(child.Id); + child.Edges.Add(node.Id); + + uninitializedNodes.Add(child); + createdNodes++; + } + + allNodes.Add(node); } } @@ -51,44 +71,8 @@ private int GetValidNodeId() } _usedNodeIds.Add(id); - return id; - } - /// - /// Generate an individual node on the tree. - /// - private void GenerateNode(EntityUid artifact, ref List uninitializedNodes, ref List allNodes, int targetNodeAmount) - { - if (!uninitializedNodes.Any()) - return; - - var node = uninitializedNodes.First(); - uninitializedNodes.Remove(node); - - //Generate the connected nodes - var maxEdges = Math.Max(1, targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1); - maxEdges = Math.Min(maxEdges, MaxEdgesPerNode); - var minEdges = Math.Clamp(targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1, 0, 1); - - var edgeAmount = _random.Next(minEdges, maxEdges); - - for (var i = 0; i < edgeAmount; i++) - { - var neighbor = new ArtifactNode - { - Depth = node.Depth + 1, - Id = GetValidNodeId() - }; - node.Edges.Add(neighbor.Id); - neighbor.Edges.Add(node.Id); - - uninitializedNodes.Add(neighbor); - } - - node.Trigger = GetRandomTrigger(artifact, ref node); - node.Effect = GetRandomEffect(artifact, ref node); - - allNodes.Add(node); + return id; } //yeah these two functions are near duplicates but i don't @@ -159,6 +143,7 @@ private int GetRandomTargetDepth(Dictionary weights) return key; } } + return _random.Pick(weights.Keys); //shouldn't happen } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 955fe827d72..a5469e93dc0 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -129,7 +129,7 @@ public void RandomizeArtifact(EntityUid uid, ArtifactComponent component) { var nodeAmount = _random.Next(component.NodesMin, component.NodesMax); - GenerateArtifactNodeTree(uid, ref component.NodeTree, nodeAmount); + GenerateArtifactNodeTree(uid, component.NodeTree, nodeAmount); var firstNode = GetRootNode(component.NodeTree); EnterNode(uid, ref firstNode, component); } @@ -184,13 +184,14 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac var currentNode = GetNodeFromId(component.CurrentNodeId.Value, component); currentNode.Triggered = true; - if (currentNode.Edges.Any()) - { - var newNode = GetNewNode(uid, component); - if (newNode == null) - return; - EnterNode(uid, ref newNode, component); - } + if (currentNode.Edges.Count == 0) + return; + + var newNode = GetNewNode(uid, component); + if (newNode == null) + return; + + EnterNode(uid, ref newNode, component); } private ArtifactNode? GetNewNode(EntityUid uid, ArtifactComponent component) @@ -210,15 +211,15 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac { switch (trav.BiasDirection) { - case BiasDirection.In: - var foo = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); - if (foo.Any()) - allNodes = foo; + case BiasDirection.Up: + var upNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); + if (upNodes.Count != 0) + allNodes = upNodes; break; - case BiasDirection.Out: - var bar = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); - if (bar.Any()) - allNodes = bar; + case BiasDirection.Down: + var downNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); + if (downNodes.Count != 0) + allNodes = downNodes; break; } } @@ -226,12 +227,14 @@ public void ForceActivateArtifact(EntityUid uid, EntityUid? user = null, Artifac var undiscoveredNodes = allNodes.Where(x => !GetNodeFromId(x, component).Discovered).ToList(); Log.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); var newNode = _random.Pick(allNodes); - if (undiscoveredNodes.Any() && _random.Prob(0.75f)) + + if (undiscoveredNodes.Count != 0 && _random.Prob(0.75f)) { newNode = _random.Pick(undiscoveredNodes); } Log.Debug($"Going to node {newNode}"); + return GetNodeFromId(newNode, component); } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs index 92a586547dd..c6f56a27508 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Triggers/Systems/ArtifactMagnetTriggerSystem.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Server.Salvage; using Content.Server.Xenoarchaeology.XenoArtifacts.Triggers.Components; using Content.Shared.Clothing; @@ -42,7 +42,7 @@ public override void Update(float frameTime) if (!magXform.Coordinates.TryDistance(EntityManager, xform.Coordinates, out var distance)) continue; - if (distance > trigger.Range) + if (distance > trigger.MagbootRange) continue; _toActivate.Add(artifactUid); diff --git a/Content.Server/Zombies/PendingZombieComponent.cs b/Content.Server/Zombies/PendingZombieComponent.cs index a49b424c53f..10b62c05dc7 100644 --- a/Content.Server/Zombies/PendingZombieComponent.cs +++ b/Content.Server/Zombies/PendingZombieComponent.cs @@ -16,7 +16,7 @@ public sealed partial class PendingZombieComponent : Component { DamageDict = new () { - { "Poison", 0.3 }, + { "Poison", 0.2 }, } }; diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 4c12622ab56..89c08e0a4e7 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -318,6 +318,7 @@ public void SetAccesses(EntityUid uid, AccessReaderComponent component, List>(){access}); } + Dirty(uid, component); RaiseLocalEvent(uid, new AccessReaderConfigurationChangedEvent()); } diff --git a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs index 51ae8cc7406..dec9516c013 100644 --- a/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs +++ b/Content.Shared/Atmos/Components/GasAnalyzerComponent.cs @@ -56,13 +56,15 @@ public struct GasMixEntry /// Name of the tab in the UI /// public readonly string Name; + public readonly float Volume; public readonly float Pressure; public readonly float Temperature; public readonly GasEntry[]? Gases; - public GasMixEntry(string name, float pressure, float temperature, GasEntry[]? gases = null) + public GasMixEntry(string name, float volume, float pressure, float temperature, GasEntry[]? gases = null) { Name = name; + Volume = volume; Pressure = pressure; Temperature = temperature; Gases = gases; diff --git a/Content.Shared/Audio/Jukebox/JukeboxComponent.cs b/Content.Shared/Audio/Jukebox/JukeboxComponent.cs new file mode 100644 index 00000000000..f9bb385f520 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxComponent.cs @@ -0,0 +1,80 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Audio.Jukebox; + +[NetworkedComponent, RegisterComponent, AutoGenerateComponentState(true)] +[Access(typeof(SharedJukeboxSystem))] +public sealed partial class JukeboxComponent : Component +{ + [DataField, AutoNetworkedField] + public ProtoId? SelectedSongId; + + [DataField, AutoNetworkedField] + public EntityUid? AudioStream; + + /// + /// RSI state for the jukebox being on. + /// + [DataField] + public string? OnState; + + /// + /// RSI state for the jukebox being on. + /// + [DataField] + public string? OffState; + + /// + /// RSI state for the jukebox track being selected. + /// + [DataField] + public string? SelectState; + + [ViewVariables] + public bool Selecting; + + [ViewVariables] + public float SelectAccumulator; +} + +[Serializable, NetSerializable] +public sealed class JukeboxPlayingMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxPauseMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxStopMessage : BoundUserInterfaceMessage; + +[Serializable, NetSerializable] +public sealed class JukeboxSelectedMessage(ProtoId songId) : BoundUserInterfaceMessage +{ + public ProtoId SongId { get; } = songId; +} + +[Serializable, NetSerializable] +public sealed class JukeboxSetTimeMessage(float songTime) : BoundUserInterfaceMessage +{ + public float SongTime { get; } = songTime; +} + +[Serializable, NetSerializable] +public enum JukeboxVisuals : byte +{ + VisualState +} + +[Serializable, NetSerializable] +public enum JukeboxVisualState : byte +{ + On, + Off, + Select, +} + +public enum JukeboxVisualLayers : byte +{ + Base +} diff --git a/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs new file mode 100644 index 00000000000..ad690ef4973 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxPrototype.cs @@ -0,0 +1,23 @@ +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Audio.Jukebox; + +/// +/// Soundtrack that's visible on the jukebox list. +/// +[Prototype] +public sealed partial class JukeboxPrototype : IPrototype +{ + [IdDataField] + public string ID { get; } = string.Empty; + + /// + /// User friendly name to use in UI. + /// + [DataField(required: true)] + public string Name = string.Empty; + + [DataField(required: true)] + public SoundPathSpecifier Path = default!; +} diff --git a/Content.Shared/Audio/Jukebox/JukeboxUi.cs b/Content.Shared/Audio/Jukebox/JukeboxUi.cs new file mode 100644 index 00000000000..bf1fc3d5d22 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/JukeboxUi.cs @@ -0,0 +1,11 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Audio.Jukebox; + + +[Serializable, NetSerializable] +public enum JukeboxUiKey : byte +{ + Key, +} diff --git a/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs b/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs new file mode 100644 index 00000000000..1a8f9cb3bb8 --- /dev/null +++ b/Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs @@ -0,0 +1,8 @@ +using Robust.Shared.Audio.Systems; + +namespace Content.Shared.Audio.Jukebox; + +public abstract class SharedJukeboxSystem : EntitySystem +{ + [Dependency] protected readonly SharedAudioSystem Audio = default!; +} diff --git a/Content.Shared/Audio/SharedAmbientSoundSystem.cs b/Content.Shared/Audio/SharedAmbientSoundSystem.cs index 5f17261825c..0a52b7c58e2 100644 --- a/Content.Shared/Audio/SharedAmbientSoundSystem.cs +++ b/Content.Shared/Audio/SharedAmbientSoundSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Mobs; using Robust.Shared.Audio; using Robust.Shared.GameStates; @@ -12,6 +13,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(GetCompState); SubscribeLocalEvent(HandleCompState); + _query = GetEntityQuery(); } diff --git a/Content.Shared/Audio/SoundWhileAliveComponent.cs b/Content.Shared/Audio/SoundWhileAliveComponent.cs new file mode 100644 index 00000000000..977d9372ce2 --- /dev/null +++ b/Content.Shared/Audio/SoundWhileAliveComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.Sound.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Audio; + +/// +/// Toggles and off when this entity's MobState isn't Alive. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SoundWhileAliveComponent : Component; diff --git a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs index f14dc21c480..c3fa21e293e 100644 --- a/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs +++ b/Content.Shared/Bed/Cryostorage/SharedCryostorageSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Mind.Components; +using Content.Shared.Mobs.Systems; using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -22,6 +23,7 @@ public abstract class SharedCryostorageSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] protected readonly SharedMindSystem Mind = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; protected EntityUid? PausedMap { get; private set; } @@ -81,6 +83,12 @@ private void OnInsertAttempt(Entity ent, ref ContainerIsIn if (args.Container.ID != comp.ContainerId) return; + if (_mobState.IsIncapacitated(args.EntityUid)) + { + args.Cancel(); + return; + } + if (!TryComp(args.EntityUid, out var mindContainer)) { args.Cancel(); diff --git a/Content.Shared/Burial/BurialSystem.cs b/Content.Shared/Burial/BurialSystem.cs index ccf5f1a298f..326272cc7de 100644 --- a/Content.Shared/Burial/BurialSystem.cs +++ b/Content.Shared/Burial/BurialSystem.cs @@ -116,8 +116,9 @@ private void StartDigging(EntityUid uid, EntityUid user, EntityUid? used, GraveC { if (used != null) { - _popupSystem.PopupClient(Loc.GetString("grave-start-digging-user", ("grave", uid), ("tool", used)), user, user); - _popupSystem.PopupEntity(Loc.GetString("grave-start-digging-others", ("user", user), ("grave", uid), ("tool", used)), user, Filter.PvsExcept(user), true); + var selfMessage = Loc.GetString("grave-start-digging-user", ("grave", uid), ("tool", used)); + var othersMessage = Loc.GetString("grave-start-digging-others", ("user", user), ("grave", uid), ("tool", used)); + _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); component.ActiveShovelDigging = true; Dirty(uid, component); } diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c8b52f63a97..2b60876943c 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -229,25 +229,6 @@ public static readonly CVarDef public static readonly CVarDef GameCryoSleepRejoining = CVarDef.Create("game.cryo_sleep_rejoining", false, CVar.SERVER | CVar.REPLICATED); - /// - /// Whether a random position offset will be applied to the station on roundstart. - /// - public static readonly CVarDef StationOffset = - CVarDef.Create("game.station_offset", true); - - /// - /// When the default blueprint is loaded what is the maximum amount it can be offset from 0,0. - /// Does nothing without as true. - /// - public static readonly CVarDef MaxStationOffset = - CVarDef.Create("game.maxstationoffset", 1000.0f); - - /// - /// Whether a random rotation will be applied to the station on roundstart. - /// - public static readonly CVarDef StationRotation = - CVarDef.Create("game.station_rotation", true); - /// /// When enabled, guests will be assigned permanent UIDs and will have their preferences stored. /// @@ -726,7 +707,7 @@ public static readonly CVarDef public static readonly CVarDef CombatModeIndicatorsPointShow = CVarDef.Create("hud.combat_mode_indicators_point_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); - + public static readonly CVarDef LoocAboveHeadShow = CVarDef.Create("hud.show_looc_above_head", true, CVar.ARCHIVE | CVar.CLIENTONLY); @@ -773,6 +754,13 @@ public static readonly CVarDef public static readonly CVarDef AdminAnnounceLogout = CVarDef.Create("admin.announce_logout", true, CVar.SERVERONLY); + /// + /// The token used to authenticate with the admin API. Leave empty to disable the admin API. This is a secret! Do not share! + /// + public static readonly CVarDef AdminApiToken = + CVarDef.Create("admin.api_token", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// /// Should users be able to see their own notes? Admins will be able to see and set notes regardless /// @@ -808,19 +796,43 @@ public static readonly CVarDef /// Default severity for role bans /// public static readonly CVarDef RoleBanDefaultSeverity = - CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for department bans /// public static readonly CVarDef DepartmentBanDefaultSeverity = - CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Default severity for server bans /// public static readonly CVarDef ServerBanDefaultSeverity = - CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER); + CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's ip by default. + /// + public static readonly CVarDef ServerBanIpBanDefault = + CVarDef.Create("admin.server_ban_ip_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's hardware id by default. + /// + public static readonly CVarDef ServerBanHwidBanDefault = + CVarDef.Create("admin.server_ban_hwid_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to use details from last connection for ip/hwid in the BanPanel. + /// + public static readonly CVarDef ServerBanUseLastDetails = + CVarDef.Create("admin.server_ban_use_last_details", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to erase a player's chat messages and their entity from the game when banned. + /// + public static readonly CVarDef ServerBanErasePlayer = + CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); /// /// Minimum explosion intensity to create an admin alert message. -1 to disable the alert. @@ -1225,7 +1237,7 @@ public static readonly CVarDef /// public static readonly CVarDef OocEnableDuringRound = CVarDef.Create("ooc.enable_during_round", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); - + public static readonly CVarDef ShowOocPatronColor = CVarDef.Create("ooc.show_ooc_patron_color", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.CLIENT); @@ -1458,6 +1470,7 @@ public static readonly CVarDef /// /// The minimum time for the emergency shuttle to arrive at centcomm. + /// Actual minimum travel time cannot be less than /// public static readonly CVarDef EmergencyShuttleMinTransitTime = CVarDef.Create("shuttle.emergency_transit_time_min", 90f, CVar.SERVERONLY); @@ -1566,6 +1579,9 @@ public static readonly CVarDef public static readonly CVarDef ViewportWidth = CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE); + public static readonly CVarDef ViewportVerticalFit = + CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE); + /* * UI */ diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index a6d5fb0a18a..831010cedd7 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -21,6 +21,11 @@ public sealed class CargoOrderData /// public readonly string ProductId; + /// + /// Prototype Name + /// + public readonly string ProductName; + /// /// The number of items in the order. Not readonly, as it might change /// due to caps on the amount of orders that can be placed. @@ -39,10 +44,11 @@ public sealed class CargoOrderData public bool Approved => Approver is not null; public string? Approver; - public CargoOrderData(int orderId, string productId, int price, int amount, string requester, string reason) + public CargoOrderData(int orderId, string productId, string productName, int price, int amount, string requester, string reason) { OrderId = orderId; ProductId = productId; + ProductName = productName; Price = price; OrderQuantity = amount; Requester = requester; diff --git a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs index 7b1acf836fd..bf82a08127e 100644 --- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs @@ -32,16 +32,30 @@ public sealed partial class CargoBountyConsoleComponent : Component /// [DataField("printSound")] public SoundSpecifier PrintSound = new SoundPathSpecifier("/Audio/Machines/printer.ogg"); + + /// + /// The sound made when the bounty is skipped. + /// + [DataField("skipSound")] + public SoundSpecifier SkipSound = new SoundPathSpecifier("/Audio/Effects/Cargo/ping.ogg"); + + /// + /// The sound made when bounty skipping is denied due to lacking access. + /// + [DataField("denySound")] + public SoundSpecifier DenySound = new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_two.ogg"); } [NetSerializable, Serializable] public sealed class CargoBountyConsoleState : BoundUserInterfaceState { public List Bounties; + public TimeSpan UntilNextSkip; - public CargoBountyConsoleState(List bounties) + public CargoBountyConsoleState(List bounties, TimeSpan untilNextSkip) { Bounties = bounties; + UntilNextSkip = untilNextSkip; } } @@ -55,3 +69,14 @@ public BountyPrintLabelMessage(string bountyId) BountyId = bountyId; } } + +[Serializable, NetSerializable] +public sealed class BountySkipMessage : BoundUserInterfaceMessage +{ + public string BountyId; + + public BountySkipMessage(string bountyId) + { + BountyId = bountyId; + } +} diff --git a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs index a7d1f531754..873e9bb7b9d 100644 --- a/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs +++ b/Content.Shared/Cargo/Components/CargoOrderConsoleComponent.cs @@ -1,6 +1,8 @@ using Content.Shared.Cargo.Prototypes; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Content.Shared.Radio; +using Robust.Shared.Prototypes; namespace Content.Shared.Cargo.Components; @@ -21,5 +23,11 @@ public sealed partial class CargoOrderConsoleComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public List AllowedGroups = new() { "market" }; + + /// + /// Radio channel on which order approval announcements are transmitted + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId AnnouncementChannel = "Supply"; } diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index 1d0ca8abdb4..af2f6613d63 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; using Robust.Shared.Utility; diff --git a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs index 41ed4b1b2ba..81ebcfb1088 100644 --- a/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs +++ b/Content.Shared/Chat/TypingIndicator/SharedTypingIndicatorSystem.cs @@ -1,5 +1,4 @@ -using Content.Shared.Clothing.Components; -using Content.Shared.Inventory.Events; +using Content.Shared.Clothing; namespace Content.Shared.Chat.TypingIndicator; @@ -17,25 +16,21 @@ public abstract class SharedTypingIndicatorSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } - private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotEquippedEvent args) { - if (!TryComp(uid, out var clothing) || - !TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; - var isCorrectSlot = clothing.Slots.HasFlag(args.SlotFlags); - if (!isCorrectSlot) return; - indicator.Prototype = component.Prototype; } - private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, GotUnequippedEvent args) + private void OnGotUnequipped(EntityUid uid, TypingIndicatorClothingComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out var indicator)) + if (!TryComp(args.Wearer, out var indicator)) return; indicator.Prototype = SharedTypingIndicatorSystem.InitialIndicatorId; diff --git a/Content.Shared/Chat/V2/Repository/Types.cs b/Content.Shared/Chat/V2/Repository/Types.cs new file mode 100644 index 00000000000..59acb849d46 --- /dev/null +++ b/Content.Shared/Chat/V2/Repository/Types.cs @@ -0,0 +1,60 @@ +using System.Linq; +using System.Runtime.InteropServices; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chat.V2.Repository; + +/// +/// The record associated with a specific chat event. +/// +public struct ChatRecord(string userName, NetUserId userId, IChatEvent storedEvent, string entityName) +{ + public string UserName = userName; + public NetUserId UserId = userId; + public string EntityName = entityName; + public IChatEvent StoredEvent = storedEvent; +} + +/// +/// Notifies that a chat message has been created. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageCreatedEvent(IChatEvent ev) : EntityEventArgs +{ + public IChatEvent Event = ev; +} + +/// +/// Notifies that a chat message has been changed. +/// +/// +/// +[Serializable, NetSerializable] +public sealed class MessagePatchedEvent(uint id, string newMessage) : EntityEventArgs +{ + public uint MessageId = id; + public string NewMessage = newMessage; +} + +/// +/// Notifies that a chat message has been deleted. +/// +/// +[Serializable, NetSerializable] +public sealed class MessageDeletedEvent(uint id) : EntityEventArgs +{ + public uint MessageId = id; +} + +/// +/// Notifies that a player's messages have been nuked. +/// +/// +[Serializable, NetSerializable] +public sealed class MessagesNukedEvent(List set) : EntityEventArgs +{ + public uint[] MessageIds = CollectionsMarshal.AsSpan(set).ToArray(); +} + diff --git a/Content.Shared/Chat/V2/Types.cs b/Content.Shared/Chat/V2/Types.cs new file mode 100644 index 00000000000..50e5a53ab50 --- /dev/null +++ b/Content.Shared/Chat/V2/Types.cs @@ -0,0 +1,94 @@ +namespace Content.Shared.Chat.V2; + +/// +/// The types of messages that can be sent, validated and processed via user input that are covered by Chat V2. +/// +public enum MessageType : byte +{ + #region Player-sendable types + + /// + /// Chat for announcements like CentCom telling you to stop sending them memes. + /// + Announcement, + /// + /// Chat that ghosts use to complain about being gibbed. + /// + DeadChat, + /// + /// Chat that mimes use to evade their vow. + /// + Emote, + /// + /// Chat that players use to make lame jokes to people nearby. + /// + Local, + /// + /// Chat that players use to complain about shitsec/admins/antags/balance/etc. + /// + Looc, + /// + /// Chat that players use to say "HELP MAINT", or plead to call the shuttle because a beaker spilled. + /// + /// This does not tell you what radio channel has been chatted on! + Radio, + /// + /// Chat that is used exclusively by syndie tots to collaborate on whatever tots do. + /// + Whisper, + + #endregion + + #region Non-player-sendable types + + /// + /// Chat that is sent to exactly one player; almost exclusively used for admemes and prayer responses. + /// + Subtle, + /// + /// Chat that is sent by automata, like when a vending machine thanks you for your unwise purchases. + /// + Background, + + #endregion +} + +/// +/// Defines a chat event that can be stored in a chat repository. +/// +public interface IChatEvent +{ + /// + /// The sender of the chat message. + /// + public EntityUid Sender + { + get; + } + + /// + /// The ID of the message. This is overwritten when saved into a repository. + /// + public uint Id + { + get; + set; + } + + /// + /// The sent message. + /// + public string Message + { + get; + set; + } + + /// + /// The type of sent message. + /// + public MessageType Type + { + get; + } +} diff --git a/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs new file mode 100644 index 00000000000..2b1c140aa69 --- /dev/null +++ b/Content.Shared/Chemistry/Components/MixableSolutionComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class MixableSolutionComponent : Component +{ + /// + /// Solution name which can be mixed with methods such as blessing + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution = "default"; +} diff --git a/Content.Shared/Chemistry/Components/ReagentTankComponent.cs b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs new file mode 100644 index 00000000000..3aa1756cf9c --- /dev/null +++ b/Content.Shared/Chemistry/Components/ReagentTankComponent.cs @@ -0,0 +1,22 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Chemistry.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class ReagentTankComponent : Component +{ + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 TransferAmount { get; set; } = FixedPoint2.New(10); + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ReagentTankType TankType { get; set; } = ReagentTankType.Unspecified; +} + +[Serializable, NetSerializable] +public enum ReagentTankType : byte +{ + Unspecified, + Fuel +} diff --git a/Content.Shared/Chemistry/Components/Solution.cs b/Content.Shared/Chemistry/Components/Solution.cs index 1c24c860dd0..4de3c369f7c 100644 --- a/Content.Shared/Chemistry/Components/Solution.cs +++ b/Content.Shared/Chemistry/Components/Solution.cs @@ -48,13 +48,6 @@ public sealed partial class Solution : IEnumerable, ISerializat [DataField("canReact")] public bool CanReact { get; set; } = true; - /// - /// If reactions can occur via mixing. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canMix")] - public bool CanMix { get; set; } = false; - /// /// Volume needed to fill this container. /// diff --git a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs index e260280ae45..36ca791290a 100644 --- a/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/RehydratableSystem.cs @@ -1,12 +1,14 @@ using Content.Shared.Chemistry.Components; using Content.Shared.FixedPoint; using Content.Shared.Popups; +using Robust.Shared.Network; using Robust.Shared.Random; namespace Content.Shared.Chemistry.EntitySystems; public sealed class RehydratableSystem : EntitySystem { + [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; @@ -31,6 +33,9 @@ private void OnSolutionChange(Entity ent, ref SolutionCon // Try not to make this public if you can help it. private void Expand(Entity ent) { + if (_net.IsClient) + return; + var (uid, comp) = ent; var randomMob = _random.Pick(comp.PossibleSpawns); diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs index 0d4912a504b..ce0cfab0021 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.Capabilities.cs @@ -78,31 +78,15 @@ public bool TryGetFitsInDispenser(Entity container, [NotNullWhen(true)] out Entity? solution) + public bool TryGetMixableSolution(Entity entity, [NotNullWhen(true)] out Entity? soln, [NotNullWhen(true)] out Solution? solution) { - var getMixableSolutionAttempt = new GetMixableSolutionAttemptEvent(container); - RaiseLocalEvent(container, ref getMixableSolutionAttempt); - if (getMixableSolutionAttempt.MixedSolution != null) - { - solution = getMixableSolutionAttempt.MixedSolution; - return true; - } - - if (!Resolve(container, ref container.Comp, false)) + if (!Resolve(entity, ref entity.Comp1, logMissing: false)) { - solution = default!; + (soln, solution) = (default!, null); return false; } - var tryGetSolution = EnumerateSolutions(container).FirstOrNull(x => x.Solution.Comp.Solution.CanMix); - if (tryGetSolution.HasValue) - { - solution = tryGetSolution.Value.Solution; - return true; - } - - solution = default!; - return false; + return TryGetSolution((entity.Owner, entity.Comp2), entity.Comp1.Solution, out soln, out solution); } #endregion Solution Accessors diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index 5bb97e83ebf..e74c1463804 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -57,6 +57,7 @@ public abstract partial class SharedSolutionContainerSystem : EntitySystem [Dependency] protected readonly SharedAppearanceSystem AppearanceSystem = default!; [Dependency] protected readonly SharedHandsSystem Hands = default!; [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!; + [Dependency] protected readonly MetaDataSystem MetaData = default!; public override void Initialize() { diff --git a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs index ede73c49690..118f2240610 100644 --- a/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs +++ b/Content.Shared/Chemistry/Reaction/ReactionMixerComponent.cs @@ -25,6 +25,3 @@ public sealed partial class ReactionMixerComponent : Component public record struct MixingAttemptEvent(EntityUid Mixed, bool Cancelled = false); public readonly record struct AfterMixingEvent(EntityUid Mixed, EntityUid Mixer); - -[ByRefEvent] -public record struct GetMixableSolutionAttemptEvent(EntityUid Mixed, Entity? MixedSolution = null); diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 5d6d9d21208..df1b1aa20b4 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -104,6 +104,13 @@ public sealed partial class ReagentPrototype : IPrototype, IInheritingPrototype [DataField] public bool Slippery; + /// + /// How easily this reagent becomes fizzy when aggitated. + /// 0 - completely flat, 1 - fizzes up when nudged. + /// + [DataField] + public float Fizziness; + /// /// How much reagent slows entities down if it's part of a puddle. /// 0 - no slowdown; 1 - can't move. diff --git a/Content.Shared/Climbing/Systems/BonkSystem.cs b/Content.Shared/Climbing/Systems/BonkSystem.cs index 4fe2661aff9..ea4e04c621a 100644 --- a/Content.Shared/Climbing/Systems/BonkSystem.cs +++ b/Content.Shared/Climbing/Systems/BonkSystem.cs @@ -57,9 +57,11 @@ public bool TryBonk(EntityUid user, EntityUid bonkableUid, BonkableComponent? bo if (user == source) { // Non-local, non-bonking players - _popupSystem.PopupEntity(Loc.GetString("bonkable-success-message-others", ("user", userName), ("bonkable", bonkableName)), user, Filter.PvsExcept(user), true); + var othersMessage = Loc.GetString("bonkable-success-message-others", ("user", userName), ("bonkable", bonkableName)); // Local, bonking player - _popupSystem.PopupClient(Loc.GetString("bonkable-success-message-user", ("user", userName), ("bonkable", bonkableName)), user, user); + var selfMessage = Loc.GetString("bonkable-success-message-user", ("user", userName), ("bonkable", bonkableName)); + + _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); } else if (source != null) { diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 5471f072501..1bdaecf730f 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -307,8 +307,7 @@ private void Climb(EntityUid uid, EntityUid user, EntityUid climbable, bool sile ("climbable", climbable)); } - _popupSystem.PopupEntity(othersMessage, uid, Filter.PvsExcept(user, entityManager: EntityManager), true); - _popupSystem.PopupClient(selfMessage, uid, user); + _popupSystem.PopupPredicted(selfMessage, othersMessage, uid, user); } /// diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 1dcce2402ae..83afea45973 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; +using Content.Shared.Clothing.Components; namespace Content.Shared.Clothing; @@ -71,3 +72,31 @@ public sealed partial class ToggleMaskEvent : InstantActionEvent { } /// [ByRefEvent] public readonly record struct WearerMaskToggledEvent(bool IsToggled); + +/// +/// Raised on the clothing entity when it is equipped to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotEquippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on the clothing entity when it is unequipped from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingGotUnequippedEvent(EntityUid Wearer, ClothingComponent Clothing); + +/// +/// Raised on an entity when they equip a clothing item to a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidEquippedEvent(Entity Clothing); + +/// +/// Raised on an entity when they unequip a clothing item from a valid slot, +/// as determined by . +/// +[ByRefEvent] +public readonly record struct ClothingDidUnequippedEvent(Entity Clothing); diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 0f4c7f68bfc..6d7226e767d 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -66,6 +66,9 @@ public sealed partial class ClothingComponent : Component [DataField("unisexMask")] public ClothingMask UnisexMask = ClothingMask.UniformFull; + /// + /// Name of the inventory slot the clothing is in. + /// public string? InSlot; [DataField, ViewVariables(VVAccess.ReadWrite)] diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs new file mode 100644 index 00000000000..ac3d9b97896 --- /dev/null +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -0,0 +1,24 @@ +using Content.Shared.Humanoid; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing.Components; + +/// +/// This is used for a clothing item that hides an appearance layer. +/// The entity's HumanoidAppearance component must have the corresponding hideLayerOnEquip value. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class HideLayerClothingComponent : Component +{ + /// + /// The appearance layer to hide. + /// + [DataField] + public HashSet Slots = new(); + + /// + /// If true, the layer will only hide when the item is in a toggled state (e.g. masks) + /// + [DataField] + public bool HideOnToggle = false; +} diff --git a/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs b/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs new file mode 100644 index 00000000000..5cd7a724577 --- /dev/null +++ b/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs @@ -0,0 +1,35 @@ +using System.Numerics; + +namespace Content.Shared.Clothing.Components; + +/// +/// Defines something as causing waddling when worn. +/// +[RegisterComponent] +public sealed partial class WaddleWhenWornComponent : Component +{ + /// + /// How high should they hop during the waddle? Higher hop = more energy. + /// + [DataField] + public Vector2 HopIntensity = new(0, 0.25f); + + /// + /// How far should they rock backward and forward during the waddle? + /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. + /// + [DataField] + public float TumbleIntensity = 20.0f; + + /// + /// How long should a complete step take? Less time = more chaos. + /// + [DataField] + public float AnimationLength = 0.66f; + + /// + /// How much shorter should the animation be when running? + /// + [DataField] + public float RunAnimationLengthMultiplier = 0.568f; +} diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 85df04d20a1..d85506df4b1 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -6,26 +6,19 @@ using Content.Shared.Inventory; using Content.Shared.Inventory.Events; using Content.Shared.Item; -using Content.Shared.Tag; +using Robust.Shared.Containers; using Robust.Shared.GameStates; -using System.Linq; namespace Content.Shared.Clothing.EntitySystems; public abstract class ClothingSystem : EntitySystem { [Dependency] private readonly SharedItemSystem _itemSys = default!; + [Dependency] private readonly SharedContainerSystem _containerSys = default!; [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; [Dependency] private readonly InventorySystem _invSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [ValidatePrototypeId] - private const string HairTag = "HidesHair"; - - [ValidatePrototypeId] - private const string NoseTag = "HidesNose"; - public override void Initialize() { base.Initialize(); @@ -89,18 +82,22 @@ private void QuickEquip( } } - private void ToggleVisualLayer(EntityUid equipee, HumanoidVisualLayers layer, string tag) + private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers) { - InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee, SlotFlags.HEAD ^ SlotFlags.MASK); - bool shouldLayerShow = true; - - while (enumerator.NextItem(out EntityUid item)) + foreach (HumanoidVisualLayers layer in layers) { - if (_tagSystem.HasTag(item, tag)) + if (!appearanceLayers.Contains(layer)) + break; + + InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); + + bool shouldLayerShow = true; + while (enumerator.NextItem(out EntityUid item)) { - if (tag == NoseTag) //Special check needs to be made for NoseTag, due to masks being toggleable + if (TryComp(item, out HideLayerClothingComponent? comp)) { - if (TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) + //Checks for mask toggling. TODO: Make a generic system for this + if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask) && TryComp(item, out ClothingComponent? clothing)) { if (clothing.EquippedPrefix != mask.EquippedPrefix) { @@ -114,32 +111,39 @@ private void ToggleVisualLayer(EntityUid equipee, HumanoidVisualLayers layer, st break; } } - else - { - shouldLayerShow = false; - break; - } } + _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } - _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); } protected virtual void OnGotEquipped(EntityUid uid, ClothingComponent component, GotEquippedEvent args) { component.InSlot = args.Slot; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); + + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotEquippedEvent = new ClothingGotEquippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotEquippedEvent); + + var didEquippedEvent = new ClothingDidEquippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didEquippedEvent); + } } protected virtual void OnGotUnequipped(EntityUid uid, ClothingComponent component, GotUnequippedEvent args) { + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotUnequippedEvent = new ClothingGotUnequippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotUnequippedEvent); + + var didUnequippedEvent = new ClothingDidUnequippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didUnequippedEvent); + } + component.InSlot = null; - if ((new string[] { "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, HairTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Hair, HairTag); - if ((new string[] { "mask", "head" }).Contains(args.Slot) && _tagSystem.HasTag(args.Equipment, NoseTag)) - ToggleVisualLayer(args.Equipee, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); } private void OnGetState(EntityUid uid, ClothingComponent component, ref ComponentGetState args) @@ -150,14 +154,20 @@ private void OnGetState(EntityUid uid, ClothingComponent component, ref Componen private void OnHandleState(EntityUid uid, ClothingComponent component, ref ComponentHandleState args) { if (args.Current is ClothingComponentState state) + { SetEquippedPrefix(uid, state.EquippedPrefix, component); + if (component.InSlot != null && _containerSys.TryGetContainingContainer(uid, out var container)) + { + CheckEquipmentForLayerHide(uid, container.Owner); + } + } } private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { //TODO: sprites for 'pulled down' state. defaults to invisible due to no sprite with this prefix SetEquippedPrefix(ent, args.IsToggled ? args.equippedPrefix : null, ent); - ToggleVisualLayer(args.Wearer, HumanoidVisualLayers.Snout, NoseTag); + CheckEquipmentForLayerHide(ent.Owner, args.Wearer); } private void OnEquipDoAfter(Entity ent, ref ClothingEquipDoAfterEvent args) @@ -176,6 +186,12 @@ private void OnUnequipDoAfter(Entity ent, ref ClothingUnequip _handsSystem.TryPickup(args.User, ent); } + private void CheckEquipmentForLayerHide(EntityUid equipment, EntityUid equipee) + { + if (TryComp(equipment, out HideLayerClothingComponent? clothesComp) && TryComp(equipee, out HumanoidAppearanceComponent? appearanceComp)) + ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip); + } + #region Public API public void SetEquippedPrefix(EntityUid uid, string? prefix, ClothingComponent? clothing = null) diff --git a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs index aab2a172dc1..d99777929f4 100644 --- a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs @@ -42,12 +42,10 @@ private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) return; mask.IsToggled ^= true; - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - if (mask.IsToggled) - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-down-popup-message", ("mask", uid)), args.Performer, args.Performer); - else - _popupSystem.PopupEntity(Loc.GetString("action-mask-pull-up-popup-message", ("mask", uid)), args.Performer, args.Performer); + var dir = mask.IsToggled ? "down" : "up"; + var msg = $"action-mask-pull-{dir}-popup-message"; + _popupSystem.PopupEntity(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer); ToggleMaskComponents(uid, mask, args.Performer, mask.EquippedPrefix); } @@ -55,18 +53,22 @@ private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) // set to untoggled when unequipped, so it isn't left in a 'pulled down' state private void OnGotUnequipped(EntityUid uid, MaskComponent mask, GotUnequippedEvent args) { - if (mask.ToggleActionEntity == null) + if (!mask.IsToggled) return; mask.IsToggled = false; - Dirty(uid, mask); - _actionSystem.SetToggled(mask.ToggleActionEntity, mask.IsToggled); - ToggleMaskComponents(uid, mask, args.Equipee, mask.EquippedPrefix, true); } + /// + /// Called after setting IsToggled, raises events and dirties. + /// private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, string? equippedPrefix = null, bool isEquip = false) { + Dirty(uid, mask); + if (mask.ToggleActionEntity is {} action) + _actionSystem.SetToggled(action, mask.IsToggled); + var maskEv = new ItemMaskToggledEvent(wearer, equippedPrefix, mask.IsToggled, isEquip); RaiseLocalEvent(uid, ref maskEv); diff --git a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs index 7d748a67a45..bbb640bd986 100644 --- a/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SkatesSystem.cs @@ -17,34 +17,28 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); } /// /// When item is unequipped from the shoe slot, friction, aceleration and collide on impact return to default settings. /// - public void OnGotUnequipped(EntityUid uid, SkatesComponent component, GotUnequippedEvent args) + public void OnGotUnequipped(EntityUid uid, SkatesComponent component, ClothingGotUnequippedEvent args) { - if (!TryComp(args.Equipee, out MovementSpeedModifierComponent? speedModifier)) + if (!TryComp(args.Wearer, out MovementSpeedModifierComponent? speedModifier)) return; - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); - _impact.ChangeCollide(args.Equipee, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); - } + _move.ChangeFriction(args.Wearer, MovementSpeedModifierComponent.DefaultFriction, MovementSpeedModifierComponent.DefaultFrictionNoInput, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); + _impact.ChangeCollide(args.Wearer, component.DefaultMinimumSpeed, component.DefaultStunSeconds, component.DefaultDamageCooldown, component.DefaultSpeedDamage); } /// /// When item is equipped into the shoe slot, friction, acceleration and collide on impact are adjusted. /// - private void OnGotEquipped(EntityUid uid, SkatesComponent component, GotEquippedEvent args) + private void OnGotEquipped(EntityUid uid, SkatesComponent component, ClothingGotEquippedEvent args) { - if (args.Slot == "shoes") - { - _move.ChangeFriction(args.Equipee, component.Friction, component.FrictionNoInput, component.Acceleration); - _impact.ChangeCollide(args.Equipee, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); - } + _move.ChangeFriction(args.Wearer, component.Friction, component.FrictionNoInput, component.Acceleration); + _impact.ChangeCollide(args.Wearer, component.MinimumSpeed, component.StunSeconds, component.DamageCooldown, component.SpeedDamage); } } diff --git a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs index 99e13ee2842..a50856b0448 100644 --- a/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs +++ b/Content.Shared/Damage/Prototypes/DamageModifierSetPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Damage.Prototypes /// just want normal data to be deserialized. /// [Prototype("damageModifierSet")] - public sealed class DamageModifierSetPrototype : DamageModifierSet, IPrototype + public sealed partial class DamageModifierSetPrototype : DamageModifierSet, IPrototype { [ViewVariables] [IdDataField] diff --git a/Content.Shared/DeltaV/Abilities/Borgs/RandomizedCandyComponent.cs b/Content.Shared/DeltaV/Abilities/Borgs/RandomizedCandyComponent.cs new file mode 100644 index 00000000000..57719760ee3 --- /dev/null +++ b/Content.Shared/DeltaV/Abilities/Borgs/RandomizedCandyComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Abilities.Borgs; + +/// +/// Marks this entity as being candy with a random flavor and color. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class RandomizedCandyComponent : Component +{ +} + +[Serializable, NetSerializable] +public enum RandomizedCandyVisuals : byte +{ + Color +} diff --git a/Content.Shared/DeviceLinking/DevicePortPrototype.cs b/Content.Shared/DeviceLinking/DevicePortPrototype.cs index c0a419ee653..e3421dda9db 100644 --- a/Content.Shared/DeviceLinking/DevicePortPrototype.cs +++ b/Content.Shared/DeviceLinking/DevicePortPrototype.cs @@ -29,13 +29,13 @@ public abstract class DevicePortPrototype [Prototype("sinkPort")] [Serializable, NetSerializable] -public sealed class SinkPortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SinkPortPrototype : DevicePortPrototype, IPrototype { } [Prototype("sourcePort")] [Serializable, NetSerializable] -public sealed class SourcePortPrototype : DevicePortPrototype, IPrototype +public sealed partial class SourcePortPrototype : DevicePortPrototype, IPrototype { /// /// This is a set of sink ports that this source port will attempt to link to when using the diff --git a/Content.Shared/Flash/Components/FlashComponent.cs b/Content.Shared/Flash/Components/FlashComponent.cs index a26e32cb70f..a9098bc85a9 100644 --- a/Content.Shared/Flash/Components/FlashComponent.cs +++ b/Content.Shared/Flash/Components/FlashComponent.cs @@ -12,6 +12,13 @@ public sealed partial class FlashComponent : Component [ViewVariables(VVAccess.ReadWrite)] public int FlashDuration { get; set; } = 5000; + /// + /// How long a target is stunned when a melee flash is used. + /// If null, melee flashes will not stun at all + /// + [DataField] + public TimeSpan? MeleeStunDuration = TimeSpan.FromSeconds(1.5); + [DataField("range")] [ViewVariables(VVAccess.ReadWrite)] public float Range { get; set; } = 7f; @@ -32,5 +39,8 @@ public sealed partial class FlashComponent : Component }; public bool Flashing; + + [DataField] + public float Probability = 1f; } } diff --git a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs index d1270e9db74..7658ca0ae5a 100644 --- a/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs +++ b/Content.Shared/Flash/Components/FlashOnTriggerComponent.cs @@ -9,4 +9,5 @@ public sealed partial class FlashOnTriggerComponent : Component { [DataField] public float Range = 1.0f; [DataField] public float Duration = 8.0f; + [DataField] public float Probability = 1.0f; } diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index 4785482ada4..c6a29ed9b96 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -85,6 +85,12 @@ public sealed partial class HumanoidAppearanceComponent : Component [ViewVariables(VVAccess.ReadOnly)] public Color? CachedFacialHairColor; + /// + /// Which layers of this humanoid that should be hidden on equipping a corresponding item.. + /// + [DataField] + public HashSet HideLayersOnEquip = [HumanoidVisualLayers.Hair]; + /// /// DeltaV - let paradox anomaly be cloned /// diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index f1f7de5c11a..95c7425e2ee 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -5,262 +5,246 @@ using Robust.Shared.Random; using Robust.Shared.Serialization; -namespace Content.Shared.Humanoid +namespace Content.Shared.Humanoid; + +[DataDefinition] +[Serializable, NetSerializable] +public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance { - [DataDefinition] - [Serializable, NetSerializable] - public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance + public HumanoidCharacterAppearance(string hairStyleId, + Color hairColor, + string facialHairStyleId, + Color facialHairColor, + Color eyeColor, + Color skinColor, + List markings) { - public HumanoidCharacterAppearance(string hairStyleId, - Color hairColor, - string facialHairStyleId, - Color facialHairColor, - Color eyeColor, - Color skinColor, - List markings) - { - HairStyleId = hairStyleId; - HairColor = ClampColor(hairColor); - FacialHairStyleId = facialHairStyleId; - FacialHairColor = ClampColor(facialHairColor); - EyeColor = ClampColor(eyeColor); - SkinColor = ClampColor(skinColor); - Markings = markings; - } + HairStyleId = hairStyleId; + HairColor = ClampColor(hairColor); + FacialHairStyleId = facialHairStyleId; + FacialHairColor = ClampColor(facialHairColor); + EyeColor = ClampColor(eyeColor); + SkinColor = ClampColor(skinColor); + Markings = markings; + } - [DataField("hair")] - public string HairStyleId { get; private set; } + [DataField("hair")] + public string HairStyleId { get; private set; } - [DataField("hairColor")] - public Color HairColor { get; private set; } + [DataField("hairColor")] + public Color HairColor { get; private set; } - [DataField("facialHair")] - public string FacialHairStyleId { get; private set; } + [DataField("facialHair")] + public string FacialHairStyleId { get; private set; } - [DataField("facialHairColor")] - public Color FacialHairColor { get; private set; } + [DataField("facialHairColor")] + public Color FacialHairColor { get; private set; } - [DataField("eyeColor")] - public Color EyeColor { get; private set; } + [DataField("eyeColor")] + public Color EyeColor { get; private set; } - [DataField("skinColor")] - public Color SkinColor { get; private set; } + [DataField("skinColor")] + public Color SkinColor { get; private set; } - [DataField("markings")] - public List Markings { get; private set; } + [DataField("markings")] + public List Markings { get; private set; } - public HumanoidCharacterAppearance WithHairStyleName(string newName) - { - return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithHairStyleName(string newName) + { + return new(newName, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithHairColor(Color newColor) - { - return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithHairColor(Color newColor) + { + return new(HairStyleId, newColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) - { - return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithFacialHairStyleName(string newName) + { + return new(HairStyleId, HairColor, newName, FacialHairColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithFacialHairColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, newColor, EyeColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithEyeColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); - } + public HumanoidCharacterAppearance WithEyeColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, newColor, SkinColor, Markings); + } - public HumanoidCharacterAppearance WithSkinColor(Color newColor) - { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); - } + public HumanoidCharacterAppearance WithSkinColor(Color newColor) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, newColor, Markings); + } - public HumanoidCharacterAppearance WithMarkings(List newMarkings) + public HumanoidCharacterAppearance WithMarkings(List newMarkings) + { + return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); + } + + public HumanoidCharacterAppearance() : this( + HairStyles.DefaultHairStyle, + Color.Black, + HairStyles.DefaultFacialHairStyle, + Color.Black, + Color.Black, + Humanoid.SkinColor.ValidHumanSkinTone, + new () + ) + { + } + + public static HumanoidCharacterAppearance DefaultWithSpecies(string species) + { + var speciesPrototype = IoCManager.Resolve().Index(species); + var skinColor = speciesPrototype.SkinColoration switch { - return new(HairStyleId, HairColor, FacialHairStyleId, FacialHairColor, EyeColor, SkinColor, newMarkings); - } + HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), + HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, + HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), + // DeltaV - Blended tint for moths + HumanoidSkinColor.TintedHuesSkin => Humanoid.SkinColor.TintedHuesSkin(speciesPrototype.DefaultSkinTone, speciesPrototype.DefaultSkinTone), + _ => Humanoid.SkinColor.ValidHumanSkinTone + }; - public HumanoidCharacterAppearance() : this( + return new( HairStyles.DefaultHairStyle, Color.Black, HairStyles.DefaultFacialHairStyle, Color.Black, Color.Black, - Humanoid.SkinColor.ValidHumanSkinTone, + skinColor, new () - ) - { - } + ); + } - public static HumanoidCharacterAppearance DefaultWithSpecies(string species) - { - var speciesPrototype = IoCManager.Resolve().Index(species); - var skinColor = speciesPrototype.SkinColoration switch - { - HumanoidSkinColor.HumanToned => Humanoid.SkinColor.HumanSkinTone(speciesPrototype.DefaultHumanSkinTone), - HumanoidSkinColor.Hues => speciesPrototype.DefaultSkinTone, - HumanoidSkinColor.TintedHues => Humanoid.SkinColor.TintedHues(speciesPrototype.DefaultSkinTone), - // DeltaV - Blended tint for moths - HumanoidSkinColor.TintedHuesSkin => Humanoid.SkinColor.TintedHuesSkin(speciesPrototype.DefaultSkinTone, speciesPrototype.DefaultSkinTone), - _ => Humanoid.SkinColor.ValidHumanSkinTone - }; + private static IReadOnlyList RealisticEyeColors = new List + { + Color.Brown, + Color.Gray, + Color.Azure, + Color.SteelBlue, + Color.Black + }; + + public static HumanoidCharacterAppearance Random(string species, Sex sex) + { + var random = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); + var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); + var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); - return new( - HairStyles.DefaultHairStyle, - Color.Black, - HairStyles.DefaultFacialHairStyle, - Color.Black, - Color.Black, - skinColor, - new () - ); - } + var newHairStyle = hairStyles.Count > 0 + ? random.Pick(hairStyles) + : HairStyles.DefaultHairStyle; - private static IReadOnlyList RealisticEyeColors = new List - { - Color.Brown, - Color.Gray, - Color.Azure, - Color.SteelBlue, - Color.Black - }; - - public static HumanoidCharacterAppearance Random(string species, Sex sex) - { - var random = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); - var hairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.Hair, species).Keys.ToList(); - var facialHairStyles = markingManager.MarkingsByCategoryAndSpecies(MarkingCategories.FacialHair, species).Keys.ToList(); + var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female + ? HairStyles.DefaultFacialHairStyle + : random.Pick(facialHairStyles); - var newHairStyle = hairStyles.Count > 0 - ? random.Pick(hairStyles) - : HairStyles.DefaultHairStyle; + var newHairColor = random.Pick(HairStyles.RealisticHairColors); + newHairColor = newHairColor + .WithRed(RandomizeColor(newHairColor.R)) + .WithGreen(RandomizeColor(newHairColor.G)) + .WithBlue(RandomizeColor(newHairColor.B)); - var newFacialHairStyle = facialHairStyles.Count == 0 || sex == Sex.Female - ? HairStyles.DefaultFacialHairStyle - : random.Pick(facialHairStyles); + // TODO: Add random markings - var newHairColor = random.Pick(HairStyles.RealisticHairColors); - newHairColor = newHairColor - .WithRed(RandomizeColor(newHairColor.R)) - .WithGreen(RandomizeColor(newHairColor.G)) - .WithBlue(RandomizeColor(newHairColor.B)); + var newEyeColor = random.Pick(RealisticEyeColors); - // TODO: Add random markings + var skinType = IoCManager.Resolve().Index(species).SkinColoration; + var skinTone = IoCManager.Resolve().Index(species).DefaultSkinTone; // DeltaV, required for tone blending - var newEyeColor = random.Pick(RealisticEyeColors); + var newSkinColor = new Color(random.NextFloat(1), random.NextFloat(1), random.NextFloat(1), 1); + switch (skinType) + { + case HumanoidSkinColor.HumanToned: + var tone = Math.Round(Humanoid.SkinColor.HumanSkinToneFromColor(newSkinColor)); + newSkinColor = Humanoid.SkinColor.HumanSkinTone((int)tone); + break; + case HumanoidSkinColor.Hues: + break; + case HumanoidSkinColor.TintedHues: + newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(newSkinColor); + break; + case HumanoidSkinColor.TintedHuesSkin: // DeltaV, tone blending + newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(newSkinColor); + break; + } - var skinType = IoCManager.Resolve().Index(species).SkinColoration; - var skinTone = IoCManager.Resolve().Index(species).DefaultSkinTone; // DeltaV, required for tone blending + return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); - var newSkinColor = Humanoid.SkinColor.ValidHumanSkinTone; - switch (skinType) - { - case HumanoidSkinColor.HumanToned: - var tone = random.Next(0, 100); - newSkinColor = Humanoid.SkinColor.HumanSkinTone(tone); - break; - case HumanoidSkinColor.Hues: - case HumanoidSkinColor.TintedHues: - var rbyte = random.NextByte(); - var gbyte = random.NextByte(); - var bbyte = random.NextByte(); - newSkinColor = new Color(rbyte, gbyte, bbyte); - break; - case HumanoidSkinColor.TintedHuesSkin: // DeltaV, tone blending - rbyte = random.NextByte(); - gbyte = random.NextByte(); - bbyte = random.NextByte(); - newSkinColor = new Color(rbyte, gbyte, bbyte); - break; - } + float RandomizeColor(float channel) + { + return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); + } + } - if (skinType == HumanoidSkinColor.TintedHues) - { - newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(newSkinColor); - } + public static Color ClampColor(Color color) + { + return new(color.RByte, color.GByte, color.BByte); + } - if (skinType == HumanoidSkinColor.TintedHuesSkin) // DeltaV, tone blending - { - newSkinColor = Humanoid.SkinColor.ValidTintedHuesSkinTone(skinTone, newSkinColor); - } + public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + { + var hairStyleId = appearance.HairStyleId; + var facialHairStyleId = appearance.FacialHairStyleId; - return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); + var hairColor = ClampColor(appearance.HairColor); + var facialHairColor = ClampColor(appearance.FacialHairColor); + var eyeColor = ClampColor(appearance.EyeColor); - float RandomizeColor(float channel) - { - return MathHelper.Clamp01(channel + random.Next(-25, 25) / 100f); - } - } + var proto = IoCManager.Resolve(); + var markingManager = IoCManager.Resolve(); - public static Color ClampColor(Color color) + if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) { - return new(color.RByte, color.GByte, color.BByte); + hairStyleId = HairStyles.DefaultHairStyle; } - public static HumanoidCharacterAppearance EnsureValid(HumanoidCharacterAppearance appearance, string species, Sex sex) + if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) { - var hairStyleId = appearance.HairStyleId; - var facialHairStyleId = appearance.FacialHairStyleId; - - var hairColor = ClampColor(appearance.HairColor); - var facialHairColor = ClampColor(appearance.FacialHairColor); - var eyeColor = ClampColor(appearance.EyeColor); - - var proto = IoCManager.Resolve(); - var markingManager = IoCManager.Resolve(); - - if (!markingManager.MarkingsByCategory(MarkingCategories.Hair).ContainsKey(hairStyleId)) - { - hairStyleId = HairStyles.DefaultHairStyle; - } + facialHairStyleId = HairStyles.DefaultFacialHairStyle; + } - if (!markingManager.MarkingsByCategory(MarkingCategories.FacialHair).ContainsKey(facialHairStyleId)) - { - facialHairStyleId = HairStyles.DefaultFacialHairStyle; - } + var markingSet = new MarkingSet(); + var skinColor = appearance.SkinColor; + if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) + { + markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); + markingSet.EnsureValid(markingManager); - var markingSet = new MarkingSet(); - var skinColor = appearance.SkinColor; - if (proto.TryIndex(species, out SpeciesPrototype? speciesProto)) + if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) { - markingSet = new MarkingSet(appearance.Markings, speciesProto.MarkingPoints, markingManager, proto); - markingSet.EnsureValid(markingManager); - - if (!Humanoid.SkinColor.VerifySkinColor(speciesProto.SkinColoration, skinColor)) - { - skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); - } - - markingSet.EnsureSpecies(species, skinColor, markingManager); - markingSet.EnsureSexes(sex, markingManager); + skinColor = Humanoid.SkinColor.ValidSkinTone(speciesProto.SkinColoration, skinColor); } - return new HumanoidCharacterAppearance( - hairStyleId, - hairColor, - facialHairStyleId, - facialHairColor, - eyeColor, - skinColor, - markingSet.GetForwardEnumerator().ToList()); + markingSet.EnsureSpecies(species, skinColor, markingManager); + markingSet.EnsureSexes(sex, markingManager); } - public bool MemberwiseEquals(ICharacterAppearance maybeOther) - { - if (maybeOther is not HumanoidCharacterAppearance other) return false; - if (HairStyleId != other.HairStyleId) return false; - if (!HairColor.Equals(other.HairColor)) return false; - if (FacialHairStyleId != other.FacialHairStyleId) return false; - if (!FacialHairColor.Equals(other.FacialHairColor)) return false; - if (!EyeColor.Equals(other.EyeColor)) return false; - if (!SkinColor.Equals(other.SkinColor)) return false; - if (!Markings.SequenceEqual(other.Markings)) return false; - return true; - } + return new HumanoidCharacterAppearance( + hairStyleId, + hairColor, + facialHairStyleId, + facialHairColor, + eyeColor, + skinColor, + markingSet.GetForwardEnumerator().ToList()); + } + + public bool MemberwiseEquals(ICharacterAppearance maybeOther) + { + if (maybeOther is not HumanoidCharacterAppearance other) return false; + if (HairStyleId != other.HairStyleId) return false; + if (!HairColor.Equals(other.HairColor)) return false; + if (FacialHairStyleId != other.FacialHairStyleId) return false; + if (!FacialHairColor.Equals(other.FacialHairColor)) return false; + if (!EyeColor.Equals(other.EyeColor)) return false; + if (!SkinColor.Equals(other.SkinColor)) return false; + if (!Markings.SequenceEqual(other.Markings)) return false; + return true; } } diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 4a87c141a28..b312dbb0b21 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -1,7 +1,9 @@ using System.Linq; using Content.Shared.Decals; +using Content.Shared.Examine; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; +using Content.Shared.IdentityManagement; using Content.Shared.Preferences; using Robust.Shared.GameObjects.Components.Localization; using Robust.Shared.Network; @@ -21,7 +23,7 @@ namespace Content.Shared.Humanoid; public abstract class SharedHumanoidAppearanceSystem : EntitySystem { [Dependency] private readonly INetManager _netManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MarkingManager _markingManager = default!; [ValidatePrototypeId] @@ -30,7 +32,9 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnExamined); } private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, ComponentInit args) @@ -41,7 +45,7 @@ private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, Compone } if (string.IsNullOrEmpty(humanoid.Initial) - || !_prototypeManager.TryIndex(humanoid.Initial, out HumanoidProfilePrototype? startingSet)) + || !_proto.TryIndex(humanoid.Initial, out HumanoidProfilePrototype? startingSet)) { LoadProfile(uid, HumanoidCharacterProfile.DefaultWithSpecies(humanoid.Species), humanoid); return; @@ -56,6 +60,15 @@ private void OnInit(EntityUid uid, HumanoidAppearanceComponent humanoid, Compone LoadProfile(uid, startingSet.Profile, humanoid); } + private void OnExamined(EntityUid uid, HumanoidAppearanceComponent component, ExaminedEvent args) + { + var identity = Identity.Entity(uid, EntityManager); + var species = GetSpeciesRepresentation(component.Species).ToLower(); + var age = GetAgeRepresentation(component.Species, component.Age); + + args.PushText(Loc.GetString("humanoid-appearance-component-examine", ("user", identity), ("age", age), ("species", species))); + } + /// /// Toggles a humanoid's sprite layer visibility. /// @@ -136,7 +149,7 @@ protected virtual void SetLayerVisibility( /// Humanoid component of the entity public void SetSpecies(EntityUid uid, string species, bool sync = true, HumanoidAppearanceComponent? humanoid = null) { - if (!Resolve(uid, ref humanoid) || !_prototypeManager.TryIndex(species, out var prototype)) + if (!Resolve(uid, ref humanoid) || !_proto.TryIndex(species, out var prototype)) { return; } @@ -144,7 +157,7 @@ public void SetSpecies(EntityUid uid, string species, bool sync = true, Humanoid humanoid.Species = species; humanoid.MarkingSet.EnsureSpecies(species, humanoid.SkinColor, _markingManager); var oldMarkings = humanoid.MarkingSet.GetForwardEnumerator().ToList(); - humanoid.MarkingSet = new(oldMarkings, prototype.MarkingPoints, _markingManager, _prototypeManager); + humanoid.MarkingSet = new(oldMarkings, prototype.MarkingPoints, _markingManager, _proto); if (sync) Dirty(uid, humanoid); @@ -164,7 +177,7 @@ public virtual void SetSkinColor(EntityUid uid, Color skinColor, bool sync = tru if (!Resolve(uid, ref humanoid)) return; - if (!_prototypeManager.TryIndex(humanoid.Species, out var species)) + if (!_proto.TryIndex(humanoid.Species, out var species)) { return; } @@ -288,24 +301,24 @@ public virtual void LoadProfile(EntityUid uid, HumanoidCharacterProfile profile, // Hair/facial hair - this may eventually be deprecated. // We need to ensure hair before applying it or coloring can try depend on markings that can be invalid - var hairColor = _markingManager.MustMatchSkin(profile.Species, HumanoidVisualLayers.Hair, out var hairAlpha, _prototypeManager) + var hairColor = _markingManager.MustMatchSkin(profile.Species, HumanoidVisualLayers.Hair, out var hairAlpha, _proto) ? profile.Appearance.SkinColor.WithAlpha(hairAlpha) : profile.Appearance.HairColor; - var facialHairColor = _markingManager.MustMatchSkin(profile.Species, HumanoidVisualLayers.FacialHair, out var facialHairAlpha, _prototypeManager) + var facialHairColor = _markingManager.MustMatchSkin(profile.Species, HumanoidVisualLayers.FacialHair, out var facialHairAlpha, _proto) ? profile.Appearance.SkinColor.WithAlpha(facialHairAlpha) : profile.Appearance.FacialHairColor; if (_markingManager.Markings.TryGetValue(profile.Appearance.HairStyleId, out var hairPrototype) && - _markingManager.CanBeApplied(profile.Species, profile.Sex, hairPrototype, _prototypeManager)) + _markingManager.CanBeApplied(profile.Species, profile.Sex, hairPrototype, _proto)) { AddMarking(uid, profile.Appearance.HairStyleId, hairColor, false); } if (_markingManager.Markings.TryGetValue(profile.Appearance.FacialHairStyleId, out var facialHairPrototype) && - _markingManager.CanBeApplied(profile.Species, profile.Sex, facialHairPrototype, _prototypeManager)) + _markingManager.CanBeApplied(profile.Species, profile.Sex, facialHairPrototype, _proto)) { AddMarking(uid, profile.Appearance.FacialHairStyleId, facialHairColor, false); } - humanoid.MarkingSet.EnsureSpecies(profile.Species, profile.Appearance.SkinColor, _markingManager, _prototypeManager); + humanoid.MarkingSet.EnsureSpecies(profile.Species, profile.Appearance.SkinColor, _markingManager, _proto); // Finally adding marking with forced colors foreach (var (marking, prototype) in markingFColored) @@ -400,4 +413,39 @@ public void AddMarking(EntityUid uid, string marking, IReadOnlyList color if (sync) Dirty(uid, humanoid); } + + /// + /// Takes ID of the species prototype, returns UI-friendly name of the species. + /// + public string GetSpeciesRepresentation(string speciesId) + { + if (_proto.TryIndex(speciesId, out var species)) + { + return Loc.GetString(species.Name); + } + + Log.Error("Tried to get representation of unknown species: {speciesId}"); + return Loc.GetString("humanoid-appearance-component-unknown-species"); + } + + public string GetAgeRepresentation(string species, int age) + { + if (!_proto.TryIndex(species, out var speciesPrototype)) + { + Log.Error("Tried to get age representation of species that couldn't be indexed: " + species); + return Loc.GetString("identity-age-young"); + } + + if (age < speciesPrototype.YoungAge) + { + return Loc.GetString("identity-age-young"); + } + + if (age < speciesPrototype.OldAge) + { + return Loc.GetString("identity-age-middle-aged"); + } + + return Loc.GetString("identity-age-old"); + } } diff --git a/Content.Shared/Inventory/Events/UnequippedEvents.cs b/Content.Shared/Inventory/Events/UnequippedEvents.cs index ef607f071af..4e1764a7d2d 100644 --- a/Content.Shared/Inventory/Events/UnequippedEvents.cs +++ b/Content.Shared/Inventory/Events/UnequippedEvents.cs @@ -22,12 +22,18 @@ public abstract class UnequippedEventBase : EntityEventArgs /// public readonly string SlotGroup; + /// + /// Slotflags of the slot the entity just got unequipped from. + /// + public readonly SlotFlags SlotFlags; + public UnequippedEventBase(EntityUid equipee, EntityUid equipment, SlotDefinition slotDefinition) { Equipee = equipee; Equipment = equipment; Slot = slotDefinition.Name; SlotGroup = slotDefinition.SlotGroup; + SlotFlags = slotDefinition.SlotFlags; } } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index c43a5885077..b418a1d4162 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -38,12 +38,14 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); // ComponentActivatedClientSystems - SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(OnGetEquipmentVerbs); } diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index cbbee3a85bd..c634b68e041 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -1,4 +1,6 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Inventory.Events; +using Content.Shared.Storage; using Robust.Shared.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -13,6 +15,7 @@ public partial class InventorySystem : EntitySystem private void InitializeSlots() { SubscribeLocalEvent(OnInit); + SubscribeNetworkEvent(OnOpenSlotStorage); _vvm.GetTypeHandler() .AddHandler(HandleViewVariablesSlots, ListViewVariablesSlots); @@ -40,6 +43,17 @@ protected virtual void OnInit(EntityUid uid, InventoryComponent component, Compo } } + private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) + { + if (args.SenderSession.AttachedEntity is not { Valid: true } uid) + return; + + if (TryGetSlotEntity(uid, ev.Slot, out var entityUid) && TryComp(entityUid, out var storageComponent)) + { + _storageSystem.OpenStorageUI(entityUid.Value, uid, storageComponent); + } + } + public bool TryGetSlotContainer(EntityUid uid, string slot, [NotNullWhen(true)] out ContainerSlot? containerSlot, [NotNullWhen(true)] out SlotDefinition? slotDefinition, InventoryComponent? inventory = null, ContainerManagerComponent? containerComp = null) { diff --git a/Content.Shared/Inventory/InventoryTemplatePrototype.cs b/Content.Shared/Inventory/InventoryTemplatePrototype.cs index 585f80d4ce9..3a605523bf8 100644 --- a/Content.Shared/Inventory/InventoryTemplatePrototype.cs +++ b/Content.Shared/Inventory/InventoryTemplatePrototype.cs @@ -17,6 +17,10 @@ public sealed partial class SlotDefinition { [DataField("name", required: true)] public string Name { get; private set; } = string.Empty; [DataField("slotTexture")] public string TextureName { get; private set; } = "pocket"; + /// + /// The texture displayed in a slot when it has an item inside of it. + /// + [DataField] public string FullTextureName { get; private set; } = "SlotBackground"; [DataField("slotFlags")] public SlotFlags SlotFlags { get; private set; } = SlotFlags.PREVENTEQUIP; [DataField("showInWindow")] public bool ShowInWindow { get; private set; } = true; [DataField("slotGroup")] public string SlotGroup { get; private set; } = "Default"; diff --git a/Content.Shared/Labels/Components/PaperLabelTypeComponent.cs b/Content.Shared/Labels/Components/PaperLabelTypeComponent.cs new file mode 100644 index 00000000000..b045a6af3b2 --- /dev/null +++ b/Content.Shared/Labels/Components/PaperLabelTypeComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Labels.Components; + +/// +/// Specifies the paper type (see textures/storage/crates/labels.rsi to see currently supported paper types) to show on crates this label is attached to. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class PaperLabelTypeComponent : Component +{ + /// + /// The type of label to show. + /// + [DataField] + public string PaperType = "Paper"; +} diff --git a/Content.Shared/Labels/LabelEvents.cs b/Content.Shared/Labels/LabelEvents.cs index 362500b7681..9f00354af24 100644 --- a/Content.Shared/Labels/LabelEvents.cs +++ b/Content.Shared/Labels/LabelEvents.cs @@ -13,9 +13,11 @@ public enum HandLabelerUiKey } [Serializable, NetSerializable] - public enum PaperLabelVisuals + public enum PaperLabelVisuals : byte { + Layer, HasLabel, + LabelType } /// diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 1d6d052f9a1..1898126d803 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -26,6 +26,7 @@ public abstract class SharedMindSystem : EntitySystem [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SharedPlayerSystem _player = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; + [Dependency] private readonly ISharedPlayerManager _playerMan = default!; [ViewVariables] protected readonly Dictionary UserMinds = new(); @@ -107,6 +108,7 @@ public virtual bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUid TryComp(mindIdValue, out mind)) { DebugTools.Assert(mind.UserId == user); + mindId = mindIdValue; return true; } @@ -422,29 +424,26 @@ public bool TryGetMind( return TryComp(mindId, out mind); } - public bool TryGetMind( - ContentPlayerData contentPlayer, - out EntityUid mindId, - [NotNullWhen(true)] out MindComponent? mind) - { - mindId = contentPlayer.Mind ?? default; - return TryComp(mindId, out mind); - } - + // TODO MIND make this return a nullable EntityUid or Entity public bool TryGetMind( ICommonSession? player, out EntityUid mindId, [NotNullWhen(true)] out MindComponent? mind) { - mindId = default; - mind = null; - if (_player.ContentData(player) is not { } data) + if (player == null) + { + mindId = default; + mind = null; return false; + } - if (TryGetMind(data, out mindId, out mind)) + if (TryGetMind(player.UserId, out var mindUid, out mind)) + { + mindId = mindUid.Value; return true; + } - DebugTools.AssertNull(data.Mind); + mindId = default; return false; } diff --git a/Content.Shared/Mobs/Components/MobStateComponent.cs b/Content.Shared/Mobs/Components/MobStateComponent.cs index a2ff349e133..7cff0779cbe 100644 --- a/Content.Shared/Mobs/Components/MobStateComponent.cs +++ b/Content.Shared/Mobs/Components/MobStateComponent.cs @@ -13,30 +13,21 @@ namespace Content.Shared.Mobs.Components /// [RegisterComponent] [NetworkedComponent] + [AutoGenerateComponentState] [Access(typeof(MobStateSystem), typeof(MobThresholdSystem))] public sealed partial class MobStateComponent : Component { //default mobstate is always the lowest state level - [ViewVariables] public MobState CurrentState { get; set; } = MobState.Alive; + [AutoNetworkedField, ViewVariables] + public MobState CurrentState { get; set; } = MobState.Alive; - [DataField("allowedStates")] public HashSet AllowedStates = new() + [DataField] + [AutoNetworkedField] + public HashSet AllowedStates = new() { MobState.Alive, MobState.Critical, MobState.Dead }; } - - [Serializable, NetSerializable] - public sealed class MobStateComponentState : ComponentState - { - public readonly MobState CurrentState; - public readonly HashSet AllowedStates; - - public MobStateComponentState(MobState currentState, HashSet allowedStates) - { - CurrentState = currentState; - AllowedStates = allowedStates; - } - } } diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index ff54c30aaf4..a3886dd42e1 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -25,8 +25,6 @@ public override void Initialize() _sawmill = _logManager.GetSawmill("MobState"); base.Initialize(); SubscribeEvents(); - SubscribeLocalEvent(OnGetComponentState); - SubscribeLocalEvent(OnHandleComponentState); } #region Public API @@ -100,24 +98,5 @@ public bool IsInvalidState(EntityUid target, MobStateComponent? component = null #region Private Implementation - private void OnHandleComponentState(EntityUid uid, MobStateComponent component, ref ComponentHandleState args) - { - if (args.Current is not MobStateComponentState state) - return; - - component.CurrentState = state.CurrentState; - - if (!component.AllowedStates.SetEquals(state.AllowedStates)) - { - component.AllowedStates.Clear(); - component.AllowedStates.UnionWith(state.AllowedStates); - } - } - - private void OnGetComponentState(EntityUid uid, MobStateComponent component, ref ComponentGetState args) - { - args.State = new MobStateComponentState(component.CurrentState, component.AllowedStates); - } - #endregion } diff --git a/Content.Shared/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs new file mode 100644 index 00000000000..c43ef3042eb --- /dev/null +++ b/Content.Shared/Movement/Components/WaddleAnimationComponent.cs @@ -0,0 +1,72 @@ +using System.Numerics; + +namespace Content.Shared.Movement.Components; + +/// +/// Declares that an entity has started to waddle like a duck/clown. +/// +/// The newly be-waddled. +[ByRefEvent] +public record struct StartedWaddlingEvent(EntityUid Entity) +{ + public EntityUid Entity = Entity; +} + +/// +/// Declares that an entity has stopped waddling like a duck/clown. +/// +/// The former waddle-er. +[ByRefEvent] +public record struct StoppedWaddlingEvent(EntityUid Entity) +{ + public EntityUid Entity = Entity; +} + +/// +/// Defines something as having a waddle animation when it moves. +/// +[RegisterComponent] +public sealed partial class WaddleAnimationComponent : Component +{ + /// + /// What's the name of this animation? Make sure it's unique so it can play along side other animations. + /// This prevents someone accidentally causing two identical waddling effects to play on someone at the same time. + /// + [DataField] + public string KeyName = "Waddle"; + + /// + /// How high should they hop during the waddle? Higher hop = more energy. + /// + [DataField] + public Vector2 HopIntensity = new(0, 0.25f); + + /// + /// How far should they rock backward and forward during the waddle? + /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. + /// + [DataField] + public float TumbleIntensity = 20.0f; + + /// + /// How long should a complete step take? Less time = more chaos. + /// + [DataField] + public float AnimationLength = 0.66f; + + /// + /// How much shorter should the animation be when running? + /// + [DataField] + public float RunAnimationLengthMultiplier = 0.568f; + + /// + /// Stores which step we made last, so if someone cancels out of the animation mid-step then restarts it looks more natural. + /// + public bool LastStep; + + /// + /// Stores if we're currently waddling so we can start/stop as appropriate and can tell other systems our state. + /// + public bool IsCurrentlyWaddling; +} diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index acca7aafd05..3c265d5a027 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -301,7 +301,9 @@ public bool CanPull(EntityUid puller, EntityUid pullableUid, PullerComponent? pu return false; } - if (pullerComp.NeedsHands && !_handsSystem.TryGetEmptyHand(puller, out _)) + if (pullerComp.NeedsHands + && !_handsSystem.TryGetEmptyHand(puller, out _) + && pullerComp.Pulling == null) { return false; } @@ -365,7 +367,7 @@ public bool TogglePull(EntityUid pullerUid, PullerComponent puller) return TogglePull(puller.Pulling.Value, pullerUid, pullable); } - public bool TryStartPull(EntityUid pullerUid, EntityUid pullableUid, EntityUid? user = null, + public bool TryStartPull(EntityUid pullerUid, EntityUid pullableUid, PullerComponent? pullerComp = null, PullableComponent? pullableComp = null) { if (!Resolve(pullerUid, ref pullerComp, false) || @@ -387,23 +389,18 @@ public bool TryStartPull(EntityUid pullerUid, EntityUid pullableUid, EntityUid? } // Ensure that the puller is not currently pulling anything. - var oldPullable = pullerComp.Pulling; - - if (oldPullable != null) - { - // Well couldn't stop the old one. - if (!TryStopPull(oldPullable.Value, pullableComp, user)) - return false; - } + if (TryComp(pullerComp.Pulling, out var oldPullable) + && !TryStopPull(pullerComp.Pulling.Value, oldPullable, pullerUid)) + return false; - // Is the pullable currently being pulled by something else? + // Stop anyone else pulling the entity we want to pull if (pullableComp.Puller != null) { - // Uhhh + // We're already pulling this item if (pullableComp.Puller == pullerUid) return false; - if (!TryStopPull(pullableUid, pullableComp, pullerUid)) + if (!TryStopPull(pullableUid, pullableComp, pullableComp.Puller)) return false; } @@ -469,7 +466,7 @@ public bool TryStopPull(EntityUid pullableUid, PullableComponent pullable, Entit var pullerUidNull = pullable.Puller; if (pullerUidNull == null) - return false; + return true; var msg = new AttemptStopPullingEvent(user); RaiseLocalEvent(pullableUid, msg, true); diff --git a/Content.Shared/NPC/Components/FactionExceptionComponent.cs b/Content.Shared/NPC/Components/FactionExceptionComponent.cs index 54de0404c2f..ba7940d5027 100644 --- a/Content.Shared/NPC/Components/FactionExceptionComponent.cs +++ b/Content.Shared/NPC/Components/FactionExceptionComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.NPC.Components; /// Prevents an NPC from attacking ignored entities from enemy factions. /// Can be added to if pettable, see PettableFriendComponent. /// -[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem), typeof(SharedNPCImprintingOnSpawnBehaviourSystem))] // TO DO (Metalgearsloth): If we start adding a billion access overrides they should be going through a system as then there's no reason to have access, but I'll fix this when I rework npcs. public sealed partial class FactionExceptionComponent : Component { /// diff --git a/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs b/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs new file mode 100644 index 00000000000..f06d496e9eb --- /dev/null +++ b/Content.Shared/NPC/Systems/SharedNPCImprintingOnSpawnBehaviourSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.NPC.Systems; + +public abstract partial class SharedNPCImprintingOnSpawnBehaviourSystem : EntitySystem +{ +} diff --git a/Content.Shared/NPC/Systems/SharedNPCSystem.cs b/Content.Shared/NPC/Systems/SharedNPCSystem.cs new file mode 100644 index 00000000000..247ab478a1b --- /dev/null +++ b/Content.Shared/NPC/Systems/SharedNPCSystem.cs @@ -0,0 +1,5 @@ +namespace Content.Shared.NPC.Systems; + +public abstract partial class SharedNPCSystem : EntitySystem +{ +} diff --git a/Content.Server/Nutrition/Components/DrinkComponent.cs b/Content.Shared/Nutrition/Components/DrinkComponent.cs similarity index 66% rename from Content.Server/Nutrition/Components/DrinkComponent.cs rename to Content.Shared/Nutrition/Components/DrinkComponent.cs index 20d47cda88c..17baaef5a37 100644 --- a/Content.Server/Nutrition/Components/DrinkComponent.cs +++ b/Content.Shared/Nutrition/Components/DrinkComponent.cs @@ -1,28 +1,30 @@ -using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Nutrition.EntitySystems; using Content.Shared.FixedPoint; using Robust.Shared.Audio; +using Robust.Shared.GameStates; -namespace Content.Server.Nutrition.Components; +namespace Content.Shared.Nutrition.Components; -[RegisterComponent, Access(typeof(DrinkSystem))] +[NetworkedComponent, AutoGenerateComponentState] +[RegisterComponent, Access(typeof(SharedDrinkSystem))] public sealed partial class DrinkComponent : Component { - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public string Solution = "drink"; - [DataField] + [DataField, AutoNetworkedField] public SoundSpecifier UseSound = new SoundPathSpecifier("/Audio/Items/drink.ogg"); - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public FixedPoint2 TransferAmount = FixedPoint2.New(5); /// /// How long it takes to drink this yourself. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float Delay = 1; - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public bool Examinable = true; /// @@ -30,12 +32,12 @@ public sealed partial class DrinkComponent : Component /// This means other systems such as equipping on use can run. /// Example usecase is the bucket. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool IgnoreEmpty; /// /// This is how many seconds it takes to force feed someone this drink. /// - [DataField, ViewVariables(VVAccess.ReadWrite)] + [DataField, AutoNetworkedField] public float ForceFeedDelay = 3; } diff --git a/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs new file mode 100644 index 00000000000..7060f3bf799 --- /dev/null +++ b/Content.Shared/Nutrition/Components/PressurizedSolutionComponent.cs @@ -0,0 +1,106 @@ +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Represents a solution container that can hold the pressure from a solution that +/// gets fizzy when aggitated, and can spray the solution when opened or thrown. +/// Handles simulating the fizziness of the solution, responding to aggitating events, +/// and spraying the solution out when opening or throwing the entity. +/// +[NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause] +[RegisterComponent, Access(typeof(PressurizedSolutionSystem))] +public sealed partial class PressurizedSolutionComponent : Component +{ + /// + /// The name of the solution to use. + /// + [DataField] + public string Solution = "drink"; + + /// + /// The sound to play when the solution sprays out of the container. + /// + [DataField] + public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Items/soda_spray.ogg"); + + /// + /// The longest amount of time that the solution can remain fizzy after being aggitated. + /// Put another way, how long the solution will remain fizzy when aggitated the maximum amount. + /// Used to calculate the current fizziness level. + /// + [DataField] + public TimeSpan FizzinessMaxDuration = TimeSpan.FromSeconds(120); + + /// + /// The time at which the solution will be fully settled after being shaken. + /// + [DataField, AutoNetworkedField, AutoPausedField] + public TimeSpan FizzySettleTime; + + /// + /// How much to increase the solution's fizziness each time it's shaken. + /// This assumes the solution has maximum fizzability. + /// A value of 1 will maximize it with a single shake, and a value of + /// 0.5 will increase it by half with each shake. + /// + [DataField] + public float FizzinessAddedOnShake = 1.0f; + + /// + /// How much to increase the solution's fizziness when it lands after being thrown. + /// This assumes the solution has maximum fizzability. + /// + [DataField] + public float FizzinessAddedOnLand = 0.25f; + + /// + /// How much to modify the chance of spraying when the entity is opened. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnOpened = -0.01f; // Just enough to prevent spraying at 0 fizziness + + /// + /// How much to modify the chance of spraying when the entity is shaken. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnShake = -1; // No spraying when shaken by default + + /// + /// How much to modify the chance of spraying when the entity lands after being thrown. + /// Increasing this effectively increases the fizziness value when checking if it should spray. + /// + [DataField] + public float SprayChanceModOnLand = 0.25f; + + /// + /// Holds the current randomly-rolled threshold value for spraying. + /// If fizziness exceeds this value when the entity is opened, it will spray. + /// By rolling this value when the entity is aggitated, we can have randomization + /// while still having prediction! + /// + [DataField, AutoNetworkedField] + public float SprayFizzinessThresholdRoll; + + /// + /// Popup message shown to user when sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageSelf = "pressurized-solution-spray-holder-self"; + + /// + /// Popup message shown to others when a user is sprayed by the solution. + /// + [DataField] + public LocId SprayHolderMessageOthers = "pressurized-solution-spray-holder-others"; + + /// + /// Popup message shown above the entity when the solution sprays without a target. + /// + [DataField] + public LocId SprayGroundMessage = "pressurized-solution-spray-ground"; +} diff --git a/Content.Shared/Nutrition/Components/ShakeableComponent.cs b/Content.Shared/Nutrition/Components/ShakeableComponent.cs new file mode 100644 index 00000000000..cc1c08a9b23 --- /dev/null +++ b/Content.Shared/Nutrition/Components/ShakeableComponent.cs @@ -0,0 +1,50 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Nutrition.Components; + +/// +/// Adds a "Shake" verb to the entity's verb menu. +/// Handles checking the entity can be shaken, displaying popups when shaking, +/// and raising a ShakeEvent when a shake occurs. +/// Reacting to being shaken is left up to other components. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShakeableComponent : Component +{ + /// + /// How long it takes to shake this item. + /// + [DataField] + public TimeSpan ShakeDuration = TimeSpan.FromSeconds(1f); + + /// + /// Does the entity need to be in the user's hand in order to be shaken? + /// + [DataField] + public bool RequireInHand; + + /// + /// Label to display in the verbs menu for this item's shake action. + /// + [DataField] + public LocId ShakeVerbText = "shakeable-verb"; + + /// + /// Text that will be displayed to the user when shaking this item. + /// + [DataField] + public LocId ShakePopupMessageSelf = "shakeable-popup-message-self"; + + /// + /// Text that will be displayed to other users when someone shakes this item. + /// + [DataField] + public LocId ShakePopupMessageOthers = "shakeable-popup-message-others"; + + /// + /// The sound that will be played when shaking this item. + /// + [DataField] + public SoundSpecifier ShakeSound = new SoundPathSpecifier("/Audio/Items/soda_shake.ogg"); +} diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 89aae57074e..4de4e4d5feb 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -1,17 +1,22 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Alert; using Content.Shared.Damage; using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Nutrition.EntitySystems; public sealed class HungerSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly DamageableSystem _damageable = default!; @@ -19,10 +24,27 @@ public sealed class HungerSystem : EntitySystem [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; [Dependency] private readonly SharedJetpackSystem _jetpack = default!; + [ValidatePrototypeId] + private const string HungerIconOverfedId = "HungerIconOverfed"; + + [ValidatePrototypeId] + private const string HungerIconPeckishId = "HungerIconPeckish"; + + [ValidatePrototypeId] + private const string HungerIconStarvingId = "HungerIconStarving"; + + private StatusIconPrototype? _hungerIconOverfed; + private StatusIconPrototype? _hungerIconPeckish; + private StatusIconPrototype? _hungerIconStarving; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(HungerIconOverfedId, out _hungerIconOverfed) && + _prototype.TryIndex(HungerIconPeckishId, out _hungerIconPeckish) && + _prototype.TryIndex(HungerIconStarvingId, out _hungerIconStarving)); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnRefreshMovespeed); @@ -194,6 +216,27 @@ private bool GetMovementThreshold(HungerThreshold threshold) } } + public bool TryGetStatusIconPrototype(HungerComponent component, [NotNullWhen(true)] out StatusIconPrototype? prototype) + { + switch (component.CurrentThreshold) + { + case HungerThreshold.Overfed: + prototype = _hungerIconOverfed; + break; + case HungerThreshold.Peckish: + prototype = _hungerIconPeckish; + break; + case HungerThreshold.Starving: + prototype = _hungerIconStarving; + break; + default: + prototype = null; + break; + } + + return prototype != null; + } + public override void Update(float frameTime) { base.Update(frameTime); diff --git a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs index 0ad0877d222..2934ced8b4a 100644 --- a/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/OpenableSystem.cs @@ -16,9 +16,9 @@ namespace Content.Shared.Nutrition.EntitySystems; /// public sealed partial class OpenableSystem : EntitySystem { - [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; - [Dependency] protected readonly SharedAudioSystem Audio = default!; - [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { @@ -31,6 +31,8 @@ public override void Initialize() SubscribeLocalEvent(HandleIfClosed); SubscribeLocalEvent>(AddOpenCloseVerbs); SubscribeLocalEvent(OnTransferAttempt); + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnAttemptAddFizziness); } private void OnInit(EntityUid uid, OpenableComponent comp, ComponentInit args) @@ -100,6 +102,20 @@ private void OnTransferAttempt(Entity ent, ref SolutionTransf } } + private void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + // Prevent shaking open containers + if (entity.Comp.Opened) + args.Cancelled = true; + } + + private void OnAttemptAddFizziness(Entity entity, ref AttemptAddFizzinessEvent args) + { + // Can't add fizziness to an open container + if (entity.Comp.Opened) + args.Cancelled = true; + } + /// /// Returns true if the entity either does not have OpenableComponent or it is opened. /// Drinks that don't have OpenableComponent are automatically open, so it returns true. @@ -126,7 +142,7 @@ public bool IsClosed(EntityUid uid, EntityUid? user = null, OpenableComponent? c return false; if (user != null) - Popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); + _popup.PopupEntity(Loc.GetString(comp.ClosedPopup, ("owner", uid)), user.Value, user.Value); return true; } @@ -139,13 +155,13 @@ public void UpdateAppearance(EntityUid uid, OpenableComponent? comp = null, Appe if (!Resolve(uid, ref comp)) return; - Appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); + _appearance.SetData(uid, OpenableVisuals.Opened, comp.Opened, appearance); } /// /// Sets the opened field and updates open visuals. /// - public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null) + public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = null, EntityUid? user = null) { if (!Resolve(uid, ref comp, false) || opened == comp.Opened) return; @@ -155,12 +171,12 @@ public void SetOpen(EntityUid uid, bool opened = true, OpenableComponent? comp = if (opened) { - var ev = new OpenableOpenedEvent(); + var ev = new OpenableOpenedEvent(user); RaiseLocalEvent(uid, ref ev); } else { - var ev = new OpenableClosedEvent(); + var ev = new OpenableClosedEvent(user); RaiseLocalEvent(uid, ref ev); } @@ -176,8 +192,8 @@ public bool TryOpen(EntityUid uid, OpenableComponent? comp = null, EntityUid? us if (!Resolve(uid, ref comp, false) || comp.Opened) return false; - SetOpen(uid, true, comp); - Audio.PlayPredicted(comp.Sound, uid, user); + SetOpen(uid, true, comp, user); + _audio.PlayPredicted(comp.Sound, uid, user); return true; } @@ -190,9 +206,9 @@ public bool TryClose(EntityUid uid, OpenableComponent? comp = null, EntityUid? u if (!Resolve(uid, ref comp, false) || !comp.Opened || !comp.Closeable) return false; - SetOpen(uid, false, comp); + SetOpen(uid, false, comp, user); if (comp.CloseSound != null) - Audio.PlayPredicted(comp.CloseSound, uid, user); + _audio.PlayPredicted(comp.CloseSound, uid, user); return true; } } @@ -201,10 +217,10 @@ public bool TryClose(EntityUid uid, OpenableComponent? comp = null, EntityUid? u /// Raised after an Openable is opened. /// [ByRefEvent] -public record struct OpenableOpenedEvent; +public record struct OpenableOpenedEvent(EntityUid? User = null); /// /// Raised after an Openable is closed. /// [ByRefEvent] -public record struct OpenableClosedEvent; +public record struct OpenableClosedEvent(EntityUid? User = null); diff --git a/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs new file mode 100644 index 00000000000..d63b8e7326c --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/PressurizedSolutionSystem.cs @@ -0,0 +1,285 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Nutrition.Components; +using Content.Shared.Throwing; +using Content.Shared.IdentityManagement; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; +using Robust.Shared.Timing; +using Robust.Shared.Prototypes; +using Robust.Shared.Network; +using Content.Shared.Fluids; +using Content.Shared.Popups; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class PressurizedSolutionSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShake); + SubscribeLocalEvent(OnOpened); + SubscribeLocalEvent(OnLand); + SubscribeLocalEvent(OnSolutionUpdate); + } + + /// + /// Helper method for checking if the solution's fizziness is high enough to spray. + /// is added to the actual fizziness for the comparison. + /// + private bool SprayCheck(Entity entity, float chanceMod = 0) + { + return Fizziness((entity, entity.Comp)) + chanceMod > entity.Comp.SprayFizzinessThresholdRoll; + } + + /// + /// Calculates how readily the contained solution becomes fizzy. + /// + private float SolutionFizzability(Entity entity) + { + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var _, out var solution)) + return 0; + + // An empty solution can't be fizzy + if (solution.Volume <= 0) + return 0; + + var totalFizzability = 0f; + + // Check each reagent in the solution + foreach (var reagent in solution.Contents) + { + if (_prototypeManager.TryIndex(reagent.Reagent.Prototype, out ReagentPrototype? reagentProto) && reagentProto != null) + { + // What portion of the solution is this reagent? + var proportion = (float) (reagent.Quantity / solution.Volume); + totalFizzability += reagentProto.Fizziness * proportion; + } + } + + return totalFizzability; + } + + /// + /// Increases the fizziness level of the solution by the given amount, + /// scaled by the solution's fizzability. + /// 0 will result in no change, and 1 will maximize fizziness. + /// Also rerolls the spray threshold. + /// + private void AddFizziness(Entity entity, float amount) + { + var fizzability = SolutionFizzability(entity); + + // Can't add fizziness if the solution isn't fizzy + if (fizzability <= 0) + return; + + // Make sure nothing is preventing fizziness from being added + var attemptEv = new AttemptAddFizzinessEvent(entity, amount); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return; + + // Scale added fizziness by the solution's fizzability + amount *= fizzability; + + // Convert fizziness to time + var duration = amount * entity.Comp.FizzinessMaxDuration; + + // Add to the existing settle time, if one exists. Otherwise, add to the current time + var start = entity.Comp.FizzySettleTime > _timing.CurTime ? entity.Comp.FizzySettleTime : _timing.CurTime; + var newTime = start + duration; + + // Cap the maximum fizziness + var maxEnd = _timing.CurTime + entity.Comp.FizzinessMaxDuration; + if (newTime > maxEnd) + newTime = maxEnd; + + entity.Comp.FizzySettleTime = newTime; + + // Roll a new fizziness threshold + RollSprayThreshold(entity); + } + + /// + /// Helper method. Performs a . If it passes, calls . If it fails, . + /// + private void SprayOrAddFizziness(Entity entity, float chanceMod = 0, float fizzinessToAdd = 0, EntityUid? user = null) + { + if (SprayCheck(entity, chanceMod)) + TrySpray((entity, entity.Comp), user); + else + AddFizziness(entity, fizzinessToAdd); + } + + /// + /// Randomly generates a new spray threshold. + /// This is the value used to compare fizziness against when doing . + /// Since RNG will give different results between client and server, this is run on the server + /// and synced to the client by marking the component dirty. + /// We roll this in advance, rather than during , so that the value (hopefully) + /// has time to get synced to the client, so we can try be accurate with prediction. + /// + private void RollSprayThreshold(Entity entity) + { + // Can't predict random, so we wait for the server to tell us + if (!_net.IsServer) + return; + + entity.Comp.SprayFizzinessThresholdRoll = _random.NextFloat(); + Dirty(entity, entity.Comp); + } + + #region Public API + + /// + /// Does the entity contain a solution capable of being fizzy? + /// + public bool CanSpray(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + return SolutionFizzability((entity, entity.Comp)) > 0; + } + + /// + /// Attempts to spray the solution onto the given entity, or the ground if none is given. + /// Fails if the solution isn't able to be sprayed. + /// + public bool TrySpray(Entity entity, EntityUid? target = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanSpray(entity)) + return false; + + if (!_solutionContainer.TryGetSolution(entity.Owner, entity.Comp.Solution, out var soln, out var interactions)) + return false; + + // If the container is openable, open it + _openable.SetOpen(entity, true); + + // Get the spray solution from the container + var solution = _solutionContainer.SplitSolution(soln.Value, interactions.Volume); + + // Spray the solution onto the ground and anyone nearby + if (TryComp(entity, out var transform)) + _puddle.TrySplashSpillAt(entity, transform.Coordinates, solution, out _, sound: false); + + var drinkName = Identity.Entity(entity, EntityManager); + + if (target != null) + { + var victimName = Identity.Entity(target.Value, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.SprayHolderMessageSelf, ("victim", victimName), ("drink", drinkName)); + var othersMessage = Loc.GetString(entity.Comp.SprayHolderMessageOthers, ("victim", victimName), ("drink", drinkName)); + _popup.PopupPredicted(selfMessage, othersMessage, target.Value, target.Value); + } + else + { + // Show a popup to everyone in PVS range + if (_timing.IsFirstTimePredicted) + _popup.PopupEntity(Loc.GetString(entity.Comp.SprayGroundMessage, ("drink", drinkName)), entity); + } + + _audio.PlayPredicted(entity.Comp.SpraySound, entity, target); + + // We just used all our fizziness, so clear it + TryClearFizziness(entity); + + return true; + } + + /// + /// What is the current fizziness level of the solution, from 0 to 1? + /// + public double Fizziness(Entity entity) + { + // No component means no fizz + if (!Resolve(entity, ref entity.Comp, false)) + return 0; + + // No negative fizziness + if (entity.Comp.FizzySettleTime <= _timing.CurTime) + return 0; + + var currentDuration = entity.Comp.FizzySettleTime - _timing.CurTime; + return Easings.InOutCubic((float) Math.Min(currentDuration / entity.Comp.FizzinessMaxDuration, 1)); + } + + /// + /// Attempts to clear any fizziness in the solution. + /// + /// Rolls a new spray threshold. + public void TryClearFizziness(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return; + + entity.Comp.FizzySettleTime = TimeSpan.Zero; + + // Roll a new fizziness threshold + RollSprayThreshold((entity, entity.Comp)); + } + + #endregion + + #region Event Handlers + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RollSprayThreshold(entity); + } + + private void OnOpened(Entity entity, ref OpenableOpenedEvent args) + { + // Make sure the opener is actually holding the drink + var held = args.User != null && _hands.IsHolding(args.User.Value, entity, out _); + + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnOpened, -1, held ? args.User : null); + } + + private void OnShake(Entity entity, ref ShakeEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnShake, entity.Comp.FizzinessAddedOnShake, args.Shaker); + } + + private void OnLand(Entity entity, ref LandEvent args) + { + SprayOrAddFizziness(entity, entity.Comp.SprayChanceModOnLand, entity.Comp.FizzinessAddedOnLand); + } + + private void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) + { + if (args.SolutionId != entity.Comp.Solution) + return; + + // If the solution is no longer capable of being fizzy, clear any built up fizziness + if (SolutionFizzability(entity) <= 0) + TryClearFizziness((entity, entity.Comp)); + } + + #endregion +} + +[ByRefEvent] +public record struct AttemptAddFizzinessEvent(Entity Entity, float Amount) +{ + public bool Cancelled; +} diff --git a/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs new file mode 100644 index 00000000000..39890aada93 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/ShakeableSystem.cs @@ -0,0 +1,155 @@ +using Content.Shared.DoAfter; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.IdentityManagement; +using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.Nutrition.EntitySystems; + +public sealed partial class ShakeableSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddShakeVerb); + SubscribeLocalEvent(OnShakeDoAfter); + } + + private void AddShakeVerb(EntityUid uid, ShakeableComponent component, GetVerbsEvent args) + { + if (args.Hands == null || !args.CanAccess || !args.CanInteract) + return; + + if (!CanShake((uid, component), args.User)) + return; + + var shakeVerb = new Verb() + { + Text = Loc.GetString(component.ShakeVerbText), + Act = () => TryStartShake((args.Target, component), args.User) + }; + args.Verbs.Add(shakeVerb); + } + + private void OnShakeDoAfter(Entity entity, ref ShakeDoAfterEvent args) + { + if (args.Handled || args.Cancelled) + return; + + TryShake((entity, entity.Comp), args.User); + } + + /// + /// Attempts to start the doAfter to shake the entity. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, displays popup messages, plays shake sound, and starts the doAfter. + /// + public bool TryStartShake(Entity entity, EntityUid user) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var doAfterArgs = new DoAfterArgs(EntityManager, + user, + entity.Comp.ShakeDuration, + new ShakeDoAfterEvent(), + eventTarget: entity, + target: user, + used: entity) + { + NeedHand = true, + BreakOnDamage = true, + DistanceThreshold = 1, + MovementThreshold = 0.01f, + BreakOnHandChange = entity.Comp.RequireInHand, + }; + if (entity.Comp.RequireInHand) + doAfterArgs.BreakOnHandChange = true; + + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + return false; + + var userName = Identity.Entity(user, EntityManager); + var shakeableName = Identity.Entity(entity, EntityManager); + + var selfMessage = Loc.GetString(entity.Comp.ShakePopupMessageSelf, ("user", userName), ("shakeable", shakeableName)); + var othersMessage = Loc.GetString(entity.Comp.ShakePopupMessageOthers, ("user", userName), ("shakeable", shakeableName)); + _popup.PopupPredicted(selfMessage, othersMessage, user, user); + + _audio.PlayPredicted(entity.Comp.ShakeSound, entity, user); + + return true; + } + + /// + /// Attempts to shake the entity, skipping the doAfter. + /// Fails and returns false if the entity cannot be shaken for any reason. + /// If successful, raises a ShakeEvent on the entity. + /// + public bool TryShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp)) + return false; + + if (!CanShake(entity, user)) + return false; + + var ev = new ShakeEvent(user); + RaiseLocalEvent(entity, ref ev); + + return true; + } + + + /// + /// Is it possible for the given user to shake the entity? + /// + public bool CanShake(Entity entity, EntityUid? user = null) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + // If required to be in hand, fail if the user is not holding this entity + if (user != null && entity.Comp.RequireInHand && !_hands.IsHolding(user.Value, entity, out _)) + return false; + + var attemptEv = new AttemptShakeEvent(); + RaiseLocalEvent(entity, ref attemptEv); + if (attemptEv.Cancelled) + return false; + return true; + } +} + +/// +/// Raised when a ShakeableComponent is shaken, after the doAfter completes. +/// +[ByRefEvent] +public record struct ShakeEvent(EntityUid? Shaker); + +/// +/// Raised when trying to shake a ShakeableComponent. If cancelled, the +/// entity will not be shaken. +/// +[ByRefEvent] +public record struct AttemptShakeEvent() +{ + public bool Cancelled; +} + +[Serializable, NetSerializable] +public sealed partial class ShakeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs new file mode 100644 index 00000000000..7cae3b92086 --- /dev/null +++ b/Content.Shared/Nutrition/EntitySystems/SharedDrinkSystem.cs @@ -0,0 +1,90 @@ +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; + +namespace Content.Shared.Nutrition.EntitySystems; + +public abstract partial class SharedDrinkSystem : EntitySystem +{ + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly OpenableSystem _openable = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAttemptShake); + SubscribeLocalEvent(OnExamined); + } + + protected void OnAttemptShake(Entity entity, ref AttemptShakeEvent args) + { + if (IsEmpty(entity, entity.Comp)) + args.Cancelled = true; + } + + protected void OnExamined(Entity entity, ref ExaminedEvent args) + { + TryComp(entity, out var openable); + if (_openable.IsClosed(entity.Owner, null, openable) || !args.IsInDetailsRange || !entity.Comp.Examinable) + return; + + var empty = IsEmpty(entity, entity.Comp); + if (empty) + { + args.PushMarkup(Loc.GetString("drink-component-on-examine-is-empty")); + return; + } + + if (HasComp(entity)) + { + //provide exact measurement for beakers + args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp)))); + } + else + { + //general approximation + var remainingString = (int) _solutionContainer.PercentFull(entity) switch + { + 100 => "drink-component-on-examine-is-full", + > 66 => "drink-component-on-examine-is-mostly-full", + > 33 => HalfEmptyOrHalfFull(args), + _ => "drink-component-on-examine-is-mostly-empty", + }; + args.PushMarkup(Loc.GetString(remainingString)); + } + } + + protected FixedPoint2 DrinkVolume(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return FixedPoint2.Zero; + + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out _, out var sol)) + return FixedPoint2.Zero; + + return sol.Volume; + } + + protected bool IsEmpty(EntityUid uid, DrinkComponent? component = null) + { + if (!Resolve(uid, ref component)) + return true; + + return DrinkVolume(uid, component) <= 0; + } + + // some see half empty, and others see half full + private string HalfEmptyOrHalfFull(ExaminedEvent args) + { + string remainingString = "drink-component-on-examine-is-half-full"; + + if (TryComp(args.Examiner, out var examiner) && examiner.EntityName.Length > 0 + && string.Compare(examiner.EntityName.Substring(0, 1), "m", StringComparison.InvariantCultureIgnoreCase) > 0) + remainingString = "drink-component-on-examine-is-half-empty"; + + return remainingString; + } +} diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index 29218f57198..8ea7d9140c3 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -3,9 +3,12 @@ using Content.Shared.Movement.Systems; using Content.Shared.Nutrition.Components; using Content.Shared.Rejuvenate; +using Content.Shared.StatusIcon; using JetBrains.Annotations; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Shared.Nutrition.EntitySystems; @@ -13,15 +16,33 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class ThirstSystem : EntitySystem { [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly MovementSpeedModifierSystem _movement = default!; [Dependency] private readonly SharedJetpackSystem _jetpack = default!; + [ValidatePrototypeId] + private const string ThirstIconOverhydratedId = "ThirstIconOverhydrated"; + + [ValidatePrototypeId] + private const string ThirstIconThirstyId = "ThirstIconThirsty"; + + [ValidatePrototypeId] + private const string ThirstIconParchedId = "ThirstIconParched"; + + private StatusIconPrototype? _thirstIconOverhydrated = null; + private StatusIconPrototype? _thirstIconThirsty = null; + private StatusIconPrototype? _thirstIconParched = null; + public override void Initialize() { base.Initialize(); + DebugTools.Assert(_prototype.TryIndex(ThirstIconOverhydratedId, out _thirstIconOverhydrated) && + _prototype.TryIndex(ThirstIconThirstyId, out _thirstIconThirsty) && + _prototype.TryIndex(ThirstIconParchedId, out _thirstIconParched)); + SubscribeLocalEvent(OnRefreshMovespeed); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnRejuvenate); @@ -107,6 +128,28 @@ private bool IsMovementThreshold(ThirstThreshold threshold) } } + public bool TryGetStatusIconPrototype(ThirstComponent component, out StatusIconPrototype? prototype) + { + switch (component.CurrentThirstThreshold) + { + case ThirstThreshold.OverHydrated: + prototype = _thirstIconOverhydrated; + return true; + + case ThirstThreshold.Thirsty: + prototype = _thirstIconThirsty; + return true; + + case ThirstThreshold.Parched: + prototype = _thirstIconParched; + return true; + + default: + prototype = null; + return false; + } + } + private void UpdateEffects(EntityUid uid, ThirstComponent component) { if (IsMovementThreshold(component.LastThirstThreshold) != IsMovementThreshold(component.CurrentThirstThreshold) && diff --git a/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs new file mode 100644 index 00000000000..cb0759be3ee --- /dev/null +++ b/Content.Shared/Overlays/ShowCriminalRecordIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see criminal record status of mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowCriminalRecordIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowHungerIconsComponent.cs b/Content.Shared/Overlays/ShowHungerIconsComponent.cs index bf1fb2dc19d..b3841bd80ff 100644 --- a/Content.Shared/Overlays/ShowHungerIconsComponent.cs +++ b/Content.Shared/Overlays/ShowHungerIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// This component allows you to see the hungriness of mobs. +/// This component allows you to see the hungriness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowHungerIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs b/Content.Shared/Overlays/ShowJobIconsComponent.cs similarity index 51% rename from Content.Shared/Overlays/ShowSecurityIconsComponent.cs rename to Content.Shared/Overlays/ShowJobIconsComponent.cs index ec268174d18..aae97395063 100644 --- a/Content.Shared/Overlays/ShowSecurityIconsComponent.cs +++ b/Content.Shared/Overlays/ShowJobIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// This component allows you to see job icons above mobs. +/// This component allows you to see job icons above mobs. /// [RegisterComponent, NetworkedComponent] -public sealed partial class ShowSecurityIconsComponent : Component { } +public sealed partial class ShowJobIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs new file mode 100644 index 00000000000..624d5ab8efc --- /dev/null +++ b/Content.Shared/Overlays/ShowMindShieldIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// This component allows you to see mindshield icons above mobs. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowMindShieldIconsComponent : Component { } diff --git a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs index 74a67db694a..a63eae8e466 100644 --- a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs +++ b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// +/// This component allows you to identify members of the Syndicate faction. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowSyndicateIconsComponent : Component {} diff --git a/Content.Shared/Overlays/ShowThirstIconsComponent.cs b/Content.Shared/Overlays/ShowThirstIconsComponent.cs index 905ab07fe23..1914034e9e3 100644 --- a/Content.Shared/Overlays/ShowThirstIconsComponent.cs +++ b/Content.Shared/Overlays/ShowThirstIconsComponent.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Overlays; /// -/// This component allows you to see the thirstiness of mobs. +/// This component allows you to see the thirstiness of mobs. /// [RegisterComponent, NetworkedComponent] public sealed partial class ShowThirstIconsComponent : Component { } diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 1c10fefd5dc..775ccb7c446 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -48,6 +48,9 @@ public enum CollisionGroup MachineLayer = Opaque | MidImpassable | LowImpassable | BulletImpassable, ConveyorMask = Impassable | MidImpassable | LowImpassable | DoorPassable, + // Crates + CrateMask = Impassable | HighImpassable | LowImpassable, + // Tables that SmallMobs can go under TableMask = Impassable | MidImpassable, TableLayer = MidImpassable, diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index 8c9979ba25a..61315b3db14 100644 --- a/Content.Shared/Pinpointer/NavMapComponent.cs +++ b/Content.Shared/Pinpointer/NavMapComponent.cs @@ -1,9 +1,12 @@ +using Content.Shared.Atmos; using Robust.Shared.GameStates; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Pinpointer; /// -/// Used to store grid poly data to be used for UIs. +/// Used to store grid data to be used for UIs. /// [RegisterComponent, NetworkedComponent] public sealed partial class NavMapComponent : Component @@ -12,25 +15,57 @@ public sealed partial class NavMapComponent : Component * Don't need DataFields as this can be reconstructed */ + /// + /// Bitmasks that represent chunked tiles. + /// [ViewVariables] - public readonly Dictionary Chunks = new(); + public Dictionary<(NavMapChunkType, Vector2i), NavMapChunk> Chunks = new(); - [ViewVariables] public readonly List Beacons = new(); - - [ViewVariables] public readonly List Airlocks = new(); + /// + /// List of station beacons. + /// + [ViewVariables] + public HashSet Beacons = new(); } +[Serializable, NetSerializable] public sealed class NavMapChunk { + /// + /// The chunk origin + /// public readonly Vector2i Origin; /// - /// Bitmask for tiles, 1 for occupied and 0 for empty. + /// Bitmask for tiles, 1 for occupied and 0 for empty. There is a bitmask for each cardinal direction, + /// representing each edge of the tile, in case the entities inside it do not entirely fill it /// - public int TileData; + public Dictionary TileData; + + /// + /// The last game tick that the chunk was updated + /// + [NonSerialized] + public GameTick LastUpdate; public NavMapChunk(Vector2i origin) { Origin = origin; + + TileData = new() + { + [AtmosDirection.North] = 0, + [AtmosDirection.East] = 0, + [AtmosDirection.South] = 0, + [AtmosDirection.West] = 0, + }; } } + +public enum NavMapChunkType : byte +{ + Invalid, + Floor, + Wall, + Airlock, +} diff --git a/Content.Shared/Pinpointer/SharedNavMapSystem.cs b/Content.Shared/Pinpointer/SharedNavMapSystem.cs index 17f86ac7e68..ebc4f33f0f1 100644 --- a/Content.Shared/Pinpointer/SharedNavMapSystem.cs +++ b/Content.Shared/Pinpointer/SharedNavMapSystem.cs @@ -1,13 +1,38 @@ +using System.Diagnostics.CodeAnalysis; using System.Numerics; +using Content.Shared.Atmos; +using Content.Shared.Tag; +using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Shared.Pinpointer; public abstract class SharedNavMapSystem : EntitySystem { + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + public const byte ChunkSize = 4; + public readonly NavMapChunkType[] EntityChunkTypes = + { + NavMapChunkType.Invalid, + NavMapChunkType.Wall, + NavMapChunkType.Airlock, + }; + + private readonly string[] _wallTags = ["Wall", "Window"]; + + public override void Initialize() + { + base.Initialize(); + + // Data handling events + SubscribeLocalEvent(OnGetState); + } + /// /// Converts the chunk's tile into a bitflag for the slot. /// @@ -31,19 +56,236 @@ public static Vector2i GetTile(int flag) return new Vector2i(x, y); } - [Serializable, NetSerializable] - protected sealed class NavMapComponentState : ComponentState + public NavMapChunk SetAllEdgesForChunkTile(NavMapChunk chunk, Vector2i tile) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = (ushort) GetFlag(relative); + + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] |= flag; + + return chunk; + } + + public NavMapChunk UnsetAllEdgesForChunkTile(NavMapChunk chunk, Vector2i tile) + { + var relative = SharedMapSystem.GetChunkRelative(tile, ChunkSize); + var flag = (ushort) GetFlag(relative); + var invFlag = (ushort) ~flag; + + foreach (var (direction, _) in chunk.TileData) + chunk.TileData[direction] &= invFlag; + + return chunk; + } + + public ushort GetCombinedEdgesForChunk(Dictionary tile) + { + ushort combined = 0; + + foreach (var kvp in tile) + combined |= kvp.Value; + + return combined; + } + + public bool AllTileEdgesAreOccupied(Dictionary tileData, Vector2i tile) + { + var flag = (ushort) GetFlag(tile); + + foreach (var kvp in tileData) + { + if ((kvp.Value & flag) == 0) + return false; + } + + return true; + } + + public NavMapChunkType GetAssociatedEntityChunkType(EntityUid uid) + { + var category = NavMapChunkType.Invalid; + + if (HasComp(uid)) + category = NavMapChunkType.Airlock; + + else if (_tagSystem.HasAnyTag(uid, _wallTags)) + category = NavMapChunkType.Wall; + + return category; + } + + protected bool TryCreateNavMapBeaconData(EntityUid uid, NavMapBeaconComponent component, TransformComponent xform, [NotNullWhen(true)] out NavMapBeacon? beaconData) { - public Dictionary TileData = new(); + beaconData = null; - public List Beacons = new(); + if (!component.Enabled || xform.GridUid == null || !xform.Anchored) + return false; - public List Airlocks = new(); + string? name = component.Text; + var meta = MetaData(uid); + + if (string.IsNullOrEmpty(name)) + name = meta.EntityName; + + beaconData = new NavMapBeacon(meta.NetEntity, component.Color, name, xform.LocalPosition) + { + LastUpdate = _gameTiming.CurTick + }; + + return true; } + #region: Event handling + + private void OnGetState(EntityUid uid, NavMapComponent component, ref ComponentGetState args) + { + var chunks = new Dictionary<(NavMapChunkType, Vector2i), Dictionary>(); + var beacons = new HashSet(); + + // Should this be a full component state or a delta-state? + if (args.FromTick <= component.CreationTick) + { + foreach (var ((category, origin), chunk) in component.Chunks) + { + var chunkDatum = new Dictionary(chunk.TileData.Count); + + foreach (var (direction, tileData) in chunk.TileData) + chunkDatum[direction] = tileData; + + chunks.Add((category, origin), chunkDatum); + } + + var beaconQuery = AllEntityQuery(); + + while (beaconQuery.MoveNext(out var beaconUid, out var beacon, out var xform)) + { + if (xform.GridUid != uid) + continue; + + if (!TryCreateNavMapBeaconData(beaconUid, beacon, xform, out var beaconData)) + continue; + + beacons.Add(beaconData.Value); + } + + args.State = new NavMapComponentState(chunks, beacons); + return; + } + + foreach (var ((category, origin), chunk) in component.Chunks) + { + if (chunk.LastUpdate < args.FromTick) + continue; + + var chunkDatum = new Dictionary(chunk.TileData.Count); + + foreach (var (direction, tileData) in chunk.TileData) + chunkDatum[direction] = tileData; + + chunks.Add((category, origin), chunkDatum); + } + + foreach (var beacon in component.Beacons) + { + if (beacon.LastUpdate < args.FromTick) + continue; + + beacons.Add(beacon); + } + + args.State = new NavMapComponentState(chunks, beacons) + { + AllChunks = new(component.Chunks.Keys), + AllBeacons = new(component.Beacons) + }; + } + + #endregion + + #region: System messages + [Serializable, NetSerializable] - public readonly record struct NavMapBeacon(Color Color, string Text, Vector2 Position); + protected sealed class NavMapComponentState : ComponentState, IComponentDeltaState + { + public Dictionary<(NavMapChunkType, Vector2i), Dictionary> Chunks = new(); + public HashSet Beacons = new(); + + // Required to infer deleted/missing chunks for delta states + public HashSet<(NavMapChunkType, Vector2i)>? AllChunks; + public HashSet? AllBeacons; + + public NavMapComponentState(Dictionary<(NavMapChunkType, Vector2i), Dictionary> chunks, HashSet beacons) + { + Chunks = chunks; + Beacons = beacons; + } + + public bool FullState => (AllChunks == null || AllBeacons == null); + + public void ApplyToFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + // Update chunks + foreach (var key in state.Chunks.Keys) + { + if (!AllChunks!.Contains(key)) + state.Chunks.Remove(key); + } + + foreach (var (chunk, data) in Chunks) + state.Chunks[chunk] = new(data); + + // Update beacons + foreach (var beacon in state.Beacons) + { + if (!AllBeacons!.Contains(beacon)) + state.Beacons.Remove(beacon); + } + + foreach (var beacon in Beacons) + state.Beacons.Add(beacon); + } + + public IComponentState CreateNewFullState(IComponentState fullState) + { + DebugTools.Assert(!FullState); + var state = (NavMapComponentState) fullState; + DebugTools.Assert(state.FullState); + + var chunks = new Dictionary<(NavMapChunkType, Vector2i), Dictionary>(); + var beacons = new HashSet(); + + foreach (var (chunk, data) in Chunks) + chunks[chunk] = new(data); + + foreach (var (chunk, data) in state.Chunks) + { + if (AllChunks!.Contains(chunk)) + chunks.TryAdd(chunk, new(data)); + } + + foreach (var beacon in Beacons) + beacons.Add(new NavMapBeacon(beacon.NetEnt, beacon.Color, beacon.Text, beacon.Position)); + + foreach (var beacon in state.Beacons) + { + if (AllBeacons!.Contains(beacon)) + beacons.Add(new NavMapBeacon(beacon.NetEnt, beacon.Color, beacon.Text, beacon.Position)); + } + + return new NavMapComponentState(chunks, beacons); + } + } [Serializable, NetSerializable] - public readonly record struct NavMapAirlock(Vector2 Position); + public record struct NavMapBeacon(NetEntity NetEnt, Color Color, string Text, Vector2 Position) + { + public GameTick LastUpdate; + } + + #endregion } diff --git a/Content.Shared/Plants/PottedPlantHideSystem.cs b/Content.Shared/Plants/PottedPlantHideSystem.cs index fd256fd9263..cbe052f8d5c 100644 --- a/Content.Shared/Plants/PottedPlantHideSystem.cs +++ b/Content.Shared/Plants/PottedPlantHideSystem.cs @@ -31,7 +31,7 @@ private void OnInteractUsing(EntityUid uid, PottedPlantHideComponent component, if (args.Handled) return; - Rustle(uid, component); + Rustle(uid, component, args.User); args.Handled = _stashSystem.TryHideItem(uid, args.User, args.Used); } @@ -40,24 +40,24 @@ private void OnInteractHand(EntityUid uid, PottedPlantHideComponent component, I if (args.Handled) return; - Rustle(uid, component); + Rustle(uid, component, args.User); var gotItem = _stashSystem.TryGetItem(uid, args.User); if (!gotItem) { var msg = Loc.GetString("potted-plant-hide-component-interact-hand-got-no-item-message"); - _popupSystem.PopupEntity(msg, uid, args.User); + _popupSystem.PopupClient(msg, uid, args.User); } args.Handled = gotItem; } - private void Rustle(EntityUid uid, PottedPlantHideComponent? component = null) + private void Rustle(EntityUid uid, PottedPlantHideComponent? component = null, EntityUid? user = null) { if (!Resolve(uid, ref component)) return; - _audio.PlayPvs(component.RustleSound, uid, AudioParams.Default.WithVariation(0.25f)); + _audio.PlayPredicted(component.RustleSound, uid, user, AudioParams.Default.WithVariation(0.25f)); } } } diff --git a/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs new file mode 100644 index 00000000000..2b9fba7b391 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonDisguiseComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// Component added to disguise entities. +/// Used by client to copy over appearance from the disguise's source entity. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class ChameleonDisguiseComponent : Component +{ + /// + /// The disguise source entity for copying the sprite. + /// + [DataField, AutoNetworkedField] + public EntityUid SourceEntity; + + /// + /// The source entity's prototype. + /// Used as a fallback if the source entity was deleted. + /// + [DataField, AutoNetworkedField] + public EntProtoId? SourceProto; +} diff --git a/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs new file mode 100644 index 00000000000..239b5236f27 --- /dev/null +++ b/Content.Shared/Polymorph/Components/ChameleonProjectorComponent.cs @@ -0,0 +1,68 @@ +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Systems; +using Content.Shared.Whitelist; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Polymorph.Components; + +/// +/// A chameleon projector polymorphs you into a clicked entity, then polymorphs back when clicked on or destroyed. +/// This creates a new dummy polymorph entity and copies the appearance over. +/// +[RegisterComponent, Access(typeof(SharedChameleonProjectorSystem))] +public sealed partial class ChameleonProjectorComponent : Component +{ + /// + /// If non-null, whitelist for valid entities to disguise as. + /// + [DataField(required: true)] + public EntityWhitelist? Whitelist; + + /// + /// If non-null, blacklist that prevents entities from being used even if they are in the whitelist. + /// + [DataField(required: true)] + public EntityWhitelist? Blacklist; + + /// + /// Polymorph configuration for the disguise entity. + /// + [DataField(required: true)] + public PolymorphConfiguration Polymorph = new(); + + /// + /// Action for disabling your disguise's rotation. + /// + [DataField] + public EntProtoId NoRotAction = "ActionDisguiseNoRot"; + + /// + /// Action for anchoring your disguise in place. + /// + [DataField] + public EntProtoId AnchorAction = "ActionDisguiseAnchor"; + + /// + /// Minimum health to give the disguise. + /// + [DataField] + public float MinHealth = 1f; + + /// + /// Maximum health to give the disguise, health scales with mass. + /// + [DataField] + public float MaxHealth = 100f; + + /// + /// Popup shown to the user when they try to disguise as an invalid entity. + /// + [DataField] + public LocId InvalidPopup = "chameleon-projector-invalid"; + + /// + /// Popup shown to the user when they disguise as a valid entity. + /// + [DataField] + public LocId SuccessPopup = "chameleon-projector-success"; +} diff --git a/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs new file mode 100644 index 00000000000..c1abfc526f5 --- /dev/null +++ b/Content.Shared/Polymorph/Systems/SharedChameleonProjectorSystem.cs @@ -0,0 +1,113 @@ +using Content.Shared.Actions; +using Content.Shared.Interaction; +using Content.Shared.Polymorph; +using Content.Shared.Polymorph.Components; +using Content.Shared.Popups; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Prototypes; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Shared.Polymorph.Systems; + +/// +/// Handles whitelist/blacklist checking. +/// Actual polymorphing and deactivation is done serverside. +/// +public abstract class SharedChameleonProjectorSystem : EntitySystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ISerializationManager _serMan = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteract); + } + + private void OnInteract(Entity ent, ref AfterInteractEvent args) + { + if (!args.CanReach || args.Target is not {} target) + return; + + var user = args.User; + args.Handled = true; + + if (IsInvalid(ent.Comp, target)) + { + _popup.PopupClient(Loc.GetString(ent.Comp.InvalidPopup), target, user); + return; + } + + _popup.PopupClient(Loc.GetString(ent.Comp.SuccessPopup), target, user); + Disguise(ent.Comp, user, target); + } + + /// + /// Returns true if an entity cannot be used as a disguise. + /// + public bool IsInvalid(ChameleonProjectorComponent comp, EntityUid target) + { + return (comp.Whitelist?.IsValid(target, EntityManager) == false) + || (comp.Blacklist?.IsValid(target, EntityManager) == true); + } + + /// + /// On server, polymorphs the user into an entity and sets up the disguise. + /// + public virtual void Disguise(ChameleonProjectorComponent comp, EntityUid user, EntityUid entity) + { + } + + /// + /// Copy a component from the source entity/prototype to the disguise entity. + /// + /// + /// This would probably be a good thing to add to engine in the future. + /// + protected bool CopyComp(Entity ent) where T: Component, new() + { + if (!GetSrcComp(ent.Comp, out var src)) + return true; + + // remove then re-add to prevent a funny + RemComp(ent); + var dest = AddComp(ent); + _serMan.CopyTo(src, ref dest, notNullableOverride: true); + Dirty(ent, dest); + return false; + } + + /// + /// Try to get a single component from the source entity/prototype. + /// + private bool GetSrcComp(ChameleonDisguiseComponent comp, [NotNullWhen(true)] out T? src) where T: Component + { + src = null; + if (TryComp(comp.SourceEntity, out src)) + return true; + + if (comp.SourceProto is not {} protoId) + return false; + + if (!_proto.TryIndex(protoId, out var proto)) + return false; + + return proto.TryGetComponent(out src); + } +} + +/// +/// Action event for toggling transform NoRot on a disguise. +/// +public sealed partial class DisguiseToggleNoRotEvent : InstantActionEvent +{ +} + +/// +/// Action event for toggling transform Anchored on a disguise. +/// +public sealed partial class DisguiseToggleAnchoredEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index b199884afb4..10e8ca9be11 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -94,6 +94,12 @@ public abstract class SharedPopupSystem : EntitySystem /// will do nothing and the server will show the message to every player in PVS range. /// public abstract void PopupPredicted(string? message, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small); + + /// + /// Variant of that displays + /// to the recipient and to everyone else in PVS range. + /// + public abstract void PopupPredicted(string? recipientMessage, string? othersMessage, EntityUid uid, EntityUid? recipient, PopupType type = PopupType.Small); } /// diff --git a/Content.Shared/RCD/RCDPrototype.cs b/Content.Shared/RCD/RCDPrototype.cs index 1e80abfb723..58093bbe87a 100644 --- a/Content.Shared/RCD/RCDPrototype.cs +++ b/Content.Shared/RCD/RCDPrototype.cs @@ -9,7 +9,7 @@ namespace Content.Shared.RCD; /// Contains the parameters for a RCD construction / operation /// [Prototype("rcd")] -public sealed class RCDPrototype : IPrototype +public sealed partial class RCDPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -51,7 +51,7 @@ public sealed class RCDPrototype : IPrototype public int Cost { get; private set; } = 1; /// - /// The length of the operation + /// The length of the operation /// [DataField, ViewVariables(VVAccess.ReadOnly)] public float Delay { get; private set; } = 1f; @@ -75,7 +75,7 @@ public sealed class RCDPrototype : IPrototype public CollisionGroup CollisionMask { get; private set; } = CollisionGroup.None; /// - /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile + /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile /// /// /// Should be set assuming that the entity faces south. @@ -106,7 +106,7 @@ private set private Box2? _collisionBounds = null; /// - /// The polygon shape associated with the prototype CollisionBounds (if set) + /// The polygon shape associated with the prototype CollisionBounds (if set) /// [ViewVariables(VVAccess.ReadOnly)] public PolygonShape? CollisionPolygon { get; private set; } = null; diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index cd1e90dc1ff..974755f0004 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -98,16 +98,6 @@ private void OnRCDSystemMessage(EntityUid uid, RCDComponent component, RCDSystem component.ProtoId = args.ProtoId; UpdateCachedPrototype(uid, component); Dirty(uid, component); - - if (args.Session.AttachedEntity != null) - { - // Popup message - var msg = (component.CachedPrototype.Prototype != null) ? - Loc.GetString("rcd-component-change-build-mode", ("name", Loc.GetString(component.CachedPrototype.SetName))) : - Loc.GetString("rcd-component-change-mode", ("mode", Loc.GetString(component.CachedPrototype.SetName))); - - _popup.PopupClient(msg, uid, args.Session.AttachedEntity.Value); - } } private void OnExamine(EntityUid uid, RCDComponent component, ExaminedEvent args) @@ -118,9 +108,18 @@ private void OnExamine(EntityUid uid, RCDComponent component, ExaminedEvent args // Update cached prototype if required UpdateCachedPrototype(uid, component); - var msg = (component.CachedPrototype.Prototype != null) ? - Loc.GetString("rcd-component-examine-build-details", ("name", Loc.GetString(component.CachedPrototype.SetName))) : - Loc.GetString("rcd-component-examine-mode-details", ("mode", Loc.GetString(component.CachedPrototype.SetName))); + var msg = Loc.GetString("rcd-component-examine-mode-details", ("mode", Loc.GetString(component.CachedPrototype.SetName))); + + if (component.CachedPrototype.Mode == RcdMode.ConstructTile || component.CachedPrototype.Mode == RcdMode.ConstructObject) + { + var name = Loc.GetString(component.CachedPrototype.SetName); + + if (component.CachedPrototype.Prototype != null && + _protoManager.TryIndex(component.CachedPrototype.Prototype, out var proto)) + name = proto.Name; + + msg = Loc.GetString("rcd-component-examine-build-details", ("name", name)); + } args.PushMarkup(msg); } @@ -176,7 +175,7 @@ private void OnAfterInteract(EntityUid uid, RCDComponent component, AfterInterac else { var deconstructedTile = _mapSystem.GetTileRef(mapGridData.Value.GridUid, mapGridData.Value.Component, mapGridData.Value.Location); - var protoName = deconstructedTile.IsSpace() ? _deconstructTileProto : _deconstructLatticeProto; + var protoName = !deconstructedTile.IsSpace() ? _deconstructTileProto : _deconstructLatticeProto; if (_protoManager.TryIndex(protoName, out var deconProto)) { @@ -206,7 +205,7 @@ private void OnAfterInteract(EntityUid uid, RCDComponent component, AfterInterac // Try to start the do after var effect = Spawn(effectPrototype, mapGridData.Value.Location); - var ev = new RCDDoAfterEvent(GetNetCoordinates(mapGridData.Value.Location), component.ProtoId, cost, EntityManager.GetNetEntity(effect)); + var ev = new RCDDoAfterEvent(GetNetCoordinates(mapGridData.Value.Location), component.ConstructionDirection, component.ProtoId, cost, EntityManager.GetNetEntity(effect)); var doAfterArgs = new DoAfterArgs(EntityManager, user, delay, ev, uid, target: args.Target, used: uid) { @@ -231,13 +230,19 @@ private void OnDoAfterAttempt(EntityUid uid, RCDComponent component, DoAfterAtte // Exit if the RCD prototype has changed if (component.ProtoId != args.Event.StartingProtoId) + { + args.Cancel(); return; + } // Ensure the RCD operation is still valid var location = GetCoordinates(args.Event.Location); if (!TryGetMapGridData(location, out var mapGridData)) + { + args.Cancel(); return; + } if (!IsRCDOperationStillValid(uid, component, mapGridData.Value, args.Event.Target, args.Event.User)) args.Cancel(); @@ -263,7 +268,7 @@ private void OnDoAfter(EntityUid uid, RCDComponent component, RCDDoAfterEvent ar return; // Finalize the operation - FinalizeRCDOperation(uid, component, mapGridData.Value, args.Target, args.User); + FinalizeRCDOperation(uid, component, mapGridData.Value, args.Direction, args.Target, args.User); // Play audio and consume charges _audio.PlayPredicted(component.SuccessSound, uid, args.User); @@ -419,7 +424,7 @@ private bool IsConstructionLocationValid(EntityUid uid, RCDComponent component, foreach (var fixture in fixtures.Fixtures.Values) { // Continue if no collision is possible - if (fixture.CollisionLayer <= 0 || (fixture.CollisionLayer & (int) component.CachedPrototype.CollisionMask) == 0) + if (!fixture.Hard || fixture.CollisionLayer <= 0 || (fixture.CollisionLayer & (int) component.CachedPrototype.CollisionMask) == 0) continue; // Continue if our custom collision bounds are not intersected @@ -494,7 +499,7 @@ private bool IsDeconstructionStillValid(EntityUid uid, RCDComponent component, M #region Entity construction/deconstruction - private void FinalizeRCDOperation(EntityUid uid, RCDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user) + private void FinalizeRCDOperation(EntityUid uid, RCDComponent component, MapGridData mapGridData, Direction direction, EntityUid? target, EntityUid user) { if (!_net.IsServer) return; @@ -521,7 +526,7 @@ private void FinalizeRCDOperation(EntityUid uid, RCDComponent component, MapGrid Transform(ent).LocalRotation = Transform(uid).LocalRotation; break; case RcdRotation.User: - Transform(ent).LocalRotation = component.ConstructionDirection.ToAngle(); + Transform(ent).LocalRotation = direction.ToAngle(); break; } @@ -617,6 +622,9 @@ public sealed partial class RCDDoAfterEvent : DoAfterEvent [DataField(required: true)] public NetCoordinates Location { get; private set; } = default!; + [DataField] + public Direction Direction { get; private set; } = default!; + [DataField] public ProtoId StartingProtoId { get; private set; } = default!; @@ -628,9 +636,10 @@ public sealed partial class RCDDoAfterEvent : DoAfterEvent private RCDDoAfterEvent() { } - public RCDDoAfterEvent(NetCoordinates location, ProtoId startingProtoId, int cost, NetEntity? effect = null) + public RCDDoAfterEvent(NetCoordinates location, Direction direction, ProtoId startingProtoId, int cost, NetEntity? effect = null) { Location = location; + Direction = direction; StartingProtoId = startingProtoId; Cost = cost; Effect = effect; diff --git a/Content.Shared/Salvage/SalvageMapPrototype.cs b/Content.Shared/Salvage/SalvageMapPrototype.cs index a9814c7b0ac..9b5a37c6689 100644 --- a/Content.Shared/Salvage/SalvageMapPrototype.cs +++ b/Content.Shared/Salvage/SalvageMapPrototype.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Salvage; [Prototype] -public sealed class SalvageMapPrototype : IPrototype +public sealed partial class SalvageMapPrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; } = default!; diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index f6407be5c7b..5e5df448b33 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -58,7 +58,7 @@ public SiliconLaw ShallowClone() /// [Prototype("siliconLaw")] [Serializable, NetSerializable] -public sealed class SiliconLawPrototype : SiliconLaw, IPrototype +public sealed partial class SiliconLawPrototype : SiliconLaw, IPrototype { /// [IdDataField] diff --git a/Content.Shared/Sound/SharedEmitSoundSystem.cs b/Content.Shared/Sound/SharedEmitSoundSystem.cs index 329626964ef..a9a50698d7d 100644 --- a/Content.Shared/Sound/SharedEmitSoundSystem.cs +++ b/Content.Shared/Sound/SharedEmitSoundSystem.cs @@ -1,7 +1,10 @@ +using Content.Shared.Audio; using Content.Shared.Hands; +using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Maps; +using Content.Shared.Mobs; using Content.Shared.Popups; using Content.Shared.Sound.Components; using Content.Shared.Throwing; @@ -28,7 +31,8 @@ public abstract class SharedEmitSoundSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly ITileDefinitionManager _tileDefMan = default!; [Dependency] protected readonly IRobustRandom Random = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedAmbientSoundSystem _ambient = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; public override void Initialize() @@ -44,6 +48,20 @@ public override void Initialize() SubscribeLocalEvent(OnEmitSoundOnInteractUsing); SubscribeLocalEvent(OnEmitSoundOnCollide); + + SubscribeLocalEvent(OnMobState); + } + + private void OnMobState(Entity entity, ref MobStateChangedEvent args) + { + // Disable this component rather than removing it because it can be brought back to life. + if (TryComp(entity, out var comp)) + { + comp.Enabled = args.NewMobState == MobState.Alive; + Dirty(entity.Owner, comp); + } + + _ambient.SetAmbience(entity.Owner, args.NewMobState != MobState.Dead); } private void OnEmitSpawnOnInit(EntityUid uid, EmitSoundOnSpawnComponent component, MapInitEvent args) diff --git a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs index 3553597c526..b61aa037cc9 100644 --- a/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs +++ b/Content.Shared/SprayPainter/Prototypes/AirlockDepartmentsPrototype.cs @@ -7,7 +7,7 @@ namespace Content.Shared.SprayPainter.Prototypes; /// Maps airlock style names to department ids. /// [Prototype("airlockDepartments")] -public sealed class AirlockDepartmentsPrototype : IPrototype +public sealed partial class AirlockDepartmentsPrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; diff --git a/Content.Shared/StatusIcon/StatusIconPrototype.cs b/Content.Shared/StatusIcon/StatusIconPrototype.cs index 145b443051c..2bd13b9361d 100644 --- a/Content.Shared/StatusIcon/StatusIconPrototype.cs +++ b/Content.Shared/StatusIcon/StatusIconPrototype.cs @@ -58,7 +58,7 @@ public int CompareTo(StatusIconData? other) /// but in new convenient prototype form! /// [Prototype("statusIcon")] -public sealed class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype +public sealed partial class StatusIconPrototype : StatusIconData, IPrototype, IInheritingPrototype { /// [ParentDataField(typeof(AbstractPrototypeIdArraySerializer))] diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index b4ac2cde756..d81ad754d1e 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -59,7 +59,7 @@ private bool Update(EntityUid uid, StepTriggerComponent component, TransformComp if (component.Blacklist != null && TryComp(transform.GridUid, out var grid)) { - var positon = _map.LocalToTile(uid, grid, transform.Coordinates); + var positon = _map.LocalToTile(transform.GridUid.Value, grid, transform.Coordinates); var anch = _map.GetAnchoredEntitiesEnumerator(uid, grid, positon); while (anch.MoveNext(out var ent)) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 3fedfe010a2..393397ca979 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -3,13 +3,14 @@ using System.Linq; using Content.Shared.ActionBlocker; using Content.Shared.Containers.ItemSlots; -using Content.Shared.Coordinates; using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Implants.Components; +using Content.Shared.Input; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.Item; using Content.Shared.Lock; using Content.Shared.Nyanotrasen.Item.PseudoItem; @@ -23,7 +24,9 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Input.Binding; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; @@ -42,6 +45,7 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] protected readonly SharedItemSystem ItemSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!; @@ -63,9 +67,14 @@ public abstract class SharedStorageSystem : EntitySystem public bool CheckingCanInsert; + private List _entList = new(); + private HashSet _entSet = new(); + private readonly List _sortedSizes = new(); private FrozenDictionary _nextSmallest = FrozenDictionary.Empty; + protected readonly List CantFillReasons = []; + /// public override void Initialize() { @@ -102,6 +111,11 @@ public override void Initialize() SubscribeLocalEvent(OnReclaimed); + CommandBinds.Builder + .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack, handle: false)) + .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false)) + .Register(); + UpdatePrototypeCache(); } @@ -262,36 +276,40 @@ private void OnImplantActivate(EntityUid uid, StorageComponent storageComp, Open /// private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInteractEvent args) { - if (args.Handled || !args.CanReach) + if (args.Handled || !args.CanReach || !UseDelay.TryResetDelay(uid, checkDelayed: true)) return; // Pick up all entities in a radius around the clicked location. // The last half of the if is because carpets exist and this is terrible if (storageComp.AreaInsert && (args.Target == null || !HasComp(args.Target.Value))) { - var validStorables = new List(); + _entList.Clear(); + _entSet.Clear(); + _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, _entSet, LookupFlags.Dynamic | LookupFlags.Sundries); var delay = 0f; - foreach (var entity in _entityLookupSystem.GetEntitiesInRange(args.ClickLocation, storageComp.AreaInsertRadius, LookupFlags.Dynamic | LookupFlags.Sundries)) + foreach (var entity in _entSet) { if (entity == args.User - // || !_itemQuery.HasComponent(entity) - || !TryComp(entity, out var itemComp) // Need comp to get item size to get weight + || !_itemQuery.TryGetComponent(entity, out var itemComp) // Need comp to get item size to get weight || !_prototype.TryIndex(itemComp.Size, out var itemSize) - || !CanInsert(uid, entity, out _, storageComp) + || !CanInsert(uid, entity, out _, storageComp, item: itemComp) || !_interactionSystem.InRangeUnobstructed(args.User, entity)) { continue; } - validStorables.Add(entity); + _entList.Add(entity); delay += itemSize.Weight * AreaInsertDelayPerItem; + + if (_entList.Count >= StorageComponent.AreaPickupLimit) + break; } //If there's only one then let's be generous - if (validStorables.Count > 1) + if (_entList.Count > 1) { - var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(validStorables)), uid, target: uid) + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, delay, new AreaPickupDoAfterEvent(GetNetEntityList(_entList)), uid, target: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -313,7 +331,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt if (_containerSystem.IsEntityInContainer(target) || target == args.User - || !HasComp(target)) + || !_itemQuery.HasComponent(target)) { return; } @@ -331,10 +349,10 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt args.Handled = true; if (PlayerInsertEntityInWorld((uid, storageComp), args.User, target)) { - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent(GetNetEntity(uid), new List { GetNetEntity(target) }, new List { GetNetCoordinates(position) }, - new List { transformOwner.LocalRotation })); + new List { transformOwner.LocalRotation }), args.User); } } } @@ -349,20 +367,27 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf var successfullyInserted = new List(); var successfullyInsertedPositions = new List(); var successfullyInsertedAngles = new List(); - _xformQuery.TryGetComponent(uid, out var xform); - foreach (var netEntity in args.Entities) + if (!_xformQuery.TryGetComponent(uid, out var xform)) + { + return; + } + + var entCount = Math.Min(StorageComponent.AreaPickupLimit, args.Entities.Count); + + for (var i = 0; i < entCount; i++) { - var entity = GetEntity(netEntity); + var entity = GetEntity(args.Entities[i]); // Check again, situation may have changed for some entities, but we'll still pick up any that are valid if (_containerSystem.IsEntityInContainer(entity) || entity == args.Args.User || !_itemQuery.HasComponent(entity)) + { continue; + } - if (xform == null || - !_xformQuery.TryGetComponent(entity, out var targetXform) || + if (!_xformQuery.TryGetComponent(entity, out var targetXform) || targetXform.MapID != xform.MapID) { continue; @@ -387,12 +412,12 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf // If we picked up at least one thing, play a sound and do a cool animation! if (successfullyInserted.Count > 0) { - Audio.PlayPvs(component.StorageInsertSound, uid); - RaiseNetworkEvent(new AnimateInsertingEntitiesEvent( + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User); + EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), GetNetCoordinatesList(successfullyInsertedPositions), - successfullyInsertedAngles)); + successfullyInsertedAngles), args.User); } args.Handled = true; @@ -629,8 +654,15 @@ private void OnInsertAttempt(EntityUid uid, StorageComponent component, Containe if (CheckingCanInsert) return; - if (!CanInsert(uid, args.EntityUid, out _, component, ignoreStacks: true)) + if (!CanInsert(uid, args.EntityUid, out var reason, component, ignoreStacks: true)) + { +#if DEBUG + if (reason != null) + CantFillReasons.Add(reason); +#endif + args.Cancel(); + } } public void UpdateAppearance(Entity entity) @@ -1076,7 +1108,7 @@ public void SaveItemLocation(Entity ent, Entity /// Plays a clientside pickup animation for the specified uid. /// diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2cae12f07a8..16987f1de02 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -60,6 +60,11 @@ public sealed partial class StorageComponent : Component [DataField] public bool ClickInsert = true; // Can insert stuff by clicking the storage entity with it + /// + /// How many entities area pickup can pickup at once. + /// + public const int AreaPickupLimit = 10; + [DataField] public bool AreaInsert; // Clicking with the storage entity causes it to insert all nearby storables after a delay diff --git a/Content.Shared/Store/ListingLocalisationHelpers.cs b/Content.Shared/Store/ListingLocalisationHelpers.cs index 3ac75cd8010..882300109ce 100644 --- a/Content.Shared/Store/ListingLocalisationHelpers.cs +++ b/Content.Shared/Store/ListingLocalisationHelpers.cs @@ -11,15 +11,14 @@ public static class ListingLocalisationHelpers /// public static string GetLocalisedNameOrEntityName(ListingData listingData, IPrototypeManager prototypeManager) { - bool wasLocalised = Loc.TryGetString(listingData.Name, out string? listingName); + var name = string.Empty; - if (!wasLocalised && listingData.ProductEntity != null) - { - var proto = prototypeManager.Index(listingData.ProductEntity); - listingName = proto.Name; - } + if (listingData.Name != null) + name = Loc.GetString(listingData.Name); + else if (listingData.ProductEntity != null) + name = prototypeManager.Index(listingData.ProductEntity.Value).Name; - return listingName ?? listingData.Name; + return name; } /// @@ -29,14 +28,13 @@ public static string GetLocalisedNameOrEntityName(ListingData listingData, IProt /// public static string GetLocalisedDescriptionOrEntityDescription(ListingData listingData, IPrototypeManager prototypeManager) { - bool wasLocalised = Loc.TryGetString(listingData.Description, out string? listingDesc); + var desc = string.Empty; - if (!wasLocalised && listingData.ProductEntity != null) - { - var proto = prototypeManager.Index(listingData.ProductEntity); - listingDesc = proto.Description; - } + if (listingData.Description != null) + desc = Loc.GetString(listingData.Description); + else if (listingData.ProductEntity != null) + desc = prototypeManager.Index(listingData.ProductEntity.Value).Description; - return listingDesc ?? listingData.Description; + return desc; } } diff --git a/Content.Shared/Store/ListingPrototype.cs b/Content.Shared/Store/ListingPrototype.cs index 25245327ce9..d3d2e13cdfd 100644 --- a/Content.Shared/Store/ListingPrototype.cs +++ b/Content.Shared/Store/ListingPrototype.cs @@ -2,10 +2,6 @@ using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; using Robust.Shared.Utility; namespace Content.Shared.Store; @@ -26,57 +22,57 @@ public partial class ListingData : IEquatable, ICloneable /// /// The name of the listing. If empty, uses the entity's name (if present) /// - [DataField("name")] - public string Name = string.Empty; + [DataField] + public string? Name; /// /// The description of the listing. If empty, uses the entity's description (if present) /// - [DataField("description")] - public string Description = string.Empty; + [DataField] + public string? Description; /// /// The categories that this listing applies to. Used for filtering a listing for a store. /// - [DataField("categories", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List Categories = new(); + [DataField] + public List> Categories = new(); /// /// The cost of the listing. String represents the currency type while the FixedPoint2 represents the amount of that currency. /// - [DataField("cost", customTypeSerializer: typeof(PrototypeIdDictionarySerializer))] - public Dictionary Cost = new(); + [DataField] + public Dictionary, FixedPoint2> Cost = new(); /// - /// Specific customizeable conditions that determine whether or not the listing can be purchased. + /// Specific customizable conditions that determine whether or not the listing can be purchased. /// [NonSerialized] - [DataField("conditions", serverOnly: true)] + [DataField(serverOnly: true)] public List? Conditions; /// /// The icon for the listing. If null, uses the icon for the entity or action. /// - [DataField("icon")] + [DataField] public SpriteSpecifier? Icon; /// /// The priority for what order the listings will show up in on the menu. /// - [DataField("priority")] - public int Priority = 0; + [DataField] + public int Priority; /// /// The entity that is given when the listing is purchased. /// - [DataField("productEntity", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? ProductEntity; + [DataField] + public EntProtoId? ProductEntity; /// /// The action that is given when the listing is purchased. /// - [DataField("productAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? ProductAction; + [DataField] + public EntProtoId? ProductAction; /// /// The listing ID of the related upgrade listing. Can be used to link a to an @@ -95,7 +91,7 @@ public partial class ListingData : IEquatable, ICloneable /// /// The event that is broadcast when the listing is purchased. /// - [DataField("productEvent")] + [DataField] public object? ProductEvent; [DataField] @@ -104,13 +100,14 @@ public partial class ListingData : IEquatable, ICloneable /// /// used internally for tracking how many times an item was purchased. /// - public int PurchaseAmount = 0; + [DataField] + public int PurchaseAmount; /// /// Used to delay purchase of some items. /// - [DataField("restockTime")] - public int RestockTime; + [DataField] + public TimeSpan RestockTime = TimeSpan.Zero; public bool Equals(ListingData? listing) { @@ -173,14 +170,10 @@ public object Clone() } } -// /// /// Defines a set item listing that is available in a store /// [Prototype("listing")] [Serializable, NetSerializable] [DataDefinition] -public sealed partial class ListingPrototype : ListingData, IPrototype -{ - -} +public sealed partial class ListingPrototype : ListingData, IPrototype; diff --git a/Content.Shared/Store/StoreUi.cs b/Content.Shared/Store/StoreUi.cs index 27a8ada1855..ee4da6991f6 100644 --- a/Content.Shared/Store/StoreUi.cs +++ b/Content.Shared/Store/StoreUi.cs @@ -1,4 +1,5 @@ using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Store; @@ -14,13 +15,13 @@ public sealed class StoreUpdateState : BoundUserInterfaceState { public readonly HashSet Listings; - public readonly Dictionary Balance; + public readonly Dictionary, FixedPoint2> Balance; public readonly bool ShowFooter; public readonly bool AllowRefund; - public StoreUpdateState(HashSet listings, Dictionary balance, bool showFooter, bool allowRefund) + public StoreUpdateState(HashSet listings, Dictionary, FixedPoint2> balance, bool showFooter, bool allowRefund) { Listings = listings; Balance = balance; @@ -46,9 +47,7 @@ public StoreInitializeState(string name) [Serializable, NetSerializable] public sealed class StoreRequestUpdateInterfaceMessage : BoundUserInterfaceMessage { - public StoreRequestUpdateInterfaceMessage() - { - } + } [Serializable, NetSerializable] diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index 7afd4f245a1..59b24ec943e 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -43,7 +43,8 @@ private void OnCanDropOn(EntityUid uid, StrippingComponent component, ref CanDro args.Handled = true; args.CanDrop |= uid == args.User && HasComp(args.Dragged) && - HasComp(args.User); + HasComp(args.User) && + HasComp(args.User); } private void OnCanDrop(EntityUid uid, StrippableComponent component, ref CanDropDraggedEvent args) diff --git a/Content.Shared/SubFloor/SharedTrayScannerSystem.cs b/Content.Shared/SubFloor/SharedTrayScannerSystem.cs index da56c8d1c76..6e8393036d4 100644 --- a/Content.Shared/SubFloor/SharedTrayScannerSystem.cs +++ b/Content.Shared/SubFloor/SharedTrayScannerSystem.cs @@ -48,7 +48,7 @@ private void SetScannerEnabled(EntityUid uid, bool enabled, TrayScannerComponent private void OnTrayScannerGetState(EntityUid uid, TrayScannerComponent scanner, ref ComponentGetState args) { - args.State = new TrayScannerState(scanner.Enabled); + args.State = new TrayScannerState(scanner.Enabled, scanner.Range); } private void OnTrayScannerHandleState(EntityUid uid, TrayScannerComponent scanner, ref ComponentHandleState args) @@ -56,6 +56,7 @@ private void OnTrayScannerHandleState(EntityUid uid, TrayScannerComponent scanne if (args.Current is not TrayScannerState state) return; + scanner.Range = state.Range; SetScannerEnabled(uid, state.Enabled, scanner); } } diff --git a/Content.Shared/SubFloor/TrayScannerComponent.cs b/Content.Shared/SubFloor/TrayScannerComponent.cs index 98e43246a84..acde11ff505 100644 --- a/Content.Shared/SubFloor/TrayScannerComponent.cs +++ b/Content.Shared/SubFloor/TrayScannerComponent.cs @@ -22,9 +22,11 @@ public sealed partial class TrayScannerComponent : Component public sealed class TrayScannerState : ComponentState { public bool Enabled; + public float Range; - public TrayScannerState(bool enabled) + public TrayScannerState(bool enabled, float range) { Enabled = enabled; + Range = range; } } diff --git a/Content.Shared/Tools/Components/SharedWelderComponent.cs b/Content.Shared/Tools/Components/SharedWelderComponent.cs deleted file mode 100644 index 78c1cde201b..00000000000 --- a/Content.Shared/Tools/Components/SharedWelderComponent.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Tools.Components -{ - [NetworkedComponent] - public abstract partial class SharedWelderComponent : Component { } - - [NetSerializable, Serializable] - public sealed class WelderComponentState : ComponentState - { - public float FuelCapacity { get; } - public float Fuel { get; } - - public WelderComponentState(float fuelCapacity, float fuel) - { - FuelCapacity = fuelCapacity; - Fuel = fuel; - } - } -} diff --git a/Content.Shared/Tools/Components/SharedWeldable.cs b/Content.Shared/Tools/Components/WeldableComponent.cs similarity index 55% rename from Content.Shared/Tools/Components/SharedWeldable.cs rename to Content.Shared/Tools/Components/WeldableComponent.cs index 701bd4d8da5..e491b5f6a73 100644 --- a/Content.Shared/Tools/Components/SharedWeldable.cs +++ b/Content.Shared/Tools/Components/WeldableComponent.cs @@ -1,6 +1,6 @@ using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Tools.Components; @@ -10,29 +10,31 @@ public sealed partial class WeldableComponent : Component /// /// Tool quality for welding. /// - [DataField("weldingQuality", customTypeSerializer: typeof(PrototypeIdSerializer))] - [ViewVariables(VVAccess.ReadWrite)] - public string WeldingQuality = "Welding"; + [DataField] + public ProtoId WeldingQuality = "Welding"; /// /// How much time does it take to weld/unweld entity. /// - [DataField("time")] - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public TimeSpan WeldingTime = TimeSpan.FromSeconds(1f); + [DataField, AutoNetworkedField] + public TimeSpan Time = TimeSpan.FromSeconds(1f); + + /// + /// How much fuel does it take to weld/unweld entity. + /// + [DataField] + public float Fuel = 3f; /// /// Shown when welded entity is examined. /// - [DataField("weldedExamineMessage")] - [ViewVariables(VVAccess.ReadWrite)] - public string? WeldedExamineMessage = "weldable-component-examine-is-welded"; + [DataField] + public LocId? WeldedExamineMessage = "weldable-component-examine-is-welded"; /// /// Is this entity currently welded shut? /// - [DataField("isWelded"), AutoNetworkedField] + [DataField, AutoNetworkedField] public bool IsWelded; } diff --git a/Content.Shared/Tools/Components/WelderComponent.cs b/Content.Shared/Tools/Components/WelderComponent.cs new file mode 100644 index 00000000000..3c78a03fdeb --- /dev/null +++ b/Content.Shared/Tools/Components/WelderComponent.cs @@ -0,0 +1,58 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; +using Content.Shared.Tools.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Tools.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true), Access(typeof(SharedToolSystem))] +public sealed partial class WelderComponent : Component +{ + [DataField, AutoNetworkedField] + public bool Enabled; + + [DataField] + public float WelderTimer; + + /// + /// Name of . + /// + [DataField] + public string FuelSolutionName = "Welder"; + + /// + /// Reagent that will be used as fuel for welding. + /// + [DataField] + public ProtoId FuelReagent = "WeldingFuel"; + + /// + /// Fuel consumption per second while the welder is active. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelConsumption = FixedPoint2.New(1.0f); + + /// + /// A fuel amount to be consumed when the welder goes from being unlit to being lit. + /// + [DataField, AutoNetworkedField] + public FixedPoint2 FuelLitCost = FixedPoint2.New(0.5f); + + /// + /// Sound played when refilling the welder. + /// + [DataField] + public SoundSpecifier WelderRefill = new SoundPathSpecifier("/Audio/Effects/refill.ogg"); + + /// + /// Whether the item is safe to refill while lit without exploding the tank. + /// + [DataField] + public bool TankSafe; + + [DataField] + public float WelderUpdateTimer = 1f; +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs new file mode 100644 index 00000000000..e790b59cd12 --- /dev/null +++ b/Content.Shared/Tools/Systems/SharedToolSystem.Welder.cs @@ -0,0 +1,178 @@ +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.Components.SolutionManager; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Tools.Components; + +namespace Content.Shared.Tools.Systems; + +public abstract partial class SharedToolSystem +{ + public void InitializeWelder() + { + SubscribeLocalEvent(OnWelderExamine); + SubscribeLocalEvent(OnWelderAfterInteract); + SubscribeLocalEvent>(OnWelderToolUseAttempt); + SubscribeLocalEvent(OnWelderDoAfter); + SubscribeLocalEvent(OnToggle); + SubscribeLocalEvent(OnActivateAttempt); + } + + public virtual void TurnOn(Entity entity, EntityUid? user) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out _)) + return; + + SolutionContainerSystem.RemoveReagent(solutionComp.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost); + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} on"); + + entity.Comp.Enabled = true; + Dirty(entity, entity.Comp); + } + + public void TurnOff(Entity entity, EntityUid? user) + { + AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, + $"{ToPrettyString(user):user} toggled {ToPrettyString(entity.Owner):welder} off"); + entity.Comp.Enabled = false; + Dirty(entity, entity.Comp); + } + + public (FixedPoint2 fuel, FixedPoint2 capacity) GetWelderFuelAndCapacity(EntityUid uid, WelderComponent? welder = null, SolutionContainerManagerComponent? solutionContainer = null) + { + if (!Resolve(uid, ref welder, ref solutionContainer)) + return default; + + if (!SolutionContainer.TryGetSolution( + (uid, solutionContainer), + welder.FuelSolutionName, + out _, + out var fuelSolution)) + { + return default; + } + + return (fuelSolution.GetTotalPrototypeQuantity(welder.FuelReagent), fuelSolution.MaxVolume); + } + + private void OnWelderExamine(Entity entity, ref ExaminedEvent args) + { + using (args.PushGroup(nameof(WelderComponent))) + { + if (ItemToggle.IsActivated(entity.Owner)) + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-lit-message")); + } + else + { + args.PushMarkup(Loc.GetString("welder-component-on-examine-welder-not-lit-message")); + } + + if (args.IsInDetailsRange) + { + var (fuel, capacity) = GetWelderFuelAndCapacity(entity.Owner, entity.Comp); + + args.PushMarkup(Loc.GetString("welder-component-on-examine-detailed-message", + ("colorName", fuel < capacity / FixedPoint2.New(4f) ? "darkorange" : "orange"), + ("fuelLeft", fuel), + ("fuelCapacity", capacity), + ("status", string.Empty))); // Lit status is handled above + } + } + } + + private void OnWelderAfterInteract(Entity entity, ref AfterInteractEvent args) + { + if (args.Handled) + return; + + if (args.Target is not { Valid: true } target || !args.CanReach) + return; + + if (TryComp(target, out ReagentTankComponent? tank) + && tank.TankType == ReagentTankType.Fuel + && SolutionContainerSystem.TryGetDrainableSolution(target, out var targetSoln, out var targetSolution) + && SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out var solutionComp, out var welderSolution)) + { + var trans = FixedPoint2.Min(welderSolution.AvailableVolume, targetSolution.Volume); + if (trans > 0) + { + var drained = SolutionContainerSystem.Drain(target, targetSoln.Value, trans); + SolutionContainerSystem.TryAddSolution(solutionComp.Value, drained); + _audioSystem.PlayPredicted(entity.Comp.WelderRefill, entity, user: args.User); + _popup.PopupClient(Loc.GetString("welder-component-after-interact-refueled-message"), entity, args.User); + } + else if (welderSolution.AvailableVolume <= 0) + { + _popup.PopupClient(Loc.GetString("welder-component-already-full"), entity, args.User); + } + else + { + _popup.PopupClient(Loc.GetString("welder-component-no-fuel-in-tank", ("owner", args.Target)), entity, args.User); + } + + args.Handled = true; + } + } + + private void OnWelderToolUseAttempt(Entity entity, ref DoAfterAttemptEvent args) + { + var user = args.DoAfter.Args.User; + + if (!ItemToggle.IsActivated(entity.Owner)) + { + _popup.PopupClient(Loc.GetString("welder-component-welder-not-lit-message"), entity, user); + args.Cancel(); + return; + } + + var (fuel, _) = GetWelderFuelAndCapacity(entity); + + if (args.Event.Fuel > fuel) + { + _popup.PopupClient(Loc.GetString("welder-component-cannot-weld-message"), entity, user); + args.Cancel(); + } + } + + private void OnWelderDoAfter(Entity ent, ref ToolDoAfterEvent args) + { + if (args.Cancelled) + return; + + if (!SolutionContainerSystem.TryGetSolution(ent.Owner, ent.Comp.FuelSolutionName, out var solution)) + return; + + SolutionContainerSystem.RemoveReagent(solution.Value, ent.Comp.FuelReagent, FixedPoint2.New(args.Fuel)); + } + + private void OnToggle(Entity entity, ref ItemToggledEvent args) + { + if (args.Activated) + TurnOn(entity, args.User); + else + TurnOff(entity, args.User); + } + + private void OnActivateAttempt(Entity entity, ref ItemToggleActivateAttemptEvent args) + { + if (!SolutionContainerSystem.TryGetSolution(entity.Owner, entity.Comp.FuelSolutionName, out _, out var solution)) + { + args.Cancelled = true; + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + return; + } + + var fuel = solution.GetTotalPrototypeQuantity(entity.Comp.FuelReagent); + if (fuel == FixedPoint2.Zero || fuel < entity.Comp.FuelLitCost) + { + args.Popup = Loc.GetString("welder-component-no-fuel-message"); + args.Cancelled = true; + } + } +} diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 4204d7547e0..9edae9b78fd 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -1,8 +1,12 @@ using Content.Shared.Administration.Logs; +using Content.Shared.Chemistry.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Interaction; +using Content.Shared.Item.ItemToggle; using Content.Shared.Maps; +using Content.Shared.Popups; using Content.Shared.Tools.Components; +using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -15,20 +19,25 @@ public abstract partial class SharedToolSystem : EntitySystem { [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; - [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; + [Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!; [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] protected readonly SharedInteractionSystem InteractionSystem = default!; + [Dependency] protected readonly SharedItemToggleSystem ItemToggle = default!; [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainerSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tiles = default!; [Dependency] private readonly TurfSystem _turfs = default!; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; public override void Initialize() { InitializeMultipleTool(); InitializeTile(); + InitializeWelder(); SubscribeLocalEvent(OnDoAfter); } @@ -66,6 +75,7 @@ public void PlayToolSound(EntityUid uid, ToolComponent tool, EntityUid? user) /// The qualities needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -75,6 +85,7 @@ public bool UseTool( float doAfterDelay, IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -84,6 +95,7 @@ public bool UseTool( toolQualitiesNeeded, doAfterEv, out _, + fuel, toolComponent); } @@ -101,6 +113,7 @@ public bool UseTool( /// will be directed at the tool target. /// The id of the DoAfter that was created. This may be null even if the function returns true in /// the event that this tool-use cancelled an existing DoAfter + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -111,31 +124,30 @@ public bool UseTool( IEnumerable toolQualitiesNeeded, DoAfterEvent doAfterEv, out DoAfterId? id, + float fuel = 0, ToolComponent? toolComponent = null) { id = null; if (!Resolve(tool, ref toolComponent, false)) return false; - if (!CanStartToolUse(tool, user, target, toolQualitiesNeeded, toolComponent)) + if (!CanStartToolUse(tool, user, target, fuel, toolQualitiesNeeded, toolComponent)) return false; - var toolEvent = new ToolDoAfterEvent(doAfterEv, GetNetEntity(target)); + var toolEvent = new ToolDoAfterEvent(fuel, doAfterEv, GetNetEntity(target)); var doAfterArgs = new DoAfterArgs(EntityManager, user, delay / toolComponent.SpeedModifier, toolEvent, tool, target: target, used: tool) { BreakOnDamage = true, BreakOnMove = true, BreakOnWeightlessMove = false, NeedHand = tool != user, - AttemptFrequency = IsWelder(tool) ? AttemptFrequency.EveryTick : AttemptFrequency.Never + AttemptFrequency = fuel > 0 ? AttemptFrequency.EveryTick : AttemptFrequency.Never }; _doAfterSystem.TryStartDoAfter(doAfterArgs, out id); return true; } - protected abstract bool IsWelder(EntityUid uid); - /// /// Attempts to use a tool on some entity, which will start a DoAfter. Returns true if an interaction occurred. /// Note that this does not mean the interaction was successful, you need to listen for the DoAfter event. @@ -148,6 +160,7 @@ public bool UseTool( /// The quality needed for this tool to work. /// The event that will be raised when the tool has finished (including cancellation). Event /// will be directed at the tool target. + /// Amount of fuel that should be taken from the tool. /// The tool component. /// Returns true if any interaction takes place. public bool UseTool( @@ -157,6 +170,7 @@ public bool UseTool( float doAfterDelay, string toolQualityNeeded, DoAfterEvent doAfterEv, + float fuel = 0, ToolComponent? toolComponent = null) { return UseTool(tool, @@ -166,6 +180,7 @@ public bool UseTool( new[] { toolQualityNeeded }, doAfterEv, out _, + fuel, toolComponent); } @@ -180,12 +195,13 @@ public bool HasQuality(EntityUid uid, string quality, ToolComponent? tool = null /// /// Whether a tool entity has all specified qualities or not. /// + [PublicAPI] public bool HasAllQualities(EntityUid uid, IEnumerable qualities, ToolComponent? tool = null) { return Resolve(uid, ref tool, false) && tool.Qualities.ContainsAll(qualities); } - private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) + private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, float fuel, IEnumerable toolQualitiesNeeded, ToolComponent? toolComponent = null) { if (!Resolve(tool, ref toolComponent)) return false; @@ -220,6 +236,9 @@ private bool CanStartToolUse(EntityUid tool, EntityUid user, EntityUid? target, [Serializable, NetSerializable] protected sealed partial class ToolDoAfterEvent : DoAfterEvent { + [DataField] + public float Fuel; + /// /// Entity that the wrapped do after event will get directed at. If null, event will be broadcast. /// @@ -233,10 +252,11 @@ private ToolDoAfterEvent() { } - public ToolDoAfterEvent(DoAfterEvent wrappedEvent, NetEntity? originalTarget) + public ToolDoAfterEvent(float fuel, DoAfterEvent wrappedEvent, NetEntity? originalTarget) { DebugTools.Assert(wrappedEvent.GetType().HasCustomAttribute(), "Tool event is not serializable"); + Fuel = fuel; WrappedEvent = wrappedEvent; OriginalTarget = originalTarget; } @@ -249,14 +269,14 @@ public override DoAfterEvent Clone() if (evClone == WrappedEvent) return this; - return new ToolDoAfterEvent(evClone, OriginalTarget); + return new ToolDoAfterEvent(Fuel, evClone, OriginalTarget); } } [Serializable, NetSerializable] protected sealed partial class LatticeCuttingCompleteEvent : DoAfterEvent { - [DataField("coordinates", required:true)] + [DataField(required:true)] public NetCoordinates Coordinates; private LatticeCuttingCompleteEvent() @@ -273,9 +293,7 @@ public LatticeCuttingCompleteEvent(NetCoordinates coordinates) } [Serializable, NetSerializable] -public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent -{ -} +public sealed partial class CableCuttingFinishedEvent : SimpleDoAfterEvent; #endregion diff --git a/Content.Shared/Tools/Systems/WeldableSystem.cs b/Content.Shared/Tools/Systems/WeldableSystem.cs index b0ea68f713f..c6c47d539e0 100644 --- a/Content.Shared/Tools/Systems/WeldableSystem.cs +++ b/Content.Shared/Tools/Systems/WeldableSystem.cs @@ -69,7 +69,7 @@ private bool TryWeld(EntityUid uid, EntityUid tool, EntityUid user, WeldableComp if (!CanWeld(uid, tool, user, component)) return false; - if (!_toolSystem.UseTool(tool, user, uid, component.WeldingTime.Seconds, component.WeldingQuality, new WeldFinishedEvent())) + if (!_toolSystem.UseTool(tool, user, uid, component.Time.Seconds, component.WeldingQuality, new WeldFinishedEvent(), component.Fuel)) return false; // Log attempt @@ -140,10 +140,10 @@ public void SetWeldingTime(EntityUid uid, TimeSpan time, WeldableComponent? comp if (!_query.Resolve(uid, ref component)) return; - if (component.WeldingTime.Equals(time)) + if (component.Time.Equals(time)) return; - component.WeldingTime = time; + component.Time = time; Dirty(uid, component); } } diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index 85d2e4675f7..fa5e0b3a905 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -140,6 +140,14 @@ public sealed partial class MeleeWeaponComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("soundNoDamage"), AutoNetworkedField] public SoundSpecifier NoDamageSound { get; set; } = new SoundCollectionSpecifier("WeakHit"); + + /// + /// If true, the weapon must be equipped for it to be used. + /// E.g boxing gloves must be equipped to your gloves, + /// not just held in your hand to be used. + /// + [DataField, AutoNetworkedField] + public bool MustBeEquippedToUse = false; } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index e59b4a13fed..6fa11f87d2a 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -277,7 +277,10 @@ public bool TryGetWeapon(EntityUid entity, out EntityUid weaponUid, [NotNullWhen if (EntityManager.TryGetComponent(entity, out HandsComponent? hands) && hands.ActiveHandEntity is { } held) { - if (EntityManager.TryGetComponent(held, out melee)) + // Make sure the entity is a weapon AND it doesn't need + // to be equipped to be used (E.g boxing gloves). + if (EntityManager.TryGetComponent(held, out melee) && + !melee.MustBeEquippedToUse) { weaponUid = held; return true; diff --git a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs index 58c5fec2d83..ce96639e3c4 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs @@ -17,4 +17,20 @@ public sealed partial class GunWieldBonusComponent : Component /// [ViewVariables(VVAccess.ReadWrite), DataField("maxAngle"), AutoNetworkedField] public Angle MaxAngle = Angle.FromDegrees(-43); + + /// + /// Recoil bonuses applied upon being wielded. + /// Higher angle decay bonus, quicker recovery. + /// Lower angle increase bonus (negative numbers), slower buildup. + /// + [DataField, AutoNetworkedField] + public Angle AngleDecay = Angle.FromDegrees(0); + + /// + /// Recoil bonuses applied upon being wielded. + /// Higher angle decay bonus, quicker recovery. + /// Lower angle increase bonus (negative numbers), slower buildup. + /// + [DataField, AutoNetworkedField] + public Angle AngleIncrease = Angle.FromDegrees(0); } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs index 57db1d2b9cf..9eb290ab65c 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Magazine.cs @@ -1,7 +1,6 @@ using Content.Shared.Examine; using Content.Shared.Interaction.Events; using Content.Shared.Verbs; -using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Containers; @@ -13,6 +12,7 @@ public abstract partial class SharedGunSystem protected virtual void InitializeMagazine() { + SubscribeLocalEvent(OnMagazineMapInit); SubscribeLocalEvent(OnMagazineTakeAmmo); SubscribeLocalEvent(OnMagazineAmmoCount); SubscribeLocalEvent>(OnMagazineVerb); @@ -22,6 +22,11 @@ protected virtual void InitializeMagazine() SubscribeLocalEvent(OnMagazineExamine); } + private void OnMagazineMapInit(Entity ent, ref MapInitEvent args) + { + MagazineSlotChanged(ent); + } + private void OnMagazineExamine(EntityUid uid, MagazineAmmoProviderComponent component, ExaminedEvent args) { if (!args.IsInDetailsRange) @@ -62,16 +67,21 @@ protected virtual void OnMagazineSlotChange(EntityUid uid, MagazineAmmoProviderC if (MagazineSlot != args.Container.ID) return; - UpdateAmmoCount(uid); - if (!TryComp(uid, out var appearance)) + MagazineSlotChanged((uid, component)); + } + + private void MagazineSlotChanged(Entity ent) + { + UpdateAmmoCount(ent); + if (!TryComp(ent, out var appearance)) return; - var magEnt = GetMagazineEntity(uid); - Appearance.SetData(uid, AmmoVisuals.MagLoaded, magEnt != null, appearance); + var magEnt = GetMagazineEntity(ent); + Appearance.SetData(ent, AmmoVisuals.MagLoaded, magEnt != null, appearance); if (magEnt != null) { - UpdateMagazineAppearance(uid, component, magEnt.Value); + UpdateMagazineAppearance(ent, ent, magEnt.Value); } } diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index b7529328793..6bd406c1cad 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -34,7 +34,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnUseInHand); + SubscribeLocalEvent(OnUseInHand, before: [typeof(SharedGunSystem)]); SubscribeLocalEvent(OnItemUnwielded); SubscribeLocalEvent(OnItemLeaveHand); SubscribeLocalEvent(OnVirtualItemDeleted); @@ -90,6 +90,8 @@ private void OnGunRefreshModifiers(Entity bonus, ref Gun { args.MinAngle += bonus.Comp.MinAngle; args.MaxAngle += bonus.Comp.MaxAngle; + args.AngleDecay += bonus.Comp.AngleDecay; + args.AngleIncrease += bonus.Comp.AngleIncrease; } } @@ -195,8 +197,9 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use && !_delay.TryResetDelay((used, useDelay), true)) return false; - _popupSystem.PopupClient(Loc.GetString("wieldable-component-successful-wield", ("item", used)), user, user); - _popupSystem.PopupEntity(Loc.GetString("wieldable-component-successful-wield-other", ("user", user), ("item", used)), user, Filter.PvsExcept(user), true); + var selfMessage = Loc.GetString("wieldable-component-successful-wield", ("item", used)); + var othersMessage = Loc.GetString("wieldable-component-successful-wield-other", ("user", user), ("item", used)); + _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); var targEv = new ItemWieldedEvent(); RaiseLocalEvent(used, ref targEv); @@ -239,10 +242,9 @@ private void OnItemUnwielded(EntityUid uid, WieldableComponent component, ItemUn if (component.UnwieldSound != null) _audioSystem.PlayPredicted(component.UnwieldSound, uid, args.User); - _popupSystem.PopupClient(Loc.GetString("wieldable-component-failed-wield", - ("item", uid)), args.User.Value, args.User.Value); - _popupSystem.PopupEntity(Loc.GetString("wieldable-component-failed-wield-other", - ("user", args.User.Value), ("item", uid)), args.User.Value, Filter.PvsExcept(args.User.Value), true); + var selfMessage = Loc.GetString("wieldable-component-failed-wield", ("item", uid)); + var othersMessage = Loc.GetString("wieldable-component-failed-wield-other", ("user", args.User.Value), ("item", uid)); + _popupSystem.PopupPredicted(selfMessage, othersMessage, args.User.Value, args.User.Value); } _appearance.SetData(uid, WieldableVisuals.Wielded, false); diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index cecacceda9c..07f2a60c848 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -30,50 +30,40 @@ public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterf } [Serializable, NetSerializable] -public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState +public sealed class AnalysisConsoleBiasButtonPressedMessage(bool isDown) : BoundUserInterfaceMessage { - public NetEntity? Artifact; - - public bool AnalyzerConnected; - - public bool ServerConnected; - - public bool CanScan; - - public bool CanPrint; - - public FormattedMessage? ScanReport; - - public bool Scanning; - - public bool Paused; - - public TimeSpan? StartTime; - - public TimeSpan? AccumulatedRunTime; - - public TimeSpan? TotalTime; - - public int PointAmount; - - public AnalysisConsoleScanUpdateState(NetEntity? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, - FormattedMessage? scanReport, bool scanning, bool paused, TimeSpan? startTime, TimeSpan? accumulatedRunTime, TimeSpan? totalTime, int pointAmount) - { - Artifact = artifact; - AnalyzerConnected = analyzerConnected; - ServerConnected = serverConnected; - CanScan = canScan; - CanPrint = canPrint; - - ScanReport = scanReport; - - Scanning = scanning; - Paused = paused; - - StartTime = startTime; - AccumulatedRunTime = accumulatedRunTime; - TotalTime = totalTime; + public bool IsDown = isDown; +} - PointAmount = pointAmount; - } +[Serializable, NetSerializable] +public sealed class AnalysisConsoleUpdateState( + NetEntity? artifact, + bool analyzerConnected, + bool serverConnected, + bool canScan, + bool canPrint, + FormattedMessage? scanReport, + bool scanning, + bool paused, + TimeSpan? startTime, + TimeSpan? accumulatedRunTime, + TimeSpan? totalTime, + int pointAmount, + bool isTraversalDown +) + : BoundUserInterfaceState +{ + public NetEntity? Artifact = artifact; + public bool AnalyzerConnected = analyzerConnected; + public bool ServerConnected = serverConnected; + public bool CanScan = canScan; + public bool CanPrint = canPrint; + public FormattedMessage? ScanReport = scanReport; + public bool Scanning = scanning; + public bool Paused = paused; + public TimeSpan? StartTime = startTime; + public TimeSpan? AccumulatedRunTime = accumulatedRunTime; + public TimeSpan? TotalTime = totalTime; + public int PointAmount = pointAmount; + public bool IsTraversalDown = isTraversalDown; } diff --git a/Content.Shared/Zombies/ZombieComponent.cs b/Content.Shared/Zombies/ZombieComponent.cs index be3fdbdd01a..3673a2c51d5 100644 --- a/Content.Shared/Zombies/ZombieComponent.cs +++ b/Content.Shared/Zombies/ZombieComponent.cs @@ -27,7 +27,7 @@ public sealed partial class ZombieComponent : Component, IAntagStatusIconCompone /// being invincible by bundling up. /// [ViewVariables(VVAccess.ReadWrite)] - public float MinZombieInfectionChance = 0.50f; + public float MinZombieInfectionChance = 0.25f; [ViewVariables(VVAccess.ReadWrite)] public float ZombieMovementSpeedDebuff = 0.70f; diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index b7b70bd1188..b23faa48fcd 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -1,9 +1,11 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Reflection; using System.Threading.Tasks; using Content.IntegrationTests; using Robust.Shared.Prototypes; +using Robust.Shared.Reflection; using Robust.Shared.Serialization.Markdown.Validation; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -103,9 +105,13 @@ await instance.WaitPost(() => return (yamlErrors, fieldErrors); } - public static async Task<(Dictionary> YamlErrors , List FieldErrors)> + public static async Task<(Dictionary> YamlErrors, List FieldErrors)> RunValidation() { + var (clientAssemblies, serverAssemblies) = await GetClientServerAssemblies(); + var serverTypes = serverAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var clientTypes = clientAssemblies.SelectMany(n => n.GetTypes()).Select(t => t.Name).ToHashSet(); + var yamlErrors = new Dictionary>(); var serverErrors = await ValidateServer(); @@ -117,9 +123,18 @@ await instance.WaitPost(() => var newErrors = val.Where(n => n.AlwaysRelevant).ToHashSet(); // We include sometimes-relevant errors if they exist both for the client & server - if (clientErrors.Item1.TryGetValue(key, out var clientVal)) + if (clientErrors.YamlErrors.TryGetValue(key, out var clientVal)) newErrors.UnionWith(val.Intersect(clientVal)); + // Include any errors that relate to server-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !clientTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } + if (newErrors.Count != 0) yamlErrors[key] = newErrors; } @@ -135,6 +150,15 @@ await instance.WaitPost(() => errors.UnionWith(val.Where(n => n.AlwaysRelevant)); else yamlErrors[key] = newErrors; + + // Include any errors that relate to client-only types + foreach (var errorNode in val) + { + if (errorNode is FieldNotFoundErrorNode fieldNotFoundNode && !serverTypes.Contains(fieldNotFoundNode.FieldType.Name)) + { + newErrors.Add(errorNode); + } + } } // Finally, combine the prototype ID field errors. @@ -145,5 +169,23 @@ await instance.WaitPost(() => return (yamlErrors, fieldErrors); } + + private static async Task<(Assembly[] clientAssemblies, Assembly[] serverAssemblies)> + GetClientServerAssemblies() + { + await using var pair = await PoolManager.GetServerClient(); + + var result = (GetAssemblies(pair.Client), GetAssemblies(pair.Server)); + + await pair.CleanReturnAsync(); + + return result; + + Assembly[] GetAssemblies(RobustIntegrationTest.IntegrationInstance instance) + { + var refl = instance.ResolveDependency(); + return refl.Assemblies.ToArray(); + } + } } } diff --git a/Resources/Audio/Effects/Lightning/attributions.yml b/Resources/Audio/Effects/Lightning/attributions.yml index fa6cc9d165f..0bd92af1bbc 100644 --- a/Resources/Audio/Effects/Lightning/attributions.yml +++ b/Resources/Audio/Effects/Lightning/attributions.yml @@ -2,3 +2,13 @@ license: CC-BY-NC-SA-3.0 copyright: Citadel Station 13 source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 + +- files: ["strobeepsilon.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by dj-34 (https://github.com/dj-34). Modified by Ko4erga" + source: "https://github.com/ss220-space/Paradise/blob/05043bcfb35c2e7bcf1efbdbfbf976e1a2504bc2/sound/effects/epsilon.ogg" + +- files: ["strobe.ogg"] + source: "https://freesound.org/people/blukotek/sounds/431651/" + license: "CC0-1.0" + copyright: "Piotr Zaczek (blukotek) on freesound.org. Modified by Ko4erga" diff --git a/Resources/Audio/Effects/Lightning/strobe.ogg b/Resources/Audio/Effects/Lightning/strobe.ogg new file mode 100644 index 00000000000..0d8228c8865 Binary files /dev/null and b/Resources/Audio/Effects/Lightning/strobe.ogg differ diff --git a/Resources/Audio/Effects/Lightning/strobeepsilon.ogg b/Resources/Audio/Effects/Lightning/strobeepsilon.ogg new file mode 100644 index 00000000000..9f77e93b2dc Binary files /dev/null and b/Resources/Audio/Effects/Lightning/strobeepsilon.ogg differ diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index c6fea50bd25..675e4fff24e 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -93,6 +93,16 @@ copyright: "User Hanbaal on freesound.org. Converted to ogg by TheShuEd" source: "https://freesound.org/people/Hanbaal/sounds/178669/" +- files: ["soda_shake.ogg"] + license: "CC-BY-NC-4.0" + copyright: "User mcmast on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/mcmast/sounds/456703/" + +- files: ["soda_spray.ogg"] + license: "CC0-1.0" + copyright: "User Hajisounds on freesound.org. Converted and edited by Tayrtahn" + source: "https://freesound.org/people/Hajisounds/sounds/709149/" + - files: ["newton_cradle.ogg"] license: "CC-BY-4.0" copyright: "User LoafDV on freesound.org. Converted to ogg end edited by lzk228" diff --git a/Resources/Audio/Items/soda_shake.ogg b/Resources/Audio/Items/soda_shake.ogg new file mode 100644 index 00000000000..a596379c93a Binary files /dev/null and b/Resources/Audio/Items/soda_shake.ogg differ diff --git a/Resources/Audio/Items/soda_spray.ogg b/Resources/Audio/Items/soda_spray.ogg new file mode 100644 index 00000000000..f4a5a3e803f Binary files /dev/null and b/Resources/Audio/Items/soda_spray.ogg differ diff --git a/Resources/Audio/Jukebox/attributions.yml b/Resources/Audio/Jukebox/attributions.yml new file mode 100644 index 00000000000..48e1458c4c0 --- /dev/null +++ b/Resources/Audio/Jukebox/attributions.yml @@ -0,0 +1,27 @@ +- files: ["sector11.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "-Sector11 by MashedByMachines. Converted to mono OGG." + source: "https://www.newgrounds.com/audio/listen/312622" + +- files: ["mod.flip-flap.ogg"] + license: "Custom" + copyright: "Flip Flap by X-ceed is licensed under a short but clear license (see flip-flap.txt in Audio/Lobby) and is free for non-commercial use. Converted to mono OGG." + source: "http://aminet.net/package/mods/xceed/Flipflap" + +- files: ["title3.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Title3 by Cuboos. It is a remix of the song 'Tintin on the Moon'. Converted to mono OGG." + source: "https://www.youtube.com/watch?v=YKVmXn-Gv0M" + +- files: + - "constellations.ogg" + - "drifting.ogg" + - "starlight.ogg" + license: "CC-BY-3.0" + copyright: "Constellations by Qwertyquerty. Converted to mono OGG." + source: "https://www.youtube.com/channel/UCPYbhBUGhH7n_G4HLK2YipQ" + +- files: ["sunset.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Sunset by PigeonBeans. Exported in Mono OGG." + source: "https://soundcloud.com/pigeonbeans/sunset" \ No newline at end of file diff --git a/Resources/Audio/Jukebox/constellations.ogg b/Resources/Audio/Jukebox/constellations.ogg new file mode 100644 index 00000000000..f1774894652 Binary files /dev/null and b/Resources/Audio/Jukebox/constellations.ogg differ diff --git a/Resources/Audio/Jukebox/drifting.ogg b/Resources/Audio/Jukebox/drifting.ogg new file mode 100644 index 00000000000..321c098bbdd Binary files /dev/null and b/Resources/Audio/Jukebox/drifting.ogg differ diff --git a/Resources/Audio/Jukebox/flip-flap.ogg b/Resources/Audio/Jukebox/flip-flap.ogg new file mode 100644 index 00000000000..07c47c00be9 Binary files /dev/null and b/Resources/Audio/Jukebox/flip-flap.ogg differ diff --git a/Resources/Audio/Jukebox/sector11.ogg b/Resources/Audio/Jukebox/sector11.ogg new file mode 100644 index 00000000000..f0ce993b7ea Binary files /dev/null and b/Resources/Audio/Jukebox/sector11.ogg differ diff --git a/Resources/Audio/Jukebox/starlight.ogg b/Resources/Audio/Jukebox/starlight.ogg new file mode 100644 index 00000000000..31e23416f96 Binary files /dev/null and b/Resources/Audio/Jukebox/starlight.ogg differ diff --git a/Resources/Audio/Jukebox/sunset.ogg b/Resources/Audio/Jukebox/sunset.ogg new file mode 100644 index 00000000000..3f6d909eaa1 Binary files /dev/null and b/Resources/Audio/Jukebox/sunset.ogg differ diff --git a/Resources/Audio/Jukebox/title3.ogg b/Resources/Audio/Jukebox/title3.ogg new file mode 100644 index 00000000000..5cfe80b535b Binary files /dev/null and b/Resources/Audio/Jukebox/title3.ogg differ diff --git a/Resources/Audio/Voice/Misc/silly_snore.ogg b/Resources/Audio/Voice/Misc/silly_snore.ogg index 7b3d82ce399..22b4c03808b 100644 Binary files a/Resources/Audio/Voice/Misc/silly_snore.ogg and b/Resources/Audio/Voice/Misc/silly_snore.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 75a1ef7f7b3..8d997a23b7f 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -144,5 +144,29 @@ Entries: id: 19 time: '2024-03-31T02:05:44.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/26546 +- author: PJB3005 + changes: + - message: The new "grant_connect_bypass" command grants a player the ability to + connect, bypassing whitelist, player cap and panic bunker. + type: Add + id: 20 + time: '2024-04-09T15:25:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26771 +- author: Aexxie + changes: + - message: Removed the bartender's roundstart incendiary shells on Meta. + type: Remove + id: 21 + time: '2024-04-20T01:06:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27142 +- author: nikthechampiongr + changes: + - message: Banpanel default values for ban severities, whether a server ban should + be applied with hwid/ip, whether to use last available details, and whether + to erase the player on ban can now be configured through a Cvar. + type: Tweak + id: 22 + time: '2024-04-20T16:18:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27168 Name: Admin Order: 3 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7a1578a501f..d623b48d444 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,1563 +1,837 @@ Entries: -- author: mirrorcult +- author: Ubaser changes: - - message: Various annoying sounds are now a little quieter + - message: Food Service research is now roundstart. type: Tweak - id: 5819 - time: '2024-01-29T09:51:31.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24690 -- author: SpeltIncorrectyl - changes: - - message: Portable generators can now be connected to the signal network and controlled - remotely via devices like a signal transmitter. - type: Add - id: 5820 - time: '2024-01-29T14:56:29.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24157 -- author: Tayrtahn - changes: - - message: Welders properly display their lit status again. - type: Fix - id: 5821 - time: '2024-01-29T23:04:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24705 -- author: Tayrtahn - changes: - - message: Water bottles now display their fill level while held. - type: Add - id: 5822 - time: '2024-01-29T23:19:56.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24708 + id: 5916 + time: '2024-02-11T06:37:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25046 - author: SlamBamActionman changes: - - message: Arachnids slipping in water now get a cute hat! + - message: Added setting to toggle chat name color in Options. type: Add - id: 5823 - time: '2024-01-30T00:21:26.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23822 -- author: Tayrtahn - changes: - - message: Pressing shift as a ghost no longer cancels following your target - type: Fix - id: 5824 - time: '2024-01-30T01:33:35.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24715 -- author: liltenhead + id: 5917 + time: '2024-02-11T06:38:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24625 +- author: Emisse changes: - - message: Jugs are now destructible. + - message: Ambuzol now requires zombie blood type: Tweak - id: 5825 - time: '2024-01-30T08:11:43.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24719 -- author: Emisse + id: 5918 + time: '2024-02-11T20:47:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25119 +- author: Plykiya changes: - - message: Aspid - type: Remove - id: 5826 - time: '2024-01-30T10:26:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24725 -- author: mirrorcult + - message: Door remotes no longer have their 5G signals absorbed by mobs, machines, + or Ian's cute butt. + type: Fix + id: 5919 + time: '2024-02-12T02:34:13.532550+00:00' + url: null +- author: FungiFellow changes: - - message: Throwing items now scale a bit when thrown to simulate rising/falling - type: Add - id: 5827 - time: '2024-01-30T10:50:41.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24724 -- author: Emisse + - message: Lowered Reoccurence Delay for Ion Storm + type: Tweak + id: 5920 + time: '2024-02-12T02:35:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25135 +- author: PoorMansDreams changes: - - message: Gemini - type: Remove - id: 5828 - time: '2024-01-30T10:54:55.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24728 -- author: CrigCrag + - message: Ammo is now tipped! + type: Tweak + id: 5921 + time: '2024-02-12T03:02:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25103 +- author: PoorMansDreams changes: - - message: Added a new large salvage wreck. + - message: Buyable Janitorial Trolley! type: Add - id: 5829 - time: '2024-01-30T10:56:38.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24656 -- author: themias + id: 5922 + time: '2024-02-12T06:35:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25139 +- author: Plykiya changes: - - message: Fixed Centcom cargo gifts not being fulfilled - type: Fix - id: 5830 - time: '2024-01-30T11:05:20.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24701 -- author: Scribbles0 + - message: Stun batons and stun prods now display their hits remaining. + type: Tweak + id: 5923 + time: '2024-02-12T06:36:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25141 +- author: Ilya246 changes: - - message: You can now make anomaly cores orbit you. + - message: Autolathes may now make empty air tanks. type: Add - id: 5831 - time: '2024-01-30T11:12:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24716 -- author: MIXnikita + id: 5924 + time: '2024-02-12T06:37:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25130 +- author: Ubaser changes: - - message: New sound effects for some shuttle guns + - message: Resprited the CE's jetpack. type: Tweak - id: 5832 - time: '2024-01-30T13:28:17.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24714 -- author: themias - changes: - - message: Stun batons now toggle off after being drained by an EMP. - type: Fix - id: 5833 - time: '2024-01-30T23:04:26.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24706 -- author: Tayrtahn - changes: - - message: Fixed weird rotation while strapped to a bed. - type: Fix - id: 5834 - time: '2024-01-30T23:23:31.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24746 -- author: themias + id: 5925 + time: '2024-02-12T20:44:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25150 +- author: EdenTheLiznerd changes: - - message: Some glasses and masks can be worn together to hide your identity. + - message: Deathnettles are no longer able to bypass armor and don't do as much + damage type: Tweak - id: 5835 - time: '2024-01-31T03:49:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24741 -- author: mirrorcult + id: 5926 + time: '2024-02-13T01:20:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25068 +- author: Vasilis changes: - - message: Throwing recoil reduced further + - message: You can now inspect peoples id's and health though glass if you are within + details range. type: Tweak - id: 5836 - time: '2024-01-31T05:00:41.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24759 -- author: mirrorcult - changes: - - message: Various aspects of the station will now be varied automatically at the - start of the round. Expect more trash, some broken/oddly-functioning lights, - and spills (and more stuff in the future). - type: Add - id: 5837 - time: '2024-01-31T05:52:35.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24397 + id: 5927 + time: '2024-02-13T06:41:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25163 - author: metalgearsloth changes: - - message: Remove handheld crew monitors in lieu of computers. - type: Remove - id: 5838 - time: '2024-01-31T11:23:49.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24761 -- author: Hmeister-real + - message: Fix decal error spam in console due to a missing overlay. + type: Fix + id: 5928 + time: '2024-02-13T07:10:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25170 +- author: jamessimo changes: - - message: You can now Sob and Chortle with emotes + - message: Can now "wink" with the text emote ;) or ;] + type: Add + - message: Can now "tearfully smile" with the text emote :') and similar variants + type: Add + - message: Added more ways to "cry" with the emote :'( and similar variants type: Tweak - id: 5839 - time: '2024-01-31T11:26:46.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24585 -- author: TheShuEd + id: 5929 + time: '2024-02-13T15:43:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25129 +- author: icekot8 changes: - - message: Anomalies can no longer spawn entities in walls or other objects. + - message: Medical berets added to MediDrobe + type: Add + id: 5930 + time: '2024-02-13T21:37:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25176 +- author: PoorMansDreams + changes: + - message: Alternate ammo now has the proper appearance when spent. type: Fix - id: 5840 - time: '2024-01-31T21:05:29.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24783 -- author: EdenTheLiznerd + id: 5931 + time: '2024-02-13T21:40:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25167 +- author: Agoichi changes: - - message: The Syndicate has changed around their stock prices and gotten rid of - some old dusty headsets + - message: All hoods have tag "Hides Hair" type: Tweak - id: 5841 - time: '2024-02-01T00:28:42.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24765 -- author: metalgearsloth - changes: - - message: Removed vehicles pending rework (the code is bad I was told to make this - more obvious). - type: Remove - id: 5842 - time: '2024-02-01T00:33:10.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24681 -- author: Jajsha + - message: Plague Doctor's hat and Witch hat (with red hair) have tag "Hides Hair" + type: Tweak + id: 5932 + time: '2024-02-13T21:43:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25142 +- author: Blackern5000 changes: - - message: Emagged borgs now recieve laws recontextualizing who's a crew member - instead of recieving a completely new lawset. + - message: Advanced topical meds now cost significantly less chemicals type: Tweak - id: 5843 - time: '2024-02-01T05:02:49.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24698 -- author: PJB3005 + id: 5933 + time: '2024-02-13T22:03:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24948 +- author: Tayrtahn changes: - - message: Health analyzers now show if somebody is starving. + - message: Drink bottles can now be opened and closed from the verbs menu, and some + have been given tamper-evident seals. type: Add - id: 5844 - time: '2024-02-01T06:28:17.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24789 -- author: PixelTK - changes: - - message: The arachnid plushie now has a new sprite. - type: Tweak - id: 5845 - time: '2024-02-01T06:36:43.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24747 -- author: lzk228 + id: 5934 + time: '2024-02-13T22:08:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24780 +- author: TheShuEd changes: - - message: Yellow oxygen tank was removed to standardise gas tank colourings. - type: Remove - id: 5846 - time: '2024-02-01T06:53:33.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24374 -- author: koteq + - message: Darkness is coming. A new shadow anomaly added. + type: Add + id: 5935 + time: '2024-02-13T22:12:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24629 +- author: jamessimo changes: - - message: Fixed indicator near SSD players + - message: Microwave UI enhancements + type: Tweak + - message: Microwaves now tell you how much time is left when cooking + type: Tweak + - message: Microwaves UI now uses prediction for user inputs. type: Fix - id: 5847 - time: '2024-02-01T08:30:07.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24589 + id: 5936 + time: '2024-02-13T22:16:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24547 - author: TheShuEd changes: - - message: Anomaly generator can now only be used by a scientist. + - message: Remote signallers are now limited to a 15-tile radius type: Tweak - id: 5848 - time: '2024-02-01T08:45:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24464 -- author: PJB3005 - changes: - - message: Removed starvation damage - type: Remove - id: 5849 - time: '2024-02-01T09:01:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24790 -- author: SlamBamActionman - changes: - - message: The Visitor job can now be given to ID cards via the ID Card Console/Agent - IDs. + - message: Added an advanced remote signaler, with a range of 30 tiles. type: Add - id: 5850 - time: '2024-02-01T10:13:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/23972 -- author: Dygon - changes: - - message: When slipping on lube you now keep sliding until you reach a tile without - lube. + - message: the anomaly synchronizer consumes much less power, and no longer causes + the anomaly pulses when powering down. type: Tweak - id: 5851 - time: '2024-02-01T10:39:10.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24801 -- author: FungiFellow + id: 5937 + time: '2024-02-13T22:19:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24461 +- author: joshepvodka changes: - - message: Added Binary Key in RD's Locker + - message: Fax machines can now print text files from your computer. type: Add - - message: 50% off Binary Key + id: 5938 + time: '2024-02-14T01:14:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23262 +- author: Plykiya + changes: + - message: Holosigns can now be placed at range. No more being eaten by forcefields! type: Tweak - id: 5852 - time: '2024-02-01T10:42:12.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24778 -- author: Dygon + id: 5939 + time: '2024-02-14T05:25:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25120 +- author: Zadeon changes: - - message: Paraplegic entities have their legs healed when zombified. + - message: Disablers now fit inside the suit storage slot. type: Fix - id: 5853 - time: '2024-02-01T11:06:05.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24169 -- author: PJB3005 + id: 5940 + time: '2024-02-14T23:07:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25238 +- author: Jezithyr changes: - - message: The AME can now single-handedly power the entire station until one of - our cool coders gets their shit together and fixes engineering. + - message: Death Acidifier implants not deleting items when activated type: Fix - id: 5854 - time: '2024-02-01T11:06:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24806 -- author: Varen + id: 5941 + time: '2024-02-15T01:37:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25251 +- author: PJB3005 changes: - - message: Cutting wires will now properly electrocute if enough power is available. + - message: Fixed disposals bins not automatically flushing after an item was inserted. type: Fix - id: 5855 - time: '2024-02-01T11:54:25.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24554 -- author: SlamBamActionman + id: 5942 + time: '2024-02-15T20:52:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25233 +- author: liltenhead changes: - - message: Paper is now edible, even for non-moths. + - message: Reduced energy shield's hp from 150 to 100. type: Tweak - id: 5856 - time: '2024-02-01T12:40:55.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24755 -- author: mac6na6na - changes: - - message: Tiered part crates will no longer appear on salvage expeditions. - type: Remove - id: 5857 - time: '2024-02-01T12:41:03.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24810 -- author: mirrorcult + id: 5943 + time: '2024-02-15T20:54:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25258 +- author: PJB3005 changes: - - message: Crayon/lathe/vendor/round end/gas analyzer windows now open closer to - the sides of the screen + - message: Nuke has some more blinkenlights now. type: Tweak - id: 5858 - time: '2024-02-01T12:49:49.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24767 -- author: Tayrtahn + id: 5944 + time: '2024-02-16T00:26:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25297 +- author: MACMAN2003 changes: - - message: Plushies, whoopie cushions, and a few other noisemaking objects can be - used as modular grenade payloads. - type: Add - id: 5859 - time: '2024-02-01T12:59:42.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24306 -- author: Repo + - message: Thindows no longer duplicate glass when broken. + type: Fix + id: 5945 + time: '2024-02-16T04:03:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25304 +- author: Golinth changes: - - message: AFK admins will trigger the SOS in aHelp relay. + - message: Mindshields are no longer separate and appear as a border around job + icons on the SecHUD type: Tweak - id: 5860 - time: '2024-02-01T13:03:50.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24482 -- author: Nopey - changes: - - message: Many belts and the plant bag no longer produce an erroneous "Can't insert" - and "This doesn't go in there!" messages while inserting certain items such - as Produce (plant bag) or Smoke Grenades (security belt). - type: Fix - - message: Ammunition can once again be stored in assault belts, as was the case - before June 2022. - type: Fix - id: 5861 - time: '2024-02-01T13:33:57.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24063 -- author: Blazeror + id: 5946 + time: '2024-02-16T15:58:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25303 +- author: Lukasz825700516 changes: - - message: Chemical analysis goggles can now inspect solutions inside spray bottles. + - message: Damaging stacked glass sheets now gives appropriate amount of glass shards type: Fix - id: 5862 - time: '2024-02-01T22:19:01.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24838 -- author: themias + id: 5947 + time: '2024-02-16T18:42:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25308 +- author: Plykiya changes: - - message: Fixed dylovene overdoses not applying brute damage - type: Fix - id: 5863 - time: '2024-02-01T22:21:04.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24826 + - message: The firefighting door remote now has access to atmos doors. + type: Tweak + id: 5948 + time: '2024-02-16T18:50:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25097 - author: themias changes: - - message: Added sound effect for Diona salutes - type: Add - id: 5864 - time: '2024-02-01T22:34:09.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24836 -- author: Dutch-VanDerLinde - changes: - - message: Detectives are now listed under civilian instead of security. + - message: t-ray scanners can now penetrate carpets and puddles type: Tweak - id: 5865 - time: '2024-02-01T22:49:54.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24739 -- author: VasilisThePikachu - changes: - - message: The fridge's explosion resistance has been nerfed significantly, It's - no longer able to survive nukes at point blank range of the nuke. - type: Tweak - id: 5866 - time: '2024-02-01T23:41:43.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24844 -- author: Dygon - changes: - - message: You can't slip through chain link fences anymore. - type: Fix - id: 5867 - time: '2024-02-02T04:24:20.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24850 -- author: Psychpsyo + id: 5949 + time: '2024-02-16T23:37:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25276 +- author: Krunk changes: - - message: You can now turn down the screen shake intensity in the accessibility - settings. + - message: Sound effects have been added for writing on paper. type: Add - id: 5868 - time: '2024-02-02T12:39:13.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24749 -- author: Anzarot121 - changes: - - message: Fixed a problem in the code due to which mobs, including hamsters, slimes, - spiders, xenos, could not pull things. - type: Fix - id: 5869 - time: '2024-02-03T01:25:11.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/22485 -- author: Tayrtahn + id: 5950 + time: '2024-02-16T23:48:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25257 +- author: PotentiallyTom changes: - - message: 'Added a new flavor of Donk Pockets: Stonk Pockets' + - message: Added new covers for the medical, security, and science guidebooks type: Add - id: 5870 - time: '2024-02-03T01:55:03.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24876 -- author: Hmeister - changes: - - message: The guidebook entry for cargo is now up to date, and some other minor - changes to the guidebook. - type: Tweak - id: 5871 - time: '2024-02-03T02:07:21.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24828 -- author: FairlySadPanda + id: 5951 + time: '2024-02-16T23:50:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25232 +- author: PJB3005 changes: - - message: The round restart audio, again... + - message: Fix some rounding issues with complex chemical reactions. type: Fix - id: 5872 - time: '2024-02-03T02:11:53.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24754 -- author: Adrian16199 + id: 5952 + time: '2024-02-16T23:54:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25199 +- author: data_redacted changes: - - message: Added scarfs to the uniform printer. + - message: New lobby art (of an Air Alarm blueprint). type: Add - id: 5873 - time: '2024-02-03T02:12:38.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24735 -- author: Jajsha + id: 5953 + time: '2024-02-17T02:52:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25179 +- author: Lank changes: - - message: Emagged Cyborgs are no longer affected by Ion Storm events. - type: Fix - - message: Improved wording of cyborg laws. + - message: Diona nymphs, small cat-like creatures, several of which make up a Diona. + type: Add + - message: Diona are now able to split into three nymphs on death, and will control + one of them. The controlled nymph is able to reform into a new diona after some + time. + type: Add + - message: Diona now combust into flames upon being hit with significant heat damage. type: Tweak - id: 5874 - time: '2024-02-03T02:29:41.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24870 -- author: metalgearsloth + id: 5954 + time: '2024-02-17T02:54:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24630 +- author: PolterTzi changes: - - message: Moving entities that are pulled now throws them instead of moving them - manually. + - message: Seeds from sampled plants now inherit the sampled plant's health to discourage + excessive sampling. type: Tweak - id: 5875 - time: '2024-02-03T03:36:09.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/20906 -- author: lzk228 - changes: - - message: Soapy water removed. - type: Remove - id: 5876 - time: '2024-02-03T04:23:34.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24301 -- author: Krunk - changes: - - message: Characters can properly select 'None' as a preference for their spawn - priority. - type: Fix - id: 5877 - time: '2024-02-03T08:06:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24897 -- author: Krunk - changes: - - message: Pointing arrows now begin at the player and smoothly animate to their - target. - type: Add - id: 5878 - time: '2024-02-03T08:09:20.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24864 + - message: Plants need to grow a bit before being sampled. + type: Tweak + id: 5955 + time: '2024-02-17T05:02:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25326 - author: Dygon changes: - - message: Single tile sized puddles of space lube won't let you slide extremely - far anymore. - type: Fix - id: 5879 - time: '2024-02-03T08:10:51.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24846 -- author: shampunj - changes: - - message: Fixed incorrect path to the uranium spear image in the construction menu - type: Fix - id: 5880 - time: '2024-02-03T08:11:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24895 -- author: nikthechampiongr - changes: - - message: End of round messages no longer loop until the heat death of the universe. + - message: Diona nymphs aren't deleted immediately after spawning anymore. type: Fix - id: 5881 - time: '2024-02-03T16:43:50.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24920 -- author: EmoGarbage404 + id: 5956 + time: '2024-02-17T16:38:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25344 +- author: Geekyhobo changes: - - message: Changed the colors used for chat names. - type: Tweak - id: 5882 - time: '2024-02-03T17:33:58.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24922 -- author: deltanedas + - message: Massban Flag has been added to admin ranks + type: Add + id: 5957 + time: '2024-02-17T20:32:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25327 +- author: Moomoobeef changes: - - message: Dissolved the biochem technology discipline into others and roundstart - availability. + - message: Detectives are now supplied with a box of evidence markers, useful for + marking evidence at a crime scene. type: Add - id: 5883 - time: '2024-02-03T18:13:30.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24871 -- author: themias + id: 5958 + time: '2024-02-17T20:49:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25255 +- author: Ubaser changes: - - message: EMPs temporarily disable suit sensors - type: Tweak - id: 5884 - time: '2024-02-04T00:50:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24869 -- author: themias + - message: New "tailed" hair. + type: Add + id: 5959 + time: '2024-02-17T20:49:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25216 +- author: Ubaser changes: - - message: Added face bandanas + - message: A new chest scar marking is now available to humans and dwarves. type: Add - - message: Bandanas can be switched between head and face type with an alt verb - (Fold) - type: Tweak - id: 5885 - time: '2024-02-04T00:52:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24597 -- author: metalgearsloth + id: 5960 + time: '2024-02-17T20:50:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25215 +- author: ArchPigeon changes: - - message: Moving to open lockers is now predicted. + - message: Tails now stop wagging on crit type: Fix - id: 5886 - time: '2024-02-04T02:23:16.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24937 -- author: Tayrtahn + id: 5961 + time: '2024-02-17T21:33:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25323 +- author: Killerqu00 changes: - - message: Added opened/closed visuals and fill levels for a variety of drinks. - type: Add - id: 5887 - time: '2024-02-04T20:13:48.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24600 -- author: deltanedas + - message: EVA and paramedic suits now play sound when putting helmet on. + type: Fix + id: 5962 + time: '2024-02-17T22:34:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25349 +- author: musicmanvr changes: - - message: Grilles are no longer incredibly strong. - type: Tweak - id: 5888 - time: '2024-02-04T20:48:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24881 -- author: Scribbles0 + - message: Toned down the newton cradle and added it to the bureaucracy crate for + bored accountants. + type: Fix + id: 5963 + time: '2024-02-17T23:55:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25357 +- author: genderGeometries changes: - - message: Holoparasites can now autoattack at their max attack rate when holding - down their attack button. + - message: Allicin, nutriment, and vitamin can now be centrifuged. Protein and fat + can now be electrolyzed. type: Add - id: 5889 - time: '2024-02-04T23:01:49.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24944 -- author: EdenTheLiznerd - changes: - - message: Sectech no longer says "Let's crack communist skulls!" It now says "Let's - crack syndicate skulls!" - type: Tweak - id: 5890 - time: '2024-02-05T12:24:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24965 -- author: Varen - changes: - - message: Rebalanced electrocution damage to ramp up slower with power levels. - type: Tweak - id: 5891 - time: '2024-02-05T18:47:52.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24829 -- author: ficcialfaint and deltanedas + id: 5964 + time: '2024-02-19T06:05:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25366 +- author: azurerosegarden changes: - - message: Criminal records and the console that manages them have been added to - the game. They also have a guidebook entry. - type: Add - id: 5892 - time: '2024-02-05T23:03:04.754935+00:00' - url: null -- author: themias + - message: Drinks in the Solar's Best Hot Drinks menu now show their contents + type: Fix + id: 5965 + time: '2024-02-19T15:40:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25301 +- author: Lank changes: - - message: Outlaw Glasses fully hide your identity again + - message: Nymphs can now open doors and chirp. type: Tweak - id: 5893 - time: '2024-02-05T23:23:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24971 -- author: Emisse + id: 5966 + time: '2024-02-19T17:11:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25363 +- author: PotentiallyTom changes: - - message: Nonstandard pens now embed again. (explosive pen good again) + - message: Gave guidebooks to the 4 learner roles type: Tweak - id: 5894 - time: '2024-02-05T23:30:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24849 -- author: FungiFellow + id: 5967 + time: '2024-02-19T18:54:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25388 +- author: jamessimo changes: - - message: Altered content of several Borg Modules for QoL + - message: vending machine UI improved type: Tweak - - message: Removed Gas Analyzer Module - type: Remove - id: 5895 - time: '2024-02-05T23:46:39.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24702 -- author: Rainfey + id: 5968 + time: '2024-02-19T22:18:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25377 +- author: marbow changes: - - message: Health Analysers now continuously update their UI after scanning a patient - type: Tweak - id: 5896 - time: '2024-02-06T13:20:10.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/22449 -- author: ada-please + - message: Moths can now eat plushies and with a distinctive sound! + type: Add + id: 5969 + time: '2024-02-19T22:35:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25382 +- author: ArchPigeon changes: - - message: A Surveillance Camera Monitor Board has been added to the Syndicate Observation - Kit. + - message: Liquid Tritium can now be used as a chem in flamethrowers type: Add - id: 5897 - time: '2024-02-06T16:25:07.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24979 -- author: snebl + id: 5970 + time: '2024-02-19T22:37:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25281 +- author: ElectroJr changes: - - message: Fixed the glass version of cargo airlock looking like an engineering - door when opened. + - message: Fix actions sometimes disappearing. type: Fix - id: 5898 - time: '2024-02-06T19:38:39.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25003 -- author: Mangohydra - changes: - - message: New cargo shuttle for fland - type: Tweak - id: 5899 - time: '2024-02-07T08:49:06.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25016 -- author: Ilya246 - changes: - - message: Atmos devices can now be built behind directional windows and on lattice. - type: Tweak - id: 5900 - time: '2024-02-08T23:07:42.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25057 -- author: Ubaser - changes: - - message: T-Ray scanner sprite is tweaked. - type: Tweak - id: 5901 - time: '2024-02-08T23:09:00.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25047 -- author: nikthechampiongr + id: 5971 + time: '2024-02-20T02:08:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25395 +- author: PJB3005 changes: - - message: Brig timers display their label properly again. + - message: Fixed timezone issues with the admin notes window. type: Fix - id: 5902 - time: '2024-02-08T23:12:05.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25033 -- author: vero5123 + id: 5972 + time: '2024-02-20T09:13:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25280 +- author: PJB3005 changes: - - message: fixes mop buckets being indestructible. + - message: Fixed selection behavior for player lists such as the ban panel or ahelp + window. type: Fix - id: 5903 - time: '2024-02-08T23:15:12.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25001 -- author: Adrian16199 - changes: - - message: Added a straw hat that can be crafted with wheat. - type: Add - id: 5904 - time: '2024-02-08T23:17:01.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24997 -- author: Sk1tch + id: 5973 + time: '2024-02-20T09:13:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25248 +- author: Tonydatguy changes: - - message: Guidebook entries are now alphabetically sorted + - message: Ore Crabs will now take structural damage. type: Tweak - id: 5905 - time: '2024-02-08T23:23:35.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24963 -- author: FairlySadPanda + id: 5974 + time: '2024-02-20T10:43:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25390 +- author: Golinth changes: - - message: Swapped out the Skelly Vs The Rev art with a new, higher-res version. + - message: The mindshield outline now flashes! type: Tweak - id: 5906 - time: '2024-02-10T02:06:02.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25088 -- author: Potato1234_x - changes: - - message: Added laughin' peas, a new mutation for peas that can be ground into - Laughter, a chem that forces people to laugh. - type: Add - id: 5907 - time: '2024-02-10T08:21:44.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/25089 -- author: themias + id: 5975 + time: '2024-02-20T22:26:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25409 +- author: landwhale changes: - - message: Soft caps can be flipped backwards with an alt-verb (Flip) + - message: Resprited Nettles & Death Nettles. type: Tweak - id: 5908 - time: '2024-02-10T08:44:19.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24961 -- author: Blackern5000 + id: 5976 + time: '2024-02-20T23:58:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25421 +- author: takemysoult changes: - - message: Shotgun beanbag rounds now deal 40 stamina damage and stun in 3 hits. + - message: Explosive Technology changed to tier 2 arsenal and the cost has increased + to 10 000 type: Tweak - id: 5909 - time: '2024-02-10T08:49:24.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24653 -- author: metalgearsloth - changes: - - message: Fix screenspace popups e.g. inventory / access popups drawing below the - UI. - type: Fix - id: 5910 - time: '2024-02-10T08:51:11.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24987 -- author: themias + id: 5977 + time: '2024-02-21T00:56:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25397 +- author: Callmore changes: - - message: The ID card console now correctly updates the ID's department when you - update its job - type: Fix - - message: The Agent ID will update its department depending on the selected icon + - message: Shoving other people is now more consistent. type: Fix - id: 5911 - time: '2024-02-10T09:17:26.0000000+00:00' - url: https://api.github.com/repos/space-wizards/space-station-14/pulls/24975 -- author: Nimfar11 + id: 5978 + time: '2024-02-21T04:01:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25353 +- author: Ubaser changes: - - message: Adds a glass showcase for an antique laser pistol. + - message: A new UI theme, "Ashen", is now available to select in the options menu. type: Add - id: 5912 - time: '2024-02-10T23:36:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25104 -- author: Jezithyr - changes: - - message: Changed gibbing to now rotate giblets randomly when they are spawned. - type: Tweak - - message: Giblets are now thrown around the body instead of spawning in a rough - pile. - type: Tweak - id: 5913 - time: '2024-02-10T23:37:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24989 -- author: Jajsha + id: 5979 + time: '2024-02-21T05:26:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25408 +- author: Holinka4ever changes: - - message: Cyborgs can no longer Emag themselves. - type: Fix - id: 5914 - time: '2024-02-11T06:23:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24748 -- author: Ubaser + - message: Sunglasses were removed from ClothesMate + type: Remove + id: 5980 + time: '2024-02-21T06:11:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25221 +- author: Errant changes: - - message: Grinding ectoplasm now gives Necrosol. + - message: Rotten food is now less lethal to eat, and has a high chance to induce + vomiting. type: Tweak - id: 5915 - time: '2024-02-11T06:24:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25053 -- author: Ubaser + id: 5981 + time: '2024-02-21T06:12:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25418 +- author: EdenTheLiznerd changes: - - message: Food Service research is now roundstart. + - message: Deathnettles no longer penetrate hardsuit armor type: Tweak - id: 5916 - time: '2024-02-11T06:37:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25046 -- author: SlamBamActionman + id: 5982 + time: '2024-02-21T06:16:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25286 +- author: Tayrtahn changes: - - message: Added setting to toggle chat name color in Options. + - message: Added fill level visuals to all the drinks. Cheers! type: Add - id: 5917 - time: '2024-02-11T06:38:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24625 -- author: Emisse + id: 5983 + time: '2024-02-21T06:17:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25319 +- author: Potato1234_x changes: - - message: Ambuzol now requires zombie blood + - message: Happy Honk boxes can now hold normal sized items type: Tweak - id: 5918 - time: '2024-02-11T20:47:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25119 -- author: Plykiya - changes: - - message: Door remotes no longer have their 5G signals absorbed by mobs, machines, - or Ian's cute butt. - type: Fix - id: 5919 - time: '2024-02-12T02:34:13.532550+00:00' - url: null -- author: FungiFellow + id: 5984 + time: '2024-02-21T06:21:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25245 +- author: Hanzdegloker changes: - - message: Lowered Reoccurence Delay for Ion Storm + - message: Standardized amount of huds in vendors and added new diagnostics eyeapatch + hud type: Tweak - id: 5920 - time: '2024-02-12T02:35:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25135 -- author: PoorMansDreams + id: 5985 + time: '2024-02-21T06:22:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25208 +- author: DebugOk changes: - - message: Ammo is now tipped! + - message: Drones are now completely removed instead of just being disabled + type: Remove + id: 5986 + time: '2024-02-21T06:23:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25372 +- author: Hanzdegloker + changes: + - message: Dept. Heads are now guaranteed to have their respective winter coats + in their dressers type: Tweak - id: 5921 - time: '2024-02-12T03:02:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25103 -- author: PoorMansDreams + - message: Standardized the contents of Dept. Heads dressers and lockers + type: Tweak + id: 5987 + time: '2024-02-21T06:26:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25206 +- author: deltanedas changes: - - message: Buyable Janitorial Trolley! + - message: Added Conducting Gloves to the uplink, they make shocks much worse rather + than stop them. type: Add - id: 5922 - time: '2024-02-12T06:35:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25139 -- author: Plykiya + id: 5988 + time: '2024-02-21T06:34:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25227 +- author: veliebm changes: - - message: Stun batons and stun prods now display their hits remaining. - type: Tweak - id: 5923 - time: '2024-02-12T06:36:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25141 -- author: Ilya246 + - message: The guidebook now contains a page for the Radioisotope Thermoelectric + Generator (RTG). + type: Add + id: 5989 + time: '2024-02-21T06:38:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25040 +- author: PoorMansDreams changes: - - message: Autolathes may now make empty air tanks. + - message: New pirate start sound! type: Add - id: 5924 - time: '2024-02-12T06:37:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25130 -- author: Ubaser + id: 5990 + time: '2024-02-21T06:39:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25153 +- author: takemysoult changes: - - message: Resprited the CE's jetpack. + - message: Changed uplink catalog - add syndicate hud to nukeops uplink type: Tweak - id: 5925 - time: '2024-02-12T20:44:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25150 -- author: EdenTheLiznerd + id: 5991 + time: '2024-02-21T06:41:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25087 +- author: Sphiral changes: - - message: Deathnettles are no longer able to bypass armor and don't do as much - damage + - message: Took the AdminPDA from the backpack and gave it it's own slot on aghosts! + Also aghosts can smoke/wear masks now! type: Tweak - id: 5926 - time: '2024-02-13T01:20:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25068 -- author: Vasilis + id: 5992 + time: '2024-02-21T06:41:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25402 +- author: EdenTheLiznerd changes: - - message: You can now inspect peoples id's and health though glass if you are within - details range. + - message: Nettles are now weaker than their deathnettle counterparts type: Tweak - id: 5927 - time: '2024-02-13T06:41:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25163 -- author: metalgearsloth - changes: - - message: Fix decal error spam in console due to a missing overlay. - type: Fix - id: 5928 - time: '2024-02-13T07:10:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25170 -- author: jamessimo + id: 5993 + time: '2024-02-21T06:42:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25177 +- author: potato1234x changes: - - message: Can now "wink" with the text emote ;) or ;] + - message: Added spaceman's trumpets which come from mutated lilies and can be ground + up into Polypyrylium Oligomers which are is just slightly better bic. type: Add - - message: Can now "tearfully smile" with the text emote :') and similar variants + - message: Added lilies which are mutated from poppies and are used to create spaceman's + trumpets. type: Add - - message: Added more ways to "cry" with the emote :'( and similar variants + id: 5994 + time: '2024-02-21T06:49:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25090 +- author: FungiFellow + changes: + - message: Death Acidifer Price 2->4 type: Tweak - id: 5929 - time: '2024-02-13T15:43:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25129 -- author: icekot8 + - message: Removed Acidifier from Syndie Uplink + type: Remove + id: 5995 + time: '2024-02-21T06:51:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25039 +- author: Aquif changes: - - message: Medical berets added to MediDrobe + - message: Admins can now disable the bwoink sound if they don't want to scare players. type: Add - id: 5930 - time: '2024-02-13T21:37:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25176 -- author: PoorMansDreams + id: 5996 + time: '2024-02-21T06:52:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25008 +- author: Fildrance changes: - - message: Alternate ammo now has the proper appearance when spent. + - message: now cryo pod health analyzer updates atomatically! type: Fix - id: 5931 - time: '2024-02-13T21:40:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25167 -- author: Agoichi + id: 5997 + time: '2024-02-21T14:47:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25109 +- author: landwhale changes: - - message: All hoods have tag "Hides Hair" - type: Tweak - - message: Plague Doctor's hat and Witch hat (with red hair) have tag "Hides Hair" + - message: Drink jugs can no longer be used by chemistry in place of a beaker. + type: Fix + - message: Updated names of several drink jugs to differentiate them from chem-specific + variants. type: Tweak - id: 5932 - time: '2024-02-13T21:43:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25142 -- author: Blackern5000 + id: 5998 + time: '2024-02-21T23:26:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25450 +- author: Killerqu00 changes: - - message: Advanced topical meds now cost significantly less chemicals - type: Tweak - id: 5933 - time: '2024-02-13T22:03:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24948 -- author: Tayrtahn + - message: EVA helmets are now quick-equippable again + type: Fix + id: 5999 + time: '2024-02-21T23:41:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25448 +- author: genderGeometries changes: - - message: Drink bottles can now be opened and closed from the verbs menu, and some - have been given tamper-evident seals. - type: Add - id: 5934 - time: '2024-02-13T22:08:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24780 -- author: TheShuEd + - message: Crops are now harvested with decimal amounts of nutriment, vitamin, etc. + type: Fix + id: 6000 + time: '2024-02-22T00:19:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25453 +- author: Whisper changes: - - message: Darkness is coming. A new shadow anomaly added. + - message: Dragon ichor when eating restores the dragon's blood. type: Add - id: 5935 - time: '2024-02-13T22:12:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24629 -- author: jamessimo + - message: Increased Xenomorph and Dragon blood level to 650u. + type: Tweak + id: 6001 + time: '2024-02-22T02:54:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25442 +- author: Beck Thompson changes: - - message: Microwave UI enhancements + - message: Radio jammer now uses 3 times less power. type: Tweak - - message: Microwaves now tell you how much time is left when cooking - type: Tweak - - message: Microwaves UI now uses prediction for user inputs. - type: Fix - id: 5936 - time: '2024-02-13T22:16:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24547 -- author: TheShuEd + id: 6002 + time: '2024-02-22T07:32:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25432 +- author: metalgearsloth changes: - - message: Remote signallers are now limited to a 15-tile radius - type: Tweak - - message: Added an advanced remote signaler, with a range of 30 tiles. + - message: Added handheld crew monitor back just for CMO. type: Add - - message: the anomaly synchronizer consumes much less power, and no longer causes - the anomaly pulses when powering down. - type: Tweak - id: 5937 - time: '2024-02-13T22:19:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24461 -- author: joshepvodka + id: 6003 + time: '2024-02-22T11:00:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25439 +- author: DrMelon changes: - - message: Fax machines can now print text files from your computer. - type: Add - id: 5938 - time: '2024-02-14T01:14:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23262 -- author: Plykiya + - message: Fixed incorrect job-specific Uplink items being given on occasion. + type: Fix + id: 6004 + time: '2024-02-22T11:03:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23179 +- author: liltenhead changes: - - message: Holosigns can now be placed at range. No more being eaten by forcefields! + - message: Changed the syndicate assault borg to have a red flashlight. type: Tweak - id: 5939 - time: '2024-02-14T05:25:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25120 -- author: Zadeon + id: 6005 + time: '2024-02-22T11:15:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25465 +- author: lzk228 changes: - - message: Disablers now fit inside the suit storage slot. + - message: Fix some items becomes bigger after turning in trash. type: Fix - id: 5940 - time: '2024-02-14T23:07:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25238 -- author: Jezithyr + id: 6006 + time: '2024-02-22T11:28:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25461 +- author: ps3moira changes: - - message: Death Acidifier implants not deleting items when activated - type: Fix - id: 5941 - time: '2024-02-15T01:37:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25251 -- author: PJB3005 + - message: Added Large Wooden floors + type: Add + id: 6007 + time: '2024-02-22T11:59:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25462 +- author: Whisper changes: - - message: Fixed disposals bins not automatically flushing after an item was inserted. + - message: Fixed reagent slime ghost role description. type: Fix - id: 5942 - time: '2024-02-15T20:52:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25233 -- author: liltenhead + id: 6008 + time: '2024-02-22T12:18:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25466 +- author: lzk228 changes: - - message: Reduced energy shield's hp from 150 to 100. + - message: Galoshes are added to the Janidrobe. type: Tweak - id: 5943 - time: '2024-02-15T20:54:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25258 + - message: Galoshes now make you slower. + type: Tweak + id: 6009 + time: '2024-02-23T01:05:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25484 - author: PJB3005 changes: - - message: Nuke has some more blinkenlights now. + - message: sorting of departments and jobs has been made consistent in various menus. type: Tweak - id: 5944 - time: '2024-02-16T00:26:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25297 -- author: MACMAN2003 + id: 6010 + time: '2024-02-23T04:04:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25486 +- author: liltenhead changes: - - message: Thindows no longer duplicate glass when broken. + - message: Changed emergency welder's fuel count from 25 -> 50 + type: Tweak + id: 6011 + time: '2024-02-23T06:53:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25483 +- author: Vasilis + changes: + - message: Fixed a bug where the centcom official/any job that is not supposed to + have a preference option appeared anyway. type: Fix - id: 5945 - time: '2024-02-16T04:03:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25304 -- author: Golinth + id: 6012 + time: '2024-02-23T13:19:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25496 +- author: Erisfiregamer1 changes: - - message: Mindshields are no longer separate and appear as a border around job - icons on the SecHUD - type: Tweak - id: 5946 - time: '2024-02-16T15:58:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25303 -- author: Lukasz825700516 + - message: Fixed a typo when forcefeeding someone. + type: Fix + id: 6013 + time: '2024-02-24T01:45:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25512 +- author: Beck Thompson changes: - - message: Damaging stacked glass sheets now gives appropriate amount of glass shards + - message: The Fire Extinguishers safety can now only be toggled when in range. type: Fix - id: 5947 - time: '2024-02-16T18:42:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25308 -- author: Plykiya + id: 6014 + time: '2024-02-25T02:29:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25534 +- author: ArchPigeon changes: - - message: The firefighting door remote now has access to atmos doors. - type: Tweak - id: 5948 - time: '2024-02-16T18:50:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25097 -- author: themias + - message: Removed the ability for command or any antag-safe role to be initial + infected in zombie mode + type: Remove + id: 6015 + time: '2024-02-25T02:40:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25529 +- author: PolterTzi changes: - - message: t-ray scanners can now penetrate carpets and puddles - type: Tweak - id: 5949 - time: '2024-02-16T23:37:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25276 + - message: Cargo ordering multiple crates in one order should work now. + type: Fix + id: 6016 + time: '2024-02-25T07:36:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25518 +- author: metalgearsloth + changes: + - message: Remove executions pending code rewrite. + type: Remove + id: 6017 + time: '2024-02-25T11:36:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25555 - author: Krunk changes: - - message: Sound effects have been added for writing on paper. + - message: Candy bowls function properly again! + type: Fix + id: 6018 + time: '2024-02-25T13:08:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25514 +- author: Whisper + changes: + - message: Added juice that makes you Weh! Juice a lizard plushie today! type: Add - id: 5950 - time: '2024-02-16T23:48:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25257 -- author: PotentiallyTom + id: 6019 + time: '2024-02-25T13:54:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25132 +- author: wafehling changes: - - message: Added new covers for the medical, security, and science guidebooks + - message: Secret mode has become more secret, with the 4th option Survival added + to the rotation. + type: Tweak + id: 6020 + time: '2024-02-25T21:15:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25568 +- author: Tayrtahn + changes: + - message: Added a live preview display to reagent dispensers. type: Add - id: 5951 - time: '2024-02-16T23:50:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25232 -- author: PJB3005 + id: 6021 + time: '2024-02-25T23:03:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25391 +- author: Krunk changes: - - message: Fix some rounding issues with complex chemical reactions. + - message: Fixed grid inventory occasionally messing with your item rotation. type: Fix - id: 5952 - time: '2024-02-16T23:54:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25199 -- author: data_redacted + id: 6022 + time: '2024-02-25T23:24:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25510 +- author: Ubaser changes: - - message: New lobby art (of an Air Alarm blueprint). - type: Add - id: 5953 - time: '2024-02-17T02:52:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25179 -- author: Lank + - message: Satchels no longer have darkened space representing a gap, and is instead + transparent. + type: Tweak + id: 6023 + time: '2024-02-25T23:24:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25147 +- author: TheShuEd changes: - - message: Diona nymphs, small cat-like creatures, several of which make up a Diona. - type: Add - - message: Diona are now able to split into three nymphs on death, and will control - one of them. The controlled nymph is able to reform into a new diona after some - time. - type: Add - - message: Diona now combust into flames upon being hit with significant heat damage. + - message: Huge flora anomaly nerf type: Tweak - id: 5954 - time: '2024-02-17T02:54:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24630 -- author: PolterTzi + id: 6024 + time: '2024-02-25T23:41:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25499 +- author: OctoRocket changes: - - message: Seeds from sampled plants now inherit the sampled plant's health to discourage - excessive sampling. + - message: Removed the hands requirement to read paper. type: Tweak - - message: Plants need to grow a bit before being sampled. - type: Tweak - id: 5955 - time: '2024-02-17T05:02:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25326 -- author: Dygon - changes: - - message: Diona nymphs aren't deleted immediately after spawning anymore. - type: Fix - id: 5956 - time: '2024-02-17T16:38:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25344 -- author: Geekyhobo - changes: - - message: Massban Flag has been added to admin ranks - type: Add - id: 5957 - time: '2024-02-17T20:32:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25327 -- author: Moomoobeef - changes: - - message: Detectives are now supplied with a box of evidence markers, useful for - marking evidence at a crime scene. - type: Add - id: 5958 - time: '2024-02-17T20:49:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25255 -- author: Ubaser - changes: - - message: New "tailed" hair. - type: Add - id: 5959 - time: '2024-02-17T20:49:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25216 -- author: Ubaser - changes: - - message: A new chest scar marking is now available to humans and dwarves. - type: Add - id: 5960 - time: '2024-02-17T20:50:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25215 -- author: ArchPigeon - changes: - - message: Tails now stop wagging on crit - type: Fix - id: 5961 - time: '2024-02-17T21:33:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25323 -- author: Killerqu00 - changes: - - message: EVA and paramedic suits now play sound when putting helmet on. - type: Fix - id: 5962 - time: '2024-02-17T22:34:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25349 -- author: musicmanvr - changes: - - message: Toned down the newton cradle and added it to the bureaucracy crate for - bored accountants. - type: Fix - id: 5963 - time: '2024-02-17T23:55:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25357 -- author: genderGeometries - changes: - - message: Allicin, nutriment, and vitamin can now be centrifuged. Protein and fat - can now be electrolyzed. - type: Add - id: 5964 - time: '2024-02-19T06:05:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25366 -- author: azurerosegarden - changes: - - message: Drinks in the Solar's Best Hot Drinks menu now show their contents - type: Fix - id: 5965 - time: '2024-02-19T15:40:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25301 -- author: Lank - changes: - - message: Nymphs can now open doors and chirp. - type: Tweak - id: 5966 - time: '2024-02-19T17:11:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25363 -- author: PotentiallyTom - changes: - - message: Gave guidebooks to the 4 learner roles - type: Tweak - id: 5967 - time: '2024-02-19T18:54:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25388 -- author: jamessimo - changes: - - message: vending machine UI improved - type: Tweak - id: 5968 - time: '2024-02-19T22:18:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25377 -- author: marbow - changes: - - message: Moths can now eat plushies and with a distinctive sound! - type: Add - id: 5969 - time: '2024-02-19T22:35:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25382 -- author: ArchPigeon - changes: - - message: Liquid Tritium can now be used as a chem in flamethrowers - type: Add - id: 5970 - time: '2024-02-19T22:37:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25281 -- author: ElectroJr - changes: - - message: Fix actions sometimes disappearing. - type: Fix - id: 5971 - time: '2024-02-20T02:08:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25395 -- author: PJB3005 - changes: - - message: Fixed timezone issues with the admin notes window. - type: Fix - id: 5972 - time: '2024-02-20T09:13:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25280 -- author: PJB3005 - changes: - - message: Fixed selection behavior for player lists such as the ban panel or ahelp - window. - type: Fix - id: 5973 - time: '2024-02-20T09:13:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25248 -- author: Tonydatguy - changes: - - message: Ore Crabs will now take structural damage. - type: Tweak - id: 5974 - time: '2024-02-20T10:43:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25390 -- author: Golinth - changes: - - message: The mindshield outline now flashes! - type: Tweak - id: 5975 - time: '2024-02-20T22:26:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25409 -- author: landwhale - changes: - - message: Resprited Nettles & Death Nettles. - type: Tweak - id: 5976 - time: '2024-02-20T23:58:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25421 -- author: takemysoult - changes: - - message: Explosive Technology changed to tier 2 arsenal and the cost has increased - to 10 000 - type: Tweak - id: 5977 - time: '2024-02-21T00:56:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25397 -- author: Callmore - changes: - - message: Shoving other people is now more consistent. - type: Fix - id: 5978 - time: '2024-02-21T04:01:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25353 -- author: Ubaser - changes: - - message: A new UI theme, "Ashen", is now available to select in the options menu. - type: Add - id: 5979 - time: '2024-02-21T05:26:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25408 -- author: Holinka4ever - changes: - - message: Sunglasses were removed from ClothesMate - type: Remove - id: 5980 - time: '2024-02-21T06:11:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25221 -- author: Errant - changes: - - message: Rotten food is now less lethal to eat, and has a high chance to induce - vomiting. - type: Tweak - id: 5981 - time: '2024-02-21T06:12:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25418 -- author: EdenTheLiznerd - changes: - - message: Deathnettles no longer penetrate hardsuit armor - type: Tweak - id: 5982 - time: '2024-02-21T06:16:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25286 -- author: Tayrtahn - changes: - - message: Added fill level visuals to all the drinks. Cheers! - type: Add - id: 5983 - time: '2024-02-21T06:17:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25319 -- author: Potato1234_x - changes: - - message: Happy Honk boxes can now hold normal sized items - type: Tweak - id: 5984 - time: '2024-02-21T06:21:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25245 -- author: Hanzdegloker - changes: - - message: Standardized amount of huds in vendors and added new diagnostics eyeapatch - hud - type: Tweak - id: 5985 - time: '2024-02-21T06:22:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25208 -- author: DebugOk - changes: - - message: Drones are now completely removed instead of just being disabled - type: Remove - id: 5986 - time: '2024-02-21T06:23:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25372 -- author: Hanzdegloker - changes: - - message: Dept. Heads are now guaranteed to have their respective winter coats - in their dressers - type: Tweak - - message: Standardized the contents of Dept. Heads dressers and lockers - type: Tweak - id: 5987 - time: '2024-02-21T06:26:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25206 -- author: deltanedas - changes: - - message: Added Conducting Gloves to the uplink, they make shocks much worse rather - than stop them. - type: Add - id: 5988 - time: '2024-02-21T06:34:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25227 -- author: veliebm - changes: - - message: The guidebook now contains a page for the Radioisotope Thermoelectric - Generator (RTG). - type: Add - id: 5989 - time: '2024-02-21T06:38:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25040 -- author: PoorMansDreams - changes: - - message: New pirate start sound! - type: Add - id: 5990 - time: '2024-02-21T06:39:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25153 -- author: takemysoult - changes: - - message: Changed uplink catalog - add syndicate hud to nukeops uplink - type: Tweak - id: 5991 - time: '2024-02-21T06:41:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25087 -- author: Sphiral - changes: - - message: Took the AdminPDA from the backpack and gave it it's own slot on aghosts! - Also aghosts can smoke/wear masks now! - type: Tweak - id: 5992 - time: '2024-02-21T06:41:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25402 -- author: EdenTheLiznerd - changes: - - message: Nettles are now weaker than their deathnettle counterparts - type: Tweak - id: 5993 - time: '2024-02-21T06:42:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25177 -- author: potato1234x - changes: - - message: Added spaceman's trumpets which come from mutated lilies and can be ground - up into Polypyrylium Oligomers which are is just slightly better bic. - type: Add - - message: Added lilies which are mutated from poppies and are used to create spaceman's - trumpets. - type: Add - id: 5994 - time: '2024-02-21T06:49:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25090 -- author: FungiFellow - changes: - - message: Death Acidifer Price 2->4 - type: Tweak - - message: Removed Acidifier from Syndie Uplink - type: Remove - id: 5995 - time: '2024-02-21T06:51:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25039 -- author: Aquif - changes: - - message: Admins can now disable the bwoink sound if they don't want to scare players. - type: Add - id: 5996 - time: '2024-02-21T06:52:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25008 -- author: Fildrance - changes: - - message: now cryo pod health analyzer updates atomatically! - type: Fix - id: 5997 - time: '2024-02-21T14:47:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25109 -- author: landwhale - changes: - - message: Drink jugs can no longer be used by chemistry in place of a beaker. - type: Fix - - message: Updated names of several drink jugs to differentiate them from chem-specific - variants. - type: Tweak - id: 5998 - time: '2024-02-21T23:26:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25450 -- author: Killerqu00 - changes: - - message: EVA helmets are now quick-equippable again - type: Fix - id: 5999 - time: '2024-02-21T23:41:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25448 -- author: genderGeometries - changes: - - message: Crops are now harvested with decimal amounts of nutriment, vitamin, etc. - type: Fix - id: 6000 - time: '2024-02-22T00:19:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25453 -- author: Whisper - changes: - - message: Dragon ichor when eating restores the dragon's blood. - type: Add - - message: Increased Xenomorph and Dragon blood level to 650u. - type: Tweak - id: 6001 - time: '2024-02-22T02:54:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25442 -- author: Beck Thompson - changes: - - message: Radio jammer now uses 3 times less power. - type: Tweak - id: 6002 - time: '2024-02-22T07:32:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25432 -- author: metalgearsloth - changes: - - message: Added handheld crew monitor back just for CMO. - type: Add - id: 6003 - time: '2024-02-22T11:00:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25439 -- author: DrMelon - changes: - - message: Fixed incorrect job-specific Uplink items being given on occasion. - type: Fix - id: 6004 - time: '2024-02-22T11:03:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23179 -- author: liltenhead - changes: - - message: Changed the syndicate assault borg to have a red flashlight. - type: Tweak - id: 6005 - time: '2024-02-22T11:15:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25465 -- author: lzk228 - changes: - - message: Fix some items becomes bigger after turning in trash. - type: Fix - id: 6006 - time: '2024-02-22T11:28:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25461 -- author: ps3moira - changes: - - message: Added Large Wooden floors - type: Add - id: 6007 - time: '2024-02-22T11:59:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25462 -- author: Whisper - changes: - - message: Fixed reagent slime ghost role description. - type: Fix - id: 6008 - time: '2024-02-22T12:18:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25466 -- author: lzk228 - changes: - - message: Galoshes are added to the Janidrobe. - type: Tweak - - message: Galoshes now make you slower. - type: Tweak - id: 6009 - time: '2024-02-23T01:05:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25484 -- author: PJB3005 - changes: - - message: sorting of departments and jobs has been made consistent in various menus. - type: Tweak - id: 6010 - time: '2024-02-23T04:04:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25486 -- author: liltenhead - changes: - - message: Changed emergency welder's fuel count from 25 -> 50 - type: Tweak - id: 6011 - time: '2024-02-23T06:53:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25483 -- author: Vasilis - changes: - - message: Fixed a bug where the centcom official/any job that is not supposed to - have a preference option appeared anyway. - type: Fix - id: 6012 - time: '2024-02-23T13:19:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25496 -- author: Erisfiregamer1 - changes: - - message: Fixed a typo when forcefeeding someone. - type: Fix - id: 6013 - time: '2024-02-24T01:45:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25512 -- author: Beck Thompson - changes: - - message: The Fire Extinguishers safety can now only be toggled when in range. - type: Fix - id: 6014 - time: '2024-02-25T02:29:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25534 -- author: ArchPigeon - changes: - - message: Removed the ability for command or any antag-safe role to be initial - infected in zombie mode - type: Remove - id: 6015 - time: '2024-02-25T02:40:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25529 -- author: PolterTzi - changes: - - message: Cargo ordering multiple crates in one order should work now. - type: Fix - id: 6016 - time: '2024-02-25T07:36:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25518 -- author: metalgearsloth - changes: - - message: Remove executions pending code rewrite. - type: Remove - id: 6017 - time: '2024-02-25T11:36:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25555 -- author: Krunk - changes: - - message: Candy bowls function properly again! - type: Fix - id: 6018 - time: '2024-02-25T13:08:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25514 -- author: Whisper - changes: - - message: Added juice that makes you Weh! Juice a lizard plushie today! - type: Add - id: 6019 - time: '2024-02-25T13:54:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25132 -- author: wafehling - changes: - - message: Secret mode has become more secret, with the 4th option Survival added - to the rotation. - type: Tweak - id: 6020 - time: '2024-02-25T21:15:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25568 -- author: Tayrtahn - changes: - - message: Added a live preview display to reagent dispensers. - type: Add - id: 6021 - time: '2024-02-25T23:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25391 -- author: Krunk - changes: - - message: Fixed grid inventory occasionally messing with your item rotation. - type: Fix - id: 6022 - time: '2024-02-25T23:24:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25510 -- author: Ubaser - changes: - - message: Satchels no longer have darkened space representing a gap, and is instead - transparent. - type: Tweak - id: 6023 - time: '2024-02-25T23:24:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25147 -- author: TheShuEd - changes: - - message: Huge flora anomaly nerf - type: Tweak - id: 6024 - time: '2024-02-25T23:41:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25499 -- author: OctoRocket - changes: - - message: Removed the hands requirement to read paper. - type: Tweak - id: 6025 - time: '2024-02-26T02:40:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25580 -- author: SlamBamActionman - changes: - - message: Self-uncuff damage has been removed, but attempting to self-uncuff now - has a cooldown instead. + id: 6025 + time: '2024-02-26T02:40:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25580 +- author: SlamBamActionman + changes: + - message: Self-uncuff damage has been removed, but attempting to self-uncuff now + has a cooldown instead. type: Tweak id: 6026 time: '2024-02-26T02:41:20.0000000+00:00' @@ -1675,2142 +949,2900 @@ type: Tweak - message: Decreased all bloodloss damage (as a result of bleeding) by 50%. type: Tweak - - message: Health analyzers will report if your patient is bleeding. + - message: Health analyzers will report if your patient is bleeding. + type: Add + id: 6040 + time: '2024-02-26T23:26:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25434 +- author: Velcroboy + changes: + - message: Tweaked wallmounted objects can not be interacted with through thindows + or windoors. + type: Tweak + - message: Fixed NanoMed vendor not being accessible from all directions. + type: Fix + id: 6041 + time: '2024-02-26T23:28:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25451 +- author: Lank + changes: + - message: Diona can no longer split or reform to cure themselves of a zombie infection. + type: Fix + id: 6042 + time: '2024-02-26T23:31:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25404 +- author: Zadeon + changes: + - message: Added salt as a new type of ore that can be mined from asteroids. Salt + can be ground up for its base components. + type: Add + id: 6043 + time: '2024-02-26T23:34:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25324 +- author: juliangiebel + changes: + - message: The mass media consoles UI got overhauled + type: Tweak + - message: Added PDA notifications in chat for new news articles. They can be turned + off in the news reader program and are only visible to you. + type: Add + id: 6044 + time: '2024-02-27T01:38:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/19610 +- author: rosieposieeee + changes: + - message: Added lockable wall buttons and decorative frames for differentiating + wall buttons. + type: Add + id: 6045 + time: '2024-02-27T07:57:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25631 +- author: metalgearsloth + changes: + - message: Fix chat bubbles. + type: Fix + id: 6046 + time: '2024-02-27T13:01:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25643 +- author: rosieposieeee + changes: + - message: Added grey stalagmites and made all stalagmites weaker and more fun to + break. + type: Add + id: 6047 + time: '2024-02-27T19:24:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25646 +- author: metalgearsloth + changes: + - message: Made NPC movement less janky. + type: Fix + id: 6048 + time: '2024-02-28T06:41:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25666 +- author: musicmanvr + changes: + - message: Added the Syndicate decoy bundle, a creative way to trick your foes. + type: Add + - message: Snap pops have been added to the toy crate. + type: Add + - message: Syndicate Commanders now have a trench whistle, Avanti! + type: Add + id: 6049 + time: '2024-02-28T21:53:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25333 +- author: Whisper + changes: + - message: Iron and copper no longer grant infinite blood! + type: Fix + id: 6050 + time: '2024-02-28T21:56:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25678 +- author: Cojoke-dot + changes: + - message: E-sword now lights plasma fires + type: Tweak + id: 6051 + time: '2024-02-28T21:59:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25665 +- author: lzk228 + changes: + - message: Engineering structures orders in cargo now supplied via flatpacks (e.g. + tesla & singulo generators, other stuff for them). + type: Tweak + - message: Thrusters and gyroscopes now supplied in crates via flatpacks. + type: Tweak + id: 6052 + time: '2024-02-28T22:02:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25647 +- author: c4llv07e + changes: + - message: Cryo won't remove you from the new body if you chose a new ghost role + before cryo deleted your old body. + type: Fix + id: 6053 + time: '2024-02-28T22:09:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24991 +- author: Nairodian + changes: + - message: You can now remove the rust from reinforced walls with a welder. + type: Fix + id: 6054 + time: '2024-02-29T00:44:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25690 +- author: Ubaser + changes: + - message: Eris UI theme has been removed. + type: Remove + id: 6055 + time: '2024-02-29T05:53:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25673 +- author: Rainfey + changes: + - message: Disallow multiple antag roles per player + type: Fix + id: 6056 + time: '2024-02-29T06:25:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23445 +- author: Kukutis96513 + changes: + - message: Changed the amount of plushies in the lizard plushie crate. + type: Tweak + id: 6057 + time: '2024-02-29T16:45:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25122 +- author: Aexxie + changes: + - message: Nutribricks spawn in Survival Kits in place of Tinned Meat. + type: Tweak + - message: Lizards can now eat Nutribricks. + type: Fix + - message: Moths can eat Nutribrick wrappers. + type: Add + id: 6058 + time: '2024-02-29T21:39:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25659 +- author: Flareguy + changes: + - message: Big O2 tanks and N2 tanks no longer spawn in any departmental locker. + Use tank dispensers to get them instead. + type: Tweak + - message: Removed all instances where N2 tanks spawned as counterparts to O2 tanks. + This includes things like lockers, suit storages, and the emergency toolbox. + type: Remove + id: 6059 + time: '2024-02-29T21:40:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25660 +- author: Potato1234_x + changes: + - message: Added fill levels to bowls, chefs rejoice! + type: Add + id: 6060 + time: '2024-02-29T21:41:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25639 +- author: Plykiya + changes: + - message: Dragging objects over gas pipes no longer slows you down. + type: Fix + id: 6061 + time: '2024-02-29T21:41:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25629 +- author: TheShuEd + changes: + - message: 9 new colourful curtains. Can be crafted from carpets. + type: Add + id: 6062 + time: '2024-02-29T22:25:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25684 +- author: Nairodian + changes: + - message: The smooth tail now has a second color layer to customize. + type: Tweak + id: 6063 + time: '2024-02-29T22:27:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25685 +- author: Hanzdegloker + changes: + - message: Commonly used decals should no longer washout the details of the tiles + below. + type: Tweak + id: 6064 + time: '2024-02-29T22:27:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25689 +- author: lzk228 + changes: + - message: Added recipe of handheld station map to autolathe. + type: Add + id: 6065 + time: '2024-02-29T22:34:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25719 +- author: MACMAN2003 + changes: + - message: There are now more ways to craft reinforced plasma/uranium glass. + type: Tweak + id: 6066 + time: '2024-02-29T22:57:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22804 +- author: deltanedas + changes: + - message: Acidifiers and microbombs now require confirmation before gibbing you. + type: Tweak + id: 6067 + time: '2024-03-01T02:48:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24609 +- author: exincore + changes: + - message: Chameleon gear now only reveals its menu button to its wearer. + type: Tweak + id: 6068 + time: '2024-03-01T12:49:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25746 +- author: Nairodian + changes: + - message: Fixed all command and security roles not having cryogenics access. + type: Fix + id: 6069 + time: '2024-03-01T21:21:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25752 +- author: IlyaElDunaev + changes: + - message: Added detective's rubber stamp. + type: Add + id: 6070 + time: '2024-03-01T22:50:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25676 +- author: rosieposieeee + changes: + - message: Added additional signage to help the crew navigate. + type: Add + id: 6071 + time: '2024-03-02T06:42:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25766 +- author: EmoGarbage404 + changes: + - message: Space heaters machine boards are now printable round start and can additionally + be ordered by cargo. + type: Tweak + id: 6072 + time: '2024-03-02T06:43:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25735 +- author: Krunk + changes: + - message: Picking up and dumping trash is less arduous for tiny, plentiful items, + such as bullets. + type: Tweak + id: 6073 + time: '2024-03-02T13:57:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24899 +- author: Errant + changes: + - message: Breathing tritium or plasma now displays a HUD alert. type: Add - id: 6040 - time: '2024-02-26T23:26:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25434 -- author: Velcroboy + id: 6074 + time: '2024-03-02T14:07:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24484 +- author: waylon531 changes: - - message: Tweaked wallmounted objects can not be interacted with through thindows - or windoors. + - message: Nutribrick and MRE wrappers can now be put in trash bags type: Tweak - - message: Fixed NanoMed vendor not being accessible from all directions. - type: Fix - id: 6041 - time: '2024-02-26T23:28:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25451 -- author: Lank + id: 6075 + time: '2024-03-02T14:23:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25760 +- author: Fildrance changes: - - message: Diona can no longer split or reform to cure themselves of a zombie infection. + - message: fixed lobby music restarting after volume change in options. Lobby music + is also not being looped by default - all lobby songs will play in shuffle mode. type: Fix - id: 6042 - time: '2024-02-26T23:31:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25404 -- author: Zadeon + id: 6076 + time: '2024-03-02T20:40:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25530 +- author: exincore changes: - - message: Added salt as a new type of ore that can be mined from asteroids. Salt - can be ground up for its base components. + - message: Inventories now show a secondary smart-equip star. type: Add - id: 6043 - time: '2024-02-26T23:34:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25324 -- author: juliangiebel + id: 6077 + time: '2024-03-02T23:57:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25696 +- author: Emisse changes: - - message: The mass media consoles UI got overhauled + - message: Rev's reenabled type: Tweak - - message: Added PDA notifications in chat for new news articles. They can be turned - off in the news reader program and are only visible to you. - type: Add - id: 6044 - time: '2024-02-27T01:38:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/19610 -- author: rosieposieeee - changes: - - message: Added lockable wall buttons and decorative frames for differentiating - wall buttons. - type: Add - id: 6045 - time: '2024-02-27T07:57:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25631 -- author: metalgearsloth + id: 6078 + time: '2024-03-03T00:30:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25704 +- author: EmoGarbage404 changes: - - message: Fix chat bubbles. + - message: Fixed issues where using the Quantum Spin Inverted would bug out the + character's physics. type: Fix - id: 6046 - time: '2024-02-27T13:01:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25643 -- author: rosieposieeee + id: 6079 + time: '2024-03-03T06:45:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25700 +- author: deltanedas changes: - - message: Added grey stalagmites and made all stalagmites weaker and more fun to - break. - type: Add - id: 6047 - time: '2024-02-27T19:24:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25646 + - message: No more raiding the jani vend for galoshes, which are back to normal + speed. + type: Remove + id: 6080 + time: '2024-03-03T07:07:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25795 - author: metalgearsloth changes: - - message: Made NPC movement less janky. - type: Fix - id: 6048 - time: '2024-02-28T06:41:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25666 -- author: musicmanvr + - message: 'Reworked shuttle consoles, including: manual FTL jumps, new map screen, + fixed performance issues, new docking screen.' + type: Tweak + id: 6081 + time: '2024-03-03T07:39:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24430 +- author: Errant-4 changes: - - message: Added the Syndicate decoy bundle, a creative way to trick your foes. - type: Add - - message: Snap pops have been added to the toy crate. - type: Add - - message: Syndicate Commanders now have a trench whistle, Avanti! - type: Add - id: 6049 - time: '2024-02-28T21:53:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25333 -- author: Whisper + - message: Toggling your own internals no longer requires a delay. + type: Tweak + id: 6082 + time: '2024-03-03T08:31:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25781 +- author: SlamBamActionman changes: - - message: Iron and copper no longer grant infinite blood! + - message: Arachnids are no longer perma-pied and can clean it off. type: Fix - id: 6050 - time: '2024-02-28T21:56:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25678 -- author: Cojoke-dot + id: 6083 + time: '2024-03-03T08:54:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25713 +- author: Dutch-VanDerLinde changes: - - message: E-sword now lights plasma fires - type: Tweak - id: 6051 - time: '2024-02-28T21:59:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25665 -- author: lzk228 + - message: Monkeys and kobolds can now wear blood-red hardsuits. + type: Add + id: 6084 + time: '2024-03-04T03:56:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22273 +- author: Plykiya changes: - - message: Engineering structures orders in cargo now supplied via flatpacks (e.g. - tesla & singulo generators, other stuff for them). + - message: Syringes now prevent injecting on empty and drawing on full. type: Tweak - - message: Thrusters and gyroscopes now supplied in crates via flatpacks. + - message: You can now tell if you are being drawn from or injected by a syringe. type: Tweak - id: 6052 - time: '2024-02-28T22:02:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25647 -- author: c4llv07e + id: 6085 + time: '2024-03-04T05:07:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25480 +- author: metalgearsloth changes: - - message: Cryo won't remove you from the new body if you chose a new ghost role - before cryo deleted your old body. + - message: Fix expedition FTL. type: Fix - id: 6053 - time: '2024-02-28T22:09:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24991 + id: 6086 + time: '2024-03-04T06:24:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25823 - author: Nairodian changes: - - message: You can now remove the rust from reinforced walls with a welder. - type: Fix - id: 6054 - time: '2024-02-29T00:44:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25690 -- author: Ubaser + - message: Welding masks can now be made in the Autolathe. + type: Add + id: 6087 + time: '2024-03-04T22:36:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25842 +- author: Lawdog changes: - - message: Eris UI theme has been removed. + - message: Changed the max volume of shot glasses from 7u to 5u to better represent + drinking shots in real life + type: Tweak + id: 6088 + time: '2024-03-04T23:51:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25847 +- author: deltanedas + changes: + - message: Rehydrated mobs (carp) now keep their forensics data from their cube/plushie + form. + type: Tweak + id: 6089 + time: '2024-03-05T03:13:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25148 +- author: Brandon-Huu + changes: + - message: Removed the ability for command or any antag-safe role to be initial + infected in zombie mode type: Remove - id: 6055 - time: '2024-02-29T05:53:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25673 -- author: Rainfey + id: 6090 + time: '2024-03-05T04:34:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25785 +- author: Whisper changes: - - message: Disallow multiple antag roles per player - type: Fix - id: 6056 - time: '2024-02-29T06:25:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23445 -- author: Kukutis96513 + - message: Glass shards can be added to flatcaps to create bladed flatcaps! + type: Add + id: 6091 + time: '2024-03-05T20:57:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25780 +- author: MACMAN2003 changes: - - message: Changed the amount of plushies in the lizard plushie crate. + - message: Added clockwork structures and brass to build them with. + type: Add + id: 6092 + time: '2024-03-06T00:25:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24673 +- author: deepdarkdepths + changes: + - message: Added the paramedic's cap to the uniform printer. + type: Add + id: 6093 + time: '2024-03-06T01:17:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25861 +- author: lzk228 + changes: + - message: Livestock crate and artifact container now can go under plastic flaps. type: Tweak - id: 6057 - time: '2024-02-29T16:45:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25122 -- author: Aexxie + id: 6094 + time: '2024-03-06T01:33:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25862 +- author: PJB3005 + changes: + - message: Saving paper is on ctrl+enter again. Also there's a visible "save" button + now. + type: Tweak + id: 6095 + time: '2024-03-06T01:35:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25870 +- author: ps3moira changes: - - message: Nutribricks spawn in Survival Kits in place of Tinned Meat. + - message: Changed brick, wood, and web walls to be unable to conjoin with different + walls. type: Tweak - - message: Lizards can now eat Nutribricks. - type: Fix - - message: Moths can eat Nutribrick wrappers. + id: 6096 + time: '2024-03-06T01:36:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25674 +- author: Froffy + changes: + - message: Water can now be scooped from water tiles, such as planetary rivers. type: Add - id: 6058 - time: '2024-02-29T21:39:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25659 -- author: Flareguy + id: 6097 + time: '2024-03-06T01:37:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25825 +- author: Ko4erga changes: - - message: Big O2 tanks and N2 tanks no longer spawn in any departmental locker. - Use tank dispensers to get them instead. + - message: '"Post light" updated.' type: Tweak - - message: Removed all instances where N2 tanks spawned as counterparts to O2 tanks. - This includes things like lockers, suit storages, and the emergency toolbox. - type: Remove - id: 6059 - time: '2024-02-29T21:40:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25660 -- author: Potato1234_x + id: 6098 + time: '2024-03-06T01:39:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25814 +- author: Ilya246 changes: - - message: Added fill levels to bowls, chefs rejoice! + - message: Gas leak events are now 4 times as strong, and may leak water vapor. + The fog is coming. + type: Tweak + id: 6099 + time: '2024-03-06T01:41:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25864 +- author: Just_Art + changes: + - message: Added bob 5 hair! type: Add - id: 6060 - time: '2024-02-29T21:41:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25639 -- author: Plykiya + - message: Added long hair with bundles! + type: Add + id: 6100 + time: '2024-03-06T01:42:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25772 +- author: Errant changes: - - message: Dragging objects over gas pipes no longer slows you down. + - message: Debug coordinates are now automatically enabled on the F3 overlay upon + readmin. type: Fix - id: 6061 - time: '2024-02-29T21:41:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25629 -- author: TheShuEd + id: 6101 + time: '2024-03-06T01:43:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25063 +- author: metalgearsloth changes: - - message: 9 new colourful curtains. Can be crafted from carpets. + - message: Pod launches will now be offset slightly. type: Add - id: 6062 - time: '2024-02-29T22:25:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25684 -- author: Nairodian + id: 6102 + time: '2024-03-06T01:44:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25855 +- author: Brandon-Huu changes: - - message: The smooth tail now has a second color layer to customize. + - message: The Syndicate is now supplying barber scissors in the Hristov bundle + to make your disguises even balde- better. type: Tweak - id: 6063 - time: '2024-02-29T22:27:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25685 -- author: Hanzdegloker + id: 6103 + time: '2024-03-06T02:03:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25695 +- author: Tayrtahn changes: - - message: Commonly used decals should no longer washout the details of the tiles - below. - type: Tweak - id: 6064 - time: '2024-02-29T22:27:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25689 -- author: lzk228 + - message: Flasks can once again be put into dispensers. + type: Fix + id: 6104 + time: '2024-03-06T17:19:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25883 +- author: Doctor-Cpu changes: - - message: Added recipe of handheld station map to autolathe. + - message: Cargo palllets can no longer be ordered from cargo request terminal + type: Remove + id: 6105 + time: '2024-03-07T17:53:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25882 +- author: Beck Thompson + changes: + - message: Lawdrobe has some new items and new ads! type: Add - id: 6065 - time: '2024-02-29T22:34:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25719 -- author: MACMAN2003 + id: 6106 + time: '2024-03-07T19:18:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25299 +- author: Blackern5000 changes: - - message: There are now more ways to craft reinforced plasma/uranium glass. + - message: Salvagers can now pull in overgrown floral anomalies. + type: Add + id: 6107 + time: '2024-03-07T19:37:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24650 +- author: Nimfar11 + changes: + - message: Slimes can now drink FourteenLoko without harming their bodies. type: Tweak - id: 6066 - time: '2024-02-29T22:57:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22804 -- author: deltanedas + id: 6108 + time: '2024-03-07T20:50:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25889 +- author: NakataRin changes: - - message: Acidifiers and microbombs now require confirmation before gibbing you. + - message: Evacuation shuttle arrives 10 minutes on green alert now. type: Tweak - id: 6067 - time: '2024-03-01T02:48:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24609 -- author: exincore + id: 6109 + time: '2024-03-07T21:01:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25906 +- author: Admiral-Obvious-001 changes: - - message: Chameleon gear now only reveals its menu button to its wearer. + - message: Zombies are now tougher to kill. type: Tweak - id: 6068 - time: '2024-03-01T12:49:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25746 -- author: Nairodian + id: 6110 + time: '2024-03-07T21:02:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25876 +- author: TheShuEd changes: - - message: Fixed all command and security roles not having cryogenics access. + - message: Removed Hamlet, Smile and Pun Pun from Thief objectives + type: Remove + id: 6111 + time: '2024-03-07T23:53:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25921 +- author: MACMAN2003 + changes: + - message: Diagonal windows no longer space you when in a pressurized environment. type: Fix - id: 6069 - time: '2024-03-01T21:21:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25752 -- author: IlyaElDunaev + id: 6112 + time: '2024-03-08T07:50:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25926 +- author: mryikes changes: - - message: Added detective's rubber stamp. + - message: New Nuke Detonation Song "Clearly Nuclear". type: Add - id: 6070 - time: '2024-03-01T22:50:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25676 -- author: rosieposieeee + id: 6113 + time: '2024-03-09T01:44:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25765 +- author: Plykiya changes: - - message: Added additional signage to help the crew navigate. - type: Add - id: 6071 - time: '2024-03-02T06:42:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25766 + - message: Pre-filled syringes start in inject mode now. + type: Tweak + id: 6114 + time: '2024-03-09T10:19:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25881 - author: EmoGarbage404 changes: - - message: Space heaters machine boards are now printable round start and can additionally - be ordered by cargo. + - message: Added a new "colorblind friendly" toggle in the accessibility menu. This + allows you to toggle between a standard and colorblind-friendly palette for + things like progress bars and the medical HUD. + type: Add + - message: The medical HUD is now bright, even in low light levels. type: Tweak - id: 6072 - time: '2024-03-02T06:43:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25735 -- author: Krunk + id: 6115 + time: '2024-03-09T11:43:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25318 +- author: metalgearsloth changes: - - message: Picking up and dumping trash is less arduous for tiny, plentiful items, - such as bullets. - type: Tweak - id: 6073 - time: '2024-03-02T13:57:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24899 -- author: Errant + - message: Fix NPC mouse movement. + type: Fix + id: 6116 + time: '2024-03-10T15:41:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25965 +- author: DoutorWhite changes: - - message: Breathing tritium or plasma now displays a HUD alert. - type: Add - id: 6074 - time: '2024-03-02T14:07:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24484 -- author: waylon531 + - message: Prevents rendering from crashing in certain scenarios + type: Fix + id: 6117 + time: '2024-03-10T17:07:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25960 +- author: nikthechampiongr changes: - - message: Nutribrick and MRE wrappers can now be put in trash bags + - message: Shields will no longer absorb asphyxiation damage, or any other damage + they themselves can't take. + type: Fix + id: 6118 + time: '2024-03-11T01:55:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25972 +- author: metalgearsloth + changes: + - message: Remove the buttons for generated debris from shuttle maps. type: Tweak - id: 6075 - time: '2024-03-02T14:23:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25760 -- author: Fildrance + id: 6119 + time: '2024-03-11T02:11:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25897 +- author: Errant changes: - - message: fixed lobby music restarting after volume change in options. Lobby music - is also not being looped by default - all lobby songs will play in shuffle mode. - type: Fix - id: 6076 - time: '2024-03-02T20:40:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25530 -- author: exincore + - message: Species info is now available in the Guidebook and in the character editor. + type: Add + id: 6120 + time: '2024-03-11T03:01:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25844 +- author: Dygon changes: - - message: Inventories now show a secondary smart-equip star. + - message: 'The following criminal record statuses have been added: Suspect, Discharged, + Paroled.' type: Add - id: 6077 - time: '2024-03-02T23:57:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25696 -- author: Emisse + - message: Security huds now show an icon on entities that have a visible name linked + to a criminal record. + type: Add + id: 6121 + time: '2024-03-11T03:12:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25192 +- author: Lank changes: - - message: Rev's reenabled + - message: The detective is no longer independent, and again works under Security. type: Tweak - id: 6078 - time: '2024-03-03T00:30:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25704 -- author: EmoGarbage404 - changes: - - message: Fixed issues where using the Quantum Spin Inverted would bug out the - character's physics. - type: Fix - id: 6079 - time: '2024-03-03T06:45:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25700 -- author: deltanedas + id: 6122 + time: '2024-03-11T03:33:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25986 +- author: pigeonpeas changes: - - message: No more raiding the jani vend for galoshes, which are back to normal - speed. - type: Remove - id: 6080 - time: '2024-03-03T07:07:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25795 -- author: metalgearsloth + - message: added new expedition ambience + type: Add + id: 6123 + time: '2024-03-11T06:56:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25983 +- author: Ilya246 changes: - - message: 'Reworked shuttle consoles, including: manual FTL jumps, new map screen, - fixed performance issues, new docking screen.' + - message: The biomass reclaimer may now reclaim plants, and inserting smaller entities + into it is now faster. type: Tweak - id: 6081 - time: '2024-03-03T07:39:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24430 -- author: Errant-4 + id: 6124 + time: '2024-03-11T21:59:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23731 +- author: SlamBamActionman changes: - - message: Toggling your own internals no longer requires a delay. + - message: Moths eating lizard plushies will now start to Weh! type: Tweak - id: 6082 - time: '2024-03-03T08:31:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25781 -- author: SlamBamActionman + id: 6125 + time: '2024-03-11T23:05:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26003 +- author: Ubaser changes: - - message: Arachnids are no longer perma-pied and can clean it off. - type: Fix - id: 6083 - time: '2024-03-03T08:54:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25713 -- author: Dutch-VanDerLinde + - message: Unpressurized areas now deal heat damage along with blunt. + type: Tweak + id: 6126 + time: '2024-03-12T02:38:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25770 +- author: nikthechampiongr changes: - - message: Monkeys and kobolds can now wear blood-red hardsuits. + - message: Recyclers now leave logs when they gib people. type: Add - id: 6084 - time: '2024-03-04T03:56:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22273 -- author: Plykiya + - message: People sending a broadcast in the communications console now leave logs. + type: Add + id: 6127 + time: '2024-03-12T10:57:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26008 +- author: ShadowCommander changes: - - message: Syringes now prevent injecting on empty and drawing on full. - type: Tweak - - message: You can now tell if you are being drawn from or injected by a syringe. + - message: Fixed arrivals shuttle not docking with the station when it was slowly + spinning. + type: Fix + id: 6128 + time: '2024-03-12T12:57:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26033 +- author: liltenhead + changes: + - message: Buffed the zombie virus to do purely poison damage, and more likely to + spread the infection per bite. type: Tweak - id: 6085 - time: '2024-03-04T05:07:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25480 -- author: metalgearsloth + id: 6129 + time: '2024-03-12T18:44:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25954 +- author: UnicornOnLSD changes: - - message: Fix expedition FTL. - type: Fix - id: 6086 - time: '2024-03-04T06:24:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25823 -- author: Nairodian + - message: brought back the classic crew cut as an alternative to the current one + ! + type: Add + id: 6130 + time: '2024-03-12T18:47:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25935 +- author: FungiFellow changes: - - message: Welding masks can now be made in the Autolathe. + - message: Added Improvised Shotgun Shell Recipe type: Add - id: 6087 - time: '2024-03-04T22:36:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25842 -- author: Lawdog + id: 6131 + time: '2024-03-12T23:52:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25545 +- author: NakataRin changes: - - message: Changed the max volume of shot glasses from 7u to 5u to better represent - drinking shots in real life + - message: Skeletons can only spawn with 10 people on the server now. type: Tweak - id: 6088 - time: '2024-03-04T23:51:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25847 -- author: deltanedas + id: 6132 + time: '2024-03-13T01:00:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26050 +- author: SlamBamActionman changes: - - message: Rehydrated mobs (carp) now keep their forensics data from their cube/plushie - form. + - message: Syndicate implanters can no longer be recycled. type: Tweak - id: 6089 - time: '2024-03-05T03:13:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25148 -- author: Brandon-Huu + id: 6133 + time: '2024-03-13T02:02:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26047 +- author: Gyrandola changes: - - message: Removed the ability for command or any antag-safe role to be initial - infected in zombie mode - type: Remove - id: 6090 - time: '2024-03-05T04:34:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25785 -- author: Whisper + - message: Adding Sky Blue carpets to tables no longer results in red carpet ones. + type: Fix + id: 6134 + time: '2024-03-13T02:03:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26049 +- author: Gyrandola changes: - - message: Glass shards can be added to flatcaps to create bladed flatcaps! - type: Add - id: 6091 - time: '2024-03-05T20:57:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25780 -- author: MACMAN2003 + - message: Clicking yourself with a knife no longer triggers a butchering popup + type: Fix + id: 6135 + time: '2024-03-13T03:52:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26051 +- author: maylokana changes: - - message: Added clockwork structures and brass to build them with. - type: Add - id: 6092 - time: '2024-03-06T00:25:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24673 -- author: deepdarkdepths + - message: Italicized whisper bubbles + type: Tweak + id: 6136 + time: '2024-03-13T08:03:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25602 +- author: Slava0135 changes: - - message: Added the paramedic's cap to the uniform printer. + - message: Fixed pie bomb not detonating when eaten or sliced (remember to keep + hungry mice away from it)! + type: Fix + - message: Pie bomb now cannot be ejected or swapped (just hope there is no bomb + inside) + type: Tweak + id: 6137 + time: '2024-03-13T08:36:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25928 +- author: Cojoke-dot + changes: + - message: Senior uniforms have been added to the Uniform Printer, visit your local + hop today! type: Add - id: 6093 - time: '2024-03-06T01:17:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25861 -- author: lzk228 + id: 6138 + time: '2024-03-13T08:45:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25668 +- author: Plykiya changes: - - message: Livestock crate and artifact container now can go under plastic flaps. + - message: Additional syringe doafter delay is now based on syringe contents rather + than transfer amount setting. type: Tweak - id: 6094 - time: '2024-03-06T01:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25862 -- author: PJB3005 + id: 6139 + time: '2024-03-13T09:35:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25890 +- author: SlamBamActionman changes: - - message: Saving paper is on ctrl+enter again. Also there's a visible "save" button - now. + - message: Renamed Uplink categories and moved items to fit new category names. type: Tweak - id: 6095 - time: '2024-03-06T01:35:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25870 -- author: ps3moira + id: 6140 + time: '2024-03-13T09:47:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25079 +- author: veprolet changes: - - message: Changed brick, wood, and web walls to be unable to conjoin with different - walls. + - message: Injectors like the syringe can now toggle their transfer amount using + alternative interactions. type: Tweak - id: 6096 - time: '2024-03-06T01:36:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25674 -- author: Froffy + id: 6141 + time: '2024-03-13T10:00:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25566 +- author: Dutch-VanDerLinde + changes: + - message: Zombies can now wideswing, similar to how a space carp would. + type: Tweak + id: 6142 + time: '2024-03-13T10:02:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26064 +- author: Krunk changes: - - message: Water can now be scooped from water tiles, such as planetary rivers. + - message: Clown & Jester shoes can now hold plastic knives and cap guns! All clowning, + all the time! type: Add - id: 6097 - time: '2024-03-06T01:37:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25825 -- author: Ko4erga + id: 6143 + time: '2024-03-13T10:03:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25661 +- author: 778b changes: - - message: '"Post light" updated.' - type: Tweak - id: 6098 - time: '2024-03-06T01:39:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25814 -- author: Ilya246 + - message: Guns which use battery as magazines now display ammo. Like Svalinn pistol. + type: Fix + id: 6144 + time: '2024-03-13T11:13:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26009 +- author: icekot8 changes: - - message: Gas leak events are now 4 times as strong, and may leak water vapor. - The fog is coming. + - message: Foxes are now neutral and deal 8 piercing damage type: Tweak - id: 6099 - time: '2024-03-06T01:41:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25864 -- author: Just_Art + id: 6145 + time: '2024-03-13T15:02:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25992 +- author: Mangohydra changes: - - message: Added bob 5 hair! - type: Add - - message: Added long hair with bundles! + - message: The lawyer now spawns with their own lawyer stamp for stamping very important + documents. type: Add - id: 6100 - time: '2024-03-06T01:42:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25772 + id: 6146 + time: '2024-03-13T15:05:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26012 - author: Errant changes: - - message: Debug coordinates are now automatically enabled on the F3 overlay upon - readmin. + - message: Clothes with alternate sprites for vox once again show the alternate + sprites, instead of the defaults. type: Fix - id: 6101 - time: '2024-03-06T01:43:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25063 -- author: metalgearsloth + id: 6147 + time: '2024-03-13T15:06:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25989 +- author: Gyrandola changes: - - message: Pod launches will now be offset slightly. + - message: Fireaxe and Shotgun cabinets can now be destroyed. type: Add - id: 6102 - time: '2024-03-06T01:44:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25855 -- author: Brandon-Huu + id: 6148 + time: '2024-03-13T15:09:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25962 +- author: lzk228 changes: - - message: The Syndicate is now supplying barber scissors in the Hristov bundle - to make your disguises even balde- better. + - message: Surgery tools can be placed in medical belt. type: Tweak - id: 6103 - time: '2024-03-06T02:03:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25695 -- author: Tayrtahn + - message: Lantern can be placed in utility belt. + type: Tweak + - message: Hand labeler can be placed in utility and botanical belt + type: Tweak + id: 6149 + time: '2024-03-13T18:55:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26085 +- author: wafehling changes: - - message: Flasks can once again be put into dispensers. - type: Fix - id: 6104 - time: '2024-03-06T17:19:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25883 -- author: Doctor-Cpu + - message: The trading outpost now has dedicated buy-only and sell-only pallets. + No more accidentally selling orders you just bought. Cargonians rejoice! + type: Tweak + id: 6150 + time: '2024-03-13T23:26:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25955 +- author: maylokana changes: - - message: Cargo palllets can no longer be ordered from cargo request terminal - type: Remove - id: 6105 - time: '2024-03-07T17:53:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25882 -- author: Beck Thompson + - message: Entities can no longer drink from closed containers + type: Fix + id: 6151 + time: '2024-03-14T04:10:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26103 +- author: Dutch-VanDerLinde changes: - - message: Lawdrobe has some new items and new ads! + - message: Gunpowder can now be made by chemists with 6 parts potassium, 2 parts + sulfur and charcoal. type: Add - id: 6106 - time: '2024-03-07T19:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25299 -- author: Blackern5000 - changes: - - message: Salvagers can now pull in overgrown floral anomalies. + - message: Pipebombs may now be crafted with a pipe, gunpowder and LV cable. type: Add - id: 6107 - time: '2024-03-07T19:37:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24650 -- author: Nimfar11 + - message: IEDs have been reworked, they are now called "fire bombs" and generate + a weak explosion that ignites nearby objects. + type: Tweak + id: 6152 + time: '2024-03-14T04:27:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25705 +- author: PJB3005 changes: - - message: Slimes can now drink FourteenLoko without harming their bodies. + - message: You must now wait 30 seconds before attempting to reconnect to a full + server. type: Tweak - id: 6108 - time: '2024-03-07T20:50:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25889 -- author: NakataRin + id: 6153 + time: '2024-03-14T08:00:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/20972 +- author: Crotalus changes: - - message: Evacuation shuttle arrives 10 minutes on green alert now. + - message: Sort agents by success rate in end game summary type: Tweak - id: 6109 - time: '2024-03-07T21:01:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25906 -- author: Admiral-Obvious-001 + id: 6154 + time: '2024-03-14T15:52:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26058 +- author: nikthechampiongr changes: - - message: Zombies are now tougher to kill. + - message: The radio jammer is now able to jam the signal of suit sensors. type: Tweak - id: 6110 - time: '2024-03-07T21:02:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25876 + id: 6155 + time: '2024-03-14T15:55:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26046 +- author: deltanedas + changes: + - message: Holocarp and Magicarp plushies can now be found in maintenance. + type: Add + id: 6156 + time: '2024-03-15T02:58:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26081 - author: TheShuEd changes: - - message: Removed Hamlet, Smile and Pun Pun from Thief objectives - type: Remove - id: 6111 - time: '2024-03-07T23:53:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25921 -- author: MACMAN2003 + - message: Added random colored jumpsuits to the mixed wardrobes. Each costume is + randomly generated from parts painted in random colors, which gives a huge number + of combinations of the appearance of such costumes. + type: Add + id: 6157 + time: '2024-03-15T07:37:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25888 +- author: Nopey changes: - - message: Diagonal windows no longer space you when in a pressurized environment. + - message: Dead players can no longer spin on a bar stool. type: Fix - id: 6112 - time: '2024-03-08T07:50:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25926 -- author: mryikes + id: 6158 + time: '2024-03-15T10:03:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24308 +- author: Nairodian changes: - - message: New Nuke Detonation Song "Clearly Nuclear". + - message: Added a new red neck gaiter to the AutoDrobe. type: Add - id: 6113 - time: '2024-03-09T01:44:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25765 -- author: Plykiya + id: 6159 + time: '2024-03-15T10:11:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25891 +- author: Tayrtahn changes: - - message: Pre-filled syringes start in inject mode now. + - message: Reflected tranquilizer rounds no longer inject the character who reflected + them. + type: Fix + id: 6160 + time: '2024-03-15T13:57:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26141 +- author: lzk228 + changes: + - message: Refill light replacer from box popup now shows properly. + type: Fix + id: 6161 + time: '2024-03-15T15:23:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26136 +- author: FairlySadPanda + changes: + - message: Food and drink stocks in vending machines has been reduced to encourage + people to use the kitchen and bar. type: Tweak - id: 6114 - time: '2024-03-09T10:19:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25881 -- author: EmoGarbage404 + id: 6162 + time: '2024-03-15T23:28:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25999 +- author: Plykiya changes: - - message: Added a new "colorblind friendly" toggle in the accessibility menu. This - allows you to toggle between a standard and colorblind-friendly palette for - things like progress bars and the medical HUD. - type: Add - - message: The medical HUD is now bright, even in low light levels. + - message: Ion storms now have a chance of happening from the start of shift. type: Tweak - id: 6115 - time: '2024-03-09T11:43:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25318 -- author: metalgearsloth + id: 6163 + time: '2024-03-16T03:47:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26165 +- author: Krunk changes: - - message: Fix NPC mouse movement. + - message: Zombies and animals can be stripped once again. type: Fix - id: 6116 - time: '2024-03-10T15:41:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25965 -- author: DoutorWhite + - message: Dead or critical mobs can no longer be stripped instantly. + type: Fix + id: 6164 + time: '2024-03-16T03:50:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26166 +- author: metalgearsloth changes: - - message: Prevents rendering from crashing in certain scenarios + - message: Fix store refunds. type: Fix - id: 6117 - time: '2024-03-10T17:07:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25960 -- author: nikthechampiongr + id: 6165 + time: '2024-03-16T14:06:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26173 +- author: LordCarve changes: - - message: Shields will no longer absorb asphyxiation damage, or any other damage - they themselves can't take. + - message: Decayed anomalies no longer show as having gone supercritical in logs. type: Fix - id: 6118 - time: '2024-03-11T01:55:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25972 -- author: metalgearsloth + id: 6166 + time: '2024-03-16T17:31:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26180 +- author: Velcroboy changes: - - message: Remove the buttons for generated debris from shuttle maps. + - message: Tweaked gas canisters to pass through cargo flaps. type: Tweak - id: 6119 - time: '2024-03-11T02:11:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25897 -- author: Errant + id: 6167 + time: '2024-03-17T00:55:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26193 +- author: metalgearsloth changes: - - message: Species info is now available in the Guidebook and in the character editor. - type: Add - id: 6120 - time: '2024-03-11T03:01:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25844 -- author: Dygon + - message: Fix ID cards sometimes not loading properly. + type: Fix + id: 6168 + time: '2024-03-17T01:10:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26195 +- author: 21Melkuu changes: - - message: 'The following criminal record statuses have been added: Suspect, Discharged, - Paroled.' + - message: Add new explosion-proof backpack in aplink. type: Add - - message: Security huds now show an icon on entities that have a visible name linked - to a criminal record. + id: 6169 + time: '2024-03-17T02:21:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26187 +- author: Ilya246 + changes: + - message: Syndicate decoy bombs may now be purchased from the uplink. type: Add - id: 6121 - time: '2024-03-11T03:12:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25192 -- author: Lank + - message: Syndicate bomb description no longer lies about their minimum detonation + time. + type: Fix + id: 6170 + time: '2024-03-17T02:31:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26034 +- author: wafehling changes: - - message: The detective is no longer independent, and again works under Security. - type: Tweak - id: 6122 - time: '2024-03-11T03:33:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25986 -- author: pigeonpeas + - message: Added 18 new bounties to cargo bounty system. + type: Add + id: 6171 + time: '2024-03-17T17:06:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26160 +- author: Ko4erga changes: - - message: added new expedition ambience + - message: Added craftable high and small wooden fences, bench. New stairs. type: Add - id: 6123 - time: '2024-03-11T06:56:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25983 -- author: Ilya246 + id: 6172 + time: '2024-03-17T21:18:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26182 +- author: potato1234_x changes: - - message: The biomass reclaimer may now reclaim plants, and inserting smaller entities - into it is now faster. + - message: Changed the puddle sprites so the smoothing is less jagged type: Tweak - id: 6124 - time: '2024-03-11T21:59:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23731 -- author: SlamBamActionman + id: 6173 + time: '2024-03-17T23:15:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26171 +- author: FungiFellow changes: - - message: Moths eating lizard plushies will now start to Weh! + - message: Changed Monkey Reinf Price to 6TC type: Tweak - id: 6125 - time: '2024-03-11T23:05:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26003 -- author: Ubaser + id: 6174 + time: '2024-03-18T01:25:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26214 +- author: Golinth changes: - - message: Unpressurized areas now deal heat damage along with blunt. + - message: Criminal record icons now show up below job icons type: Tweak - id: 6126 - time: '2024-03-12T02:38:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25770 -- author: nikthechampiongr + id: 6175 + time: '2024-03-18T01:37:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26203 +- author: PJB3005 changes: - - message: Recyclers now leave logs when they gib people. - type: Add - - message: People sending a broadcast in the communications console now leave logs. - type: Add - id: 6127 - time: '2024-03-12T10:57:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26008 -- author: ShadowCommander + - message: Fixed pressure damage calculations to what they were always supposed + to be. This means pressure damage now starts happening at more extreme values + (20 kPa for low pressure damage instead of 50 kPa) and high pressure damage + is scaled different. It also fixed the HUD alerts so that the "warning" alerts + show up before you actually start taking damage. + type: Fix + - message: Air alarms now start complaining about low pressure much earlier, when + the pressure drops so much that you can't breathe oxygen tank. + type: Tweak + id: 6176 + time: '2024-03-18T05:16:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26217 +- author: HappyRoach changes: - - message: Fixed arrivals shuttle not docking with the station when it was slowly - spinning. + - message: The correct magazines now appear in the WT550 safe. type: Fix - id: 6128 - time: '2024-03-12T12:57:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26033 -- author: liltenhead + id: 6177 + time: '2024-03-18T06:10:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26208 +- author: vanx changes: - - message: Buffed the zombie virus to do purely poison damage, and more likely to - spread the infection per bite. + - message: You can now wear most guns in the suit slot, and see them on yourself! type: Tweak - id: 6129 - time: '2024-03-12T18:44:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25954 -- author: UnicornOnLSD + id: 6178 + time: '2024-03-18T06:16:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26152 +- author: Dutch-VanDerLinde changes: - - message: brought back the classic crew cut as an alternative to the current one - ! - type: Add - id: 6130 - time: '2024-03-12T18:47:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25935 -- author: FungiFellow + - message: Romerol now properly works on the dead. + type: Tweak + id: 6179 + time: '2024-03-18T06:25:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26222 +- author: ElectroJr changes: - - message: Added Improvised Shotgun Shell Recipe + - message: Added an option to try and ignore some errors if a replay fails to load, type: Add - id: 6131 - time: '2024-03-12T23:52:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25545 -- author: NakataRin + id: 6180 + time: '2024-03-18T07:31:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26212 +- author: Tayrtahn changes: - - message: Skeletons can only spawn with 10 people on the server now. + - message: Cyborg recharging stations are able to charge cyborgs again. + type: Fix + id: 6181 + time: '2024-03-18T13:37:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26230 +- author: DoutorWhite + changes: + - message: Introduce new health status icons. + type: Add + - message: Enhance the Medical HUD to display the health status of players and mobs + using the newly added icons. type: Tweak - id: 6132 - time: '2024-03-13T01:00:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26050 -- author: SlamBamActionman + id: 6182 + time: '2024-03-18T13:56:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26027 +- author: Plykiya changes: - - message: Syndicate implanters can no longer be recycled. + - message: Lone operatives now start with 60TC instead of 40TC. type: Tweak - id: 6133 - time: '2024-03-13T02:02:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26047 -- author: Gyrandola + id: 6183 + time: '2024-03-18T14:15:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26130 +- author: PJB3005 changes: - - message: Adding Sky Blue carpets to tables no longer results in red carpet ones. + - message: Fixed hardsuits in space causing high pressure damage type: Fix - id: 6134 - time: '2024-03-13T02:03:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26049 -- author: Gyrandola + id: 6184 + time: '2024-03-18T16:46:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26236 +- author: potato1234x changes: - - message: Clicking yourself with a knife no longer triggers a butchering popup + - message: Added crafting recipes for wall lockers and secure lockers + type: Add + - message: Fixed secure lockers and wall lockers not being deconstructible type: Fix - id: 6135 - time: '2024-03-13T03:52:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26051 -- author: maylokana - changes: - - message: Italicized whisper bubbles - type: Tweak - id: 6136 - time: '2024-03-13T08:03:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25602 -- author: Slava0135 + id: 6185 + time: '2024-03-18T20:53:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24942 +- author: brainfood1183 changes: - - message: Fixed pie bomb not detonating when eaten or sliced (remember to keep - hungry mice away from it)! - type: Fix - - message: Pie bomb now cannot be ejected or swapped (just hope there is no bomb - inside) - type: Tweak - id: 6137 - time: '2024-03-13T08:36:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25928 -- author: Cojoke-dot + - message: Added Spray Paints. + type: Add + id: 6186 + time: '2024-03-18T21:29:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23003 +- author: PJB3005 changes: - - message: Senior uniforms have been added to the Uniform Printer, visit your local - hop today! + - message: Bans are now shown in the "adminremarks" command. type: Add - id: 6138 - time: '2024-03-13T08:45:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25668 -- author: Plykiya + id: 6187 + time: '2024-03-18T21:31:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26240 +- author: Terraspark4941 changes: - - message: Additional syringe doafter delay is now based on syringe contents rather - than transfer amount setting. + - message: The TEG page in the guidebook has been updated with proper information! type: Tweak - id: 6139 - time: '2024-03-13T09:35:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25890 -- author: SlamBamActionman + id: 6188 + time: '2024-03-18T21:33:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26170 +- author: Plykiya changes: - - message: Renamed Uplink categories and moved items to fit new category names. - type: Tweak - id: 6140 - time: '2024-03-13T09:47:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25079 -- author: veprolet + - message: You can now craft ducky slippers. + type: Add + id: 6189 + time: '2024-03-18T21:34:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26138 +- author: Boaz1111 changes: - - message: Injectors like the syringe can now toggle their transfer amount using - alternative interactions. + - message: Lone operatives now require a minimum of 20 players to spawn type: Tweak - id: 6141 - time: '2024-03-13T10:00:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25566 -- author: Dutch-VanDerLinde + id: 6190 + time: '2024-03-18T21:36:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26244 +- author: shampunj changes: - - message: Zombies can now wideswing, similar to how a space carp would. + - message: Zombies now passively heal 1 heat/shock damage every 50 seconds type: Tweak - id: 6142 - time: '2024-03-13T10:02:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26064 -- author: Krunk + id: 6191 + time: '2024-03-18T21:47:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25925 +- author: Killerqu00 changes: - - message: Clown & Jester shoes can now hold plastic knives and cap guns! All clowning, - all the time! + - message: Initial Infected now can see each other. type: Add - id: 6143 - time: '2024-03-13T10:03:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25661 -- author: 778b + - message: Initial Infected can now see zombified entities. + type: Add + id: 6192 + time: '2024-03-18T21:57:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25934 +- author: nikthechampiongr changes: - - message: Guns which use battery as magazines now display ammo. Like Svalinn pistol. + - message: You can now use the SCRAM! implant while cuffed. type: Fix - id: 6144 - time: '2024-03-13T11:13:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26009 -- author: icekot8 + - message: The freedom implant can no longer be used while in crit, or dead. + type: Fix + id: 6193 + time: '2024-03-18T22:35:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25978 +- author: SlamBamActionman changes: - - message: Foxes are now neutral and deal 8 piercing damage - type: Tweak - id: 6145 - time: '2024-03-13T15:02:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25992 -- author: Mangohydra + - message: Recyclers no longer delete items stored inside of recycled entities. + type: Fix + id: 6194 + time: '2024-03-19T02:36:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26045 +- author: Vermidia changes: - - message: The lawyer now spawns with their own lawyer stamp for stamping very important - documents. - type: Add - id: 6146 - time: '2024-03-13T15:05:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26012 -- author: Errant + - message: Made the Artifact Reports page up to date with current Xenoarchaeology + type: Tweak + id: 6195 + time: '2024-03-19T03:22:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26252 +- author: keronshb changes: - - message: Clothes with alternate sprites for vox once again show the alternate - sprites, instead of the defaults. + - message: Fixed a bug where stores were enabling refunds after a purchase type: Fix - id: 6147 - time: '2024-03-13T15:06:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25989 -- author: Gyrandola - changes: - - message: Fireaxe and Shotgun cabinets can now be destroyed. - type: Add - id: 6148 - time: '2024-03-13T15:09:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25962 -- author: lzk228 + id: 6196 + time: '2024-03-19T03:48:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26251 +- author: Errant changes: - - message: Surgery tools can be placed in medical belt. + - message: Thrown objects can no longer slip while they are still in flight. type: Tweak - - message: Lantern can be placed in utility belt. + id: 6197 + time: '2024-03-20T11:57:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24494 +- author: Killerqu00 + changes: + - message: Airlock wires are now different between departments. type: Tweak - - message: Hand labeler can be placed in utility and botanical belt + id: 6198 + time: '2024-03-20T16:07:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26247 +- author: Tayrtahn + changes: + - message: Pizza is no longer considered a fruit. type: Tweak - id: 6149 - time: '2024-03-13T18:55:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26085 -- author: wafehling + id: 6199 + time: '2024-03-20T19:03:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26293 +- author: jamessimo changes: - - message: The trading outpost now has dedicated buy-only and sell-only pallets. - No more accidentally selling orders you just bought. Cargonians rejoice! + - message: Ratkings and Rat servants eyes now glow in the dark type: Tweak - id: 6150 - time: '2024-03-13T23:26:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25955 -- author: maylokana + id: 6200 + time: '2024-03-21T13:16:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26300 +- author: nikthechampiongr changes: - - message: Entities can no longer drink from closed containers + - message: Scram! implant no longer allows for someone to keep pulling you when + it teleports you. type: Fix - id: 6151 - time: '2024-03-14T04:10:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26103 -- author: Dutch-VanDerLinde + id: 6201 + time: '2024-03-21T17:42:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26309 +- author: Plykiya changes: - - message: Gunpowder can now be made by chemists with 6 parts potassium, 2 parts - sulfur and charcoal. - type: Add - - message: Pipebombs may now be crafted with a pipe, gunpowder and LV cable. + - message: Door remote UI now shows the mode it is in. type: Add - - message: IEDs have been reworked, they are now called "fire bombs" and generate - a weak explosion that ignites nearby objects. - type: Tweak - id: 6152 - time: '2024-03-14T04:27:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25705 -- author: PJB3005 + id: 6202 + time: '2024-03-22T00:19:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26162 +- author: metalgearsloth changes: - - message: You must now wait 30 seconds before attempting to reconnect to a full - server. + - message: Fix some shuttle console stuff surrounding the Map screen. + type: Fix + id: 6203 + time: '2024-03-22T01:57:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26305 +- author: nikthechampiongr + changes: + - message: You can now move again if you stop being pulled while in cuffs. + type: Fix + id: 6204 + time: '2024-03-22T01:59:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26312 +- author: lzk228 + changes: + - message: Snoring is now a trait in character preference menu. type: Tweak - id: 6153 - time: '2024-03-14T08:00:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/20972 -- author: Crotalus + id: 6205 + time: '2024-03-22T07:00:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26322 +- author: liltenhead changes: - - message: Sort agents by success rate in end game summary + - message: reduced the odds of budget insulated gloves being insulated and increased + the damage multipliers on bad gloves. type: Tweak - id: 6154 - time: '2024-03-14T15:52:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26058 -- author: nikthechampiongr + id: 6206 + time: '2024-03-22T08:20:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26318 +- author: BlitzTheSquishy changes: - - message: The radio jammer is now able to jam the signal of suit sensors. + - message: Irish Coffee recipe adjusted to be more logical type: Tweak - id: 6155 - time: '2024-03-14T15:55:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26046 -- author: deltanedas + id: 6207 + time: '2024-03-22T08:23:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26327 +- author: SlamBamActionman changes: - - message: Holocarp and Magicarp plushies can now be found in maintenance. - type: Add - id: 6156 - time: '2024-03-15T02:58:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26081 -- author: TheShuEd + - message: Space glue/lube tubes can now be used through the right-click menu. + type: Tweak + id: 6208 + time: '2024-03-22T09:37:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26002 +- author: RenQ changes: - - message: Added random colored jumpsuits to the mixed wardrobes. Each costume is - randomly generated from parts painted in random colors, which gives a huge number - of combinations of the appearance of such costumes. - type: Add - id: 6157 - time: '2024-03-15T07:37:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25888 -- author: Nopey + - message: brought back the classic long bedhead as an alternative to the current + one. + type: Add + id: 6209 + time: '2024-03-22T17:35:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26336 +- author: metalgearsloth changes: - - message: Dead players can no longer spin on a bar stool. + - message: Fix NPCs getting stuck on railings. type: Fix - id: 6158 - time: '2024-03-15T10:03:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24308 -- author: Nairodian + id: 6210 + time: '2024-03-23T01:42:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26351 +- author: Ubaser changes: - - message: Added a new red neck gaiter to the AutoDrobe. + - message: You can now purchase a set of 4 throwing knives in the uplink as a bundle + for 12 TC. type: Add - id: 6159 - time: '2024-03-15T10:11:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25891 -- author: Tayrtahn + id: 6211 + time: '2024-03-23T04:13:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26026 +- author: ElectroJr changes: - - message: Reflected tranquilizer rounds no longer inject the character who reflected - them. + - message: Fixed a bug where partially airtight entities (e.g., thin windows or + doors) could let air leak out into space. type: Fix - id: 6160 - time: '2024-03-15T13:57:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26141 -- author: lzk228 + id: 6212 + time: '2024-03-23T16:34:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22521 +- author: Killerqu00 changes: - - message: Refill light replacer from box popup now shows properly. + - message: Cable Coils are now small in size, taking only 1x2 space in containers. + type: Tweak + id: 6213 + time: '2024-03-23T17:30:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26361 +- author: Tayrtahn + changes: + - message: Clumsy characters can no longer avoid bonking their heads by using the + Climb verb. type: Fix - id: 6161 - time: '2024-03-15T15:23:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26136 -- author: FairlySadPanda + - message: Clumsy characters are less likely to bonk their heads when trying to + climb. + type: Tweak + id: 6214 + time: '2024-03-23T19:29:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24977 +- author: nikthechampiongr changes: - - message: Food and drink stocks in vending machines has been reduced to encourage - people to use the kitchen and bar. + - message: Door remotes can now only control doors specific to their type and do + not use the access of their user. type: Tweak - id: 6162 - time: '2024-03-15T23:28:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25999 -- author: Plykiya + id: 6215 + time: '2024-03-24T00:48:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26371 +- author: DrSmugleaf changes: - - message: Ion storms now have a chance of happening from the start of shift. + - message: Empty marking categories are now hidden in the markings picker. type: Tweak - id: 6163 - time: '2024-03-16T03:47:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26165 -- author: Krunk + id: 6216 + time: '2024-03-24T04:01:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26377 +- author: Baptr0b0t changes: - - message: Zombies and animals can be stripped once again. - type: Fix - - message: Dead or critical mobs can no longer be stripped instantly. + - message: Fix access of command door remote. The captain must control his station. type: Fix - id: 6164 - time: '2024-03-16T03:50:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26166 -- author: metalgearsloth + id: 6217 + time: '2024-03-24T05:19:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26378 +- author: ElectroJr changes: - - message: Fix store refunds. + - message: Fixed the cargo & emergency shuttle not being airtight. type: Fix - id: 6165 - time: '2024-03-16T14:06:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26173 -- author: LordCarve + id: 6218 + time: '2024-03-24T16:17:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26382 +- author: DoutorWhite changes: - - message: Decayed anomalies no longer show as having gone supercritical in logs. + - message: The icon representing the critical status has been changed + type: Tweak + - message: Medical Hud death icon animation fixed type: Fix - id: 6166 - time: '2024-03-16T17:31:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26180 -- author: Velcroboy + id: 6219 + time: '2024-03-24T16:38:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26391 +- author: ChaseFlorom changes: - - message: Tweaked gas canisters to pass through cargo flaps. + - message: removed cannabis thief objective. + type: Remove + id: 6220 + time: '2024-03-24T22:02:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26412 +- author: SoulFN + changes: + - message: The borg tool module now has an industrial welding tool. type: Tweak - id: 6167 - time: '2024-03-17T00:55:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26193 -- author: metalgearsloth + id: 6221 + time: '2024-03-24T22:35:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26332 +- author: IProduceWidgets changes: - - message: Fix ID cards sometimes not loading properly. + - message: Ammo techfab now accepts ingot and cloth material types. type: Fix - id: 6168 - time: '2024-03-17T01:10:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26195 -- author: 21Melkuu + id: 6222 + time: '2024-03-25T00:43:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26413 +- author: Luminight changes: - - message: Add new explosion-proof backpack in aplink. - type: Add - id: 6169 - time: '2024-03-17T02:21:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26187 -- author: Ilya246 + - message: Wooden fence gate sprites are no longer swapped. + type: Fix + id: 6223 + time: '2024-03-25T00:55:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26409 +- author: Callmore changes: - - message: Syndicate decoy bombs may now be purchased from the uplink. - type: Add - - message: Syndicate bomb description no longer lies about their minimum detonation - time. + - message: Holoprojectors no longer come with a cell when made at a lathe. + type: Tweak + id: 6224 + time: '2024-03-25T00:55:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26405 +- author: IProduceWidgets + changes: + - message: The captain can now return his laser to the glass display box. type: Fix - id: 6170 - time: '2024-03-17T02:31:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26034 -- author: wafehling + id: 6225 + time: '2024-03-25T00:58:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26398 +- author: IProduceWidgets changes: - - message: Added 18 new bounties to cargo bounty system. + - message: More varieties of astro-grass are now available. type: Add - id: 6171 - time: '2024-03-17T17:06:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26160 -- author: Ko4erga + - message: Astro-grass must now be cut instead of pried. + type: Tweak + id: 6226 + time: '2024-03-25T01:14:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26381 +- author: Tayrtahn changes: - - message: Added craftable high and small wooden fences, bench. New stairs. + - message: Parrots now sound more like parrots when they talk. RAWWK! type: Add - id: 6172 - time: '2024-03-17T21:18:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26182 -- author: potato1234_x + id: 6227 + time: '2024-03-25T01:26:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26340 +- author: DenisShvalov changes: - - message: Changed the puddle sprites so the smoothing is less jagged + - message: Added Cleaner Grenades that will help janitors in their work + type: Add + id: 6228 + time: '2024-03-25T06:46:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25444 +- author: Weax + changes: + - message: Harmonicas can now be equipped (and played) in the neck slot. type: Tweak - id: 6173 - time: '2024-03-17T23:15:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26171 -- author: FungiFellow + id: 6229 + time: '2024-03-25T07:05:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26261 +- author: nikthechampiongr changes: - - message: Changed Monkey Reinf Price to 6TC + - message: Mailing units no longer spontaneously turn into disposal units when flushed. + type: Fix + id: 6230 + time: '2024-03-25T13:20:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26383 +- author: Simyon + changes: + - message: All implants are now unable to be implanted more than once. type: Tweak - id: 6174 - time: '2024-03-18T01:25:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26214 -- author: Golinth + id: 6231 + time: '2024-03-26T00:16:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26250 +- author: EmoGarbage404 changes: - - message: Criminal record icons now show up below job icons + - message: Ninjas no longer wipe all technologies when using their gloves on a research + server. type: Tweak - id: 6175 - time: '2024-03-18T01:37:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26203 -- author: PJB3005 + id: 6232 + time: '2024-03-26T00:52:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26421 +- author: Dutch-VanDerLinde + changes: + - message: The chest rig is now available for purchase in the syndicate uplink. + type: Add + id: 6233 + time: '2024-03-26T04:05:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26427 +- author: ElectroJr + changes: + - message: Fixed an atmos bug, which was (probably) causing atmospherics on the + station to behave incorrectly. + type: Fix + id: 6234 + time: '2024-03-26T04:44:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26441 +- author: nikthechampiongr changes: - - message: Fixed pressure damage calculations to what they were always supposed - to be. This means pressure damage now starts happening at more extreme values - (20 kPa for low pressure damage instead of 50 kPa) and high pressure damage - is scaled different. It also fixed the HUD alerts so that the "warning" alerts - show up before you actually start taking damage. + - message: Handcuffs will no longer try to uncuff themselves when they stop being + dragged. type: Fix - - message: Air alarms now start complaining about low pressure much earlier, when - the pressure drops so much that you can't breathe oxygen tank. + id: 6235 + time: '2024-03-26T19:15:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26434 +- author: Nairodian + changes: + - message: Added disablers to every security officer locker. + type: Add + - message: Any way to obtain rubber bullets has been removed. + type: Remove + id: 6236 + time: '2024-03-27T15:11:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26470 +- author: Ghagliiarghii + changes: + - message: Removed Donk Pocket Bounty from Cargo + type: Remove + - message: Removed Box of Hugs Bounty from Cargo + type: Remove + id: 6237 + time: '2024-03-27T21:50:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26481 +- author: Vermidia + changes: + - message: Artifact node IDs are now only 3-digits long type: Tweak - id: 6176 - time: '2024-03-18T05:16:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26217 -- author: HappyRoach + id: 6238 + time: '2024-03-27T23:26:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26482 +- author: Jake Huxell changes: - - message: The correct magazines now appear in the WT550 safe. + - message: Fixed late join menu scrolling to the top whenever a new player joins + the round. type: Fix - id: 6177 - time: '2024-03-18T06:10:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26208 -- author: vanx + id: 6239 + time: '2024-03-28T01:43:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26483 +- author: blueDev2 changes: - - message: You can now wear most guns in the suit slot, and see them on yourself! + - message: Generalized bounties to allow selling them off-station type: Tweak - id: 6178 - time: '2024-03-18T06:16:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26152 -- author: Dutch-VanDerLinde + id: 6240 + time: '2024-03-28T04:06:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26469 +- author: Simyon changes: - - message: Romerol now properly works on the dead. + - message: The space dragon can now open doors by bumping into them! type: Tweak - id: 6179 - time: '2024-03-18T06:25:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26222 -- author: ElectroJr + id: 6241 + time: '2024-03-28T05:41:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26490 +- author: EmoGarbage404 changes: - - message: Added an option to try and ignore some errors if a replay fails to load, - type: Add - id: 6180 - time: '2024-03-18T07:31:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26212 + - message: Various announcements now announce location on the map (near Medical, + etc.) instead of simply displaying coordinates. + type: Tweak + id: 6242 + time: '2024-03-28T05:53:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26437 - author: Tayrtahn changes: - - message: Cyborg recharging stations are able to charge cyborgs again. - type: Fix - id: 6181 - time: '2024-03-18T13:37:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26230 -- author: DoutorWhite + - message: Arcade machines now advertise and make noise to bring in players. + type: Add + - message: Space Villain arcade machines have a new screen animation. + type: Tweak + id: 6243 + time: '2024-03-28T06:28:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24200 +- author: EmoGarbage404 changes: - - message: Introduce new health status icons. + - message: The revenant essence alert now displays the exact amount of essence. type: Add - - message: Enhance the Medical HUD to display the health status of players and mobs - using the newly added icons. + id: 6244 + time: '2024-03-28T06:32:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25452 +- author: deltanedas + changes: + - message: Voicemasks can now mimic speech verbs, like flutters or growls. type: Tweak - id: 6182 - time: '2024-03-18T13:56:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26027 -- author: Plykiya + id: 6245 + time: '2024-03-28T06:36:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25768 +- author: EmoGarbage404 changes: - - message: Lone operatives now start with 60TC instead of 40TC. + - message: Electrocution damage is no longer based on the power supplied and is + instead based on the wire voltage (LV, MV, or HV). type: Tweak - id: 6183 - time: '2024-03-18T14:15:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26130 -- author: PJB3005 + id: 6246 + time: '2024-03-28T20:44:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26455 +- author: Jake Huxell changes: - - message: Fixed hardsuits in space causing high pressure damage + - message: Late join menu correctly respects client role restrictions. type: Fix - id: 6184 - time: '2024-03-18T16:46:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26236 -- author: potato1234x + id: 6247 + time: '2024-03-29T02:30:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26498 +- author: Jake Huxell changes: - - message: Added crafting recipes for wall lockers and secure lockers - type: Add - - message: Fixed secure lockers and wall lockers not being deconstructible + - message: Reduced game build warning count. type: Fix - id: 6185 - time: '2024-03-18T20:53:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24942 -- author: brainfood1183 - changes: - - message: Added Spray Paints. - type: Add - id: 6186 - time: '2024-03-18T21:29:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23003 -- author: PJB3005 + id: 6248 + time: '2024-03-29T05:28:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26518 +- author: wafehling changes: - - message: Bans are now shown in the "adminremarks" command. + - message: Added a chemistry recipe to make crystal shards. type: Add - id: 6187 - time: '2024-03-18T21:31:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26240 -- author: Terraspark4941 - changes: - - message: The TEG page in the guidebook has been updated with proper information! - type: Tweak - id: 6188 - time: '2024-03-18T21:33:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26170 -- author: Plykiya + id: 6249 + time: '2024-03-29T06:13:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26269 +- author: Crotalus changes: - - message: You can now craft ducky slippers. + - message: Reagent grinder auto-modes type: Add - id: 6189 - time: '2024-03-18T21:34:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26138 -- author: Boaz1111 + id: 6250 + time: '2024-03-29T06:30:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26290 +- author: deltanedas changes: - - message: Lone operatives now require a minimum of 20 players to spawn + - message: Multiple bombs exploding at once on a tile now combine to have a larger + explosion rather than stacking the same small explosion. type: Tweak - id: 6190 - time: '2024-03-18T21:36:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26244 -- author: shampunj + id: 6251 + time: '2024-03-29T23:46:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25664 +- author: Mephisto72 changes: - - message: Zombies now passively heal 1 heat/shock damage every 50 seconds + - message: Ion Storms are now more likely to alter a Borg's laws. type: Tweak - id: 6191 - time: '2024-03-18T21:47:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25925 -- author: Killerqu00 - changes: - - message: Initial Infected now can see each other. - type: Add - - message: Initial Infected can now see zombified entities. - type: Add - id: 6192 - time: '2024-03-18T21:57:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25934 -- author: nikthechampiongr + id: 6252 + time: '2024-03-30T00:01:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26539 +- author: arimah changes: - - message: You can now use the SCRAM! implant while cuffed. - type: Fix - - message: The freedom implant can no longer be used while in crit, or dead. + - message: Holoparasites, holoclowns and other guardians correctly transfer damage + to their hosts again. type: Fix - id: 6193 - time: '2024-03-18T22:35:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25978 -- author: SlamBamActionman + id: 6253 + time: '2024-03-30T01:25:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26541 +- author: Boaz1111 changes: - - message: Recyclers no longer delete items stored inside of recycled entities. - type: Fix - id: 6194 - time: '2024-03-19T02:36:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26045 -- author: Vermidia + - message: Added an industrial reagent grinder to the basic hydroponics research. + It grinds things into reagents like a recycler. + type: Add + id: 6254 + time: '2024-03-30T02:46:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25020 +- author: SonicHDC changes: - - message: Made the Artifact Reports page up to date with current Xenoarchaeology - type: Tweak - id: 6195 - time: '2024-03-19T03:22:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26252 -- author: keronshb + - message: Added unzipping for lab coats! + type: Add + id: 6255 + time: '2024-03-30T03:31:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26494 +- author: Zealith-Gamer changes: - - message: Fixed a bug where stores were enabling refunds after a purchase + - message: Items being pulled no longer spin when being thrown. type: Fix - id: 6196 - time: '2024-03-19T03:48:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26251 -- author: Errant + id: 6256 + time: '2024-03-30T03:35:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26504 +- author: Plykiya changes: - - message: Thrown objects can no longer slip while they are still in flight. + - message: Hyposprays can now be toggled to draw from solution containers like jugs + and beakers. type: Tweak - id: 6197 - time: '2024-03-20T11:57:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24494 -- author: Killerqu00 + id: 6257 + time: '2024-03-30T03:59:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25544 +- author: EdenTheLiznerd changes: - - message: Airlock wires are now different between departments. + - message: Amanita toxin now kills you slightly slower, providing you time to seek + charcoal before it's too late type: Tweak - id: 6198 - time: '2024-03-20T16:07:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26247 -- author: Tayrtahn + id: 6258 + time: '2024-03-30T04:00:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25830 +- author: liltenhead changes: - - message: Pizza is no longer considered a fruit. + - message: Changed the syndicate hardbomb to have less of a chance to completely + destroy tiles. type: Tweak - id: 6199 - time: '2024-03-20T19:03:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26293 -- author: jamessimo + id: 6259 + time: '2024-03-30T04:36:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26548 +- author: takemysoult changes: - - message: Ratkings and Rat servants eyes now glow in the dark + - message: stimulants removes chloral hydrate from body type: Tweak - id: 6200 - time: '2024-03-21T13:16:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26300 -- author: nikthechampiongr - changes: - - message: Scram! implant no longer allows for someone to keep pulling you when - it teleports you. - type: Fix - id: 6201 - time: '2024-03-21T17:42:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26309 -- author: Plykiya - changes: - - message: Door remote UI now shows the mode it is in. - type: Add - id: 6202 - time: '2024-03-22T00:19:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26162 -- author: metalgearsloth - changes: - - message: Fix some shuttle console stuff surrounding the Map screen. - type: Fix - id: 6203 - time: '2024-03-22T01:57:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26305 -- author: nikthechampiongr + id: 6260 + time: '2024-03-30T06:52:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25886 +- author: Flareguy changes: - - message: You can now move again if you stop being pulled while in cuffs. - type: Fix - id: 6204 - time: '2024-03-22T01:59:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26312 + - message: Removed SCAF armor. + type: Remove + id: 6261 + time: '2024-03-31T02:01:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26566 - author: lzk228 changes: - - message: Snoring is now a trait in character preference menu. + - message: Syndicate duffelbag storage increased from 8x5 to 9x5. type: Tweak - id: 6205 - time: '2024-03-22T07:00:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26322 -- author: liltenhead + id: 6262 + time: '2024-03-31T02:21:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26565 +- author: Velcroboy changes: - - message: reduced the odds of budget insulated gloves being insulated and increased - the damage multipliers on bad gloves. + - message: Changed plastic flaps to be completely constructable/deconstructable type: Tweak - id: 6206 - time: '2024-03-22T08:20:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26318 -- author: BlitzTheSquishy + id: 6263 + time: '2024-03-31T02:24:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26341 +- author: Flareguy changes: - - message: Irish Coffee recipe adjusted to be more logical + - message: Security glasses have been moved from research to roundstart gear. All + officers now start with them instead of sunglasses by default. type: Tweak - id: 6207 - time: '2024-03-22T08:23:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26327 -- author: SlamBamActionman + - message: You can now craft security glasses. + type: Add + id: 6264 + time: '2024-03-31T03:00:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26487 +- author: brainfood1183 changes: - - message: Space glue/lube tubes can now be used through the right-click menu. + - message: Toilets can now be connected to the disposal system. + type: Add + id: 6265 + time: '2024-03-31T03:21:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22133 +- author: DrMelon + changes: + - message: Syndicate Uplinks now have a searchbar to help those dirty, rotten antagonists + find appropriate equipment more easily! type: Tweak - id: 6208 - time: '2024-03-22T09:37:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26002 -- author: RenQ + id: 6266 + time: '2024-03-31T04:09:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24287 +- author: chromiumboy changes: - - message: brought back the classic long bedhead as an alternative to the current - one. + - message: Additional construction options have been added to the Rapid Construction + Device (RCD), along with a radial style UI for fast navigation type: Add - id: 6209 - time: '2024-03-22T17:35:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26336 -- author: metalgearsloth - changes: - - message: Fix NPCs getting stuck on railings. - type: Fix - id: 6210 - time: '2024-03-23T01:42:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26351 -- author: Ubaser + - message: The number of charges and the length of time required to build a structure + with the RCD now vary depending on the complexity of the constructed fixture + type: Tweak + id: 6267 + time: '2024-03-31T04:29:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22799 +- author: UBlueberry changes: - - message: You can now purchase a set of 4 throwing knives in the uplink as a bundle - for 12 TC. + - message: Nanotransen is now recruitin' personnel that speak with a Southern drawl. type: Add - id: 6211 - time: '2024-03-23T04:13:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26026 -- author: ElectroJr + id: 6268 + time: '2024-03-31T04:39:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26543 +- author: Tayrtahn changes: - - message: Fixed a bug where partially airtight entities (e.g., thin windows or - doors) could let air leak out into space. + - message: You can no longer drink out of or put liquids into buckets worn on your + head. type: Fix - id: 6212 - time: '2024-03-23T16:34:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22521 -- author: Killerqu00 + id: 6269 + time: '2024-03-31T04:40:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24412 +- author: DrTeaspoon changes: - - message: Cable Coils are now small in size, taking only 1x2 space in containers. + - message: Hypopen no longer shows chemical contents when examined, when not held + by the examinee. + type: Fix + id: 6270 + time: '2024-03-31T04:59:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26453 +- author: lzk228 + changes: + - message: Hairflower was removed. + type: Remove + - message: Now you can wear poppy (and other flowers) on your head instead of crafting + hairflower with it. type: Tweak - id: 6213 - time: '2024-03-23T17:30:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26361 -- author: Tayrtahn + id: 6271 + time: '2024-03-31T05:33:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25475 +- author: EmoGarbage404 changes: - - message: Clumsy characters can no longer avoid bonking their heads by using the - Climb verb. - type: Fix - - message: Clumsy characters are less likely to bonk their heads when trying to - climb. + - message: Borgs, Emitters, and APEs can no longer have their panels opened while + locked. APEs and Emitters additionally cannot be unanchored either. + type: Add + id: 6272 + time: '2024-03-31T06:34:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26600 +- author: lzk228 + changes: + - message: Flower crown and wreath were combined. Now you can wear wreath both on + head and on neck. type: Tweak - id: 6214 - time: '2024-03-23T19:29:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24977 -- author: nikthechampiongr + id: 6273 + time: '2024-03-31T08:52:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26605 +- author: Ubaser changes: - - message: Door remotes can now only control doors specific to their type and do - not use the access of their user. + - message: Throwing knives now additionally do armour piercing damage. type: Tweak - id: 6215 - time: '2024-03-24T00:48:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26371 -- author: DrSmugleaf + id: 6274 + time: '2024-03-31T11:48:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26380 +- author: graevy changes: - - message: Empty marking categories are now hidden in the markings picker. + - message: clicking the brig timer button will now cancel its countdown type: Tweak - id: 6216 - time: '2024-03-24T04:01:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26377 -- author: Baptr0b0t + id: 6275 + time: '2024-03-31T20:44:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26557 +- author: lzk228 changes: - - message: Fix access of command door remote. The captain must control his station. - type: Fix - id: 6217 - time: '2024-03-24T05:19:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26378 -- author: ElectroJr + - message: Briefcases was added to CuraDrobe and LawDrobe. + type: Tweak + id: 6276 + time: '2024-03-31T20:52:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26527 +- author: RiceMar + changes: + - message: Added milk cartons to the BoozeOMat vendor. Got milk? + type: Add + id: 6277 + time: '2024-04-01T00:07:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26635 +- author: nikthechampiongr changes: - - message: Fixed the cargo & emergency shuttle not being airtight. + - message: Radio jammers now actually block suit sensors. type: Fix - id: 6218 - time: '2024-03-24T16:17:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26382 -- author: DoutorWhite + id: 6278 + time: '2024-04-01T02:13:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26632 +- author: Flareguy changes: - - message: The icon representing the critical status has been changed + - message: All wheeled objects now have lower friction. Portable items, like fuel + canisters & portable scrubbers, should now be easier to carry around. type: Tweak - - message: Medical Hud death icon animation fixed - type: Fix - id: 6219 - time: '2024-03-24T16:38:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26391 -- author: ChaseFlorom + - message: High-capacity reagent tanks are now much heavier. + type: Tweak + id: 6279 + time: '2024-04-01T03:23:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26601 +- author: Tayrtahn changes: - - message: removed cannabis thief objective. - type: Remove - id: 6220 - time: '2024-03-24T22:02:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26412 + - message: spears, darts, and hypodarts can inject targets again. + type: Fix + - message: arrows can no longer inject targets they don't actually hit. + type: Fix + id: 6280 + time: '2024-04-01T03:39:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26268 - author: SoulFN changes: - - message: The borg tool module now has an industrial welding tool. + - message: Changed textures of the assault borg modules type: Tweak - id: 6221 - time: '2024-03-24T22:35:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26332 -- author: IProduceWidgets + id: 6281 + time: '2024-04-01T04:21:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26502 +- author: Keer-Sar changes: - - message: Ammo techfab now accepts ingot and cloth material types. - type: Fix - id: 6222 - time: '2024-03-25T00:43:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26413 -- author: Luminight + - message: Cyborgs now have audio for some emotes. + type: Add + id: 6282 + time: '2024-04-01T04:35:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26594 +- author: SlamBamActionman changes: - - message: Wooden fence gate sprites are no longer swapped. - type: Fix - id: 6223 - time: '2024-03-25T00:55:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26409 -- author: Callmore + - message: Added Coordinates Disks to the Salvage expeditions console, which are + now a requirement for expedition FTL. + type: Add + id: 6283 + time: '2024-04-01T04:50:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/23240 +- author: kseandi changes: - - message: Holoprojectors no longer come with a cell when made at a lathe. - type: Tweak - id: 6224 - time: '2024-03-25T00:55:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26405 -- author: IProduceWidgets + - message: NT has declassified the documentation for door electronics, now anyone + can configure its access using network configurator or multitool. + type: Add + id: 6284 + time: '2024-04-01T06:06:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/17778 +- author: musicmanvr changes: - - message: The captain can now return his laser to the glass display box. - type: Fix - id: 6225 - time: '2024-03-25T00:58:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26398 -- author: IProduceWidgets + - message: Added Sol Dry, 8 new cocktails and coconut water. + type: Add + id: 6285 + time: '2024-04-01T06:41:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25367 +- author: f0x-n3rd changes: - - message: More varieties of astro-grass are now available. + - message: Added pages for each categories from the chemical page in the guidebook, + no more infinite scrolling when looking up certain chemicals. type: Add - - message: Astro-grass must now be cut instead of pried. - type: Tweak - id: 6226 - time: '2024-03-25T01:14:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26381 -- author: Tayrtahn + id: 6286 + time: '2024-04-01T07:20:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25831 +- author: TheShuEd changes: - - message: Parrots now sound more like parrots when they talk. RAWWK! + - message: Added new transformation particles types for APE and CHIMP type: Add - id: 6227 - time: '2024-03-25T01:26:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26340 -- author: DenisShvalov + - message: Added new anomaly behaviour mechanic. Different behaviors can change + the gameplay of an anomaly. Players can get random behaviors by bombarding the + anomaly with new particles + type: Add + id: 6287 + time: '2024-04-01T08:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24683 +- author: Sk1tch changes: - - message: Added Cleaner Grenades that will help janitors in their work + - message: Added chat window opacity slider to options. type: Add - id: 6228 - time: '2024-03-25T06:46:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25444 -- author: Weax + id: 6288 + time: '2024-04-01T20:48:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24990 +- author: TheShuEd changes: - - message: Harmonicas can now be equipped (and played) in the neck slot. + - message: added procedurally generating books to library. + type: Add + - message: full books resprite + type: Add + id: 6289 + time: '2024-04-01T21:00:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25840 +- author: osjarw + changes: + - message: Ambuzol plus pills now have different sprites from ambuzol pills. Now + CBURN agents and Nukies who bought the syndicate zombie bundle might realize + that they also have some ambuzol plus. type: Tweak - id: 6229 - time: '2024-03-25T07:05:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26261 -- author: nikthechampiongr + id: 6290 + time: '2024-04-02T00:50:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26651 +- author: osjarw changes: - - message: Mailing units no longer spontaneously turn into disposal units when flushed. + - message: Air injectors finally have working indicator lights while enabled. type: Fix - id: 6230 - time: '2024-03-25T13:20:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26383 + id: 6291 + time: '2024-04-02T05:17:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26654 - author: Simyon changes: - - message: All implants are now unable to be implanted more than once. + - message: The hands of cyborgs are now explosion proof. Your beakers wont ever + break again! + type: Fix + id: 6292 + time: '2024-04-02T05:18:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26515 +- author: lzk228 + changes: + - message: Typing indicator now can be shaded by shadows. type: Tweak - id: 6231 - time: '2024-03-26T00:16:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26250 + id: 6293 + time: '2024-04-03T02:12:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26678 - author: EmoGarbage404 changes: - - message: Ninjas no longer wipe all technologies when using their gloves on a research - server. + - message: Increased time between pulses for various anomalies. type: Tweak - id: 6232 - time: '2024-03-26T00:52:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26421 -- author: Dutch-VanDerLinde + id: 6294 + time: '2024-04-03T03:15:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26677 +- author: Plykiya changes: - - message: The chest rig is now available for purchase in the syndicate uplink. - type: Add - id: 6233 - time: '2024-03-26T04:05:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26427 -- author: ElectroJr + - message: Dropped items are no longer rotated to world north. + type: Fix + id: 6295 + time: '2024-04-03T05:31:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26662 +- author: deltanedas changes: - - message: Fixed an atmos bug, which was (probably) causing atmospherics on the - station to behave incorrectly. + - message: Disabled scooping foam due to a reagent duplication bug. type: Fix - id: 6234 - time: '2024-03-26T04:44:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26441 -- author: nikthechampiongr + id: 6296 + time: '2024-04-03T13:41:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26686 +- author: Aserovich changes: - - message: Handcuffs will no longer try to uncuff themselves when they stop being - dragged. + - message: New lobby art! + type: Add + id: 6297 + time: '2024-04-04T05:28:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26505 +- author: Beck Thompson + changes: + - message: Items thrown at disposals now have to be insertable to display the miss + message. type: Fix - id: 6235 - time: '2024-03-26T19:15:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26434 -- author: Nairodian + id: 6298 + time: '2024-04-04T06:25:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26716 +- author: Tayrtahn changes: - - message: Added disablers to every security officer locker. + - message: Some devices may have broken wiring at the start of each round. type: Add - - message: Any way to obtain rubber bullets has been removed. - type: Remove - id: 6236 - time: '2024-03-27T15:11:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26470 -- author: Ghagliiarghii + id: 6299 + time: '2024-04-04T06:28:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26695 +- author: lzk228 changes: - - message: Removed Donk Pocket Bounty from Cargo - type: Remove - - message: Removed Box of Hugs Bounty from Cargo - type: Remove - id: 6237 - time: '2024-03-27T21:50:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26481 -- author: Vermidia + - message: Turning off thrusters and gyroscopes now stop consume power. + type: Fix + id: 6300 + time: '2024-04-04T06:28:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26690 +- author: Aexxie changes: - - message: Artifact node IDs are now only 3-digits long - type: Tweak - id: 6238 - time: '2024-03-27T23:26:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26482 -- author: Jake Huxell + - message: Added the option to disable your OOC Patron name color. + type: Add + id: 6301 + time: '2024-04-04T07:20:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26653 +- author: DinoWattz changes: - - message: Fixed late join menu scrolling to the top whenever a new player joins - the round. + - message: Fixed pocket slots being able to hide character snout markings. type: Fix - id: 6239 - time: '2024-03-28T01:43:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26483 -- author: blueDev2 + id: 6302 + time: '2024-04-04T08:35:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26708 +- author: VasilisThePikachu changes: - - message: Generalized bounties to allow selling them off-station - type: Tweak - id: 6240 - time: '2024-03-28T04:06:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26469 -- author: Simyon + - message: Mop buckets and Janitorial Trolleys will not spill their contents as + soon as they are pushed. + type: Fix + - message: Mop buckets are no longer solid. So you can now walk through them. + type: Fix + id: 6303 + time: '2024-04-04T08:39:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26706 +- author: ZeroDayDaemon changes: - - message: The space dragon can now open doors by bumping into them! + - message: Lowered the number of ducks in the duck crate and reduced the price of + it. type: Tweak - id: 6241 - time: '2024-03-28T05:41:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26490 -- author: EmoGarbage404 + id: 6304 + time: '2024-04-04T19:30:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26729 +- author: PrPleGoo changes: - - message: Various announcements now announce location on the map (near Medical, - etc.) instead of simply displaying coordinates. + - message: The medical HUD's brightness now scales with lighting again. type: Tweak - id: 6242 - time: '2024-03-28T05:53:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26437 -- author: Tayrtahn + - message: Most HUD icon's brightness now scale with lighting. + type: Tweak + id: 6305 + time: '2024-04-04T23:05:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26726 +- author: Daemon changes: - - message: Arcade machines now advertise and make noise to bring in players. - type: Add - - message: Space Villain arcade machines have a new screen animation. + - message: Practice projectiles have been given standardized minimal damage. type: Tweak - id: 6243 - time: '2024-03-28T06:28:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24200 -- author: EmoGarbage404 + - message: The practice laser gun now works with shooting targets. + type: Tweak + id: 6306 + time: '2024-04-05T03:15:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26731 +- author: Daemon changes: - - message: The revenant essence alert now displays the exact amount of essence. - type: Add - id: 6244 - time: '2024-03-28T06:32:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25452 -- author: deltanedas + - message: Shooting targets can now have their popup type changed with a left click + to show total damage, damage of a single hit, both, or just a notice that it + was hit. + type: Tweak + id: 6307 + time: '2024-04-05T07:19:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26734 +- author: Vermidia changes: - - message: Voicemasks can now mimic speech verbs, like flutters or growls. + - message: Baseball bats now require a knife to craft type: Tweak - id: 6245 - time: '2024-03-28T06:36:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25768 -- author: EmoGarbage404 + id: 6308 + time: '2024-04-05T15:41:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26742 +- author: deltanedas changes: - - message: Electrocution damage is no longer based on the power supplied and is - instead based on the wire voltage (LV, MV, or HV). + - message: Making fultons now requires cloth and they are faster to make. type: Tweak - id: 6246 - time: '2024-03-28T20:44:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26455 -- author: Jake Huxell + id: 6309 + time: '2024-04-05T15:42:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26747 +- author: superjj18 changes: - - message: Late join menu correctly respects client role restrictions. + - message: Broadcasting works again! type: Fix - id: 6247 - time: '2024-03-29T02:30:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26498 -- author: Jake Huxell + id: 6310 + time: '2024-04-05T17:29:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26750 +- author: Golinth changes: - - message: Reduced game build warning count. + - message: Fixed mindshield icons being glow in the dark type: Fix - id: 6248 - time: '2024-03-29T05:28:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26518 -- author: wafehling + id: 6311 + time: '2024-04-05T20:35:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26754 +- author: Blackern5000 changes: - - message: Added a chemistry recipe to make crystal shards. + - message: Added sap type: Add - id: 6249 - time: '2024-03-29T06:13:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26269 -- author: Crotalus - changes: - - message: Reagent grinder auto-modes + - message: Added syrup, it can be made by boiling sap. type: Add - id: 6250 - time: '2024-03-29T06:30:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26290 -- author: deltanedas - changes: - - message: Multiple bombs exploding at once on a tile now combine to have a larger - explosion rather than stacking the same small explosion. - type: Tweak - id: 6251 - time: '2024-03-29T23:46:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25664 -- author: Mephisto72 - changes: - - message: Ion Storms are now more likely to alter a Borg's laws. + - message: Dionae now bleed sap instead of water type: Tweak - id: 6252 - time: '2024-03-30T00:01:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26539 -- author: arimah + id: 6312 + time: '2024-04-05T21:06:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25748 +- author: osjarw changes: - - message: Holoparasites, holoclowns and other guardians correctly transfer damage - to their hosts again. + - message: Thin firelocks are now constructable/deconstructable type: Fix - id: 6253 - time: '2024-03-30T01:25:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26541 -- author: Boaz1111 - changes: - - message: Added an industrial reagent grinder to the basic hydroponics research. - It grinds things into reagents like a recycler. - type: Add - id: 6254 - time: '2024-03-30T02:46:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25020 -- author: SonicHDC - changes: - - message: Added unzipping for lab coats! - type: Add - id: 6255 - time: '2024-03-30T03:31:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26494 -- author: Zealith-Gamer + id: 6313 + time: '2024-04-06T01:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26745 +- author: BITTERLYNX changes: - - message: Items being pulled no longer spin when being thrown. + - message: Rodents are more visually pleasing to burn type: Fix - id: 6256 - time: '2024-03-30T03:35:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26504 + - message: mothroach and hammy also more visually pleasing to burn + type: Fix + id: 6314 + time: '2024-04-06T04:41:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26758 - author: Plykiya changes: - - message: Hyposprays can now be toggled to draw from solution containers like jugs - and beakers. + - message: You can now carefully walk over glass shards and D4. type: Tweak - id: 6257 - time: '2024-03-30T03:59:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25544 -- author: EdenTheLiznerd + id: 6315 + time: '2024-04-06T04:49:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26763 +- author: PursuitInAshes changes: - - message: Amanita toxin now kills you slightly slower, providing you time to seek - charcoal before it's too late + - message: Sake Bottles can now be found in the booze-o-mat. type: Tweak - id: 6258 - time: '2024-03-30T04:00:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25830 -- author: liltenhead + id: 6316 + time: '2024-04-06T20:16:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26776 +- author: osjarw changes: - - message: Changed the syndicate hardbomb to have less of a chance to completely - destroy tiles. - type: Tweak - id: 6259 - time: '2024-03-30T04:36:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26548 -- author: takemysoult + - message: Removed broken anom behaviour, which causes APE shots to fly through + the anom. + type: Remove + id: 6317 + time: '2024-04-06T22:27:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26775 +- author: Vermidia changes: - - message: stimulants removes chloral hydrate from body - type: Tweak - id: 6260 - time: '2024-03-30T06:52:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25886 -- author: Flareguy + - message: Water coolers show how full/what they're full of again. + type: Fix + id: 6318 + time: '2024-04-06T23:58:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26784 +- author: Crotalus + changes: + - message: Show missing materials in lathe tooltip + type: Add + id: 6319 + time: '2024-04-08T03:16:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26795 +- author: chromiumboy changes: - - message: Removed SCAF armor. - type: Remove - id: 6261 - time: '2024-03-31T02:01:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26566 + - message: Fixed the RCD not being able to build on top of puddles + type: Fix + - message: RCD constructions can no longer be rotated while in progress + type: Tweak + - message: The RCD now reports construction mode changes to its user + type: Add + id: 6320 + time: '2024-04-08T03:17:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26792 - author: lzk228 changes: - - message: Syndicate duffelbag storage increased from 8x5 to 9x5. + - message: Bombsuit and jani bombsuit are similar now. type: Tweak - id: 6262 - time: '2024-03-31T02:21:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26565 -- author: Velcroboy + id: 6321 + time: '2024-04-08T15:05:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26806 +- author: lzk228 changes: - - message: Changed plastic flaps to be completely constructable/deconstructable + - message: Clothing restock crate was splitted to clothing and autodrobe restock + crates. type: Tweak - id: 6263 - time: '2024-03-31T02:24:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26341 -- author: Flareguy + - message: Clothing is cheaper. + type: Tweak + id: 6322 + time: '2024-04-08T15:10:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26805 +- author: Hanzdegloker changes: - - message: Security glasses have been moved from research to roundstart gear. All - officers now start with them instead of sunglasses by default. + - message: Spears can now be quipped to your suit slot and cost slightly more to + make. type: Tweak - - message: You can now craft security glasses. + id: 6323 + time: '2024-04-08T15:34:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26724 +- author: KittenColony + changes: + - message: Added 13 new gauze wraps for moth that fit their twig bodies type: Add - id: 6264 - time: '2024-03-31T03:00:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26487 -- author: brainfood1183 + - message: Gauze markings have been moved to the Overlay category, allowing gauze + to not take up marking points + type: Tweak + id: 6324 + time: '2024-04-09T08:04:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25481 +- author: Killerqu00 changes: - - message: Toilets can now be connected to the disposal system. + - message: Quartermasters can now skip a single bounty in the list once every 15 + minutes. type: Add - id: 6265 - time: '2024-03-31T03:21:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22133 -- author: DrMelon + id: 6325 + time: '2024-04-09T22:18:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26537 +- author: SkaldetSkaeg changes: - - message: Syndicate Uplinks now have a searchbar to help those dirty, rotten antagonists - find appropriate equipment more easily! + - message: The Flippo lighter is now quieter and has a delay on use. type: Tweak - id: 6266 - time: '2024-03-31T04:09:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24287 -- author: chromiumboy + id: 6326 + time: '2024-04-09T22:20:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26846 +- author: notquitehadouken changes: - - message: Additional construction options have been added to the Rapid Construction - Device (RCD), along with a radial style UI for fast navigation + - message: Gave botanists droppers for easier chemical moving. type: Add - - message: The number of charges and the length of time required to build a structure - with the RCD now vary depending on the complexity of the constructed fixture - type: Tweak - id: 6267 - time: '2024-03-31T04:29:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/22799 -- author: UBlueberry + id: 6327 + time: '2024-04-10T17:28:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26839 +- author: botanySupremist changes: - - message: Nanotransen is now recruitin' personnel that speak with a Southern drawl. + - message: Clipping harvestable plants now yields undamaged seeds. type: Add - id: 6268 - time: '2024-03-31T04:39:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26543 -- author: Tayrtahn + id: 6328 + time: '2024-04-10T17:51:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25541 +- author: deltanedas changes: - - message: You can no longer drink out of or put liquids into buckets worn on your - head. + - message: Fixed some doors having no access when they should. type: Fix - id: 6269 - time: '2024-03-31T04:40:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24412 -- author: DrTeaspoon + id: 6329 + time: '2024-04-10T20:06:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26858 +- author: Flareguy changes: - - message: Hypopen no longer shows chemical contents when examined, when not held - by the examinee. + - message: Added emergency nitrogen lockers. You can scarcely find them in public + areas, or scattered around in maintenance tunnels. + type: Add + id: 6330 + time: '2024-04-10T21:20:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26752 +- author: Jark255 + changes: + - message: Door electronics now require network configurators to change their access + settings, rather than doing so by hand. type: Fix - id: 6270 - time: '2024-03-31T04:59:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26453 -- author: lzk228 + id: 6331 + time: '2024-04-11T12:21:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26888 +- author: lunarcomets changes: - - message: Hairflower was removed. - type: Remove - - message: Now you can wear poppy (and other flowers) on your head instead of crafting - hairflower with it. + - message: Cryogenic sleep units now remove crew members from the manifest, and + announce when crew members go into cryogenic storage. type: Tweak - id: 6271 - time: '2024-03-31T05:33:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25475 -- author: EmoGarbage404 + id: 6332 + time: '2024-04-11T20:48:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26813 +- author: Vermidia changes: - - message: Borgs, Emitters, and APEs can no longer have their panels opened while - locked. APEs and Emitters additionally cannot be unanchored either. + - message: Salt and Pepper shakers look like shakers. + type: Fix + id: 6333 + time: '2024-04-12T06:44:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26899 +- author: liltenhead + changes: + - message: Reagent slimes are no longer ghost roles. + type: Remove + id: 6334 + time: '2024-04-12T06:50:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26840 +- author: TokenStyle + changes: + - message: Notice board can be crafted type: Add - id: 6272 - time: '2024-03-31T06:34:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26600 -- author: lzk228 + id: 6335 + time: '2024-04-12T06:58:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26847 +- author: deltanedas changes: - - message: Flower crown and wreath were combined. Now you can wear wreath both on - head and on neck. + - message: Sterile Swabs now come in dispensers making them easier to use. type: Tweak - id: 6273 - time: '2024-03-31T08:52:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26605 -- author: Ubaser + id: 6336 + time: '2024-04-12T07:15:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24986 +- author: Ko4erga changes: - - message: Throwing knives now additionally do armour piercing damage. - type: Tweak - id: 6274 - time: '2024-03-31T11:48:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26380 -- author: graevy + - message: Strobes added WEE-OOO-WEE-OOO! + type: Add + id: 6337 + time: '2024-04-12T08:02:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26083 +- author: osjarw changes: - - message: clicking the brig timer button will now cancel its countdown - type: Tweak - id: 6275 - time: '2024-03-31T20:44:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26557 -- author: lzk228 + - message: Magboots no longer activate artifacts from salvage magnet ranges. + type: Fix + id: 6338 + time: '2024-04-13T01:46:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26912 +- author: Vasilis changes: - - message: Briefcases was added to CuraDrobe and LawDrobe. - type: Tweak - id: 6276 - time: '2024-03-31T20:52:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26527 -- author: RiceMar + - message: Blood (or anything containing uncooked animal proteins) can only be consumed + by animal stomach's instead of all but human. Attempting to due so will poison + you as intended. + type: Fix + id: 6339 + time: '2024-04-13T02:36:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26906 +- author: DrSmugleaf changes: - - message: Added milk cartons to the BoozeOMat vendor. Got milk? - type: Add - id: 6277 - time: '2024-04-01T00:07:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26635 -- author: nikthechampiongr + - message: Fixed incorrect "Cycled" and "Bolted" popups when wielding and unwielding + some guns. + type: Fix + id: 6340 + time: '2024-04-13T15:25:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26924 +- author: FungiFellow changes: - - message: Radio jammers now actually block suit sensors. + - message: Removed Crusher Dagger from Grapple Module + type: Remove + id: 6341 + time: '2024-04-13T15:35:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26865 +- author: ShadowCommander + changes: + - message: Fixed the pull hotkey not pulling the new entity when you are already + pulling an entity. type: Fix - id: 6278 - time: '2024-04-01T02:13:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26632 -- author: Flareguy + id: 6342 + time: '2024-04-13T15:36:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26499 +- author: Boaz1111 changes: - - message: All wheeled objects now have lower friction. Portable items, like fuel - canisters & portable scrubbers, should now be easier to carry around. - type: Tweak - - message: High-capacity reagent tanks are now much heavier. - type: Tweak - id: 6279 - time: '2024-04-01T03:23:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26601 + - message: The doors on the ice expedition map can now be accessed by anyone instead + of... botanists. + type: Fix + id: 6343 + time: '2024-04-13T20:49:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26928 - author: Tayrtahn changes: - - message: spears, darts, and hypodarts can inject targets again. + - message: Placing a player with no entry in the manifest into cryostorage no longer + removes the captain from the crew manifest. type: Fix - - message: arrows can no longer inject targets they don't actually hit. - type: Fix - id: 6280 - time: '2024-04-01T03:39:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26268 -- author: SoulFN + id: 6344 + time: '2024-04-14T02:19:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26927 +- author: superjj18 changes: - - message: Changed textures of the assault borg modules - type: Tweak - id: 6281 - time: '2024-04-01T04:21:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26502 -- author: Keer-Sar + - message: Honkbot's basic AI has been restored and honks have returned to being + at random intervals! + type: Fix + id: 6345 + time: '2024-04-14T02:51:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26939 +- author: GreaseMonk changes: - - message: Cyborgs now have audio for some emotes. + - message: Added StopsWhenEntityDead property to audio components type: Add - id: 6282 - time: '2024-04-01T04:35:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26594 -- author: SlamBamActionman + id: 6346 + time: '2024-04-14T03:12:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26905 +- author: DrSmugleaf changes: - - message: Added Coordinates Disks to the Salvage expeditions console, which are - now a requirement for expedition FTL. - type: Add - id: 6283 - time: '2024-04-01T04:50:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/23240 -- author: kseandi + - message: Fixed rocket launchers and laser guns looking like they have nothing + loaded. + type: Fix + id: 6347 + time: '2024-04-14T03:17:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26933 +- author: Vermidia changes: - - message: NT has declassified the documentation for door electronics, now anyone - can configure its access using network configurator or multitool. + - message: You can now see paper attached on crates. Color differs depending on + the paper used. type: Add - id: 6284 - time: '2024-04-01T06:06:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/17778 -- author: musicmanvr + - message: The labels on bodybags also have different colors depending on the paper + used. + type: Tweak + - message: Cargo Invoices are now blueish (to differentiate them from Cargo Bounties) + type: Tweak + id: 6348 + time: '2024-04-14T03:39:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26834 +- author: Terraspark4941 changes: - - message: Added Sol Dry, 8 new cocktails and coconut water. + - message: Autism pins have been added to maintenance loot! type: Add - id: 6285 - time: '2024-04-01T06:41:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25367 -- author: f0x-n3rd + id: 6349 + time: '2024-04-14T05:35:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25597 +- author: Flareguy changes: - - message: Added pages for each categories from the chemical page in the guidebook, - no more infinite scrolling when looking up certain chemicals. - type: Add - id: 6286 - time: '2024-04-01T07:20:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25831 -- author: TheShuEd + - message: Colored jumpsuits, shoes, and (most) colored gloves are now colorized + off of one set of greyscale sprites. They should now be more consistent & significantly + less ugly. + type: Tweak + id: 6350 + time: '2024-04-14T08:41:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26943 +- author: BramvanZijp changes: - - message: Added new transformation particles types for APE and CHIMP - type: Add - - message: Added new anomaly behaviour mechanic. Different behaviors can change - the gameplay of an anomaly. Players can get random behaviors by bombarding the - anomaly with new particles + - message: Nanotrasen's Small Arms Division has slightly improved the firerate and + drastically improved the accuracy on its WT550 SMGs. + type: Tweak + - message: The WT550 and C-20R SMGs can now fire in a 5 round burst-fire mode, making + it easier for their users to control the recoil on these weapons. type: Add - id: 6287 - time: '2024-04-01T08:29:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24683 -- author: Sk1tch + id: 6351 + time: '2024-04-14T08:51:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26886 +- author: Dutch-VanDerLinde changes: - - message: Added chat window opacity slider to options. - type: Add - id: 6288 - time: '2024-04-01T20:48:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24990 -- author: TheShuEd + - message: Holoparasites and holoclowns will now phase through projectiles such + as bullets, like a holocarp. + type: Tweak + id: 6352 + time: '2024-04-14T08:52:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26862 +- author: Tyzemol changes: - - message: added procedurally generating books to library. + - message: Board game crate now comes with character sheets type: Add - - message: full books resprite + id: 6353 + time: '2024-04-14T08:54:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26926 +- author: FairlySadPanda + changes: + - message: Clown shoes make you waddle, as God intended. type: Add - id: 6289 - time: '2024-04-01T21:00:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25840 -- author: osjarw + id: 6354 + time: '2024-04-14T12:12:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26338 +- author: beck-thompson changes: - - message: Ambuzol plus pills now have different sprites from ambuzol pills. Now - CBURN agents and Nukies who bought the syndicate zombie bundle might realize - that they also have some ambuzol plus. - type: Tweak - id: 6290 - time: '2024-04-02T00:50:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26651 -- author: osjarw + - message: Cybersun pen now makes a slashing noise when doing damage. + type: Fix + id: 6355 + time: '2024-04-14T20:04:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26951 +- author: TokenStyle changes: - - message: Air injectors finally have working indicator lights while enabled. + - message: Lockers cannot be deconstructed with a screwdriver when locked now. type: Fix - id: 6291 - time: '2024-04-02T05:17:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26654 -- author: Simyon + id: 6356 + time: '2024-04-14T22:26:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26961 +- author: pissdemon + changes: + - message: Catwalks over lava are slightly less likely to catch you on fire again. + type: Fix + id: 6357 + time: '2024-04-15T01:27:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26968 +- author: Velcroboy + changes: + - message: Fixed sec/lawyer and vault airlocks + type: Fix + id: 6358 + time: '2024-04-15T22:22:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26980 +- author: tosatur + changes: + - message: Made clown snoring quieter + type: Tweak + id: 6359 + time: '2024-04-16T18:48:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27012 +- author: DEATHB4DEFEAT, Dutch-VanDerLinde, metalgearsloth and musicmanvr + changes: + - message: Added loadouts + type: Add + id: 6360 + time: '2024-04-16T19:57:41.736477+00:00' + url: null +- author: Dutch-VanDerLinde + changes: + - message: Senior role ID cards now function properly. + type: Fix + id: 6361 + time: '2024-04-16T20:17:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27017 +- author: Dutch-VanDerLinde changes: - - message: The hands of cyborgs are now explosion proof. Your beakers wont ever - break again! + - message: Most job loadouts now have winter clothing available. + type: Tweak + id: 6362 + time: '2024-04-17T02:49:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27022 +- author: metalgearsloth + changes: + - message: 'Fix the following in lobby: ShowClothes button not working, Skin Color + not updating, Skin Color slider not updating upon closing and re-opening character.' type: Fix - id: 6292 - time: '2024-04-02T05:18:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26515 -- author: lzk228 + id: 6363 + time: '2024-04-17T02:54:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27033 +- author: MACMAN2003 changes: - - message: Typing indicator now can be shaded by shadows. + - message: Nuclear operatives now only need 20 players to be readied up again instead + of 35. type: Tweak - id: 6293 - time: '2024-04-03T02:12:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26678 -- author: EmoGarbage404 + id: 6364 + time: '2024-04-17T03:19:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27036 +- author: Bellwether changes: - - message: Increased time between pulses for various anomalies. + - message: The nun hood now appears in the Chaplain's loadout. type: Tweak - id: 6294 - time: '2024-04-03T03:15:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26677 -- author: Plykiya + id: 6365 + time: '2024-04-17T03:36:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27025 +- author: iNV3RT3D & metalgearsloth changes: - - message: Dropped items are no longer rotated to world north. + - message: Added a jukebox. + type: Add + id: 6366 + time: '2024-04-17T09:27:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26736 +- author: Vermidia + changes: + - message: Pirate Accent and Mobster accent will respect capitalization better now type: Fix - id: 6295 - time: '2024-04-03T05:31:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26662 -- author: deltanedas + id: 6367 + time: '2024-04-17T10:04:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26644 +- author: metalgearsloth changes: - - message: Disabled scooping foam due to a reagent duplication bug. + - message: Fix lobby character preview not updating upon changing characters. type: Fix - id: 6296 - time: '2024-04-03T13:41:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26686 -- author: Aserovich + id: 6368 + time: '2024-04-17T10:06:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27043 +- author: Beck Thompson changes: - - message: New lobby art! + - message: You now must equip gloved weapons (E.g boxing gloves) to use them. + type: Fix + id: 6369 + time: '2024-04-17T10:10:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26762 +- author: slarticodefast + changes: + - message: The gas analyzer now tells you the volume of scanned objects. Tanks inside + canisters now show up as well. type: Add - id: 6297 - time: '2024-04-04T05:28:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26505 -- author: Beck Thompson + - message: The gas analyzer now shows the amount of moles inside the scanned pipe + element instead of the whole pipe network. + type: Tweak + id: 6370 + time: '2024-04-17T17:42:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25720 +- author: deltanedas changes: - - message: Items thrown at disposals now have to be insertable to display the miss - message. + - message: The Chameleon Projector has been added to the uplink for 7 TC, it lets + you disguise as anything (within reason). + type: Add + id: 6371 + time: '2024-04-17T21:48:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26691 +- author: ShadowCommander + changes: + - message: Fixed PDA and ID card name, job, and access not getting set on some jobs. type: Fix - id: 6298 - time: '2024-04-04T06:25:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26716 + id: 6372 + time: '2024-04-17T22:16:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27062 +- author: Krunk + changes: + - message: Head of Security and Warden now have armored and unarmored variants of + their winter coats and the unarmored variants are available in the uniform printer. + type: Tweak + - message: Head of Security's and Warden's winter coats now provide resistances + equal to their non-winter counterparts. + type: Tweak + id: 6373 + time: '2024-04-18T00:08:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/24865 +- author: icekot8 + changes: + - message: "\u0421argo request console now reports when a request is approved" + type: Add + id: 6374 + time: '2024-04-18T00:32:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27038 +- author: Bellwether + changes: + - message: Midround zombie outbreaks are less common and spread more slowly. + type: Tweak + id: 6375 + time: '2024-04-18T01:06:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27060 +- author: Flareguy + changes: + - message: Updated Remote Signaller sprites. + type: Tweak + id: 6376 + time: '2024-04-18T01:16:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27073 +- author: Dutch-VanDerLinde + changes: + - message: Grey security jumpsuits are now available in the security officer loadout. + type: Tweak + id: 6377 + time: '2024-04-18T01:22:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27023 - author: Tayrtahn changes: - - message: Some devices may have broken wiring at the start of each round. + - message: Sodas and other fizzy drinks can be shaken with the verbs menu to build + up fizziness so they spray when opened. type: Add - id: 6299 - time: '2024-04-04T06:28:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26695 -- author: lzk228 + id: 6378 + time: '2024-04-18T01:49:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25574 +- author: metalgearsloth changes: - - message: Turning off thrusters and gyroscopes now stop consume power. + - message: Fix lobby UI not resetting for character changes. type: Fix - id: 6300 - time: '2024-04-04T06:28:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26690 -- author: Aexxie + id: 6379 + time: '2024-04-18T03:01:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27075 +- author: TokenStyle changes: - - message: Added the option to disable your OOC Patron name color. + - message: Benzene is no longer required for the Insuzine recipe. + type: Tweak + id: 6380 + time: '2024-04-18T03:03:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26829 +- author: Golinth + changes: + - message: The Nukie Agent now comes with a medihud built into their visor! type: Add - id: 6301 - time: '2024-04-04T07:20:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26653 -- author: DinoWattz + id: 6381 + time: '2024-04-18T03:04:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26218 +- author: Krunk changes: - - message: Fixed pocket slots being able to hide character snout markings. - type: Fix - id: 6302 - time: '2024-04-04T08:35:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26708 -- author: VasilisThePikachu + - message: Cyborgs no longer see criminal status icons. + type: Remove + id: 6382 + time: '2024-04-18T03:20:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26207 +- author: ArZarLordOfMango changes: - - message: Mop buckets and Janitorial Trolleys will not spill their contents as - soon as they are pushed. - type: Fix - - message: Mop buckets are no longer solid. So you can now walk through them. - type: Fix - id: 6303 - time: '2024-04-04T08:39:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26706 -- author: ZeroDayDaemon + - message: Added autolathe recipe for beverage jug. + type: Add + id: 6383 + time: '2024-04-18T03:24:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25681 +- author: superjj18 changes: - - message: Lowered the number of ducks in the duck crate and reduced the price of - it. + - message: Emergency lighting now changes based on station alert level! type: Tweak - id: 6304 - time: '2024-04-04T19:30:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26729 -- author: PrPleGoo + id: 6384 + time: '2024-04-18T10:50:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26932 +- author: Dutch-VanDerLinde changes: - - message: The medical HUD's brightness now scales with lighting again. + - message: Chemists now start with chemical analysis goggles. type: Tweak - - message: Most HUD icon's brightness now scale with lighting. + id: 6385 + time: '2024-04-18T10:52:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27047 +- author: TheShuEd + changes: + - message: botanist can now mutate blood tomatoes into killer tomatoes! they will + be personal pets, aggressively defending the owner from any social interactions. + type: Add + id: 6386 + time: '2024-04-18T11:21:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26053 +- author: TheShuEd + changes: + - message: Now winter around Europa is different every round type: Tweak - id: 6305 - time: '2024-04-04T23:05:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26726 -- author: Daemon + id: 6387 + time: '2024-04-18T11:27:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26510 +- author: Flareguy changes: - - message: Practice projectiles have been given standardized minimal damage. + - message: The Research Director's hardsuit is now 5x5 in the inventory instead + of 2x2. You'll need a duffelbag to store it now. type: Tweak - - message: The practice laser gun now works with shooting targets. + id: 6388 + time: '2024-04-18T18:05:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27094 +- author: Dutch-VanDerLinde + changes: + - message: Roboticist gear in now available in the scientist loadout. type: Tweak - id: 6306 - time: '2024-04-05T03:15:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26731 -- author: Daemon + id: 6389 + time: '2024-04-18T23:38:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27045 +- author: Whisper changes: - - message: Shooting targets can now have their popup type changed with a left click - to show total damage, damage of a single hit, both, or just a notice that it - was hit. + - message: Raised the difficulty class of RD hardsuit objective, it will be less + likely to get it with other hard objectives. type: Tweak - id: 6307 - time: '2024-04-05T07:19:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26734 -- author: Vermidia + id: 6390 + time: '2024-04-18T23:41:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27103 +- author: iztokbajcar changes: - - message: Baseball bats now require a knife to craft + - message: Glass textures are now less transparent. type: Tweak - id: 6308 - time: '2024-04-05T15:41:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26742 -- author: deltanedas + id: 6391 + time: '2024-04-18T23:43:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26948 +- author: SlamBamActionman changes: - - message: Making fultons now requires cloth and they are faster to make. + - message: Snouts and noses no longer disappear with toggled masks. + type: Fix + id: 6392 + time: '2024-04-19T05:39:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25716 +- author: shampunj + changes: + - message: 'Now for crafting stunprod you need: igniter, cable cuffs, small power + cell, metal rod.' type: Tweak - id: 6309 - time: '2024-04-05T15:42:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26747 + - message: Stunprod deals 35 stamina damage per hit and 5 shock damage. The battery + charge is enough for 3 hits. + type: Tweak + id: 6393 + time: '2024-04-19T05:50:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25922 +- author: EmoGarbage404 + changes: + - message: Halved passive fuel consumption of welding tools. + type: Tweak + - message: Completing an action with a welding tool now directly drains the fuel. + type: Tweak + id: 6394 + time: '2024-04-19T23:20:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27030 - author: superjj18 changes: - - message: Broadcasting works again! - type: Fix - id: 6310 - time: '2024-04-05T17:29:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26750 -- author: Golinth + - message: Pneumatic cannon inventory reduced in size to 2x2, item blacklist removed + type: Tweak + id: 6395 + time: '2024-04-19T23:22:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26878 +- author: Aquif changes: - - message: Fixed mindshield icons being glow in the dark + - message: The Communication Console will no longer cut off your messages. type: Fix - id: 6311 - time: '2024-04-05T20:35:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26754 -- author: Blackern5000 + id: 6396 + time: '2024-04-20T01:07:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27145 +- author: osjarw changes: - - message: Added sap - type: Add - - message: Added syrup, it can be made by boiling sap. + - message: Wallmount substation electronics can now be created at an autolathe. type: Add - - message: Dionae now bleed sap instead of water - type: Tweak - id: 6312 - time: '2024-04-05T21:06:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25748 -- author: osjarw + id: 6397 + time: '2024-04-20T01:14:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27138 +- author: Gyrandola changes: - - message: Thin firelocks are now constructable/deconstructable + - message: Pepper sprites are now properly centered! type: Fix - id: 6313 - time: '2024-04-06T01:55:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26745 -- author: BITTERLYNX + id: 6398 + time: '2024-04-20T02:06:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25971 +- author: ElectroJr changes: - - message: Rodents are more visually pleasing to burn - type: Fix - - message: mothroach and hammy also more visually pleasing to burn + - message: Fixed a bug causing the emergency shuttle to not spawn type: Fix - id: 6314 - time: '2024-04-06T04:41:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26758 -- author: Plykiya + id: 6399 + time: '2024-04-20T02:10:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27144 +- author: slarticodefast changes: - - message: You can now carefully walk over glass shards and D4. + - message: The internal volume of cryopods has been increased from 101.3 to 1000L. + This speeds up cooling patients inside. type: Tweak - id: 6315 - time: '2024-04-06T04:49:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26763 -- author: PursuitInAshes + id: 6400 + time: '2024-04-20T03:44:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27148 +- author: UBlueberry changes: - - message: Sake Bottles can now be found in the booze-o-mat. + - message: Changed the guidebook entry for the Space Ninja, bringing it up to the + same quality as the other antagonist entries. type: Tweak - id: 6316 - time: '2024-04-06T20:16:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26776 -- author: osjarw + id: 6401 + time: '2024-04-20T06:10:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26650 +- author: Vermidia changes: - - message: Removed broken anom behaviour, which causes APE shots to fly through - the anom. - type: Remove - id: 6317 - time: '2024-04-06T22:27:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26775 + - message: You can now bless many more containers with a bible. + type: Tweak + id: 6402 + time: '2024-04-20T06:16:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26526 +- author: SoulFN + changes: + - message: Various types of glass shards now causes diffrent damage + type: Tweak + id: 6403 + time: '2024-04-20T06:21:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26783 - author: Vermidia changes: - - message: Water coolers show how full/what they're full of again. + - message: Most medical roles now can choose to start with nitrile or latex gloves, + or a sterile mask in their loadout, Medical Doctors can also start with a nurse + hat. + type: Add + id: 6404 + time: '2024-04-20T06:22:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27029 +- author: MilenVolf + changes: + - message: Most crates can now go through plastic flaps. type: Fix - id: 6318 - time: '2024-04-06T23:58:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26784 + id: 6405 + time: '2024-04-20T06:23:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27137 +- author: MilenVolf + changes: + - message: Electronics inside windoors now has proper accesses. + type: Fix + id: 6406 + time: '2024-04-20T06:26:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27133 +- author: Bhijn and Myr + changes: + - message: An option to tie your viewport's scaling to your vertical screenspace + has been added, enabled by default! In laymen's terms, this means that manual + configuration is no longer necessary to avoid letterboxing on aspect ratios + tighter than 16:9, as the viewport will now default to cutting off any excess + horizontal width instead of letterboxing vertically when the screen is too tight. + type: Add + id: 6407 + time: '2024-04-20T06:46:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27061 +- author: Whisper + changes: + - message: All mobs should now properly burn to ash. + type: Fix + id: 6408 + time: '2024-04-20T14:44:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27158 +- author: IProduceWidgets + changes: + - message: New map Oasis. + type: Add + id: 6409 + time: '2024-04-21T05:59:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25736 +- author: KittenColony + changes: + - message: Added a new lizard snout, featuring a split muzzle and snoot that can + be coloured independently + type: Add + id: 6410 + time: '2024-04-21T06:18:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27143 +- author: SpeltIncorrectyl + changes: + - message: Security Officers, Head of Security, and Warden can now choose to start + with a security webbing instead of a belt in their loadout menu. + type: Add + id: 6411 + time: '2024-04-21T06:19:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27189 +- author: ElectroJr + changes: + - message: Fixed the nukie station not getting properly initialized. + type: Fix + id: 6412 + time: '2024-04-21T06:52:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27201 +- author: Blackern5000 + changes: + - message: '"Experienced" passengers can now wear a rainbow jumpsuit using loadouts.' + type: Add + id: 6413 + time: '2024-04-21T11:53:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27211 +- author: PJB3005 + changes: + - message: The item status menu has been moved to the side of the hands. There is + now one for each hand. + type: Add + - message: The item status menu fits with the rest of the HUD theme now. + type: Add + - message: Improved, fixed and otherwise added a bunch of item status menus. + type: Add + id: 6414 + time: '2024-04-21T13:16:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/22986 +- author: FairlySadPanda + changes: + - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact + Analyzers to make artifact gameplay a bit more controlled. + type: Tweak + - message: The T2 Abnormal Artifact Manipulation tech has been made cheaper to compensate + for losing an unlock. + type: Tweak + - message: The Xenoarchaeology guidebook entry has been rewritten to be more useful + and comprehensive for newbies. + type: Tweak + id: 6415 + time: '2024-04-21T16:09:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26545 diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index 168a1d0cd31..c761830e0db 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -2063,3 +2063,73 @@ id: 312 time: '2024-04-12T02:14:54.0000000+00:00' url: https://github.com/DeltaV-Station/Delta-v/pull/1075 +- author: Adrian16199 + changes: + - message: Clown hardsuit is craftable once again. + type: Tweak + id: 313 + time: '2024-04-12T14:10:59.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1083 +- author: pissdemon + changes: + - message: Gumballs and lollipops now come in 32 awesome flavors! Try them all! + type: Add + id: 314 + time: '2024-04-14T16:49:00.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1074 +- author: Velcroboy + changes: + - message: Fixed mail access + type: Fix + id: 315 + time: '2024-04-15T19:38:04.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1095 +- author: adeinitas + changes: + - message: Mr. Butlertron can now be vinced (and also unanchored.) + type: Tweak + id: 316 + time: '2024-04-16T15:45:18.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1100 +- author: deltanedas + changes: + - message: The SecDrobe now has Prison Headsets. Prisoners have rights too! + type: Add + id: 317 + time: '2024-04-18T17:32:00.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1084 +- author: UnicornOnLSD + changes: + - message: removed the duplicate "crew cut" haircut. + type: Remove + id: 318 + time: '2024-04-18T17:33:40.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1085 +- author: Adrian16199 + changes: + - message: Most shotguns and some guns have a suitslot sprite now. + type: Fix + id: 319 + time: '2024-04-19T01:05:43.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1092 +- author: KittenColony + changes: + - message: Added Several new cigarette brands. + type: Add + id: 320 + time: '2024-04-19T02:51:31.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/931 +- author: NullWanderer + changes: + - message: Merged upstream + type: Add + id: 321 + time: '2024-04-22T17:25:33.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1119 +- author: Velcroboy + changes: + - message: Tweaked the inventories of unlocked Booze-O-Mats + type: Tweak + id: 322 + time: '2024-04-23T21:50:33.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1127 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 5bfa588cbb3..cc9963fb286 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, NullWanderer, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, adeinitas, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, NullWanderer, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem diff --git a/Resources/Locale/en-US/administration/commands/connection-commands.ftl b/Resources/Locale/en-US/administration/commands/connection-commands.ftl new file mode 100644 index 00000000000..66991042d22 --- /dev/null +++ b/Resources/Locale/en-US/administration/commands/connection-commands.ftl @@ -0,0 +1,16 @@ +## Strings for the "grant_connect_bypass" command. + +cmd-grant_connect_bypass-desc = Temporarily allow a user to bypass regular connection checks. +cmd-grant_connect_bypass-help = Usage: grant_connect_bypass [duration minutes] + Temporarily grants a user the ability to bypass regular connections restrictions. + The bypass only applies to this game server and will expire after (by default) 1 hour. + They will be able to join regardless of whitelist, panic bunker, or player cap. + +cmd-grant_connect_bypass-arg-user = +cmd-grant_connect_bypass-arg-duration = [duration minutes] + +cmd-grant_connect_bypass-invalid-args = Expected 1 or 2 arguments +cmd-grant_connect_bypass-unknown-user = Unable to find user '{$user}' +cmd-grant_connect_bypass-invalid-duration = Invalid duration '{$duration}' + +cmd-grant_connect_bypass-success = Successfully added bypass for user '{$user}' diff --git a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl index 03a920cb647..652bb19cb5b 100644 --- a/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl +++ b/Resources/Locale/en-US/atmos/gas-analyzer-component.ftl @@ -12,6 +12,8 @@ gas-analyzer-window-refresh-button = Refresh gas-analyzer-window-no-data = No Data gas-analyzer-window-no-gas-text = No Gases gas-analyzer-window-error-text = Error: {$errorText} +gas-analyzer-window-volume-text = Volume: +gas-analyzer-window-volume-val-text = {$volume} L gas-analyzer-window-pressure-text = Pressure: gas-analyzer-window-pressure-val-text = {$pressure} kPa gas-analyzer-window-temperature-text = Temperature: diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl new file mode 100644 index 00000000000..500a5305621 --- /dev/null +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -0,0 +1,6 @@ + +### Announcement + +earlyleave-cryo-job-unknown = Unknown +earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! +earlyleave-cryo-sender = Station diff --git a/Resources/Locale/en-US/burning/bodyburn.ftl b/Resources/Locale/en-US/burning/bodyburn.ftl new file mode 100644 index 00000000000..58b98c09bbb --- /dev/null +++ b/Resources/Locale/en-US/burning/bodyburn.ftl @@ -0,0 +1 @@ +bodyburn-text-others = {$name} burns to ash! diff --git a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl index ec80d91f47f..bf7868e3df7 100644 --- a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl +++ b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl @@ -1,5 +1,6 @@ bounty-console-menu-title = Cargo bounty console bounty-console-label-button-text = Print label +bounty-console-skip-button-text = Skip bounty-console-time-label = Time: [color=orange]{$time}[/color] bounty-console-reward-label = Reward: [color=limegreen]${$reward}[/color] bounty-console-manifest-label = Manifest: [color=orange]{$item}[/color] diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index b56f4730ccd..532481f4a23 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,6 +30,7 @@ cargo-console-snip-snip = Order trimmed to capacity cargo-console-insufficient-funds = Insufficient funds (require {$cost}) cargo-console-unfulfilled = No room to fulfill order cargo-console-trade-station = Sent to {$destination} +cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approverName}, {$approverJob}[/bold] cargo-console-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = diff --git a/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl new file mode 100644 index 00000000000..8a79516077d --- /dev/null +++ b/Resources/Locale/en-US/chameleon-projector/chameleon-projector.ftl @@ -0,0 +1,2 @@ +chameleon-projector-invalid = You can't disguise as that! +chameleon-projector-success = Projected new disguise. diff --git a/Resources/Locale/en-US/chat/chat-repo.ftl b/Resources/Locale/en-US/chat/chat-repo.ftl new file mode 100644 index 00000000000..a53380260b2 --- /dev/null +++ b/Resources/Locale/en-US/chat/chat-repo.ftl @@ -0,0 +1,7 @@ +command-description-deletechatmessage-id = Delete a specific chat message by message ID +command-description-nukechatmessages-usernames = Delete all of the supplied usernames' chat messages posted during this round +command-description-nukechatmessages-userids = Delete all of the supplied userIds' chat messages posted during this round + +command-error-deletechatmessage-id-notexist = The message with the supplied ID does not exist +command-error-nukechatmessages-usernames-usernamenotexist = Username {$username} does not exist +command-error-nukechatmessages-usernames-usernamenomessages = UserID {$userId} has no messages to nuke diff --git a/Resources/Locale/en-US/chemistry/components/solution-status.ftl b/Resources/Locale/en-US/chemistry/components/solution-status.ftl new file mode 100644 index 00000000000..0ec5f932e0e --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/solution-status.ftl @@ -0,0 +1,2 @@ +solution-status-volume = Volume: [color=white]{$currentVolume}/{$maxVolume}u[/color] +solution-status-transfer = Transfer: [color=white]{$volume}u[/color] diff --git a/Resources/Locale/en-US/communications/communications-console-component.ftl b/Resources/Locale/en-US/communications/communications-console-component.ftl index f7cc87cb8ba..bead43df286 100644 --- a/Resources/Locale/en-US/communications/communications-console-component.ftl +++ b/Resources/Locale/en-US/communications/communications-console-component.ftl @@ -1,4 +1,4 @@ -# User interface +# User interface comms-console-menu-title = Communications Console comms-console-menu-announcement-placeholder = Announcement text... comms-console-menu-announcement-button = Announce @@ -9,6 +9,7 @@ comms-console-menu-recall-shuttle = Recall emergency shuttle # Popup comms-console-permission-denied = Permission denied comms-console-shuttle-unavailable = Shuttle is currently unavailable +comms-console-message-too-long = Message is too long # Placeholder values comms-console-announcement-sent-by = Sent by diff --git a/Resources/Locale/en-US/deltav/accessories/hair.ftl b/Resources/Locale/en-US/deltav/accessories/hair.ftl index 7fbfc786290..ee6e2a83e7a 100644 --- a/Resources/Locale/en-US/deltav/accessories/hair.ftl +++ b/Resources/Locale/en-US/deltav/accessories/hair.ftl @@ -6,7 +6,6 @@ marking-HumanHairClassicNoFade = Fade (None, Classic) marking-HumanHairClassicLowFade = Fade (Low, Classic) marking-HumanHairClassicMedFade = Fade (Medium, Classic) marking-HumanHairClassicOmbre = Ombre Classic -marking-HumanHairClassicCrewcut = Crewcut Classic marking-HumanHairClassicLong = Long 1 (Classic) marking-HumanHairClassicLong2 = Long 2 (Classic) marking-HumanHairClassicLong3 = Long 3 (Classic) diff --git a/Resources/Locale/en-US/deltav/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/deltav/flavors/flavor-profiles.ftl index 98e04f2818d..48f42e641b7 100644 --- a/Resources/Locale/en-US/deltav/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/deltav/flavors/flavor-profiles.ftl @@ -27,3 +27,10 @@ flavor-complex-daiquiri = fashionable flavor-complex-arsonistsbrew = like ash and flame flavor-complex-healthcodeviolation = ominous flavor-complex-pumpkin = like pumpkin +flavor-complex-blellow = like an impossible color +flavor-complex-candy-strawberry = like strawberries +flavor-complex-candy-bubblegum = like bubble gum + +candy-flavor-profile = This one is supposed to taste {$flavor}. +candy-flavor-profile-multiple = This one is supposed to taste {$flavors} and {$lastFlavor}. +candy-flavor-profile-unknown = You have no idea what this one is supposed to taste like. diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index 86ba4462cf2..61739772852 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -83,6 +83,10 @@ ui-options-vp-integer-scaling-tooltip = If this option is enabled, the viewport at specific resolutions. While this results in crisp textures, it also often means that black bars appear at the top/bottom of the screen or that part of the viewport is not visible. +ui-options-vp-vertical-fit = Vertical viewport fitting +ui-options-vp-vertical-fit-tooltip = When enabled, the main viewport will ignore the horizontal axis entirely when + fitting to your screen. If your screen is smaller than the viewport, then this + will cause the viewport to be cut off on the horizontal axis. ui-options-vp-low-res = Low-resolution viewport ui-options-parallax-low-quality = Low-quality Parallax (background) ui-options-fps-counter = Show FPS counter diff --git a/Resources/Locale/en-US/jukebox/jukebox-menu.ftl b/Resources/Locale/en-US/jukebox/jukebox-menu.ftl new file mode 100644 index 00000000000..d015976cc4b --- /dev/null +++ b/Resources/Locale/en-US/jukebox/jukebox-menu.ftl @@ -0,0 +1,5 @@ +jukebox-menu-title = Jukebox +jukebox-menu-selectedsong = Selected Song: +jukebox-menu-buttonplay = Play +jukebox-menu-buttonpause = Pause +jukebox-menu-buttonstop = Stop diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 92f313086cb..71dd50d4091 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -13,6 +13,10 @@ lathe-menu-material-amount = { $amount -> [1] {NATURALFIXED($amount, 2)} {$unit} *[other] {NATURALFIXED($amount, 2)} {MAKEPLURAL($unit)} } +lathe-menu-material-amount-missing = { $amount -> + [1] {NATURALFIXED($amount, 2)} {$unit} of {$material} ([color=red]{NATURALFIXED($missingAmount, 2)} {$unit} missing[/color]) + *[other] {NATURALFIXED($amount, 2)} {MAKEPLURAL($unit)} of {$material} ([color=red]{NATURALFIXED($missingAmount, 2)} {MAKEPLURAL($unit)} missing[/color]) +} lathe-menu-no-materials-message = No materials loaded. lathe-menu-fabricating-message = Fabricating... lathe-menu-materials-title = Materials diff --git a/Resources/Locale/en-US/markings/gauze.ftl b/Resources/Locale/en-US/markings/gauze.ftl index 9a45a0a2fa2..f8bedc31957 100644 --- a/Resources/Locale/en-US/markings/gauze.ftl +++ b/Resources/Locale/en-US/markings/gauze.ftl @@ -1,17 +1,17 @@ marking-GauzeLefteyePatch-gauze_lefteye_2 = Gauze eyepatch (Left) marking-GauzeLefteyePatch = Gauze eyepatch (Left) -marking-GauzeLefteyeTape-gauze_lefteye_1 = Gauze eyepad (Left) -marking-GauzeLefteyeTape = Gauze eyepad (Left) +marking-GauzeLefteyePad-gauze_lefteye_1 = Gauze eyepad (Left) +marking-GauzeLefteyePad = Gauze eyepad (Left) marking-GauzeRighteyePatch-gauze_righteye_2 = Gauze eyepatch (Right) marking-GauzeRighteyePatch = Gauze eyepatch (Right) -marking-GauzeRighteyeTape-gauze_righteye_1 = Gauze eyepad (Right) -marking-GauzeRighteyeTape = Gauze eyepad (Right) +marking-GauzeRighteyePad-gauze_righteye_1 = Gauze eyepad (Right) +marking-GauzeRighteyePad = Gauze eyepad (Right) -marking-GauzeShoulder-gauze_shoulder = Gauze Shoulder -marking-GauzeShoulder = Gauze Shoulder +marking-GauzeShoulder-gauze_shoulder = Gauze Shoulder Sling +marking-GauzeShoulder = Gauze Shoulder Sling marking-GauzeStomach-gauze_abdomen = Gauze Stomach Wrap marking-GauzeStomach = Gauze Stomach Wrap @@ -46,17 +46,57 @@ marking-GauzeUpperLegRight = Gauze Thigh Wrap (Right) marking-GauzeBlindfold-gauze_blindfold = Gauze Blindfold marking-GauzeBlindfold = Gauze Blindfold -marking-GauzeLizardBlindfold-gauze_lizardblindfold = Gauze Blindfold +marking-GauzeLizardBlindfold-gauze_lizard_blindfold = Gauze Blindfold marking-GauzeLizardBlindfold = Gauze Blindfold -marking-GauzeLizardFootRight-gauze_lizardfoot_r = Gauze Foot Wrap (Right) +marking-GauzeLizardFootRight-gauze_lizard_foot_r = Gauze Foot Wrap (Right) marking-GauzeLizardFootRight = Gauze Foot Wrap (Right) -marking-GauzeLizardFootLeft-gauze_lizardfoot_l = Gauze Foot Wrap (Left) +marking-GauzeLizardFootLeft-gauze_lizard_foot_l = Gauze Foot Wrap (Left) marking-GauzeLizardFootLeft = Gauze Foot Wrap (Left) -marking-GauzeLizardLefteyePatch-gauze_lizardlefteye = Adjusted Gauze eyepatch (Left) -marking-GauzeLizardLefteyePatch = Adjusted Gauze eyepatch (Left) +marking-GauzeLizardLefteyePatch-gauze_lizard_lefteye = Reptilian Gauze eyepatch (Left) +marking-GauzeLizardLefteyePatch = Reptilian Gauze eyepatch (Left) + +marking-GauzeLizardRighteyePatch-gauze_lizard_righteye = Reptilian Gauze eyepatch (Right) +marking-GauzeLizardRighteyePatch = Reptilian Gauze Eyepatch (Right) + +marking-GauzeMothStomach-gauze_moth_abdomen = Insectoid Stomach Wrap +marking-GauzeMothStomach = Insectoid Stomach Wrap + +marking-GauzeMothShoulder-gauze_moth_shoulder = Insectoid Shoulder Sling +marking-GauzeMothShoulder = Insectoid Shoulder Sling + +marking-GauzeMothBlindfold-gauze_moth_blindfold = Insectoid Blindfold +marking-GauzeMothBlindfold = Insectoid Blindfold + +marking-GauzeMothLeftEyePatch-gauze_moth_lefteye_2 = Insectoid Gauze eyepatch (Left) +marking-GauzeMothLeftEyePatch = Insectoid Gauze eyepatch (Left) + +marking-GauzeMothLeftEyePad-gauze_moth_lefteye_1 = Insectoid Gauze eyepad (Left) +marking-GauzeMothLeftEyePad = Insectoid Gauze eyepad (Left) + +marking-GauzeMothRightEyePatch-gauze_moth_righteye_2 = Insectoid Gauze eyepatch (Right) +marking-GauzeMothRightEyePatch = Insectoid Gauze eyepatch (Right) + +marking-GauzeMothRightEyePad-gauze_moth_righteye_1 = Insectoid Gauze eyepad (Right) +marking-GauzeMothRightEyePad = Insectoid Gauze eyepad (Right) + +marking-GauzeMothUpperArmRight-gauze_moth_upperarm_r = Insectoid Gauze Forearm Wrap (Right) +marking-GauzeMothUpperArmRight = Insectoid Gauze Forearm Wrap (Right) + +marking-GauzeMothUpperArmLeft-gauze_moth_upperarm_l = Insectoid Gauze Forearm Wrap (Left) +marking-GauzeMothUpperArmLeft = Insectoid Gauze Forearm Wrap (Left) + +marking-GauzeMothUpperLegRight-gauze_moth_upperleg_r = Insectoid Gauze Thigh Wrap (Right) +marking-GauzeMothUpperLegRight = Insectoid Insectoid Gauze Thigh Wrap (Right) + +marking-GauzeMothUpperLegLeft-gauze_moth_upperleg_l = Insectoid Gauze Thigh Wrap (Left) +marking-GauzeMothUpperLegLeft = Insectoid Gauze Thigh Wrap (Left) + +marking-GauzeMothLowerLegRight-gauze_moth_lowerleg_r = Insectoid Gauze Shin Wrap (Right) +marking-GauzeMothLowerLegRight = Insectoid Gauze Shin Wrap (Right) + +marking-GauzeMothLowerLegLeft-gauze_moth_lowerleg_l = Insectoid Gauze Shin Wrap (Left) +marking-GauzeMothLowerLegLeft = Insectoid Gauze Shin Wrap (Left) -marking-GauzeLizardRighteyePatch-gauze_lizardrighteye = Adjusted Gauze eyepatch (Right) -marking-GauzeLizardRighteyePatch = Adjusted Gauze Eyepatch (Right) \ No newline at end of file diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index cfc44a4ba21..ddd0eae62fe 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -100,4 +100,8 @@ marking-LizardChestUnderbelly-body_underbelly = Lizard Chest (Underbelly) marking-LizardChestUnderbelly = Lizard Chest (Underbelly) marking-LizardChestBackspikes-body_backspikes = Lizard Back spikes (Four) -marking-LizardChestBackspikes = Lizard Back spikes (Four) \ No newline at end of file +marking-LizardChestBackspikes = Lizard Back spikes (Four) + +marking-LizardSnoutSplotch = Lizard Snout (Splotch) +marking-LizardSnoutSplotch-snout_splotch_primary = Muzzle +marking-LizardSnoutSplotch-snout_splotch_secondary = Snoot \ No newline at end of file diff --git a/Resources/Locale/en-US/nutrition/components/drink-component.ftl b/Resources/Locale/en-US/nutrition/components/drink-component.ftl index 9a388744b0c..e80787c8d5b 100644 --- a/Resources/Locale/en-US/nutrition/components/drink-component.ftl +++ b/Resources/Locale/en-US/nutrition/components/drink-component.ftl @@ -1,4 +1,4 @@ -drink-component-on-use-is-empty = {$owner} is empty! +drink-component-on-use-is-empty = {CAPITALIZE(THE($owner))} is empty! drink-component-on-examine-is-empty = [color=gray]Empty[/color] drink-component-on-examine-is-opened = [color=yellow]Opened[/color] drink-component-on-examine-is-sealed = The seal is intact. @@ -10,7 +10,7 @@ drink-component-on-examine-is-half-empty = Halfway Empty drink-component-on-examine-is-mostly-empty = Mostly Empty drink-component-on-examine-exact-volume = It contains {$amount}u. drink-component-try-use-drink-not-open = Open {$owner} first! -drink-component-try-use-drink-is-empty = {$entity} is empty! +drink-component-try-use-drink-is-empty = {CAPITALIZE(THE($entity))} is empty! drink-component-try-use-drink-cannot-drink = You can't drink anything! drink-component-try-use-drink-had-enough = You can't drink more! drink-component-try-use-drink-cannot-drink-other = They can't drink anything! diff --git a/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl new file mode 100644 index 00000000000..a227d811f6e --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/pressurized-solution-component.ftl @@ -0,0 +1,3 @@ +pressurized-solution-spray-holder-self = { CAPITALIZE(THE($drink)) } sprays on you! +pressurized-solution-spray-holder-others = { CAPITALIZE(THE($drink)) } sprays on { THE($victim) }! +pressurized-solution-spray-ground = The contents of { THE($drink) } spray out! diff --git a/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl new file mode 100644 index 00000000000..acc1ecd8489 --- /dev/null +++ b/Resources/Locale/en-US/nutrition/components/shakeable-component.ftl @@ -0,0 +1,3 @@ +shakeable-verb = Shake +shakeable-popup-message-others = { CAPITALIZE(THE($user)) } shakes { THE($shakeable) } +shakeable-popup-message-self = You shake { THE($shakeable) } diff --git a/Resources/Locale/en-US/rcd/components/rcd-component.ftl b/Resources/Locale/en-US/rcd/components/rcd-component.ftl index bb65e76f3f7..9741bde388c 100644 --- a/Resources/Locale/en-US/rcd/components/rcd-component.ftl +++ b/Resources/Locale/en-US/rcd/components/rcd-component.ftl @@ -43,24 +43,5 @@ rcd-component-lighting = Lighting ### Prototype names (note: constructable items will be puralized) rcd-component-deconstruct = deconstruct -rcd-component-wall-solid = solid wall rcd-component-floor-steel = steel tile rcd-component-plating = hull plate -rcd-component-catwalk = catwalk -rcd-component-wall-reinforced = reinforced wall -rcd-component-grille = grille -rcd-component-window = window -rcd-component-window-directional = directional window -rcd-component-window-reinforced-directional = directional reinforced window -rcd-component-reinforced-window = reinforced window -rcd-component-airlock = standard airlock -rcd-component-airlock-glass = glass airlock -rcd-component-firelock = firelock -rcd-component-computer-frame = computer frame -rcd-component-machine-frame = machine frame -rcd-component-tube-light = light -rcd-component-window-bulb-light = small light -rcd-component-window-lv-cable = LV cable -rcd-component-window-mv-cable = MV cable -rcd-component-window-hv-cable = HV cable -rcd-component-window-cable-terminal = cable terminal diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index a68f9e80b4e..70ca8d018ac 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -44,7 +44,7 @@ research-technology-magnets-tech = Localized Magnetism research-technology-advanced-parts = Advanced Parts research-technology-anomaly-harnessing = Anomaly Core Harnessing research-technology-grappling = Grappling -research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation +research-technology-abnormal-artifact-manipulation = Artifact Recycling research-technology-gravity-manipulation = Gravity Manipulation research-technology-quantum-leaping = Quantum Leaping research-technology-advanced-anomaly-research = Advanced Anomaly Research diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index b3983782883..bff317a7e67 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -41,6 +41,8 @@ seeds-bluetomato-name = blue tomato seeds-bluetomato-display-name = blue tomato plant seeds-bloodtomato-name = blood tomato seeds-bloodtomato-display-name = blood tomato plant +seeds-killertomato-name = tomato killer +seeds-killertomato-display-name = tomato killer plant seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple @@ -64,7 +66,7 @@ seeds-nettle-display-name = nettles seeds-deathnettle-name = death nettle seeds-deathnettle-display-name = death nettles seeds-chili-name = chili -seeds-chili-display-name = chilis +seeds-chili-display-name = chili peppers seeds-chilly-name = chilly seeds-chilly-display-name = chilly peppers seeds-poppy-name = poppy diff --git a/Resources/Locale/en-US/speech/speech-chatsan.ftl b/Resources/Locale/en-US/speech/speech-chatsan.ftl index 6ce575e648d..25e6c6f1ea9 100644 --- a/Resources/Locale/en-US/speech/speech-chatsan.ftl +++ b/Resources/Locale/en-US/speech/speech-chatsan.ftl @@ -117,3 +117,6 @@ chatsan-replacement-42 = of course chatsan-word-43 = ig chatsan-replacement-43 = i guess + +chatsan-word-44 = tbf +chatsan-replacement-44 = to be fair diff --git a/Resources/Locale/en-US/store/store.ftl b/Resources/Locale/en-US/store/store.ftl index d663cc61f71..997afedfc06 100644 --- a/Resources/Locale/en-US/store/store.ftl +++ b/Resources/Locale/en-US/store/store.ftl @@ -6,5 +6,5 @@ store-ui-traitor-flavor = Copyright (C) NT -30643 store-ui-traitor-warning = Operatives must lock their uplinks after use to avoid detection. store-withdraw-button-ui = Withdraw {$currency} - +store-ui-button-out-of-stock = {""} (Out of Stock) store-not-account-owner = This {$store} is not bound to you! diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 592cf59d2fe..c7e6bf2e3f6 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -367,6 +367,9 @@ uplink-slipocalypse-clustersoap-desc = Scatters arounds small pieces of syndicat uplink-mobcat-microbomb-name = SyndiCat uplink-mobcat-microbomb-desc = A hand cat equipped with a microbomb implant. Explodes when seriously injured. Can bite painfully +uplink-chameleon-projector-name = Chameleon Projector +uplink-chameleon-projector-desc = Disappear in plain sight by creating a hologram of an item around you. Do not use this to play the game "Object Search". + # Pointless uplink-revolver-cap-gun-name = Cap Gun uplink-revolver-cap-gun-desc = Looks almost like the real thing! Ages 8 and up. diff --git a/Resources/Locale/en-US/tools/components/welder-component.ftl b/Resources/Locale/en-US/tools/components/welder-component.ftl index 681975deb83..63070685215 100644 --- a/Resources/Locale/en-US/tools/components/welder-component.ftl +++ b/Resources/Locale/en-US/tools/components/welder-component.ftl @@ -4,7 +4,8 @@ welder-component-no-fuel-message = The welder has no fuel left! welder-component-no-fuel-in-tank = The {$owner} is empty. welder-component-on-examine-welder-lit-message = [color=orange]Lit[/color] welder-component-on-examine-welder-not-lit-message = Not lit -welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color]. {$status} +welder-component-on-examine-detailed-message = Fuel: [color={$colorName}]{$fuelLeft}/{$fuelCapacity}[/color] + {$status} welder-component-suicide-lit-others-message = {$victim} welds their every orifice closed! It looks like they are trying to commit suicide! welder-component-suicide-lit-message = You weld your every orifice closed! welder-component-suicide-unlit-others-message = {$victim} bashes themselves with the unlit welding torch! diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl index 599f36ec91c..672d80ed31d 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl @@ -6,6 +6,10 @@ analysis-console-print-button = Print analysis-console-print-tooltip-info = Print out the current information about the artifact. analysis-console-extract-button = Extract analysis-console-extract-button-info = Extract points from an artifact based on the newly explored nodes. +analysis-console-bias-up = Up +analysis-console-bias-down = Down +analysis-console-bias-button-info-up = Toggles the bias an artifact has in moving between its nodes. Up heads toward zero depth. +analysis-console-bias-button-info-down = Toggles the bias an artifact has in moving between its nodes. Down heads toward ever-higher depths. analysis-console-info-no-scanner = No analyzer connected! Please connect one using a multitool. analysis-console-info-no-artifact = No artifact present! Place one on the pad then scan for information. diff --git a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl index 5c9eac57a5d..ef2931768b9 100644 --- a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl @@ -1,5 +1,5 @@ -traversal-distorter-set-in = Traversal bias set to "in" -traversal-distorter-set-out = Traversal bias set to "out" +traversal-distorter-set-up = Traversal bias set to up, toward safer nodes +traversal-distorter-set-down = Traversal bias set to down, toward more dangerous nodes -traversal-distorter-desc-in = The affected artifact's traversal now favors moving inwards to the beginning. -traversal-distorter-desc-out = The affected artifact's traversal now favors moving outwards towards more dangerous nodes. +traversal-distorter-desc-up = The affected artifact's traversal now favors moving up the node tree toward safer nodes. +traversal-distorter-desc-down = The affected artifact's traversal now favors moving down the node tree towards more dangerous nodes. diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 8449abf9328..590692a6bb9 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -7444,13 +7444,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 1653 -- proto: MachineTraversalDistorter - entities: - - uid: 1058 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1653 - proto: MaintenanceFluffSpawner entities: - uid: 867 diff --git a/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml b/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml index 8cae38a6fb8..1d207871e77 100644 --- a/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml +++ b/Resources/Maps/Salvage/DeltaV/DV-asteroid-mining-chemlab.yml @@ -523,7 +523,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -540,7 +539,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -557,7 +555,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -2199,7 +2196,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -2216,7 +2212,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -2233,7 +2228,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -2250,7 +2244,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 75 name: null @@ -2289,7 +2282,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 100 name: null @@ -2306,7 +2298,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 100 name: null diff --git a/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml b/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml index af4c48bb12f..b15a0bc9312 100644 --- a/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml +++ b/Resources/Maps/Salvage/DeltaV/DV-laundromat-chunk.yml @@ -3471,7 +3471,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -3492,7 +3491,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -3513,7 +3511,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -3534,7 +3531,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml index 38e5c73d180..c1428e729a3 100644 --- a/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml +++ b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml @@ -9,8 +9,11 @@ tilemap: 63: FloorKitchen 79: FloorRGlass 80: FloorReinforced + 2: FloorShuttleBlack 94: FloorSteel 113: FloorWhite + 1: FloorWood + 3: FloorWoodTile 126: Lattice 127: Plating entities: @@ -23,12 +26,12 @@ entities: - type: Transform rot: 1.5707963267948966 rad pos: -0.5625,0.671875 - parent: invalid + parent: 440 - type: MapGrid chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABNQAAAAADNQAAAAABTwAAAAADTwAAAAAATwAAAAADTwAAAAABXgAAAAACPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAABTwAAAAAATwAAAAACXgAAAAADTwAAAAAAXgAAAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAABTwAAAAABTwAAAAABTwAAAAACTwAAAAABXgAAAAACTwAAAAADXgAAAAABTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAACTwAAAAABTwAAAAAATwAAAAAATwAAAAADXgAAAAACTwAAAAABTwAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACXgAAAAAAXgAAAAADXgAAAAADTwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAAAXgAAAAABTwAAAAACTwAAAAADTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAAATwAAAAABXgAAAAAATwAAAAACXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAACNQAAAAACNQAAAAAATwAAAAACTwAAAAAAXgAAAAADTwAAAAACXgAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAANQAAAAACTwAAAAACTwAAAAADTwAAAAAATwAAAAADXgAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAADTwAAAAACIAAAAAACIAAAAAADIAAAAAAAXgAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAABIAAAAAADIAAAAAABIAAAAAABTwAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABXgAAAAAAIAAAAAACIAAAAAADIAAAAAADXgAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAADIAAAAAADIAAAAAABIAAAAAAAXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAABIAAAAAAAIAAAAAACIAAAAAABTwAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABNQAAAAADNQAAAAABTwAAAAADTwAAAAAATwAAAAADTwAAAAABXgAAAAACPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAABTwAAAAAATwAAAAACXgAAAAADTwAAAAAAXgAAAAADPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAABTwAAAAABTwAAAAABTwAAAAACTwAAAAABXgAAAAACTwAAAAADXgAAAAABTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAACTwAAAAABTwAAAAAATwAAAAAATwAAAAADXgAAAAACTwAAAAABTwAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACXgAAAAAAXgAAAAADXgAAAAADTwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAAAXgAAAAABTwAAAAACTwAAAAADTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAAATwAAAAABXgAAAAAATwAAAAACXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAACNQAAAAACNQAAAAAATwAAAAACTwAAAAAAXgAAAAADTwAAAAACXgAAAAAAIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAANQAAAAACTwAAAAACTwAAAAADTwAAAAAATwAAAAADXgAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAANQAAAAADTwAAAAACIAAAAAACIAAAAAADIAAAAAAAXgAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAABIAAAAAADIAAAAAABIAAAAAABTwAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAABTwAAAAAAIAAAAAACIAAAAAADIAAAAAADXgAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAADIAAAAAADIAAAAAABIAAAAAAAXgAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAATwAAAAABIAAAAAAAIAAAAAACIAAAAAABTwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -40,7 +43,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: PwAAAAAAPwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAADXgAAAAABTwAAAAADTwAAAAADTwAAAAABTwAAAAADNQAAAAACNQAAAAACNQAAAAAAPwAAAAAAPwAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAADXgAAAAACTwAAAAADXgAAAAABTwAAAAABTwAAAAAANQAAAAAANQAAAAACNQAAAAABTwAAAAAATwAAAAACTwAAAAAAXgAAAAABTwAAAAAATwAAAAABTwAAAAACTwAAAAABXgAAAAAATwAAAAABXgAAAAACTwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAADTwAAAAADXgAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAABTwAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADTwAAAAABXgAAAAADXgAAAAAAXgAAAAACTwAAAAAATwAAAAAATwAAAAABTwAAAAABTwAAAAAATwAAAAACTwAAAAAATwAAAAABTwAAAAACTwAAAAAAXgAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAACTwAAAAACTwAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABTwAAAAADXgAAAAACXgAAAAABTwAAAAACXgAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAABTwAAAAABIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACIAAAAAABIAAAAAAAXgAAAAADTwAAAAADXgAAAAAATwAAAAABTwAAAAADNQAAAAADNQAAAAACNQAAAAACIAAAAAACIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAACIAAAAAAAXgAAAAAATwAAAAABTwAAAAACTwAAAAACTwAAAAACNQAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAABIAAAAAADTwAAAAABIAAAAAACIAAAAAABIAAAAAADTwAAAAAANQAAAAABfgAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADTwAAAAADIAAAAAAAIAAAAAAAIAAAAAACTwAAAAAANQAAAAABfgAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAATwAAAAABIAAAAAADIAAAAAABIAAAAAAAXgAAAAADNQAAAAACAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAIAAAAAABIAAAAAAAIAAAAAAATwAAAAAANQAAAAABfgAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAABTwAAAAADIAAAAAACIAAAAAABIAAAAAAATwAAAAADNQAAAAABAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABIAAAAAABIAAAAAACIAAAAAADXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PwAAAAAAPwAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAADXgAAAAABTwAAAAADTwAAAAADTwAAAAABTwAAAAADNQAAAAACNQAAAAACNQAAAAAAPwAAAAAAPwAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAADXgAAAAACTwAAAAADXgAAAAABTwAAAAABTwAAAAAANQAAAAAANQAAAAACNQAAAAABTwAAAAAATwAAAAACTwAAAAAAXgAAAAABTwAAAAAATwAAAAABTwAAAAACTwAAAAABXgAAAAAATwAAAAABXgAAAAACTwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAADTwAAAAADXgAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAABTwAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADTwAAAAABXgAAAAADXgAAAAAAXgAAAAACTwAAAAAATwAAAAAATwAAAAABTwAAAAABTwAAAAAATwAAAAACTwAAAAAATwAAAAABTwAAAAACTwAAAAAAXgAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAACTwAAAAACTwAAAAACXgAAAAAATwAAAAAATwAAAAAATwAAAAAAXgAAAAABTwAAAAADXgAAAAACXgAAAAABTwAAAAACXgAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAABTwAAAAABIAAAAAACAgAAAAAAAgAAAAAATwAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAAAXgAAAAADTwAAAAADXgAAAAAATwAAAAABTwAAAAADNQAAAAADNQAAAAACNQAAAAACIAAAAAACAgAAAAAAAgAAAAAATwAAAAAAAgAAAAAAAgAAAAAAIAAAAAACIAAAAAAAXgAAAAAATwAAAAABTwAAAAACTwAAAAACTwAAAAACNQAAAAAAAAAAAAAAAAAAAAAAIAAAAAABAgAAAAAAAgAAAAAATwAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAADTwAAAAABIAAAAAACIAAAAAABIAAAAAADTwAAAAAANQAAAAABfgAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAIAAAAAAAIAAAAAADIAAAAAADTwAAAAADIAAAAAAAIAAAAAAAIAAAAAACTwAAAAAANQAAAAABfgAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAATwAAAAABIAAAAAADIAAAAAABIAAAAAAAXgAAAAADNQAAAAACAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXgAAAAAAIAAAAAABIAAAAAAAIAAAAAAATwAAAAAANQAAAAABfgAAAAAAAAAAAAAAAgAAAAAAIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAACAgAAAAAAAgAAAAAATwAAAAADIAAAAAACIAAAAAABIAAAAAAATwAAAAADNQAAAAABAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -60,11 +63,11 @@ entities: version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAfgAAAAAAXgAAAAABXgAAAAADXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAIAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 @@ -98,34 +101,56 @@ entities: color: '#B02E26FF' id: BrickTileSteelCornerNe decals: - 0: 7,11 + 507: 7,12 - node: color: '#B02E26FF' id: BrickTileSteelCornerNw decals: - 1: -1,11 + 510: -1,12 - node: color: '#B02E26FF' id: BrickTileSteelCornerSe decals: 2: 7,7 - 3: 1,7 + 522: 0,7 + 525: 1,10 - node: color: '#B02E26FF' id: BrickTileSteelCornerSw decals: 4: -1,7 - 5: 5,7 + 523: 6,7 + 524: 5,10 + - node: + color: '#B02E26FF' + id: BrickTileSteelEndN + decals: + 508: 1,13 + 509: 5,13 + - node: + color: '#B02E26FF' + id: BrickTileSteelInnerNe + decals: + 520: 1,12 + 521: 5,12 + - node: + color: '#B02E26FF' + id: BrickTileSteelInnerNw + decals: + 518: 1,12 + 519: 5,12 - node: color: '#B02E26FF' id: BrickTileSteelInnerSe decals: - 28: 1,10 + 533: 0,10 + 534: 1,11 - node: color: '#B02E26FF' id: BrickTileSteelInnerSw decals: - 29: 5,10 + 535: 5,11 + 536: 6,10 - node: color: '#B02E26FF' id: BrickTileSteelLineE @@ -133,19 +158,13 @@ entities: 13: 7,10 14: 7,9 15: 7,8 - 16: 1,8 - 17: 1,9 + 511: 7,11 + 531: 0,8 + 532: 0,9 - node: color: '#B02E26FF' id: BrickTileSteelLineN decals: - 6: 0,11 - 7: 1,11 - 8: 2,11 - 9: 3,11 - 10: 4,11 - 11: 5,11 - 12: 6,11 30: -1,5 31: 0,5 32: 1,5 @@ -157,15 +176,18 @@ entities: 38: 7,5 39: 8,5 40: -2,5 + 513: 0,12 + 514: 2,12 + 515: 3,12 + 516: 4,12 + 517: 6,12 - node: color: '#B02E26FF' id: BrickTileSteelLineS decals: - 23: 0,7 - 24: 6,7 - 25: 2,10 - 26: 3,10 - 27: 4,10 + 526: 2,11 + 527: 3,11 + 528: 4,11 - node: color: '#B02E26FF' id: BrickTileSteelLineW @@ -173,14 +195,13 @@ entities: 18: -1,10 19: -1,9 20: -1,8 - 21: 5,9 - 22: 5,8 + 512: -1,11 + 529: 6,8 + 530: 6,9 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNe decals: - 45: 7,14 - 46: 4,15 47: -3,13 - node: color: '#91D4FFFF' @@ -201,8 +222,6 @@ entities: id: BrickTileWhiteCornerNw decals: 48: -5,13 - 49: -1,14 - 50: 2,15 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerNw @@ -221,7 +240,6 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 43: 7,13 44: -3,9 - node: color: '#91D4FFFF' @@ -243,7 +261,6 @@ entities: id: BrickTileWhiteCornerSw decals: 41: -5,9 - 42: -1,13 - node: color: '#91D4FFFF' id: BrickTileWhiteCornerSw @@ -259,16 +276,6 @@ entities: 133: -3,-25 134: -2,-27 135: 8,-22 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 71: 4,14 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNw - decals: - 72: 2,14 - node: color: '#BA9241FF' id: BrickTileWhiteInnerSe @@ -309,11 +316,6 @@ entities: id: BrickTileWhiteLineN decals: 51: -4,13 - 52: 0,14 - 53: 1,14 - 54: 3,15 - 55: 6,14 - 56: 5,14 - node: color: '#91D4FFFF' id: BrickTileWhiteLineN @@ -349,13 +351,6 @@ entities: id: BrickTileWhiteLineS decals: 63: -4,9 - 64: 0,13 - 65: 1,13 - 66: 2,13 - 67: 3,13 - 68: 4,13 - 69: 5,13 - 70: 6,13 - node: color: '#91D4FFFF' id: BrickTileWhiteLineS @@ -471,13 +466,6 @@ entities: 339: -7.911175,0.71791697 340: -7.1689873,-0.48520803 341: -8.509342,0.071397305 - - node: - color: '#B02E26FF' - id: Delivery - decals: - 79: 2,11 - 80: 3,11 - 81: 4,11 - node: color: '#FFFFFFFF' id: Delivery @@ -559,13 +547,9 @@ entities: 394: -4,-3 395: -5,10 396: -3,13 - 397: 1,13 - 398: 5,14 - 399: 7,13 400: 0,9 401: 0,8 402: 6,8 - 403: 5,10 404: 10,12 405: 11,9 - node: @@ -574,7 +558,6 @@ entities: id: DirtHeavyMonotile decals: 406: 0,10 - 407: 1,9 408: 6,9 409: 10,6 410: 6,4 @@ -663,7 +646,6 @@ entities: 483: -7,4 484: -4,4 485: -3,9 - 486: 1,14 487: -1,10 488: 8,4 489: 15,4 @@ -682,8 +664,6 @@ entities: 502: -1,7 503: -5,10 504: -3,9 - 505: 5,14 - 506: 7,13 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -887,11 +867,6 @@ entities: 228: 2,-34 229: 2,-38 233: 3,-40 - - node: - color: '#B02E26FF' - id: WarnEndE - decals: - 83: 4,9 - node: color: '#FFFFFFFF' id: WarnEndE @@ -902,16 +877,24 @@ entities: id: WarnEndS decals: 232: 3,-41 - - node: - color: '#B02E26FF' - id: WarnEndW - decals: - 82: 2,9 - node: color: '#FFFFFFFF' id: WarnEndW decals: 206: -2,-38 + - node: + color: '#B02E26FF' + id: WarnFullGreyscale + decals: + 557: 2,10 + 558: 4,10 + - node: + color: '#B02E26FF' + id: WarnLineE + decals: + 551: 2,9 + 552: 2,8 + 553: 2,7 - node: color: '#FFFFFFFF' id: WarnLineE @@ -927,7 +910,13 @@ entities: color: '#B02E26FF' id: WarnLineN decals: - 84: 3,9 + 537: -1,13 + 538: 0,13 + 539: 2,13 + 540: 3,13 + 541: 4,13 + 542: 6,13 + 543: 7,13 - node: color: '#FFFFFFFF' id: WarnLineN @@ -939,6 +928,13 @@ entities: 211: 5,-38 212: 6,-38 213: 7,-38 + - node: + color: '#B02E26FF' + id: WarnLineS + decals: + 549: 4,8 + 550: 4,7 + 556: 4,9 - node: color: '#FFFFFFFF' id: WarnLineS @@ -950,11 +946,6 @@ entities: 248: 2,-35 249: 1,-33 250: -1,-30 - - node: - color: '#B02E26FF' - id: WarnLineW - decals: - 85: 3,9 - node: color: '#FFFFFFFF' id: WarnLineW @@ -973,215 +964,240 @@ entities: version: 2 data: tiles: - 0,0: - 0: 65535 - -1,0: - 0: 65535 - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - 0,1: - 0: 65535 - -4,0: - 0: 61166 - -4,1: - 0: 14 -3,0: - 0: 65535 + 0: 64 + 1: 49288 -3,1: - 0: 61167 - -3,2: - 0: 238 + 1: 32968 + 0: 16384 + -3,-1: + 1: 32968 + 0: 16384 -2,0: - 0: 65535 + 1: 63675 -2,1: - 0: 65535 + 1: 47355 + -3,2: + 0: 8 -2,2: - 0: 61183 + 0: 17 + 1: 43690 + -2,-1: + 1: 47355 + -2,3: + 1: 170 + 0: 1024 + -1,0: + 1: 62394 -1,1: - 0: 65535 + 1: 46079 -1,2: - 0: 65535 - -4,-4: - 0: 61166 - -4,-3: - 0: 61166 - -4,-2: - 0: 61166 - -4,-1: - 0: 61166 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 + 1: 49082 + -1,3: + 1: 61883 + -1,-1: + 1: 49075 + -1,4: + 1: 35055 + 0: 8448 + 0,0: + 1: 61695 + 0,1: + 1: 29183 + 0,2: + 1: 63351 + 0,3: + 1: 61695 0,-4: - 0: 65535 + 1: 65535 + 0,-5: + 1: 61695 + -1,-4: + 1: 65531 0,-3: - 0: 65535 + 1: 61695 + -1,-3: + 1: 46079 0,-2: - 0: 65535 - -4,-5: - 0: 61152 - -3,-5: - 0: 65520 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 0,-6: - 0: 63743 - 1: 1792 - 0,-5: - 0: 65535 - -3,-7: - 0: 34816 - -3,-6: - 0: 2184 - -2,-7: - 0: 65420 - -1,-7: - 0: 65535 - 0,-7: - 0: 65535 + 1: 65535 + -1,-2: + 1: 49082 + 0,-1: + 1: 65520 1,-4: - 0: 65535 + 1: 65535 1,-3: - 0: 65535 + 1: 61695 1,-2: - 0: 65535 + 1: 65535 1,-1: - 0: 65535 + 1: 65520 + 1,-5: + 1: 61687 + 1,0: + 1: 61695 2,-4: - 0: 65535 + 1: 65534 2,-3: - 0: 65535 + 1: 61183 2,-2: - 0: 65535 + 1: 61418 2,-1: - 0: 65535 + 1: 61422 + 2,-5: + 1: 60159 + 2,0: + 1: 65258 3,-4: - 0: 65535 + 1: 61666 + 0: 12 3,-3: - 0: 65535 + 1: 57598 3,-2: - 0: 65535 + 1: 61678 3,-1: - 0: 65535 - 0,2: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 + 1: 57598 + 3,-5: + 1: 8738 + 0: 16388 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 14195 + 1: 61678 4,-4: - 0: 4369 + 0: 17 + 1: 4096 4,-3: - 0: 4369 + 1: 16 + 0: 4096 4,-2: - 0: 4368 + 0: 16 + 1: 4096 4,-1: - 0: 4369 - 4,0: - 0: 4368 - 4,1: - 0: 4369 - -2,3: - 0: 3310 - -1,3: - 0: 65535 - 0,3: - 0: 65535 + 1: 16 + 0: 4096 + -3,-4: + 0: 64 + 1: 49280 + -3,-3: + 1: 32968 + 0: 17408 + -3,-2: + 0: 64 + 1: 49288 + -2,-4: + 1: 63674 + -2,-3: + 1: 47355 + -2,-2: + 1: 63675 + -2,-5: + 1: 43690 + 0: 4353 + -1,-5: + 1: 45687 + 0,4: + 1: 65535 + 1,1: + 1: 62719 + 1,2: + 1: 65535 1,3: - 0: 65535 + 1: 61695 + 1,4: + 1: 65535 + 2,1: + 1: 61183 2,3: - 0: 16383 + 1: 28910 + 2,2: + 1: 61162 + 2,4: + 1: 55 + 0: 9344 + 3,1: + 1: 57598 3,3: - 0: 311 - 1,-6: - 0: 63743 + 0: 260 + 1: 34 + 3,2: + 1: 8738 + 0: 1088 + 4,0: + 0: 16 + 1: 4096 + 4,1: + 1: 16 + 0: 4096 + -2,-6: + 1: 40960 + -1,-6: + 1: 30510 + -1,-7: + 1: 60608 + -1,-8: + 1: 51328 + 0,-8: + 1: 56671 + 0,-7: + 1: 65524 + 0,-6: + 1: 15 2: 1792 - 1,-5: - 0: 65535 + 0,-9: + 1: 61132 + 1,-8: + 1: 56791 1,-7: - 0: 65535 + 1: 65521 + 1,-6: + 1: 15 + 3: 1792 + 1,-9: + 1: 13073 + 2,-8: + 1: 4096 2,-7: - 0: 30719 + 1: 12560 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-7: - 0: 1 + 1: 63267 3,-6: - 0: 12560 - 3,-5: - 0: 29495 - 0,4: - 0: 14 - 1,4: - 0: 15 - -1,4: - 0: 8 - -1,-8: - 0: 51328 - 0,-8: - 0: 65535 - 1,-8: - 0: 65527 - 2,-8: - 0: 4096 + 1: 8192 + 0,5: + 1: 255 + -1,5: + 1: 136 + 0: 1026 + 1,5: + 1: 255 + 2,5: + 0: 258 + -2,4: + 0: 128 0,-10: - 0: 65532 - 0,-9: - 0: 61132 + 1: 65532 + -1,-10: + 1: 52928 0,-11: - 0: 32768 + 1: 32768 1,-10: - 0: 65521 - 1,-9: - 0: 13073 + 1: 65521 2,-10: - 0: 4880 - -1,-10: - 0: 52928 + 1: 4880 uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -1230,6 +1246,18 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 440 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - proto: AirAlarm entities: - uid: 1885 @@ -1261,8 +1289,6 @@ entities: - 1598 - 1592 - 1591 - - type: AtmosDevice - joinedGrid: 1 - uid: 1887 components: - type: Transform @@ -1278,10 +1304,14 @@ entities: - 1593 - 1596 - 1598 - - 1364 - - 1363 - - type: AtmosDevice - joinedGrid: 1 + - 2188 + - 2189 + - 2176 + - 2178 + - 2175 + - 2177 + - 2187 + - 2190 - uid: 1888 components: - type: Transform @@ -1299,10 +1329,6 @@ entities: - 289 - 288 - 682 - - 679 - - 1597 - - type: AtmosDevice - joinedGrid: 1 - uid: 1889 components: - type: Transform @@ -1318,22 +1344,6 @@ entities: - 1351 - 263 - 91 - - type: AtmosDevice - joinedGrid: 1 - - uid: 1890 - components: - - type: Transform - pos: 1.5,15.5 - parent: 1 - - type: DeviceList - devices: - - 1597 - - 1390 - - 1383 - - 1596 - - 679 - - type: AtmosDevice - joinedGrid: 1 - uid: 1891 components: - type: Transform @@ -1349,8 +1359,6 @@ entities: - 1592 - 87 - 86 - - type: AtmosDevice - joinedGrid: 1 - uid: 1892 components: - type: Transform @@ -1366,8 +1374,6 @@ entities: - 295 - 1592 - 1591 - - type: AtmosDevice - joinedGrid: 1 - uid: 1893 components: - type: Transform @@ -1384,8 +1390,6 @@ entities: - 722 - 762 - 1589 - - type: AtmosDevice - joinedGrid: 1 - uid: 1894 components: - type: Transform @@ -1414,8 +1418,6 @@ entities: - 93 - 80 - 286 - - type: AtmosDevice - joinedGrid: 1 - uid: 1895 components: - type: Transform @@ -1435,8 +1437,6 @@ entities: - 1756 - 1590 - 1589 - - type: AtmosDevice - joinedGrid: 1 - uid: 1896 components: - type: Transform @@ -1452,8 +1452,6 @@ entities: - 726 - 971 - 973 - - type: AtmosDevice - joinedGrid: 1 - uid: 1904 components: - type: Transform @@ -1477,8 +1475,6 @@ entities: - 79 - 86 - 1599 - - type: AtmosDevice - joinedGrid: 1 - uid: 1905 components: - type: Transform @@ -1502,8 +1498,19 @@ entities: - 1589 - 1599 - 1594 - - type: AtmosDevice - joinedGrid: 1 + - uid: 2201 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - type: DeviceList + devices: + - 2205 + - 2197 + - 2208 + - 2207 + - 2209 + - 444 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 833 @@ -1542,11 +1549,11 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 1 - - uid: 663 + - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: -3.5,14.5 parent: 1 - proto: AirlockEngineeringGlassLocked entities: @@ -2003,16 +2010,6 @@ entities: - 1885 - 1888 - 1887 - - 1890 - - uid: 1597 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1890 - - 1888 - uid: 1598 components: - type: Transform @@ -2105,6 +2102,12 @@ entities: - type: DeviceNetwork deviceLists: - 1905 + - uid: 2209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 - proto: APCBasic entities: - uid: 557 @@ -2114,21 +2117,21 @@ entities: - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 1506 + - uid: 638 components: - type: MetaData - name: Central APC + name: Bridge APC - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 + rot: 1.5707963267948966 rad + pos: -3.5,17.5 parent: 1 - - uid: 1507 + - uid: 1506 components: - type: MetaData - name: Bridge APC + name: Central APC - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 parent: 1 - uid: 1690 components: @@ -2572,42 +2575,45 @@ entities: parent: 1 - proto: BenchSteelLeft entities: - - uid: 644 + - uid: 510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: 1.5,7.5 parent: 1 - - uid: 646 + - uid: 511 components: - type: Transform - pos: 2.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,9.5 parent: 1 - proto: BenchSteelMiddle entities: - - uid: 645 + - uid: 509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 1 - - uid: 647 + - uid: 512 components: - type: Transform - pos: 3.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - proto: BenchSteelRight entities: - - uid: 643 + - uid: 508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 + rot: 1.5707963267948966 rad + pos: 1.5,9.5 parent: 1 - - uid: 648 + - uid: 678 components: - type: Transform - pos: 4.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 1 - proto: BoozeDispenser entities: @@ -2652,6 +2658,14 @@ entities: rot: 1.5707963267948966 rad pos: 6.917647,-13.465573 parent: 1 +- proto: Brutepack + entities: + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.62265325,19.199242 + parent: 1 - proto: CableApcExtension entities: - uid: 137 @@ -2759,10 +2773,10 @@ entities: - type: Transform pos: 3.5,-36.5 parent: 1 - - uid: 627 + - uid: 623 components: - type: Transform - pos: 0.5,12.5 + pos: -3.5,17.5 parent: 1 - uid: 692 components: @@ -2894,61 +2908,6 @@ entities: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 784 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - uid: 785 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 - - uid: 786 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 787 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 788 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 789 - components: - - type: Transform - pos: 2.5,13.5 - parent: 1 - - uid: 790 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - uid: 791 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 792 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - uid: 793 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 794 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - uid: 795 components: - type: Transform @@ -2984,11 +2943,6 @@ entities: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 802 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - uid: 803 components: - type: Transform @@ -3789,6 +3743,11 @@ entities: - type: Transform pos: 4.5,-29.5 parent: 1 + - uid: 1609 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 - uid: 1638 components: - type: Transform @@ -3854,6 +3813,16 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 1 + - uid: 1912 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 2081 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 - uid: 2090 components: - type: Transform @@ -3944,6 +3913,161 @@ entities: - type: Transform pos: 5.5,-24.5 parent: 1 + - uid: 2273 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 2274 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 2275 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 2276 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 2277 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 2278 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 2279 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1 + - uid: 2280 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 2281 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 2282 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 2283 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 2284 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 2285 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 2286 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 2287 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 2288 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 2289 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 2290 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 2291 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 2292 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 2293 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 2294 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 2295 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 2296 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 2297 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 2298 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 2299 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 2300 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 2301 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 2302 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 2303 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 - proto: CableHV entities: - uid: 1686 @@ -4098,6 +4222,16 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 1 + - uid: 467 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 - uid: 477 components: - type: Transform @@ -4108,6 +4242,46 @@ entities: - type: Transform pos: -2.5,-11.5 parent: 1 + - uid: 486 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 - uid: 582 components: - type: Transform @@ -4118,11 +4292,46 @@ entities: - type: Transform pos: 4.5,-26.5 parent: 1 + - uid: 621 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 - uid: 826 components: - type: Transform pos: 3.5,-9.5 parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 - uid: 1414 components: - type: Transform @@ -4313,61 +4522,6 @@ entities: - type: Transform pos: -3.5,13.5 parent: 1 - - uid: 1452 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - uid: 1453 - components: - - type: Transform - pos: -1.5,13.5 - parent: 1 - - uid: 1454 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 1455 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 1456 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 1457 - components: - - type: Transform - pos: 2.5,13.5 - parent: 1 - - uid: 1458 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - uid: 1459 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 1460 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - uid: 1461 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - - uid: 1462 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - uid: 1463 components: - type: Transform @@ -4573,11 +4727,6 @@ entities: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 1509 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 - uid: 1564 components: - type: Transform @@ -4618,6 +4767,11 @@ entities: - type: Transform pos: 8.5,-25.5 parent: 1 + - uid: 1710 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 - uid: 1711 components: - type: Transform @@ -4728,6 +4882,26 @@ entities: - type: Transform pos: -2.5,-17.5 parent: 1 + - uid: 1908 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 1966 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 2046 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 - uid: 2133 components: - type: Transform @@ -4738,6 +4912,36 @@ entities: - type: Transform pos: 6.5,-26.5 parent: 1 + - uid: 2241 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 2268 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 2269 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 2270 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 2271 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 2272 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1 - proto: CableTerminal entities: - uid: 1687 @@ -4755,6 +4959,178 @@ entities: - type: Transform pos: 2.5,-24.5 parent: 1 +- proto: CarpetWhite + entities: + - uid: 1376 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 2143 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 2145 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 2206 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 2211 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 2213 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 2215 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 2216 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 2218 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 2225 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 2226 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 2244 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 2245 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 2249 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 2251 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 2253 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 2254 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 2255 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 2256 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 2257 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1 + - uid: 2261 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 2262 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 2264 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 2335 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 2336 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 2337 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 2338 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 2339 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 2340 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 2341 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 2342 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 2343 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 2344 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 2345 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 - proto: Catwalk entities: - uid: 1874 @@ -4929,11 +5305,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 611 + - uid: 624 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,14.5 + pos: 3.5,20.5 parent: 1 - uid: 650 components: @@ -4959,67 +5335,112 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 1 - - uid: 656 + - uid: 1584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 + pos: -0.5,5.5 parent: 1 - - uid: 657 + - uid: 1585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 + pos: 7.5,5.5 parent: 1 - - uid: 658 + - uid: 2193 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,8.5 + pos: 1.5,15.5 parent: 1 - - uid: 659 + - uid: 2196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,11.5 parent: 1 - - uid: 686 + - uid: 2200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 + rot: -1.5707963267948966 rad + pos: 5.5,15.5 parent: 1 - - uid: 687 + - uid: 2203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,14.5 + rot: -1.5707963267948966 rad + pos: 5.5,16.5 parent: 1 - - uid: 701 + - uid: 2204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,14.5 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 parent: 1 - - uid: 702 + - uid: 2227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,14.5 + pos: 1.5,17.5 parent: 1 - - uid: 1584 + - uid: 2228 components: - type: Transform - pos: -0.5,5.5 + rot: -1.5707963267948966 rad + pos: 5.5,17.5 parent: 1 - - uid: 1585 + - uid: 2240 components: - type: Transform - pos: 7.5,5.5 + rot: -1.5707963267948966 rad + pos: 0.5,21.5 parent: 1 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 175 + - uid: 2246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + - uid: 2258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 2260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 2266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + - uid: 2267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + - uid: 2332 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 2333 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 2334 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad @@ -5093,14 +5514,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-9.5 parent: 1 -- proto: ComputerAlert - entities: - - uid: 697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 - proto: ComputerCloningConsole entities: - uid: 214 @@ -5118,24 +5531,26 @@ entities: - CloningPodSender: CloningPodReceiver - proto: ComputerComms entities: - - uid: 698 + - uid: 2238 components: - type: Transform - pos: 4.5,15.5 + rot: -1.5707963267948966 rad + pos: 7.5,21.5 parent: 1 - proto: ComputerEmergencyShuttle entities: - - uid: 685 + - uid: 1265 components: - type: Transform - pos: 3.5,15.5 + pos: 3.5,21.5 parent: 1 - proto: ComputerId entities: - - uid: 696 + - uid: 2242 components: - type: Transform - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: -0.5,21.5 parent: 1 - proto: ComputerPowerMonitoring entities: @@ -5151,13 +5566,19 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-26.5 parent: 1 + - uid: 2239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 - proto: ComputerRadar entities: - - uid: 699 + - uid: 2237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,14.5 + pos: 7.5,20.5 parent: 1 - proto: CrateFilledSpawner entities: @@ -5173,22 +5594,28 @@ entities: parent: 1 - proto: CrowbarRed entities: - - uid: 2079 + - uid: 668 components: - type: Transform - pos: 0.33350086,-23.568808 + rot: 1.5707963267948966 rad + pos: -0.13751829,13.570357 parent: 1 - - uid: 2080 + - uid: 1597 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.07526481,-16.473337 + pos: 7.4320345,18.933617 parent: 1 - - uid: 2081 + - uid: 2079 + components: + - type: Transform + pos: 0.33350086,-23.568808 + parent: 1 + - uid: 2080 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.24713436,11.426374 + pos: 0.07526481,-16.473337 parent: 1 - proto: DefibrillatorCabinetFilled entities: @@ -5600,6 +6027,14 @@ entities: - type: Transform pos: 10.5,1.5 parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 2328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1393359,16.93034 + parent: 1 - proto: DrinkBeerglass entities: - uid: 2025 @@ -5608,6 +6043,36 @@ entities: rot: 1.5707963267948966 rad pos: 3.3622198,-0.24730682 parent: 1 +- proto: DrinkCafeLatte + entities: + - uid: 2329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.7565236,16.74284 + parent: 1 +- proto: DrinkGinBottleFull + entities: + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.545586,17.64909 + parent: 1 +- proto: DrinkHotCoffee + entities: + - uid: 2330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.1315236,16.828777 + parent: 1 + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.4127734,16.016277 + parent: 1 - proto: DrinkMartiniGlass entities: - uid: 2024 @@ -5622,6 +6087,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.409095,-2.3019943 parent: 1 + - uid: 2195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.2981694,15.708776 + parent: 1 - proto: DrinkRootBeerGlass entities: - uid: 2027 @@ -5630,6 +6101,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.14347,-2.5676193 parent: 1 + - uid: 2194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.8714318,15.298344 + parent: 1 - proto: DrinkShotGlass entities: - uid: 1936 @@ -5681,10 +6158,22 @@ entities: parent: 1 - proto: EmergencyLight entities: - - uid: 2046 + - uid: 790 components: - type: Transform - pos: 3.5,15.5 + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 3.5,21.5 parent: 1 - uid: 2047 components: @@ -5698,11 +6187,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,11.5 parent: 1 - - uid: 2049 - components: - - type: Transform - pos: 3.5,11.5 - parent: 1 - uid: 2050 components: - type: Transform @@ -6000,16 +6484,12 @@ entities: deviceLists: - 1904 - 1892 - - uid: 679 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: -3.5,14.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 1888 - - 1890 - uid: 681 components: - type: Transform @@ -6094,6 +6574,22 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 2191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} - proto: FloraTree02 entities: - uid: 1923 @@ -6124,6 +6620,14 @@ entities: rot: 1.5707963267948966 rad pos: -8.259198,1.1817689 parent: 1 +- proto: FoodBakedCannoli + entities: + - uid: 2319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.3011198,16.103031 + parent: 1 - proto: FoodBreadGarlicSlice entities: - uid: 1937 @@ -6132,6 +6636,84 @@ entities: rot: 1.5707963267948966 rad pos: 0.27879024,-2.4894862 parent: 1 +- proto: FoodBurgerMcrib + entities: + - uid: 2313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.2464316,17.618656 + parent: 1 +- proto: FoodCakeBirthday + entities: + - uid: 2316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.7776823,17.251469 + parent: 1 +- proto: FoodCakeBlueberry + entities: + - uid: 2317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.2620573,17.603031 + parent: 1 +- proto: FoodCakeBlueberrySlice + entities: + - uid: 2323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.248711,17.547527 + parent: 1 +- proto: FoodCakeCarrot + entities: + - uid: 2315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.8167448,15.743656 + parent: 1 +- proto: FoodCakeCheese + entities: + - uid: 2312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.254244,15.540531 + parent: 1 +- proto: FoodCakeChristmas + entities: + - uid: 2320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.754244,16.524906 + parent: 1 +- proto: FoodCakePlain + entities: + - uid: 2318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.2073698,16.759281 + parent: 1 +- proto: FoodMeatCooked + entities: + - uid: 2308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1839323,17.298344 + parent: 1 + - uid: 2309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.3167443,15.642094 + parent: 1 - proto: FoodMothBakedCheesePlatter entities: - uid: 420 @@ -6140,6 +6722,36 @@ entities: rot: 1.5707963267948966 rad pos: 1.2249378,1.5739474 parent: 1 +- proto: FoodPieApple + entities: + - uid: 2314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1683066,16.485844 + parent: 1 +- proto: FoodPizzaArnoldSlice + entities: + - uid: 2324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.4987116,15.328777 + parent: 1 +- proto: FoodPlate + entities: + - uid: 2310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.1058066,17.446781 + parent: 1 + - uid: 2311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.0745564,15.657719 + parent: 1 - proto: FoodPlateSmall entities: - uid: 423 @@ -6154,6 +6766,18 @@ entities: rot: 1.5707963267948966 rad pos: 0.24754024,-2.6301112 parent: 1 + - uid: 2325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.170586,17.594402 + parent: 1 + - uid: 2326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.3893359,15.375652 + parent: 1 - proto: ForkPlastic entities: - uid: 421 @@ -6161,6 +6785,11 @@ entities: - type: Transform pos: 0.33226132,-0.42738038 parent: 1 + - uid: 2217 + components: + - type: Transform + pos: 3.9104943,15.907719 + parent: 1 - proto: GasMixer entities: - uid: 728 @@ -6172,8 +6801,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.8 inletOneConcentration: 0.2 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasOutletInjector @@ -6184,16 +6811,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 1021 @@ -6202,8 +6825,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#00CCFFFF' - uid: 1022 @@ -6212,8 +6833,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF0000FF' - uid: 1558 @@ -6222,8 +6841,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -6244,14 +6861,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 703 + - uid: 667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 + rot: -1.5707963267948966 rad + pos: -3.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 698 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 706 components: - type: Transform @@ -6330,45 +6954,23 @@ entities: parent: 1 - type: AtmosPipeColor color: '#00CCFFFF' - - uid: 1185 + - uid: 1363 components: - type: Transform - pos: 9.5,13.5 + rot: 1.5707963267948966 rad + pos: -3.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1382 + - uid: 1387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 + rot: 1.5707963267948966 rad + pos: -2.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1392 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1526 + color: '#990000FF' + - uid: 1526 components: - type: Transform rot: -1.5707963267948966 rad @@ -6430,6 +7032,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 1075 @@ -6584,6 +7201,44 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 699 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 724 components: - type: Transform @@ -6638,6 +7293,37 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 789 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 837 components: - type: Transform @@ -7074,14 +7760,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1101 components: - type: Transform @@ -7234,14 +7912,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1128 components: - type: Transform @@ -7978,14 +8648,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1251 components: - type: Transform @@ -7994,14 +8656,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1253 components: - type: Transform @@ -8026,14 +8680,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1258 components: - type: Transform @@ -8074,14 +8720,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1264 components: - type: Transform @@ -8090,14 +8728,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1266 components: - type: Transform @@ -8122,14 +8752,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1271 components: - type: Transform @@ -8562,492 +9184,548 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1354 + - uid: 1361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 + rot: 3.141592653589793 rad + pos: -2.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1355 + color: '#990000FF' + - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,11.5 + pos: -0.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1356 + color: '#990000FF' + - uid: 1386 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,11.5 + pos: 0.5,15.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1357 + color: '#990000FF' + - uid: 1396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,11.5 + pos: 0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1358 + - uid: 1397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 + pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1359 + color: '#0055CCFF' + - uid: 1402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,11.5 + pos: 6.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1360 + - uid: 1403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: 6.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1361 + - uid: 1452 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,11.5 + pos: 6.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1362 + - uid: 1453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,11.5 + pos: 8.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1365 + - uid: 1460 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,12.5 + pos: 1.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1366 + - uid: 1461 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,12.5 + pos: 3.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1367 + - uid: 1462 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,12.5 + pos: 2.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1368 + - uid: 1504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,12.5 + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1369 + color: '#0055CCFF' + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,12.5 + pos: 4.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1370 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,12.5 + pos: 5.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1371 + - uid: 1547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,12.5 + pos: 9.5,-20.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1372 + - uid: 1551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,12.5 + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1373 + - uid: 1553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 + pos: 9.5,-22.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1374 + - uid: 1604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,12.5 + pos: 0.5,-25.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1375 + - uid: 1750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,12.5 + rot: -1.5707963267948966 rad + pos: 6.5,-23.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1377 + color: '#0055CCFF' + - uid: 1751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1378 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1379 + - uid: 1753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1380 + - uid: 1754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1381 + - uid: 1758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1385 + - uid: 1764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,13.5 + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1386 + color: '#990000FF' + - uid: 1765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,13.5 + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1387 + - uid: 1772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 + rot: 3.141592653589793 rad + pos: -4.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1388 + - uid: 1775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,13.5 + pos: -3.5,-19.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1389 + - uid: 1776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 + pos: -2.5,-20.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1396 + - uid: 1777 components: - type: Transform - pos: 0.5,-3.5 + pos: -2.5,-21.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1397 + - uid: 1778 components: - type: Transform - pos: 0.5,-4.5 + pos: -2.5,-22.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1402 + - uid: 1781 components: - type: Transform - pos: 6.5,-3.5 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1403 + color: '#0055CCFF' + - uid: 2150 components: - type: Transform - pos: 6.5,-2.5 + rot: 1.5707963267948966 rad + pos: 9.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1404 + - uid: 2151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 + rot: 1.5707963267948966 rad + pos: -2.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1405 + - uid: 2152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 + rot: 1.5707963267948966 rad + pos: -1.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1406 + color: '#0055CCFF' + - uid: 2154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,5.5 + rot: 1.5707963267948966 rad + pos: 0.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1407 + color: '#0055CCFF' + - uid: 2155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1504 + color: '#0055CCFF' + - uid: 2156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1547 + - uid: 2157 components: - type: Transform - pos: 9.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1551 + color: '#0055CCFF' + - uid: 2158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 + rot: 1.5707963267948966 rad + pos: 4.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1553 + color: '#0055CCFF' + - uid: 2159 components: - type: Transform - pos: 9.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1604 + color: '#0055CCFF' + - uid: 2160 components: - type: Transform - pos: 0.5,-25.5 + rot: 1.5707963267948966 rad + pos: 6.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1750 + color: '#0055CCFF' + - uid: 2161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 + rot: 1.5707963267948966 rad + pos: 7.5,16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1751 + - uid: 2165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-23.5 + rot: 3.141592653589793 rad + pos: 10.5,13.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1752 + color: '#990000FF' + - uid: 2166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-23.5 + rot: 3.141592653589793 rad + pos: 10.5,14.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1753 + color: '#990000FF' + - uid: 2167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1754 + color: '#990000FF' + - uid: 2168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-23.5 + rot: 3.141592653589793 rad + pos: 1.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1758 + color: '#990000FF' + - uid: 2169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1764 + - uid: 2171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + rot: 3.141592653589793 rad + pos: 4.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1765 + - uid: 2172 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-23.5 + pos: 4.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1766 + - uid: 2173 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-22.5 + pos: 4.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1768 + - uid: 2174 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-20.5 + pos: 5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1769 + - uid: 2180 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-19.5 + pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1770 + - uid: 2181 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-17.5 + pos: -0.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1771 + - uid: 2182 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-16.5 + pos: 0.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1772 + - uid: 2183 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-17.5 + pos: 6.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1775 + color: '#990000FF' + - uid: 2184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-19.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1776 + color: '#990000FF' + - uid: 2185 components: - type: Transform - pos: -2.5,-20.5 + rot: 3.141592653589793 rad + pos: 6.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1777 + color: '#990000FF' + - uid: 2186 components: - type: Transform - pos: -2.5,-21.5 + rot: 3.141592653589793 rad + pos: 7.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1778 + - uid: 2212 components: - type: Transform - pos: -2.5,-22.5 + rot: 3.141592653589793 rad + pos: 7.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1781 + color: '#990000FF' + - uid: 2259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 3.141592653589793 rad + pos: -1.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 101 @@ -9066,22 +9744,62 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 705 + - uid: 659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 707 + - uid: 663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 + rot: 3.141592653589793 rad + pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 734 components: - type: Transform @@ -9096,6 +9814,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 854 components: - type: Transform @@ -9246,14 +9980,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1190 components: - type: Transform @@ -9262,37 +9988,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1376 + - uid: 1388 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: 7.5,15.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1384 - components: - - type: Transform - pos: 2.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1394 components: - type: Transform @@ -9309,6 +10012,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 1457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1757 components: - type: Transform @@ -9332,6 +10043,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 1016 @@ -9339,15 +10066,11 @@ entities: - type: Transform pos: 0.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1017 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPressurePump entities: - uid: 1023 @@ -9356,8 +10079,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#00CCFFFF' - uid: 1024 @@ -9366,8 +10087,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVentPump @@ -9381,8 +10100,6 @@ entities: - type: DeviceNetwork deviceLists: - 1893 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 726 @@ -9394,8 +10111,6 @@ entities: - type: DeviceNetwork deviceLists: - 1896 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1048 @@ -9404,8 +10119,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1333 @@ -9414,8 +10127,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1334 @@ -9424,8 +10135,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1335 @@ -9434,8 +10143,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1336 @@ -9444,8 +10151,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1337 @@ -9454,8 +10159,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1338 @@ -9464,8 +10167,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1341 @@ -9477,8 +10178,6 @@ entities: - type: DeviceNetwork deviceLists: - 1894 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1342 @@ -9490,8 +10189,6 @@ entities: - type: DeviceNetwork deviceLists: - 1894 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1345 @@ -9503,8 +10200,6 @@ entities: - type: DeviceNetwork deviceLists: - 1904 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1346 @@ -9516,8 +10211,6 @@ entities: - type: DeviceNetwork deviceLists: - 1905 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1347 @@ -9529,8 +10222,6 @@ entities: - type: DeviceNetwork deviceLists: - 1885 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1348 @@ -9542,8 +10233,6 @@ entities: - type: DeviceNetwork deviceLists: - 1885 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1352 @@ -9555,8 +10244,6 @@ entities: - type: DeviceNetwork deviceLists: - 1888 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1353 @@ -9568,81 +10255,92 @@ entities: - type: DeviceNetwork deviceLists: - 1889 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1363 + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1892 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1400 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1891 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1756 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,11.5 + pos: 9.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1895 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2177 + components: + - type: Transform + pos: 5.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - 1887 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1383 + - uid: 2178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 + pos: 2.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1890 - - type: AtmosDevice - joinedGrid: 1 + - 1887 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1398 + - uid: 2189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 0.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1892 - - type: AtmosDevice - joinedGrid: 1 + - 1887 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1400 + - uid: 2190 components: - type: Transform - pos: 0.5,-1.5 + pos: 7.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1891 - - type: AtmosDevice - joinedGrid: 1 + - 1887 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1408 + - uid: 2197 components: - type: Transform - pos: 2.5,7.5 + pos: -0.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1756 + - uid: 2207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 + pos: 8.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 1895 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -9653,8 +10351,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 727 @@ -9666,8 +10362,6 @@ entities: - type: DeviceNetwork deviceLists: - 1896 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1049 @@ -9676,8 +10370,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1126 @@ -9689,8 +10381,6 @@ entities: - type: DeviceNetwork deviceLists: - 1888 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1327 @@ -9699,8 +10389,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1328 @@ -9709,8 +10397,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1330 @@ -9719,8 +10405,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1331 @@ -9729,8 +10413,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1332 @@ -9739,8 +10421,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1339 @@ -9752,8 +10432,6 @@ entities: - type: DeviceNetwork deviceLists: - 1894 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1340 @@ -9765,8 +10443,6 @@ entities: - type: DeviceNetwork deviceLists: - 1894 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1343 @@ -9778,8 +10454,6 @@ entities: - type: DeviceNetwork deviceLists: - 1904 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1344 @@ -9791,8 +10465,6 @@ entities: - type: DeviceNetwork deviceLists: - 1905 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1349 @@ -9804,8 +10476,6 @@ entities: - type: DeviceNetwork deviceLists: - 1885 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1350 @@ -9817,8 +10487,6 @@ entities: - type: DeviceNetwork deviceLists: - 1885 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1351 @@ -9830,93 +10498,103 @@ entities: - type: DeviceNetwork deviceLists: - 1889 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1364 + - uid: 1399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1887 - - type: AtmosDevice - joinedGrid: 1 + - 1892 - type: AtmosPipeColor color: '#990000FF' - - uid: 1390 + - uid: 1401 components: - type: Transform - pos: 4.5,13.5 + pos: 6.5,-1.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1890 - - type: AtmosDevice - joinedGrid: 1 + - 1891 - type: AtmosPipeColor color: '#990000FF' - - uid: 1399 + - uid: 1562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1892 - - type: AtmosDevice - joinedGrid: 1 + - 1893 - type: AtmosPipeColor color: '#990000FF' - - uid: 1401 + - uid: 1755 components: - type: Transform - pos: 6.5,-1.5 + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1891 - - type: AtmosDevice - joinedGrid: 1 + - 1895 - type: AtmosPipeColor color: '#990000FF' - - uid: 1410 + - uid: 2175 components: - type: Transform pos: 4.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1887 - type: AtmosPipeColor color: '#990000FF' - - uid: 1562 + - uid: 2176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 + pos: 1.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1893 - - type: AtmosDevice - joinedGrid: 1 + - 1887 - type: AtmosPipeColor color: '#990000FF' - - uid: 1755 + - uid: 2187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 + pos: 6.5,7.5 parent: 1 - type: DeviceNetwork deviceLists: - - 1895 - - type: AtmosDevice - joinedGrid: 1 + - 1887 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2188 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1887 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2205 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2208 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: Gauze @@ -10313,18 +10991,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,11.5 parent: 1 - - uid: 444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - - uid: 446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - uid: 447 components: - type: Transform @@ -10357,12 +11023,6 @@ entities: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - uid: 484 components: - type: Transform @@ -10373,62 +11033,53 @@ entities: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 489 + - uid: 496 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,14.5 + pos: 2.5,14.5 parent: 1 - - uid: 490 + - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,14.5 + pos: -0.5,14.5 parent: 1 - - uid: 491 + - uid: 498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,14.5 + pos: 7.5,14.5 parent: 1 - - uid: 497 + - uid: 499 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,15.5 + pos: 0.5,14.5 parent: 1 - - uid: 499 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: -2.5,14.5 parent: 1 - uid: 502 components: - type: Transform - pos: 3.5,16.5 + rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 1 - uid: 503 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,15.5 + pos: 6.5,14.5 parent: 1 - uid: 504 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - - uid: 509 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1 - - uid: 510 - components: - - type: Transform - pos: 4.5,16.5 + pos: 9.5,14.5 parent: 1 - uid: 519 components: @@ -10502,23 +11153,34 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 1 - - uid: 621 + - uid: 627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 + rot: 3.141592653589793 rad + pos: -1.5,21.5 parent: 1 - - uid: 622 + - uid: 635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + rot: 3.141592653589793 rad + pos: 8.5,19.5 parent: 1 - - uid: 624 + - uid: 637 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,20.5 + parent: 1 + - uid: 673 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,12.5 + pos: 3.5,9.5 parent: 1 - uid: 693 components: @@ -10531,6 +11193,12 @@ entities: - type: Transform pos: 1.5,-17.5 parent: 1 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 - uid: 966 components: - type: Transform @@ -10541,6 +11209,60 @@ entities: - type: Transform pos: 7.5,-9.5 parent: 1 + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,22.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 1 - uid: 1529 components: - type: Transform @@ -10608,15 +11330,60 @@ entities: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1646 + - uid: 1646 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 1886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - uid: 2069 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 2119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 1 + - uid: 2146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 1 + - uid: 2149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1 + - uid: 2230 components: - type: Transform - pos: 8.5,-27.5 + pos: 2.5,22.5 parent: 1 - - uid: 1664 + - uid: 2232 components: - type: Transform - pos: -0.5,-27.5 + pos: 3.5,22.5 parent: 1 - proto: Gyroscope entities: @@ -10644,7 +11411,15 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.0635476,13.659181 + pos: 7.3851595,19.550804 + parent: 1 +- proto: HandheldHealthAnalyzer + entities: + - uid: 1184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.70859075,18.949242 parent: 1 - proto: HospitalCurtainsOpen entities: @@ -10725,6 +11500,23 @@ entities: - type: Transform pos: 0.5041363,-0.44300538 parent: 1 + - uid: 2202 + components: + - type: Transform + pos: 2.2151816,15.728031 + parent: 1 + - uid: 2321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.027682,17.017094 + parent: 1 + - uid: 2322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.183932,17.235844 + parent: 1 - proto: LockerElectricalSuppliesFilled entities: - uid: 1675 @@ -10732,24 +11524,30 @@ entities: - type: Transform pos: -1.5,-25.5 parent: 1 -- proto: LockerFreezer +- proto: LockerEvidence entities: - - uid: 411 + - uid: 685 components: - type: Transform - pos: -0.5,1.5 + anchored: True + pos: 1.5,13.5 parent: 1 -- proto: LockerSecurityFilled - entities: - - uid: 671 + - type: Physics + bodyType: Static + - uid: 830 components: - type: Transform - pos: 1.5,11.5 + anchored: True + pos: 5.5,13.5 parent: 1 - - uid: 672 + - type: Physics + bodyType: Static +- proto: LockerFreezer + entities: + - uid: 411 components: - type: Transform - pos: 5.5,11.5 + pos: -0.5,1.5 parent: 1 - proto: LockerWallMedicalDoctorFilled entities: @@ -10852,7 +11650,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.899485,13.307618 + pos: 7.2757845,18.511742 parent: 1 - proto: MedkitFilled entities: @@ -10913,15 +11711,11 @@ entities: - type: Transform pos: 5.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1010 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenCanister entities: - uid: 555 @@ -10929,15 +11723,25 @@ entities: - type: Transform pos: 1.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1917 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 +- proto: PaperCaptainsThoughts + entities: + - uid: 2306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.090183,16.368656 + parent: 1 + - uid: 2307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.3323703,16.517094 + parent: 1 - proto: PlaqueAtmos entities: - uid: 2076 @@ -11044,10 +11848,11 @@ entities: parent: 1 - proto: PlushieSharkPink entities: - - uid: 2040 + - uid: 1252 components: - type: Transform - pos: 4.3150706,8.43586 + rot: 1.5707963267948966 rad + pos: 1.6178353,8.615017 parent: 1 - proto: PlushieSlime entities: @@ -11125,6 +11930,12 @@ entities: - type: Transform pos: 5.5,-13.5 parent: 1 + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 - uid: 661 components: - type: Transform @@ -11285,13 +12096,47 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 1 + - uid: 2210 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + - uid: 2220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + - uid: 2221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + - uid: 2224 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 - proto: PowerCellRecharger entities: - - uid: 675 + - uid: 657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 parent: 1 - uid: 712 components: @@ -11311,12 +12156,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 1 - - uid: 818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 1 - uid: 1794 components: - type: Transform @@ -11406,6 +12245,16 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 1 + - uid: 643 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 - uid: 776 components: - type: Transform @@ -11441,24 +12290,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-24.5 parent: 1 - - uid: 829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - uid: 830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - - uid: 843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - uid: 844 components: - type: Transform @@ -11471,17 +12302,23 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 - - uid: 1608 + - uid: 1371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: -0.5,7.5 parent: 1 - - uid: 1609 + - uid: 1608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,9.5 + pos: 13.5,11.5 parent: 1 - uid: 1611 components: @@ -11547,6 +12384,26 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 1 + - uid: 2214 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 2263 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 2304 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 2305 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 - proto: PoweredSmallLightMaintenance entities: - uid: 979 @@ -11603,17 +12460,23 @@ entities: parent: 1 - proto: RadioHandheld entities: - - uid: 2067 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.043768287,13.710982 + parent: 1 + - uid: 1366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.0049468875,11.699812 + pos: 7.533597,19.371117 parent: 1 - uid: 2068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.04011,13.377931 + pos: 7.4164095,19.25393 parent: 1 - proto: Railing entities: @@ -11892,6 +12755,18 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-14.5 parent: 1 + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 - uid: 997 components: - type: Transform @@ -12005,11 +12880,6 @@ entities: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 1966 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 - proto: RandomPosterLegit entities: - uid: 1938 @@ -12764,12 +13634,6 @@ entities: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - uid: 451 components: - type: Transform @@ -12788,12 +13652,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 1 - - uid: 467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - uid: 471 components: - type: Transform @@ -12805,150 +13663,186 @@ entities: - type: Transform pos: -5.5,9.5 parent: 1 - - uid: 486 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,14.5 + pos: 3.5,10.5 parent: 1 - - uid: 492 + - uid: 613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,14.5 + pos: 2.5,6.5 parent: 1 - - uid: 495 + - uid: 614 components: - type: Transform - pos: 3.5,16.5 + pos: 3.5,6.5 parent: 1 - - uid: 496 + - uid: 615 components: - type: Transform - pos: 2.5,16.5 + pos: 4.5,6.5 parent: 1 - - uid: 501 + - uid: 617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 + rot: 1.5707963267948966 rad + pos: 8.5,10.5 parent: 1 - - uid: 505 + - uid: 628 components: - type: Transform - pos: 4.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 506 + - uid: 629 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1 + - uid: 630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,15.5 + pos: 6.5,22.5 parent: 1 - - uid: 511 + - uid: 631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 parent: 1 - - uid: 512 + - uid: 634 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 647 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,15.5 + pos: 9.5,14.5 parent: 1 - - uid: 613 + - uid: 688 components: - type: Transform - pos: 2.5,6.5 + pos: 3.5,-17.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 parent: 1 - - uid: 614 + - uid: 784 components: - type: Transform - pos: 3.5,6.5 + rot: 1.5707963267948966 rad + pos: 10.5,14.5 parent: 1 - - uid: 615 + - uid: 785 components: - type: Transform - pos: 4.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,14.5 parent: 1 - - uid: 617 + - uid: 832 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,10.5 + pos: -0.5,-19.5 parent: 1 - - uid: 628 + - uid: 977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + pos: 12.5,12.5 parent: 1 - - uid: 665 + - uid: 1250 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,12.5 + pos: 0.5,14.5 parent: 1 - - uid: 666 + - uid: 1270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 + rot: 3.141592653589793 rad + pos: -1.5,19.5 parent: 1 - - uid: 667 + - uid: 1354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + rot: 1.5707963267948966 rad + pos: -0.5,22.5 parent: 1 - - uid: 683 + - uid: 1355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 + rot: 3.141592653589793 rad + pos: 8.5,21.5 parent: 1 - - uid: 684 + - uid: 1356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 + rot: 3.141592653589793 rad + pos: -4.5,15.5 parent: 1 - - uid: 688 + - uid: 1365 components: - type: Transform - pos: 3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 2.5,14.5 parent: 1 - - uid: 691 + - uid: 1382 components: - type: Transform - pos: 2.5,-17.5 + rot: 3.141592653589793 rad + pos: -4.5,16.5 parent: 1 - - uid: 694 + - uid: 1383 components: - type: Transform - pos: -5.5,13.5 + rot: 3.141592653589793 rad + pos: 11.5,15.5 parent: 1 - - uid: 732 + - uid: 1390 components: - type: Transform - pos: -5.5,10.5 + pos: 2.5,22.5 parent: 1 - - uid: 753 + - uid: 1454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 + rot: 3.141592653589793 rad + pos: -1.5,20.5 parent: 1 - - uid: 832 + - uid: 1456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-19.5 + rot: 3.141592653589793 rad + pos: 11.5,16.5 parent: 1 - - uid: 977 + - uid: 1459 components: - type: Transform - pos: 12.5,12.5 + rot: 3.141592653589793 rad + pos: -1.5,21.5 parent: 1 - uid: 1567 components: @@ -12970,6 +13864,12 @@ entities: - type: Transform pos: -5.5,12.5 parent: 1 + - uid: 1605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 - uid: 1606 components: - type: Transform @@ -13025,6 +13925,36 @@ entities: - type: Transform pos: 0.5,-27.5 parent: 1 + - uid: 1702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - uid: 1909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - uid: 1910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 - uid: 1967 components: - type: Transform @@ -13045,6 +13975,35 @@ entities: - type: Transform pos: -0.5,-9.5 parent: 1 + - uid: 2229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 1 + - uid: 2231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 1 + - uid: 2234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 1 + - uid: 2236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,22.5 + parent: 1 + - uid: 2243 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 - proto: SignAtmos entities: - uid: 1780 @@ -13201,6 +14160,18 @@ entities: - type: Transform pos: 4.5,1.5 parent: 1 + - uid: 2248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 2250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 - proto: SMESBasic entities: - uid: 2122 @@ -13296,14 +14267,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 1 -- proto: Stunbaton - entities: - - uid: 1886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.036196887,11.387312 - parent: 1 - proto: SubstationBasic entities: - uid: 1700 @@ -13357,20 +14320,20 @@ entities: parent: 1 - proto: SuitStorageSec entities: - - uid: 668 + - uid: 1373 components: - type: Transform - pos: 2.5,11.5 + pos: 3.5,13.5 parent: 1 - - uid: 669 + - uid: 1391 components: - type: Transform - pos: 3.5,11.5 + pos: 2.5,13.5 parent: 1 - - uid: 670 + - uid: 1406 components: - type: Transform - pos: 4.5,11.5 + pos: 4.5,13.5 parent: 1 - proto: Syringe entities: @@ -13400,29 +14363,29 @@ entities: rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 662 + - uid: 446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 parent: 1 - - uid: 664 + - uid: 656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 + rot: 1.5707963267948966 rad + pos: 7.5,13.5 parent: 1 - - uid: 673 + - uid: 701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 + rot: 1.5707963267948966 rad + pos: -0.5,13.5 parent: 1 - - uid: 674 + - uid: 702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 + rot: 1.5707963267948966 rad + pos: 0.5,13.5 parent: 1 - uid: 710 components: @@ -13442,11 +14405,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 1 - - uid: 2069 - components: - - type: Transform - pos: 6.5,13.5 - parent: 1 - proto: TableCounterWood entities: - uid: 387 @@ -13507,6 +14465,73 @@ entities: rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 1 + - uid: 636 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 2144 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 +- proto: TableFancyWhite + entities: + - uid: 1370 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 2192 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 2198 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 2199 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 2223 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 2247 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 2265 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 - proto: TableGlass entities: - uid: 4 @@ -13555,10 +14580,10 @@ entities: parent: 1 - proto: TelecomServerFilled entities: - - uid: 2065 + - uid: 2222 components: - type: Transform - pos: 7.5,13.5 + pos: 10.5,15.5 parent: 1 - proto: Thruster entities: @@ -13727,38 +14752,49 @@ entities: parent: 1 - proto: WallShuttleDiagonal entities: + - uid: 441 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 - uid: 445 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,14.5 parent: 1 - - uid: 469 + - uid: 483 components: - type: Transform - pos: -1.5,15.5 + pos: -5.5,14.5 parent: 1 - - uid: 470 + - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,15.5 + pos: 10.5,18.5 parent: 1 - - uid: 483 + - uid: 1257 components: - type: Transform - pos: -5.5,14.5 + pos: -1.5,22.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -4.5,17.5 parent: 1 - - uid: 498 + - uid: 1375 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,16.5 + pos: 11.5,17.5 parent: 1 - - uid: 508 + - uid: 1378 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: 8.5,22.5 parent: 1 - proto: WallShuttleInterior entities: @@ -14285,12 +15321,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1 - uid: 442 components: - type: Transform @@ -14330,6 +15360,12 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 1 + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 - uid: 488 components: - type: Transform @@ -14345,14 +15381,8 @@ entities: - uid: 500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - - uid: 507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 + rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 1 - uid: 515 components: @@ -14424,35 +15454,17 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-17.5 parent: 1 - - uid: 625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - - uid: 626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - uid: 629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 1 - - uid: 630 + - uid: 622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 + rot: 1.5707963267948966 rad + pos: 1.5,22.5 parent: 1 - - uid: 631 + - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: 10.5,17.5 parent: 1 - uid: 632 components: @@ -14466,6 +15478,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 1 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 - uid: 660 components: - type: Transform @@ -14518,6 +15536,24 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 1 + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 1 - uid: 1508 components: - type: Transform @@ -14720,6 +15756,36 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-15.5 parent: 1 + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + - uid: 1911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 1 + - uid: 2235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 1 - proto: WarningWaste entities: - uid: 2077 @@ -14756,36 +15822,29 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - - uid: 1605 + - uid: 648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,11.5 + pos: 6.5,13.5 parent: 1 - - uid: 2119 + - uid: 649 components: - type: Transform - pos: 6.5,13.5 + rot: 1.5707963267948966 rad + pos: 7.5,13.5 parent: 1 -- proto: WeaponDisabler - entities: - - uid: 1897 + - uid: 2147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.1339264,11.511697 + pos: -0.5,18.5 parent: 1 - - uid: 1910 + - uid: 2233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.891739,11.542947 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 1 - proto: WindoorBarKitchenLocked entities: @@ -14815,77 +15874,71 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 -- proto: WindoorSecureSecurityLawyerLocked +- proto: WindoorSecureSecurityLocked entities: + - uid: 618 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 - uid: 619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,9.5 + pos: 2.5,11.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 636 - - type: DeviceLinkSource - linkedPorts: - 636: - - DoorStatus: Close - - uid: 623 + - uid: 639 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 636 - - type: DeviceLinkSource - linkedPorts: - 636: - - DoorStatus: Close - - uid: 636 + - uid: 684 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,8.5 + pos: 4.5,9.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 619 - - 623 - - type: DeviceLinkSource - linkedPorts: - 619: - - DoorStatus: Close - 623: - - DoorStatus: Close -- proto: WindoorSecureSecurityLocked - entities: - - uid: 1906 + - uid: 707 components: - type: Transform - pos: -0.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,12.5 parent: 1 - - type: Door - secondsUntilStateChange: -1790.4072 - state: Opening - - uid: 1907 + - uid: 843 components: - type: Transform - pos: 0.5,11.5 + rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 1 - - uid: 1908 + - uid: 1367 components: - type: Transform - pos: 6.5,11.5 + rot: 3.141592653589793 rad + pos: 0.5,12.5 parent: 1 - - uid: 1909 + - uid: 1368 components: - type: Transform - pos: 7.5,11.5 + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 parent: 1 - proto: WindowReinforcedDirectional entities: @@ -14946,67 +15999,93 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-0.5 parent: 1 - - uid: 618 + - uid: 482 components: - type: Transform - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - uid: 620 - components: - - type: Transform - pos: 4.5,10.5 - parent: 1 - - uid: 634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,7.5 + pos: 1.5,10.5 parent: 1 - - uid: 635 + - uid: 675 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - - uid: 637 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,8.5 + pos: 5.5,9.5 parent: 1 - - uid: 638 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,8.5 + pos: 1.5,9.5 parent: 1 - - uid: 639 + - uid: 793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,9.5 parent: 1 - - uid: 640 + - uid: 829 components: - type: Transform - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,7.5 parent: 1 - - uid: 649 + - uid: 1364 components: - type: Transform - pos: 2.5,10.5 + rot: 1.5707963267948966 rad + pos: 0.5,13.5 parent: 1 - - uid: 1911 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,11.5 + pos: 2.5,13.5 parent: 1 - - uid: 1912 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,11.5 + pos: 4.5,13.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 parent: 1 ... diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index f00d7049a52..910a059ee72 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -4358,7 +4358,6 @@ entities: solutions: absorbed: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 563011f75ff..8309564315f 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -7,6 +7,7 @@ tilemap: 14: FloorBar 17: FloorBlue 18: FloorBlueCircuit + 1: FloorBrassFilled 23: FloorCarpetClown 24: FloorCarpetOffice 25: FloorCave @@ -73,14 +74,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: Parallax parallax: ArenaStation - type: LoadedMap - - type: GridTree - - type: MovedGrids - uid: 6747 components: - type: MetaData @@ -131,7 +133,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: XgAAAAACXgAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABZQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABZQAAAAAAXgAAAAABZQAAAAAAZQAAAAAAXgAAAAABXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABaQAAAAACaQAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAABQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACaQAAAAABaQAAAAACaQAAAAACaQAAAAACaQAAAAADaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAaQAAAAAAaQAAAAAAaQAAAAADaQAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABUAAAAAAAXgAAAAAAXgAAAAADXgAAAAABaQAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAAAaQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADaQAAAAAAaQAAAAADaQAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAD + tiles: XgAAAAACXgAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABZQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABZQAAAAAAXgAAAAABZQAAAAAAZQAAAAAAXgAAAAABXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABaQAAAAACaQAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAABQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACaQAAAAABaQAAAAACaQAAAAACaQAAAAACaQAAAAADaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAaQAAAAAAaQAAAAAAaQAAAAADaQAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABUAAAAAAAXgAAAAAAXgAAAAADXgAAAAABaQAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAAAaQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADaQAAAAAAaQAAAAADaQAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAD version: 6 2,1: ind: 2,1 @@ -143,7 +145,7 @@ entities: version: 6 3,0: ind: 3,0 - tiles: UAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAACfwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAACfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADUAAAAAAAXgAAAAAAXgAAAAABXgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAaQAAAAADUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAQwAAAAAAaQAAAAABUAAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAaQAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAADaQAAAAADXgAAAAACaQAAAAABaQAAAAADaQAAAAABaQAAAAACaQAAAAABaQAAAAAAaQAAAAACaQAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABaQAAAAABaQAAAAACaQAAAAADaQAAAAACXgAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAACaQAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAABJQAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABUAAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: UAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAACfwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAACfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADUAAAAAAAXgAAAAAAXgAAAAABXgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAaQAAAAADUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAQwAAAAAAaQAAAAABUAAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAaQAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAADaQAAAAADXgAAAAACaQAAAAABaQAAAAADaQAAAAABaQAAAAACaQAAAAABaQAAAAAAaQAAAAACaQAAAAAAaQAAAAABaQAAAAACaQAAAAAAaQAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABaQAAAAABaQAAAAACaQAAAAADaQAAAAACXgAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAACaQAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAABJQAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABUAAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 1,-1: ind: 1,-1 @@ -159,7 +161,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: awAAAAABbAAAAAACUAAAAAAAIQAAAAADIQAAAAACIQAAAAABUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADfwAAAAAAQwAAAAAAIgAAAAAAIgAAAAAAawAAAAACbAAAAAAAfwAAAAAAUAAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIgAAAAADZgAAAAAAZgAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAABawAAAAADawAAAAADawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAAAawAAAAABawAAAAACawAAAAABZgAAAAAAZgAAAAACawAAAAACawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAADawAAAAACawAAAAACawAAAAADawAAAAADawAAAAADZgAAAAAAZgAAAAAAawAAAAACawAAAAABawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAACawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAADawAAAAADbAAAAAABbAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABbAAAAAACfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADbAAAAAADbAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABbAAAAAADbAAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAbAAAAAADbAAAAAADfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAbAAAAAADbAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADbAAAAAABbAAAAAACXgAAAAACXgAAAAABXgAAAAACbwAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADZQAAAAAAXgAAAAAAXgAAAAABXgAAAAACbwAAAAADbAAAAAAAbAAAAAAAfwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABbAAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAACfwAAAAAAbAAAAAADbAAAAAADfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAbwAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACfwAAAAAATwAAAAABbAAAAAADfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAZQAAAAAAXgAAAAABfwAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAA + tiles: awAAAAABbAAAAAACUAAAAAAAIQAAAAADIQAAAAACIQAAAAABUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADfwAAAAAAQwAAAAAAIgAAAAAAIgAAAAAAawAAAAACbAAAAAAAfwAAAAAAUAAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIgAAAAADZgAAAAAAZgAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAABawAAAAADawAAAAADawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAAAawAAAAABawAAAAACawAAAAABZgAAAAAAZgAAAAACawAAAAACawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAADawAAAAACawAAAAACawAAAAADawAAAAADawAAAAADZgAAAAAAZgAAAAAAawAAAAACawAAAAABawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAACawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAADawAAAAADbAAAAAABbAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABbAAAAAACfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADbAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADbAAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADbAAAAAADfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAYwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAfwAAAAAAbAAAAAADbAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADbAAAAAABbAAAAAACXgAAAAACXgAAAAABXgAAAAACbwAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADZQAAAAAAXgAAAAAAXgAAAAABXgAAAAACbwAAAAADbAAAAAAAbAAAAAAAfwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbAAAAAABbAAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAACfwAAAAAAbAAAAAADbAAAAAADfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAbwAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACfwAAAAAATwAAAAABbAAAAAADfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAZQAAAAAAXgAAAAABfwAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -183,7 +185,7 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: IgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAADfQAAAAAAfQAAAAADUAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfQAAAAAAUAAAAAAAfQAAAAADUAAAAAAAUAAAAAAAawAAAAABawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAABawAAAAAAawAAAAACXgAAAAADXgAAAAAAMAAAAAABXgAAAAACXgAAAAACXgAAAAAAMAAAAAACXgAAAAACawAAAAABawAAAAADawAAAAABawAAAAADawAAAAAAawAAAAAAawAAAAACawAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACMAAAAAABXgAAAAADXgAAAAABXgAAAAABawAAAAABawAAAAADawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAACXgAAAAACXgAAAAACMAAAAAAAXgAAAAAAXgAAAAACXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAXgAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAYwAAAAABYwAAAAAAYwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACfwAAAAAAZQAAAAAAfwAAAAAAYwAAAAACYwAAAAADYwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABfwAAAAAAZQAAAAAAfwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABZQAAAAAAXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAbwAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADZQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAADfQAAAAAAfQAAAAADUAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfQAAAAAAUAAAAAAAfQAAAAADUAAAAAAAUAAAAAAAawAAAAABawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAABawAAAAAAawAAAAACXgAAAAADXgAAAAAAMAAAAAABXgAAAAACXgAAAAACXgAAAAAAMAAAAAACXgAAAAACawAAAAABawAAAAADawAAAAABawAAAAADawAAAAAAawAAAAAAawAAAAACawAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACMAAAAAABXgAAAAADXgAAAAABXgAAAAABawAAAAABawAAAAADawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAACXgAAAAACXgAAAAACMAAAAAAAXgAAAAAAXgAAAAACXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAXgAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAYwAAAAABYwAAAAAAYwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAYwAAAAACYwAAAAADYwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABZQAAAAAAXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAbwAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADZQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -259,7 +261,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: bwAAAAABZQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAbwAAAAACXgAAAAACfwAAAAAAXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAbwAAAAACXgAAAAAAXgAAAAAAXgAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAZwAAAAADfwAAAAAAfwAAAAAAXgAAAAACZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAZwAAAAAAZwAAAAADfwAAAAAAZQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZwAAAAACZwAAAAAAfwAAAAAAXgAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAZwAAAAACZwAAAAACfwAAAAAAXgAAAAACZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAABZQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAbwAAAAACXgAAAAACfwAAAAAAXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAbwAAAAACXgAAAAAAXgAAAAAAXgAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAZwAAAAADfwAAAAAAfwAAAAAAXgAAAAACZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAZwAAAAAAZwAAAAADfwAAAAAAZQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAZwAAAAACZwAAAAAAfwAAAAAAXgAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAZwAAAAACZwAAAAACfwAAAAAAXgAAAAACZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 @@ -8530,2650 +8532,2615 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - 0,-1: - 0: 65535 - 0,0: + -4,-4: + 0: 61559 + -4,-5: + 0: 30583 + -5,-4: + 0: 2047 + -4,-3: 0: 65535 + -5,-3: + 0: 30711 -4,-2: - 0: 65535 + 0: 53232 + -5,-2: + 0: 7632 -4,-1: + 0: 61678 + -5,-1: + 0: 65532 + -4,0: + 0: 53247 + -3,-4: + 0: 64443 + -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 30704 -3,-1: + 0: 29047 + -3,-5: + 0: 48115 + -3,0: + 0: 32767 + -2,-4: + 0: 61951 + -2,-3: 0: 65535 -2,-2: - 0: 65535 + 0: 65520 -2,-1: + 0: 40959 + -2,-5: + 0: 65520 + -2,0: + 0: 12287 + -1,-4: + 0: 61695 + -1,-3: 0: 65535 -1,-2: - 0: 65535 - -4,0: - 0: 65535 + 0: 61180 + -1,-5: + 0: 65524 + -1,-1: + 0: 61134 + -1,0: + 0: 3838 + 0,-4: + 0: 56558 + 0,-3: + 0: 65529 + 0,-2: + 0: 65496 + 0,-1: + 0: 65485 + -5,0: + 0: 7679 -4,1: - 0: 65535 + 0: 3569 + -5,1: + 0: 32767 -4,2: - 0: 65535 + 0: 241 + -5,2: + 0: 14320 -4,3: + 0: 63739 + -4,4: 0: 65535 - -3,0: - 0: 65535 + -5,3: + 0: 62464 -3,1: - 0: 65535 + 0: 4080 -3,2: - 0: 65535 + 0: 255 -3,3: - 0: 65535 - -2,0: + 0: 61696 + -3,4: 0: 65535 -2,1: - 0: 65535 + 0: 2039 -2,2: - 0: 65535 + 0: 59393 -2,3: + 0: 65518 + -2,4: 0: 65535 -1,1: - 0: 65535 + 0: 33023 -1,2: - 0: 65535 + 0: 65532 -1,3: 0: 65535 - 0,1: + -1,4: 0: 65535 + 0,0: + 0: 52509 + 0,1: + 0: 61695 0,2: - 0: 65535 + 0: 65521 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 30591 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 + 0: 32753 + 0,-5: + 0: 61412 1,-4: - 0: 65535 + 0: 61422 1,-3: - 0: 65535 + 0: 65520 1,-2: - 0: 65535 + 0: 48057 1,-1: - 0: 65535 + 0: 48059 + 1,0: + 0: 4041 2,-3: - 0: 65535 + 0: 65520 2,-2: - 0: 13119 + 0: 4368 + 2,-1: + 0: 4369 + 2,-4: + 0: 8814 + 2,0: + 0: 4093 3,-3: - 0: 65535 - 3,-2: - 0: 52431 + 0: 65520 + 3,0: + 0: 12275 3,-4: - 0: 52428 + 0: 34824 + 3,-2: + 0: 34824 3,-1: - 0: 64716 - 1,2: + 0: 34952 + 3,-5: + 0: 33727 + 4,-4: + 0: 65487 + 4,-3: + 0: 65308 + 4,-2: + 0: 65359 + 4,-1: 0: 65535 + 0,4: + 0: 13111 + 1,1: + 0: 29789 + 1,2: + 0: 65520 1,3: - 0: 65535 + 0: 4 2,2: - 0: 65535 - 2,3: - 0: 4383 + 0: 65520 + 3,1: + 0: 34955 3,2: - 0: 65535 + 0: 65520 3,3: - 0: 52431 - 3,0: + 0: 34944 + 4,0: + 0: 36848 + 4,1: + 0: 49075 + 4,2: + 0: 65528 + 4,3: + 0: 65520 + -8,0: + 0: 32753 + -8,-1: 0: 65535 + -9,0: + 0: 61377 + -8,1: + 0: 30577 + -9,1: + 0: 61160 + -8,2: + 0: 1905 + -9,2: + 0: 3816 -8,3: - 0: 65535 + 0: 30401 + -9,3: + 0: 36848 + -8,4: + 0: 30583 -7,3: - 0: 65535 + 0: 28412 + -7,-1: + 0: 65520 + -7,0: + 0: 3808 + -7,1: + 0: 57582 -7,2: - 0: 65535 + 0: 52750 + -7,4: + 0: 20854 -6,0: - 0: 65535 - -7,-1: - 0: 65535 + 0: 46079 + -6,1: + 0: 48059 + -6,2: + 0: 65411 + -6,3: + 0: 33038 -6,-1: + 0: 65528 + -6,4: + 0: 61128 + -5,4: + 0: 65535 + -8,-4: + 0: 65343 + -8,-5: 0: 65535 + -9,-4: + 0: 52495 + -8,-3: + 0: 65343 + -9,-3: + 0: 56589 + -8,-2: + 0: 65523 + -9,-2: + 0: 57296 + -9,-1: + 0: 57308 + -7,-4: + 0: 65262 + -7,-3: + 0: 3822 + -7,-2: + 0: 61166 + -6,-4: + 0: 7645 + -6,-3: + 0: 52733 -6,-2: + 0: 56817 + -6,-5: + 0: 35771 + -5,-5: 0: 65535 - -5,-3: + -4,5: + 0: 61439 + -5,5: + 0: 30591 + -4,6: + 0: 307 + 1: 34952 + -5,6: 0: 65535 - -4,4: + -4,7: + 1: 63624 + -4,8: + 1: 4369 + 0: 61166 + -3,5: 0: 65535 - -2,4: + -3,6: + 1: 4369 + 0: 140 + -3,7: + 1: 29457 + -3,8: + 0: 13115 + 1: 17476 + -2,5: 0: 65535 - -1,4: + -2,6: + 0: 19 + 1: 34944 + -2,8: + 0: 28799 + -1,5: + 0: 4095 + -1,6: + 1: 30576 + -1,7: + 0: 13107 + -1,8: 0: 65535 - 0,4: - 0: 13111 - 3,5: + 0,5: + 0: 32785 + 0,8: + 0: 30719 + 0,6: + 0: 34952 + 0,7: + 0: 2176 + 1,5: + 0: 53248 + 1,6: + 0: 65421 + 1,7: + 0: 12274 + 1,8: 0: 65535 - 3,6: + 2,6: + 0: 65262 + 2,5: + 0: 3822 + 2,7: + 0: 61070 + 2,8: 0: 65535 + 3,5: + 0: 12030 + 3,6: + 0: 30711 3,7: + 0: 63239 + 3,8: 0: 65535 - 4,0: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 4,1: - 0: 65535 + 3,4: + 0: 52416 + 4,4: + 0: 32624 + 4,5: + 0: 1911 + 4,6: + 0: 4095 + 4,7: + 0: 61695 5,0: - 0: 65535 + 0: 56796 5,1: - 0: 65535 + 0: 65529 5,2: - 0: 65535 + 0: 65531 5,3: - 0: 65535 + 0: 59238 + 5,-1: + 0: 56797 + 5,4: + 0: 65534 6,0: - 0: 65535 + 0: 48059 6,1: - 0: 65535 + 0: 65521 6,2: - 0: 65535 + 0: 65533 6,3: + 0: 63743 + 6,-1: + 0: 15291 + 6,4: 0: 65535 7,0: 0: 65535 7,1: - 0: 65535 + 0: 57296 7,2: - 0: 65535 + 0: 65521 7,3: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 4,4: - 0: 65535 - 5,4: + 0: 47347 + 7,4: + 0: 3067 + 7,-1: + 0: 53245 + 8,0: + 0: 13247 + 8,1: + 0: 65528 + 8,2: + 0: 65520 + 8,3: + 0: 65524 + 4,8: 0: 65535 5,5: - 0: 65535 - 5,6: - 0: 65535 + 0: 53247 5,7: - 0: 65535 - 6,4: + 0: 64750 + 5,6: + 0: 61166 + 5,8: 0: 65535 6,5: - 0: 65535 + 0: 4095 6,6: - 0: 65535 + 0: 48059 6,7: - 0: 65535 - 7,4: - 0: 65535 + 0: 47931 + 6,8: + 0: 48059 7,5: - 0: 65535 + 0: 12030 7,6: - 0: 65535 + 0: 30583 7,7: + 0: 30503 + 7,8: + 0: 30583 + 8,4: + 0: 4095 + 8,5: + 0: 3581 + 8,6: 0: 65535 - 8,0: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 + 8,7: + 0: 65295 + 8,-1: + 0: 46075 + 9,0: + 0: 49663 + 9,1: + 0: 35343 9,2: - 0: 65535 + 0: 65534 + 9,-1: + 0: 61951 9,3: - 0: 65535 + 0: 25838 + 9,4: + 0: 26342 + 10,0: + 0: 61491 + 10,1: + 0: 65295 10,2: - 0: 65535 + 0: 64435 10,3: - 0: 65535 + 0: 61947 + 10,-1: + 0: 12543 + 10,4: + 0: 4095 + 11,0: + 0: 61440 + 11,1: + 0: 65423 11,2: - 0: 65535 + 0: 65532 11,3: + 0: 63743 + 11,4: + 0: 4095 + 12,0: + 0: 30310 + 12,1: + 0: 56583 + 12,2: + 0: 63965 + 12,3: + 0: 53503 + 8,8: 0: 65535 - 11,0: - 0: 65280 - 11,1: + 9,5: + 0: 4095 + 9,6: + 0: 30583 + 9,7: + 0: 65287 + 9,8: 0: 65535 - 11,4: + 10,5: + 0: 15359 + 10,6: + 0: 13107 + 10,7: + 0: 65523 + 10,8: + 0: 65535 + 11,5: + 0: 255 + 11,7: + 0: 65518 + 11,6: + 0: 60928 + 11,8: 0: 65535 12,4: + 0: 3549 + 12,5: + 0: 57599 + 12,6: + 0: 64974 + 12,7: + 0: 65309 + 12,8: 0: 65535 13,4: + 0: 4095 + 13,5: + 0: 62719 + 13,6: 0: 65535 - 14,4: + 13,7: + 0: 65295 + 13,3: + 0: 61951 + 13,8: 0: 65535 + 14,4: + 0: 61167 + 14,5: + 0: 61167 + 14,6: + 0: 61408 + 14,7: + 0: 61166 + 14,8: + 0: 61183 + 14,3: + 0: 57599 15,4: 0: 65535 - 16,4: - 0: 65535 - 12,0: - 0: 65535 - 12,1: + 15,5: 0: 65535 - 12,2: + 15,6: + 0: 65532 + 15,7: 0: 65535 - 12,3: + 15,3: + 0: 64767 + 15,8: 0: 65535 + 16,4: + 0: 3823 + 16,6: + 0: 4080 + 12,-1: + 0: 28415 13,0: 0: 65535 13,1: - 0: 65535 + 0: 56591 13,2: - 0: 65535 - 13,3: - 0: 65535 + 0: 61661 + 13,-1: + 0: 49527 14,0: 0: 65535 14,1: - 0: 65535 + 0: 45154 14,2: - 0: 65535 - 14,3: + 0: 61627 + 14,-1: 0: 65535 15,0: - 0: 65311 + 0: 4369 + 1: 49164 15,1: - 0: 65535 + 0: 28672 + 1: 8 15,2: - 0: 65535 - 15,3: - 0: 65535 + 0: 61559 + 15,-1: + 0: 4369 + 1: 16384 16,0: - 0: 62223 + 1: 61455 16,1: - 0: 65535 + 1: 15 + 0: 65280 16,2: - 0: 65535 + 0: 57599 16,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 0: 61167 + 4,-5: + 0: 64767 5,-4: - 0: 65535 + 0: 26151 5,-3: - 0: 65535 + 0: 65504 5,-2: - 0: 65535 - 5,-1: - 0: 65535 + 0: 40399 + 5,-5: + 0: 29286 6,-4: - 0: 65535 + 0: 30583 6,-3: - 0: 65535 + 0: 30583 6,-2: - 0: 65535 - 6,-1: - 0: 65535 + 0: 40959 + 6,-5: + 0: 32767 7,-4: - 0: 65535 + 0: 30583 7,-3: - 0: 65535 + 0: 1909 7,-2: + 0: 40959 + 7,-5: + 0: 12287 + 8,-4: + 0: 48051 + 8,-3: + 0: 16371 + 8,-2: + 0: 3003 + 4,-8: + 0: 56817 + 4,-9: + 0: 57305 + 3,-8: + 0: 4095 + 4,-7: 0: 65535 - 7,-1: - 0: 65535 + 3,-7: + 0: 64443 4,-6: - 0: 65535 - 4,-5: - 0: 65535 + 0: 53247 + 3,-6: + 0: 15359 + 5,-7: + 0: 4079 5,-6: - 0: 65535 - 5,-5: - 0: 65535 + 0: 3838 + 5,-9: + 0: 32624 + 5,-8: + 0: 61156 + 6,-8: + 0: 65520 + 6,-7: + 0: 12287 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 + 0: 10103 + 6,-9: + 0: 30583 + 7,-8: + 0: 64443 7,-7: + 0: 48063 + 7,-6: 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: + 7,-9: 0: 65535 + 8,-8: + 0: 65339 8,-7: - 0: 65535 + 0: 47935 8,-6: - 0: 65535 + 0: 65339 8,-5: - 0: 65535 + 0: 48051 + 9,-4: + 0: 65520 + 9,-3: + 0: 8177 + 9,-2: + 0: 4095 + 9,-5: + 0: 65521 + 10,-3: + 0: 36854 + 10,-4: + 0: 28262 + 10,-2: + 0: 3822 + 10,-5: + 0: 28262 + 11,-4: + 0: 30576 + 11,-3: + 0: 4080 + 11,-2: + 0: 3549 + 11,-1: + 0: 255 + 11,-5: + 0: 30576 + 12,-4: + 0: 48059 + 12,-3: + 0: 40952 + 12,-2: + 0: 3003 + 8,-9: + 0: 65464 9,-8: - 0: 65535 + 0: 65339 9,-7: - 0: 65535 + 0: 56591 9,-6: - 0: 65535 - 9,-5: - 0: 65535 + 0: 65437 + 9,-9: + 0: 65471 10,-8: - 0: 65535 + 0: 65295 10,-7: - 0: 65535 + 0: 60943 10,-6: - 0: 65535 - 10,-5: + 0: 65358 + 10,-9: 0: 65535 11,-8: - 0: 65535 + 0: 65422 11,-7: - 0: 65535 + 0: 60943 11,-6: - 0: 65535 - 11,-5: - 0: 65535 - 0,-6: - 0: 61167 - 1: 4368 - 0,-5: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 15 - 1: 65520 - -1,-5: - 0: 65535 - -8,4: - 0: 65535 - -7,4: - 0: 65535 - -6,4: - 0: 65535 - -10,3: - 0: 65535 - -9,3: - 0: 65535 - -10,4: - 0: 55807 - -9,4: - 0: 65535 + 0: 65358 + 11,-9: + 0: 65262 12,-8: - 0: 65535 + 0: 65291 12,-7: - 0: 65535 + 0: 48015 12,-6: - 0: 65535 + 0: 65419 12,-5: + 0: 49144 + -4,-8: 0: 65535 - 10,-10: - 0: 65535 - 10,-9: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 0: 65535 - 12,-10: - 0: 65535 - 12,-9: + -4,-9: + 0: 65520 + -5,-8: 0: 65535 - -5,-4: + -4,-7: 0: 65535 - -4,7: - 0: 64648 - -3,7: - 0: 62225 - -2,7: - 0: 63624 - -2,6: - 0: 34963 - -1,5: + -5,-7: + 0: 65295 + -4,-6: + 0: 63247 + -5,-6: + 0: 65295 + -3,-8: + 0: 16383 + -3,-7: + 0: 65531 + -3,-6: + 0: 64443 + -3,-9: + 0: 65523 + -2,-8: 0: 4095 - -1,6: - 0: 30576 - -1,7: - 0: 63351 - 0,7: - 0: 64716 - 1,7: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 10,1: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 9,7: + -2,-7: 0: 65535 - 4,-7: + -2,-6: + 0: 30583 + -2,-9: + 0: 65520 + -1,-7: 0: 65535 - 4,-8: + -1,-6: + 2: 65520 + 0: 4 + -1,-9: + 0: 64160 + -1,-8: + 0: 57582 + 0,-8: + 0: 55519 + 0,-7: + 0: 57305 + 0,-6: + 2: 4368 + 0: 52416 + -8,-8: 0: 65535 - 5,-8: + -8,-9: + 0: 65343 + -9,-8: 0: 65535 - 5,-7: + -8,-7: 0: 65535 - 6,-7: + -9,-7: 0: 65535 - -4,-8: + -8,-6: 0: 65535 - -4,-7: + -9,-6: 0: 65535 - -4,-6: + -9,-5: 0: 65535 - -4,-5: + -7,-8: 0: 65535 - -3,-8: + -7,-7: + 0: 64511 + -7,-6: + 0: 65531 + -7,-5: + 0: 4095 + -6,-8: + 0: 57341 + -6,-7: + 0: 65309 + -6,-6: + 0: 47903 + -5,-9: + 0: 10103 + -9,4: + 0: 56797 + -8,5: + 0: 53104 + -9,5: + 0: 16369 + -8,6: + 0: 56797 + -9,6: + 0: 43963 + -8,7: + 0: 65532 + -9,7: + 0: 2242 + -8,8: + 0: 4 + -7,5: + 0: 65284 + -7,6: 0: 65535 - -3,-7: + -7,7: + 0: 61439 + -6,5: 0: 65535 - -2,-8: + -6,6: + 0: 65464 + -6,7: + 0: 13183 + -7,8: + 0: 8 + -6,8: + 0: 17 + -5,7: + 0: 70 + -12,0: 0: 65535 - -2,-7: + -12,-1: + 0: 65295 + -13,0: + 0: 65528 + -12,1: + 0: 61439 + -13,1: 0: 65535 - -1,-8: + -12,2: + 0: 61678 + -13,2: + 0: 30719 + -12,3: + 0: 63231 + -12,4: + 0: 63 + 1: 2048 + -11,0: + 0: 61183 + -11,1: + 0: 28672 + -11,2: + 0: 24695 + -11,3: + 0: 255 + 1: 49152 + -11,-1: + 0: 65294 + -11,4: + 1: 53198 + -10,0: + 0: 60943 + -10,1: + 0: 65262 + -10,2: + 0: 4095 + -10,3: + 0: 255 + 1: 28672 + -10,-1: + 0: 65473 + -10,4: + 1: 4471 + 0: 51336 + -8,-16: + 0: 4080 + -8,-17: 0: 65535 - -1,-7: + -9,-16: + 0: 28353 + -8,-15: + 0: 1911 + -8,-14: + 0: 30583 + -9,-14: + 0: 48059 + -8,-13: + 0: 29311 + -9,-13: + 0: 28811 + -8,-12: + 0: 30711 + -7,-16: + 0: 65296 + -7,-15: + 0: 2992 + -7,-14: 0: 65535 - -5,-8: + -7,-13: 0: 65535 - -5,-7: + -7,-12: + 0: 61695 + -6,-16: + 0: 8160 + -6,-15: + 0: 40400 + -6,-14: 0: 65535 - -5,-6: + -6,-13: + 0: 46079 + -6,-12: + 0: 47291 + -5,-16: + 0: 2032 + -5,-15: + 0: 4048 + -5,-14: + 0: 65501 + -5,-13: + 0: 45533 + -5,-12: + 0: 64923 + -5,-17: + 0: 32768 + -4,-16: + 0: 246 + -4,-15: + 0: 61439 + -4,-14: + 0: 65488 + -4,-13: + 0: 64541 + 12,-9: + 0: 48059 + 13,-8: + 0: 65299 + 13,-7: + 0: 61007 + 13,-6: + 0: 57102 + 13,-9: + 0: 15355 + 13,-5: + 0: 61164 + 13,-4: + 0: 61166 + 14,-8: + 0: 65416 + 1: 1 + 14,-7: + 0: 15 + 14,-6: + 0: 65248 + 14,-5: + 0: 30222 + 14,-4: + 0: 60934 + 14,-9: + 0: 36590 + 15,-8: + 0: 65315 + 15,-7: + 0: 15 + 15,-6: + 0: 4368 + 15,-5: + 0: 1 + 15,-9: + 0: 16383 + 16,-8: + 0: 65416 + 1: 1 + 16,-7: + 0: 34831 + 8,-12: + 0: 36863 + 7,-12: 0: 65535 - -5,-5: + 8,-11: + 0: 45227 + 7,-11: 0: 65535 - 0,-8: + 8,-10: + 0: 41866 + 7,-10: + 0: 65526 + 8,-13: + 0: 36317 + 9,-12: + 0: 4095 + 9,-11: + 0: 61695 + 9,-10: + 0: 45311 + 10,-12: + 0: 4095 + 10,-11: + 0: 47359 + 10,-10: + 0: 14523 + 11,-12: + 0: 4095 + 11,-11: + 0: 7645 + 11,-10: + 0: 4087 + 11,-13: + 0: 39931 + 12,-12: + 0: 8191 + 12,-11: + 0: 8191 + 12,-10: + 0: 36861 + 13,-12: + 0: 4095 + 13,-11: + 0: 4095 + 13,-10: + 0: 13090 + 14,-12: + 0: 61439 + 14,-11: + 0: 61166 + 14,-10: + 0: 14 + 1: 256 + 14,-13: + 0: 52428 + 1: 256 + 15,-12: 0: 65535 - 0,-7: + 15,-11: 0: 65535 + 15,-10: + 0: 15 + 1: 256 + 15,-13: + 0: 20479 + 16,-12: + 0: 61439 + 0,-9: + 0: 50786 1,-8: - 0: 65527 + 0: 53461 1,-7: - 0: 65535 + 0: 7644 1,-6: - 0: 65535 + 0: 65260 1,-5: - 0: 65535 - 2,-8: - 0: 65518 - 2,-7: - 0: 65535 + 0: 2992 + 1,-9: + 0: 4112 2,-6: - 0: 65535 + 0: 56829 2,-5: - 0: 65519 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -5,-9: - 0: 65535 + 0: 3532 + 2,-7: + 0: 52974 + 2,-8: + 0: 3276 + 2,-9: + 0: 52416 + 3,-9: + 0: 65520 + -8,-11: + 0: 45296 + -9,-11: + 0: 53744 + -8,-10: + 0: 65307 + -9,-10: + 0: 64796 + -9,-9: + 0: 65293 + -7,-11: + 0: 28924 + -7,-10: + 0: 65303 + -7,-9: + 0: 3823 + -6,-11: + 0: 65339 + -6,-10: + 0: 28175 + -6,-9: + 0: 3680 + -5,-11: + 0: 16285 -5,-10: + 0: 63263 + -4,-12: 0: 65535 + -4,-11: + 0: 4095 -4,-10: 0: 65535 - -4,-9: + -3,-12: 0: 65535 + -3,-11: + 0: 20479 -3,-10: 0: 65535 - -3,-9: + -3,-13: + 0: 8141 + -2,-12: 0: 65535 + -2,-11: + 0: 4095 -2,-10: 0: 65535 - -2,-9: - 0: 65535 + -1,-12: + 0: 65262 -1,-10: 0: 65535 - -1,-9: + -1,-11: + 0: 36590 + -1,-13: + 0: 36863 + 0,-12: 0: 65535 + 0,-11: + 0: 32767 0,-10: + 0: 30583 + 0,-13: 0: 65535 - 0,-9: - 0: 65535 - 0,-11: + 1,-12: 0: 65535 1,-11: - 0: 65535 + 0: 4095 1,-10: 0: 65535 - 1,-9: - 0: 13119 - 2,-11: + 1,-13: + 0: 30583 + 2,-12: 0: 65535 + 2,-11: + 0: 4095 2,-10: + 0: 56829 + 3,-12: 0: 65535 - 2,-9: - 0: 61167 3,-11: - 0: 65535 + 0: 12287 3,-10: 0: 65535 - 3,-9: + 4,-12: 0: 65535 4,-11: - 0: 65535 + 0: 4095 4,-10: 0: 65535 - 4,-9: + 5,-12: 0: 65535 5,-11: - 0: 65535 + 0: 53247 5,-10: + 0: 57297 + 5,-13: + 0: 10111 + 6,-12: 0: 65535 - 5,-9: - 0: 65535 - 0,8: + 6,-11: 0: 65535 + 6,-10: + 0: 32624 + 6,-13: + 0: 10103 0,9: - 0: 30591 + 0: 13107 + -1,9: + 0: 65535 0,10: - 0: 64719 + 1: 29760 + 0: 34944 0,11: - 0: 32767 - 1,8: - 0: 65535 - 1,9: - 0: 15 - 2,8: - 0: 65535 - 2,9: - 0: 15 - 3,8: - 0: 65535 - 3,9: - 0: 61135 - 3,10: - 0: 61166 - 3,11: - 0: 36078 - 4,8: - 0: 65535 + 0: 153 + 1: 29542 + -1,10: + 1: 61440 + -1,11: + 0: 52462 + 1: 13073 + 0,12: + 0: 785 + 1: 29794 + 1,10: + 0: 4912 + 1,11: + 0: 51 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 51711 - 5,8: - 0: 65535 + 0: 8 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 55807 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 55551 - 7,8: - 0: 65535 + 0: 2 7,9: - 0: 65535 + 0: 36036 7,10: - 0: 65535 + 0: 52428 7,11: - 0: 65279 - 8,8: - 0: 65535 - 9,8: - 0: 65535 - -4,8: - 0: 65535 + 0: 3272 + 8,9: + 0: 816 + 1: 2176 + 8,10: + 0: 30583 + 8,11: + 0: 880 + 1: 128 + 7,12: + 1: 8 + 8,12: + 1: 4371 + 9,9: + 1: 4080 + 9,10: + 3: 273 + 4: 1092 + 9,11: + 1: 240 + 10,9: + 1: 4080 + 10,10: + 5: 273 + 6: 1092 + 10,11: + 1: 752 + 0: 28672 + 10,12: + 0: 119 + 11,9: + 1: 4080 + 11,10: + 6: 1365 + 11,11: + 1: 35056 + 12,9: + 1: 4080 + 12,10: + 6: 273 + 0: 34816 + 12,11: + 1: 5936 + 0: 136 + 11,12: + 1: 34952 -4,9: - 0: 207 + 1: 143 -4,10: - 0: 49152 + 1: 49152 -4,11: - 0: 52428 - -3,8: - 0: 65535 + 1: 33860 + 0: 2184 -3,9: - 0: 13311 + 1: 13175 + 0: 8 -3,10: - 0: 62259 + 1: 62259 -3,11: - 0: 30591 - -2,8: - 0: 65535 + 0: 819 + 1: 29772 -2,9: - 0: 35071 + 0: 15 -2,10: - 0: 63624 + 1: 63616 -2,11: - 0: 34959 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 61455 - -1,11: - 0: 65535 - 0,12: - 0: 30579 - -2,12: - 0: 34944 + 1: 32911 -1,12: - 0: 65535 - 2,-1: - 0: 62259 - 2,0: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -8,-4: - 0: 65535 - -8,-1: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 35259 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 4509 - -2,5: - 0: 65535 - 8,1: - 0: 65535 - 9,0: - 0: 65535 - 10,0: - 0: 65399 - 6,-8: - 0: 65535 - 7,-8: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 32767 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 4095 - 8,-8: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -7,5: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -8,-16: - 0: 65535 - -8,-15: - 0: 65535 - -8,-14: - 0: 65535 - -8,-13: - 0: 65535 - -7,-16: - 0: 65535 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 65535 - -6,-14: - 0: 65535 - -6,-13: - 0: 65535 - -5,-16: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - 13,-8: - 0: 65527 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-8: - 0: 65533 - 14,-7: - 0: 4607 - 15,-8: - 0: 65527 - 15,-7: - 0: 255 - 8,-12: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-11: - 0: 65535 - 3,-8: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-12: - 0: 65535 - -7,-11: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-12: - 0: 65535 - -6,-11: - 0: 65535 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - 0,-12: - 0: 65535 - 1,-12: - 0: 65535 - 2,-12: - 0: 65535 - 3,-12: - 0: 65535 - 4,-12: - 0: 65535 - 5,-12: - 0: 65535 - 6,-12: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-12: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 + 1: 61457 + 0: 4078 + 0,13: + 1: 13107 + 0,14: + 1: 51 + -2,12: + 1: 34944 + -1,13: + 1: 13107 + -1,14: + 1: 51 -12,-4: - 0: 65535 - -12,-1: - 0: 62975 - 2: 2560 - -11,-1: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 + 0: 65134 + -13,-4: + 0: 56780 + 1: 1 + -12,-3: + 0: 65103 + -13,-3: + 0: 56591 + -12,-2: + 0: 65518 + -13,-2: + 0: 65293 + -13,-1: + 0: 34831 + -12,-5: + 0: 26214 + -11,-4: + 0: 65283 + -11,-3: + 0: 44687 + -11,-5: + 0: 47931 + -11,-2: + 0: 61160 -10,-4: - 0: 65535 - -9,-4: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 + 0: 6408 + -10,-3: + 0: 43785 + -10,-2: + 0: 57296 + -10,-5: + 0: 43534 + -4,-17: + 0: 26214 -3,-16: - 0: 65535 + 0: 36852 -3,-15: - 0: 65535 + 0: 56797 -3,-14: - 0: 65535 - -3,-13: - 0: 65535 + 0: 65488 + -3,-17: + 0: 30576 -2,-16: - 0: 65535 + 0: 1905 -2,-15: - 0: 65535 + 0: 30583 -2,-14: - 0: 65535 + 0: 65521 -2,-13: - 0: 65535 + 0: 4095 + -2,-17: + 0: 30576 -1,-16: - 0: 65535 + 0: 47935 -1,-15: - 0: 65535 + 0: 48059 -1,-14: - 0: 65535 - -1,-13: + 0: 30577 + -1,-17: 0: 65535 0,-16: - 0: 65535 + 0: 56783 0,-15: - 0: 65535 + 0: 56789 0,-14: - 0: 65535 - 0,-13: - 0: 65535 + 0: 36860 1,-16: - 0: 65535 + 0: 30591 1,-15: - 0: 65535 + 0: 30576 1,-14: - 0: 65535 - 1,-13: - 0: 65535 + 0: 1911 2,-16: - 0: 65535 + 0: 28927 2,-15: - 0: 65535 + 0: 28791 2,-14: - 0: 65535 + 0: 47887 2,-13: - 0: 65535 + 0: 4088 + 2,-17: + 0: 10103 3,-16: - 0: 65535 + 0: 61695 3,-15: - 0: 65535 + 0: 62719 3,-14: 0: 65535 3,-13: - 0: 65535 + 0: 4095 4,-16: - 0: 65535 + 0: 56575 4,-15: - 0: 65535 + 0: 56541 4,-14: - 0: 65535 + 0: 53727 4,-13: - 0: 65535 + 0: 3549 + 4,-17: + 0: 39867 5,-16: - 0: 65535 + 0: 30591 5,-15: - 0: 65535 + 0: 30583 5,-14: - 0: 65535 - 5,-13: - 0: 65535 + 0: 29311 + 5,-17: + 0: 11195 6,-16: - 0: 65535 + 0: 65295 6,-15: - 0: 65535 + 0: 29951 6,-14: - 0: 65535 - 6,-13: + 0: 10103 + 6,-17: 0: 65535 7,-16: - 0: 65535 + 0: 65295 7,-15: - 0: 65535 + 0: 65279 7,-14: 0: 65535 7,-13: - 0: 65535 + 0: 4095 + 7,-17: + 0: 56797 + 8,-16: + 0: 56783 + 8,-15: + 0: 56573 + 8,-14: + 0: 56605 + -12,-9: + 0: 65295 -12,-8: - 0: 65535 + 0: 26214 + -13,-8: + 0: 52428 -12,-7: - 0: 65535 + 0: 26214 + -13,-7: + 1: 52431 -12,-6: - 0: 65535 - -12,-5: - 0: 65535 + 0: 26214 + -13,-6: + 1: 52974 + -13,-5: + 1: 8140 + 0: 49152 -11,-8: - 0: 65535 + 0: 48050 -11,-7: - 0: 65535 + 0: 48063 -11,-6: - 0: 65535 - -11,-5: - 0: 65535 + 0: 45247 + -11,-9: + 0: 30566 -10,-8: - 0: 65535 + 0: 65522 -10,-7: - 0: 65535 + 0: 61695 -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 + 0: 61183 + -10,-9: + 0: 30591 13,-3: - 0: 65535 + 0: 57308 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 16,-8: - 0: 65533 - 16,-7: - 0: 52479 + 0: 19933 + 14,-3: + 0: 61166 + 14,-2: + 0: 20204 + 15,-4: + 0: 13104 + 15,-3: + 0: 13107 + 15,-2: + 0: 817 16,-6: - 0: 52428 + 0: 34952 16,-5: - 0: 19660 + 0: 136 + 1: 16384 + 16,-9: + 0: 34952 + 1: 8192 17,-8: - 0: 65535 + 0: 65315 17,-7: - 0: 65535 + 0: 65295 17,-6: 0: 65535 17,-5: - 0: 61439 - 16,-10: - 0: 56831 - 3: 8192 - 16,-9: - 0: 56797 - 3: 8192 - 17,-10: - 0: 65535 + 0: 52479 17,-9: - 0: 65535 - 8,-16: - 0: 65535 - 8,-15: - 0: 65535 - 8,-14: - 0: 65535 - 8,-13: - 0: 65535 - 9,-16: - 0: 65535 - 10,-16: - 0: 62259 - 4,-17: - 0: 65535 - 5,-17: - 0: 65535 - 6,-17: - 0: 65535 - 7,-17: - 0: 65535 - 7,-19: - 0: 65519 - 7,-18: - 0: 65535 - 8,-19: - 0: 65439 - 8,-18: - 0: 65535 - 8,-17: - 0: 65535 - 9,-17: - 0: 65535 - 10,-17: 0: 13107 - -12,-9: - 0: 65535 - -11,-11: - 0: 65528 - -11,-10: - 0: 65535 - -11,-9: - 0: 65535 - -10,-11: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -10,-12: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -9,-16: - 0: 65535 - -9,-15: - 0: 65535 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - 0,-17: - 0: 65535 - 1,-17: - 0: 65531 - 2,-17: - 0: 65535 - 3,-17: - 0: 65535 - -4,-17: - 0: 65535 - -3,-17: - 0: 65535 - -2,-17: - 0: 65535 - -1,-17: - 0: 65535 - -8,5: - 0: 65535 - -7,6: - 0: 65535 - -11,2: - 0: 65535 - 9,-12: - 0: 65535 - 10,-12: - 0: 65535 - 11,-12: - 0: 65535 - 11,-11: - 0: 65535 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 13,-12: - 0: 65535 - 13,-11: - 0: 65535 - 13,-10: - 0: 63351 - 13,-9: - 0: 65535 - 14,-12: - 0: 65535 - 15,-12: - 0: 65535 - -12,-3: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -10,-3: - 0: 65535 - -9,-3: - 0: 65535 - 16,-12: - 0: 65535 - 16,-11: - 0: 65535 - 17,-12: - 0: 65535 - 17,-11: - 0: 65535 - 18,-12: - 0: 65535 - 19,-12: - 0: 65399 - 9,-13: - 0: 65535 - 10,-13: - 0: 65535 - 11,-13: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 64767 - 3: 768 - -13,-1: - 0: 58623 - 2: 2048 - 12,-13: - 0: 65535 - 13,-13: - 0: 65399 - 14,-13: - 0: 65518 - 15,-13: - 0: 65535 - 16,-13: - 0: 61723 - 17,-13: - 0: 65535 - 18,-13: - 0: 61715 - 19,-13: - 0: 28928 - 9,1: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 9,-15: - 0: 65535 - 9,-14: - 0: 65535 - 9,4: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 30583 - 10,7: - 0: 65535 - 14,-11: - 0: 65535 - 14,-10: - 0: 61951 - 15,-11: - 0: 65535 - 15,-10: - 0: 61951 + 1: 32768 + 17,-4: + 0: 204 18,-8: - 0: 65535 + 0: 65518 18,-7: - 0: 65535 + 0: 65519 18,-6: 0: 65535 18,-5: - 0: 8191 - 19,-8: - 0: 4369 + 0: 255 + 18,-9: + 0: 61166 19,-7: - 0: 63281 - 19,-6: - 0: 32767 + 0: 28672 + 1: 32 19,-5: - 0: 4983 + 0: 7 + 1: 4608 + 16,-11: + 0: 61166 + 16,-10: + 0: 14 + 1: 8448 + 17,-12: + 0: 61439 + 17,-11: + 0: 61166 + 17,-10: + 0: 14 + 1: 33024 + 17,-13: + 0: 43690 + 18,-12: + 0: 65535 18,-11: 0: 65535 18,-10: - 0: 65535 - 18,-9: - 0: 65535 + 0: 61167 + 19,-12: + 0: 61440 19,-11: - 0: 6655 + 0: 15 + 1: 2048 19,-10: - 0: 65529 + 0: 61440 + 1: 136 19,-9: - 0: 5119 + 0: 15 + 1: 512 + 20,-12: + 0: 28672 + 20,-11: + 0: 7 + 20,-10: + 0: 28672 + 20,-9: + 0: 7 + 8,-17: + 0: 61440 + 9,-16: + 0: 30583 + 9,-15: + 0: 30583 + 9,-14: + 0: 12007 + 9,-13: + 0: 4095 + 9,-17: + 0: 29235 + 10,-16: + 0: 4096 + 10,-15: + 0: 30583 10,-14: - 0: 65535 + 0: 3952 + 10,-13: + 0: 1911 + 11,-14: + 0: 47872 + 12,-14: + 0: 47872 + 12,-13: + 0: 3003 4,-20: - 0: 65527 + 0: 65328 + 3,-20: + 0: 65520 4,-19: - 0: 65535 + 0: 62719 + 3,-19: + 0: 61695 4,-18: - 0: 65535 - 5,-20: - 0: 56797 + 0: 48911 + 3,-18: + 0: 65423 + 3,-17: + 0: 4095 5,-19: - 0: 65501 + 0: 61576 5,-18: - 0: 65535 + 0: 47887 + 5,-20: + 1: 1 + 0: 34952 + 5,-21: + 1: 4369 + 0: 34816 + 6,-20: + 0: 57297 6,-19: - 0: 65343 + 0: 61713 6,-18: - 0: 65535 + 0: 65295 + 6,-21: + 0: 65484 + 7,-20: + 0: 30576 + 7,-19: + 0: 64704 + 7,-18: + 0: 56783 + 7,-21: + 0: 61166 + 8,-20: + 0: 32625 + 8,-19: + 0: 4096 + 8,-18: + 0: 273 + 8,-21: + 0: 56797 + 9,-20: + 0: 13107 + 9,-19: + 0: 13107 + 9,-18: + 0: 13107 + 9,-21: + 0: 64270 + 10,-21: + 0: 13091 + -12,-11: + 0: 65280 + -13,-11: + 0: 56768 + 1: 16 + -12,-10: + 0: 65295 + -13,-10: + 0: 52236 + 1: 4097 + -13,-9: + 0: 52364 + -12,-12: + 0: 12 + -12,-13: + 0: 25275 + -11,-11: + 0: 61184 + -11,-10: + 0: 26214 + -11,-13: + 0: 16387 -11,-12: - 0: 52991 + 0: 16384 + -10,-12: + 0: 13107 + -10,-11: + 0: 65459 + -10,-10: + 0: 65528 + -10,-13: + 0: 13119 + -9,-12: + 0: 1911 + -12,-16: + 0: 47935 + -13,-16: + 0: 52972 + -12,-15: + 0: 6827 + -13,-15: + 0: 32776 + -13,-14: + 0: 35020 + -12,-14: + 0: 36588 + -12,-17: + 0: 60544 + 1: 15 + -11,-16: + 0: 65518 + -11,-15: + 0: 61439 -11,-14: + 0: 30719 + -11,-17: + 0: 61164 + -10,-16: 0: 65535 - -11,-13: - 0: 65535 + -10,-15: + 0: 30583 -10,-14: + 0: 61559 + -10,-17: 0: 65535 - -10,-13: - 0: 65535 - -10,-15: + -9,-15: + 0: 14198 + -9,-17: 0: 65535 0,-20: - 0: 65535 + 0: 51406 + -1,-20: + 0: 65527 + -1,-19: + 0: 65359 0,-19: - 0: 65535 + 0: 65292 + -1,-18: + 0: 65528 0,-18: - 0: 65535 + 0: 61156 + 0,-17: + 0: 3824 + 0,-21: + 0: 58095 1,-20: - 0: 65527 + 0: 30515 1,-19: - 0: 65535 + 0: 65303 + 1,-21: + 0: 4113 1,-18: - 0: 48127 + 0: 8800 + 1,-17: + 0: 34 2,-20: - 0: 40942 + 0: 4548 2,-19: - 0: 65529 + 0: 63233 2,-18: - 0: 65535 - 3,-20: - 0: 65535 - 3,-19: - 0: 65535 - 3,-18: - 0: 65535 - -4,-20: - 0: 65535 + 0: 30578 + 2,-21: + 0: 17408 + 1: 238 + -5,-20: + 0: 44643 -4,-19: - 0: 65535 + 0: 26427 + -4,-20: + 0: 40960 + -5,-19: + 0: 52970 -4,-18: - 0: 65535 + 0: 49158 + -4,-21: + 0: 9079 -3,-20: - 0: 65535 + 0: 20223 -3,-19: - 0: 65535 + 0: 3908 -3,-18: - 0: 65535 - -2,-20: - 0: 65535 + 0: 65248 + -3,-21: + 0: 64527 -2,-19: - 0: 65535 + 0: 48908 -2,-18: - 0: 65535 - -1,-20: - 0: 65535 - -1,-19: - 0: 65535 - -1,-18: - 0: 65535 - 15,-14: 0: 65520 - 16,-14: - 0: 4368 - 17,-14: - 0: 65520 - 18,-14: - 0: 4368 - 20,-12: - 0: 30464 - 20,-11: - 0: 119 - 20,-10: - 0: 30576 - 20,-9: - 0: 119 - 0,-23: - 0: 65535 - 0,-22: - 0: 65535 - 0,-21: - 0: 65535 - 1,-23: - 0: 13107 - 1,-22: - 0: 13107 - 1,-21: - 0: 29491 - -4,-21: - 0: 65535 - -4,-22: - 0: 65535 - -3,-22: - 0: 65535 - -3,-21: - 0: 65535 - -3,-23: - 0: 65535 - -2,-23: - 0: 65535 - -2,-22: - 0: 65535 -2,-21: - 0: 65535 - -1,-23: - 0: 65535 - -1,-22: - 0: 65535 + 0: 56719 + -2,-20: + 0: 52428 -1,-21: - 0: 65535 - -8,-21: - 0: 65260 - -7,-21: - 0: 65535 - -6,-21: - 0: 65535 - -5,-21: - 0: 65535 - -8,-20: - 0: 65535 - -8,-19: - 0: 65535 - -8,-18: - 0: 65535 - -8,-17: - 0: 65535 - -7,-20: - 0: 65535 - -7,-19: - 0: 65535 - -7,-18: - 0: 65535 - -7,-17: - 0: 65535 - -6,-20: - 0: 65535 - -6,-19: - 0: 65535 - -6,-18: - 0: 65535 - -6,-17: - 0: 65535 - -5,-20: - 0: 65535 - -5,-19: - 0: 65535 - -5,-18: - 0: 65535 - -5,-17: - 0: 65535 - -9,-17: - 0: 65535 - -9,-18: - 0: 65535 - 20,-7: - 0: 65248 - 20,-6: - 0: 61439 - 20,-5: - 0: 14 - 21,-7: - 0: 65520 - 21,-6: - 0: 65535 - 21,-5: + 0: 14593 + -16,0: + 0: 65501 + -16,-1: + 0: 53521 + -17,0: + 0: 65467 + -16,1: + 0: 7645 + -17,1: + 0: 49080 + -16,2: + 0: 12561 + -17,2: + 0: 65419 + -16,3: + 0: 3 + -17,3: 0: 15 - 22,-7: - 0: 4368 - 22,-6: - 0: 4369 - 22,-5: - 0: 1 - 16,-4: - 0: 32768 - 16,-3: - 0: 34952 - 16,-2: - 0: 2184 - 17,-4: - 0: 65262 - 17,-3: - 0: 65535 - 17,-2: - 0: 4095 - 18,-4: + 1: 34816 + -15,0: + 0: 65399 + -15,1: + 0: 1911 + -15,-1: + 0: 28672 + 1: 68 + -15,2: + 1: 17476 + -15,3: + 0: 34944 + -14,0: + 0: 47927 + -14,1: + 0: 6003 + -14,2: 0: 28945 - 18,-3: + -14,3: 0: 30583 - 18,-2: - 0: 1911 - 11,5: + -15,4: + 0: 2184 + -14,-1: + 0: 30318 + -14,4: + 0: 13311 + -13,4: + 0: 255 + -13,3: + 1: 512 + -16,-4: + 1: 4096 + -16,-2: + 0: 4915 + -17,-2: + 0: 36863 + -17,-1: + 0: 47295 + -15,-2: + 1: 19456 + -14,-4: + 1: 1 + 0: 65024 + -14,-5: + 1: 7953 + 0: 204 + -14,-3: + 0: 65166 + -14,-2: + 0: 57454 + 13,-14: + 0: 13056 + 13,-13: + 0: 819 + 1: 2048 + 14,-14: + 0: 49152 + 15,-14: + 0: 61440 + 16,-13: + 1: 10 + 17,-14: + 0: 43680 + 18,-13: + 1: 2 + 19,-13: + 1: 8448 + 0,-23: 0: 8191 - 11,6: - 0: 65520 - 11,7: - 0: 65535 - 12,5: - 0: 65535 - 12,6: - 0: 65535 - 12,7: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 13,7: - 0: 65535 - 14,5: - 0: 65535 - 14,6: - 0: 65535 - 14,7: - 0: 65535 - 15,-6: - 0: 13107 - 15,-5: - 0: 51 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,9: - 0: 65535 - 9,10: - 4: 273 - 0: 64170 - 5: 1092 - 9,11: - 0: 29439 - 10,8: - 0: 65535 - 10,9: - 0: 65535 - 10,10: - 6: 273 - 0: 64170 - 3: 1092 - 10,11: - 0: 29439 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 3: 1365 - 0: 64170 - 11,11: - 0: 65279 - 15,-4: - 0: 30583 - 15,-3: - 0: 30583 - 15,-2: - 0: 30583 - 15,-1: - 0: 12561 - 10,-15: + 0,-22: 0: 65535 - 11,-14: - 0: 65521 - 10,-19: - 0: 4400 - 10,-18: + 1,-23: + 0: 273 + 1,-22: 0: 4369 - -13,-4: + 1,-24: + 1: 17988 + 1,-25: + 1: 61263 + 2,-23: + 1: 63624 + 2,-22: + 1: 59528 + 2,-24: + 1: 34952 + 2,-25: + 1: 36623 + 3,-24: + 1: 16 + 0: 3822 + 3,-23: + 1: 16 + 0: 3822 + 3,-22: + 1: 16 + 0: 3822 + 3,-21: + 1: 16 + 0: 3822 + 4,-24: + 0: 1911 + 1: 128 + 4,-23: + 0: 1911 + 1: 128 + 4,-22: + 0: 1911 + 1: 128 + 4,-21: + 0: 1911 + 1: 128 + -4,-24: + 0: 65382 + -4,-23: + 0: 28927 + -5,-24: + 0: 32768 + -5,-23: + 0: 30440 + -4,-22: + 0: 26487 + -3,-24: + 0: 64920 + -3,-23: + 0: 61695 + -3,-22: + 0: 62719 + -2,-24: 0: 65535 - -13,-3: + -2,-23: + 0: 57599 + -2,-22: + 0: 62702 + -2,-25: + 0: 57344 + 1: 3822 + -1,-24: + 0: 28944 + -1,-23: + 0: 21623 + -1,-22: + 0: 5205 + -8,-21: + 0: 30308 + -8,-20: + 0: 20479 + -8,-22: + 0: 32768 + -7,-22: + 0: 65532 + -7,-21: + 0: 43960 + -6,-22: + 0: 65535 + -6,-21: + 0: 16383 + -7,-20: + 0: 61432 + -6,-20: + 0: 7099 + -6,-23: + 0: 8192 + -5,-22: + 0: 30583 + -5,-21: + 0: 1911 + -9,-20: + 0: 32456 + -8,-19: + 0: 65295 + -9,-19: + 0: 64535 + -8,-18: + 0: 65407 + -9,-18: 0: 65535 + -7,-19: + 0: 65504 + -7,-18: + 0: 63070 + -7,-17: + 0: 411 + -6,-19: + 0: 256 + -6,-18: + 0: 13056 + -6,-17: + 0: 51 + -5,-18: + 0: 4 + -12,-20: + 1: 46 + -13,-20: + 0: 34952 + 1: 35 + -13,-19: + 0: 34952 + 1: 4896 + -12,-19: + 1: 36384 + -12,-18: + 0: 3891 + 1: 32904 + -13,-18: + 0: 3276 + 1: 4369 + -13,-17: + 1: 15 + -11,-18: + 0: 52673 -11,-19: 0: 52416 - -11,-18: - 0: 65535 - -11,-17: - 0: 65535 -10,-19: - 0: 65534 + 0: 46078 -10,-18: - 0: 65535 - -10,-17: - 0: 65535 - -9,-19: - 0: 65535 + 0: 65528 + -10,-20: + 0: 32768 + 16,-4: + 1: 32768 + 16,-3: + 1: 8 + 17,-3: + 0: 65518 + 17,-2: + 0: 239 + 16,-2: + 1: 2048 + 18,-3: + 0: 13073 + 1: 4 + 18,-2: + 0: 19 + 1: 1024 + 18,-4: + 1: 16384 + -16,-7: + 1: 1103 + -17,-7: + 1: 15 -16,-6: - 0: 2039 + 1: 1525 + -17,-6: + 1: 1525 + -16,-8: + 0: 3822 + 1: 16384 + -16,-9: + 0: 61152 + 1: 4 + -15,-7: + 1: 47 + 0: 34816 -15,-6: - 0: 20220 + 1: 20016 + 0: 8 + -15,-8: + 0: 3822 + 1: 16384 + -15,-9: + 0: 61152 + 1: 4 + -15,-5: + 1: 19524 + -14,-7: + 1: 15 + 0: 65472 -14,-6: - 0: 65535 - -13,-6: - 0: 57343 - -13,-8: - 0: 61166 - -13,-5: - 0: 65501 - -13,-7: - 0: 56799 - -13,-9: - 0: 61166 - 12,8: - 0: 65535 - 12,9: - 0: 16383 - 12,10: - 3: 273 - 0: 47650 - 12,11: - 0: 40891 - 13,8: - 0: 65535 + 0: 52431 + 1: 4352 + -14,-8: + 0: 3822 + 1: 16384 + -14,-9: + 0: 61152 + 1: 4 + -16,-11: + 1: 30528 + -17,-11: + 1: 65280 + -16,-10: + 1: 61444 + -17,-10: + 1: 61440 + -15,-10: + 1: 61440 + 0: 14 + -15,-11: + 0: 61152 + -14,-10: + 1: 61452 + -14,-11: + 1: 192 + 0: 52224 + 12,12: + 1: 28945 13,9: - 0: 65535 + 0: 26470 13,10: - 0: 65535 + 0: 65286 + 1: 240 13,11: - 0: 65535 - 14,8: - 0: 65535 + 0: 4095 + 13,12: + 0: 4095 14,9: - 0: 65535 + 0: 32628 14,10: - 0: 30575 + 0: 4352 + 1: 26208 14,11: - 0: 6007 - 12,12: - 0: 63897 - 13,12: + 0: 17 + 1: 1638 + 15,9: + 0: 65520 + 15,10: 0: 65535 + 16,9: + 1: 240 + 12,13: + 1: 61713 + 11,13: + 1: 63624 + 12,14: + 1: 31 + 11,14: + 1: 63624 + 13,13: + 1: 61440 + 13,14: + 1: 15 + 14,13: + 1: 62063 + 14,14: + 1: 255 14,12: - 0: 28945 - -17,-6: - 0: 4095 - 0,5: - 0: 52241 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,7: - 0: 61439 - -6,7: - 0: 13183 - -5,7: - 0: 70 - -12,-16: - 0: 65535 - -12,-14: - 0: 65535 - -11,-16: - 0: 65535 - -11,-15: - 0: 65535 - -10,-16: - 0: 65535 - -4,-23: - 0: 65535 - -5,-22: - 0: 65535 - -12,-17: - 0: 60559 - -9,-20: - 0: 65224 + 1: 24576 + 15,13: + 1: 15 + 15,14: + 1: 15 + 16,13: + 1: 15 + 16,14: + 1: 15 + -20,-6: + 1: 2296 + -21,-6: + 1: 240 + -19,-6: + 1: 2039 + -19,-8: + 1: 40857 + -19,-9: + 1: 39417 + -19,-7: + 1: 4383 + -18,-7: + 1: 17487 + -18,-6: + 1: 244 + -18,-8: + 0: 3822 + 1: 16384 + -18,-9: + 0: 61152 + 1: 4 + -17,-8: + 0: 3822 + 1: 16384 + -17,-9: + 0: 61152 + 1: 4 -10,5: 0: 52972 -10,6: 0: 136 - -9,5: - 0: 65535 - -9,6: - 0: 61439 - -9,7: - 0: 2254 - -8,8: - 0: 4 - -7,8: - 0: 8 - -6,8: - 0: 17 - -12,-12: - 0: 12 - -12,-15: - 0: 65263 - -12,-13: - 0: 61183 - -12,-20: - 0: 4415 - -12,-19: - 0: 65329 - -12,-18: - 0: 65535 - -10,-20: - 0: 32768 -16,-20: - 0: 15 + 1: 15 + -17,-20: + 1: 8 -15,-20: - 0: 7 + 1: 7 + -15,-21: + 1: 17408 + 0: 287 -14,-20: - 0: 8 - -13,-20: - 0: 52463 - -13,-19: - 0: 65516 - -13,-18: - 0: 65535 - -13,-17: - 0: 15 + 1: 8 + -13,-21: + 0: 36863 -16,-22: - 0: 65535 + 1: 15 + 0: 61184 + -17,-22: + 1: 34952 -16,-21: - 0: 65535 + 0: 3838 + -17,-21: + 1: 34952 -15,-22: - 0: 63351 - -15,-21: - 0: 30719 - -14,-22: - 0: 64704 + 1: 1095 + 0: 4352 -14,-21: - 0: 35071 + 0: 15 + -14,-22: + 1: 1216 -13,-22: - 0: 65280 - -13,-21: - 0: 65535 + 0: 61440 -12,-22: - 0: 65408 + 0: 61440 + 1: 128 -12,-21: - 0: 65535 + 0: 1911 -11,-22: - 0: 65296 - -11,-21: - 0: 15 - -10,-23: + 1: 16 0: 61440 -10,-22: - 0: 65535 + 0: 64704 + 1: 17 + -10,-23: + 1: 61440 -10,-21: - 0: 65535 + 1: 61712 + 0: 204 -9,-23: - 0: 12288 - -9,-22: - 0: 13107 + 1: 12288 -9,-21: - 0: 13107 - -13,-16: - 0: 52972 - -13,-14: - 0: 35020 - -13,-15: - 0: 32776 - -17,-22: - 0: 34952 - -17,-21: - 0: 34952 - -17,-20: - 0: 8 - 2,-4: - 0: 13183 - 2,1: - 0: 238 - 3,1: - 0: 52479 - 6,-20: - 0: 65535 - 7,-20: - 0: 65535 - 8,-20: - 0: 65535 - 9,-20: - 0: 30591 - 9,-19: - 0: 30583 - 9,-18: - 0: 30583 - 10,-20: - 0: 7 - -12,-11: - 0: 65521 - -12,-10: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -14,-11: + 1: 12834 + -9,-22: + 1: 8738 + 8,-24: 0: 65535 - -14,-10: - 0: 62463 - -13,-11: + 7,-24: 0: 65535 - -13,-10: - 0: 65279 8,-23: - 0: 65535 + 0: 61903 + 7,-23: + 0: 65039 8,-22: - 0: 65535 - 8,-21: - 0: 65535 + 0: 56783 + 7,-22: + 0: 60943 + 9,-24: + 0: 4369 + 1: 136 9,-23: - 0: 65331 + 0: 24593 9,-22: - 0: 65535 - 9,-21: - 0: 65535 + 0: 61159 + 9,-25: + 1: 53007 + 10,-24: + 1: 9010 + 10,-23: + 1: 30498 10,-22: - 0: 30583 - 10,-21: - 0: 30583 + 0: 13104 + 10,-25: + 1: 26487 + 5,-24: + 1: 39385 5,-23: - 0: 64921 + 1: 7577 5,-22: - 0: 65535 - 5,-21: - 0: 56785 + 1: 4369 + 0: 3276 + 5,-25: + 1: 57231 6,-23: - 0: 65518 + 1: 256 + 0: 49356 6,-22: - 0: 65535 - 6,-21: - 0: 65534 - 7,-23: - 0: 65535 - 7,-22: - 0: 65535 - 7,-21: - 0: 65535 - 0,13: - 0: 13107 - 0,14: - 0: 51 - 3,13: - 0: 60620 - 3,14: - 0: 238 - 3,12: - 0: 34952 - -1,13: - 0: 13107 - -1,14: - 0: 51 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 19524 - 3: 32904 - -15,3: - 0: 50244 - 3: 2184 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -14,2: - 0: 49151 - 3: 16384 - -14,3: - 0: 14751 - 3: 50784 - -13,3: - 0: 20479 - 3: 45056 - -15,-4: - 0: 17604 - -15,-3: - 0: 50372 - -15,-2: - 0: 19524 - -15,-1: - 0: 65348 - -14,-4: - 0: 65521 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - 0,-24: - 0: 61440 - 1,-24: - 0: 30276 - -2,-24: - 0: 65535 - -1,-24: - 0: 61712 - -15,-5: - 0: 19524 - -14,-5: - 0: 8191 - -12,4: - 0: 3855 - 3: 240 - -11,4: - 0: 53199 - 3: 16 - 9,-24: - 0: 13243 - 10,-24: - 0: 9010 - 10,-23: - 0: 30498 - 5,-24: - 0: 39417 - -2,-25: - 0: 61166 + 0: 52703 + 6,-24: + 0: 52428 + -2,-26: + 1: 57344 -1,-25: - 0: 3855 + 1: 3855 0,-25: - 0: 3855 - 1,-25: - 0: 61263 - 2,-25: - 0: 36623 + 1: 3855 3,-25: - 0: 3855 + 1: 3855 4,-25: - 0: 3855 - 5,-25: - 0: 57231 + 1: 3855 6,-25: - 0: 65295 + 1: 7951 7,-25: - 0: 65295 + 1: 3855 8,-25: - 0: 65295 - 9,-25: - 0: 65295 - 10,-25: - 0: 26487 - -15,4: - 0: 140 - 3: 52288 - -14,4: - 0: 3903 - 3: 28864 - -13,4: - 0: 3855 - 3: 240 + 1: 3855 + 10,-26: + 1: 28672 + -16,4: + 1: 16 + -15,5: + 1: 4 8,13: - 0: 65433 + 1: 63249 + 7,13: + 1: 34816 8,14: - 0: 50255 + 1: 50247 + 7,14: + 1: 8 + 8,15: + 1: 50244 + 8,16: + 1: 50244 9,13: - 0: 65319 + 1: 12288 + 0: 52224 9,14: - 0: 64527 + 1: 12288 + 0: 52236 + 9,15: + 1: 12288 + 0: 52236 + 9,16: + 0: 52236 + 1: 12288 10,13: - 0: 65383 + 0: 65280 10,14: 0: 65295 - 10,12: - 0: 63351 - 11,12: - 0: 65535 - 11,13: - 0: 65519 - 11,14: - 0: 63727 - 4,12: - 0: 52988 - 4,13: - 0: 8092 - 4,14: - 0: 31 - 5,13: - 0: 3997 - 5,14: - 0: 15 - 6,13: - 0: 20365 - 6,14: - 0: 255 - 7,13: - 0: 36643 - 7,14: - 0: 15 - -4,-24: - 0: 65382 - -3,-24: - 0: 64920 - -7,-22: - 0: 65532 - -6,-22: - 0: 65535 - -6,-23: - 0: 8192 - -5,-23: - 0: 65256 - -5,-24: - 0: 32768 - 8,12: - 0: 40447 - 5,12: - 0: 56797 - 7,12: - 0: 14335 - -11,3: - 0: 53247 - 3: 4096 - 14,-9: - 0: 65535 - -16,-11: - 0: 65480 - -16,-10: - 0: 63628 - -20,-6: - 0: 2296 - -19,-8: - 0: 40857 - -19,-7: - 0: 4383 - -19,-6: - 0: 2039 - -18,-7: - 0: 17487 - -18,-6: - 0: 2300 - -18,-8: - 0: 20206 + 10,15: + 0: 65295 + 10,16: + 0: 65295 + 11,15: + 1: 63624 + 11,16: + 1: 63624 + -20,-11: + 1: 2184 -19,-11: - 0: 65331 + 1: 65331 -19,-10: - 0: 61713 - -19,-9: - 0: 39417 + 1: 61713 -18,-11: - 0: 65280 + 1: 65280 -18,-10: - 0: 62532 - -18,-9: - 0: 61156 - -17,-11: - 0: 65280 + 1: 62532 -24,-6: - 0: 497 + 1: 497 -23,-6: - 0: 240 + 1: 240 -22,-6: - 0: 240 - -21,-6: - 0: 240 + 1: 240 -25,-6: - 0: 4063 - -2,-26: - 0: 57344 - 10,-26: - 0: 28672 - -20,-11: - 0: 2184 - -8,-22: - 0: 32768 - 2,-23: - 0: 63624 - 2,-22: - 0: 59528 - 2,-21: - 0: 61166 - 2,-24: - 0: 34952 - 3,-24: - 0: 3838 - 3,-23: - 0: 3838 - 3,-22: - 0: 3838 - 3,-21: - 0: 3838 - -16,-7: - 0: 1103 - -16,-8: - 0: 20206 - -15,-7: - 0: 52463 - -15,-8: - 0: 20206 - -14,-7: - 0: 65535 - -14,-8: - 0: 20206 - -16,-9: - 0: 61156 - -16,-12: - 0: 32768 - -15,-12: - 0: 61440 - -15,-9: - 0: 61156 - -14,-12: - 0: 12288 - -14,-9: - 0: 61156 - 12,13: - 0: 61713 - 12,14: - 0: 31 - 13,14: - 0: 15 - 14,13: - 0: 62063 - 14,14: - 0: 255 - -17,-7: - 0: 15 - -17,-8: - 0: 20206 - 4,-24: - 0: 2039 - 4,-23: - 0: 2039 - 4,-22: - 0: 2039 - 4,-21: - 0: 2039 - 9,12: - 0: 30583 - 6,12: - 0: 56797 - -17,-10: - 0: 61440 - -17,-9: - 0: 61156 - 13,13: - 0: 61440 - 14,-14: - 0: 60928 - 11,-15: - 0: 4368 - 12,-14: - 0: 65520 - 13,-14: - 0: 30576 - 2,4: - 0: 61713 - 8,-24: - 0: 65535 - 6,-24: - 0: 61166 - 7,-24: - 0: 65535 - -12,2: - 0: 65535 - -13,2: - 0: 61439 - 2: 4096 - -12,3: - 0: 4095 - 3: 61440 - -12,-2: - 0: 65535 - -13,-2: - 0: 65535 - -16,0: - 0: 65535 - -16,1: - 0: 65535 - -16,2: - 0: 30515 - -16,3: - 0: 119 - -16,-1: - 0: 65331 + 1: 1863 -20,0: - 0: 65520 + 1: 49664 -20,1: - 0: 65535 + 1: 2 -19,0: - 0: 65534 + 1: 4096 + 0: 52428 -19,1: - 0: 65535 + 0: 3276 + -19,-1: + 0: 49152 -18,0: - 0: 65535 + 0: 65501 -18,1: - 0: 65535 - -18,2: - 0: 52462 - -18,3: - 0: 140 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 35071 - -19,-2: - 0: 34816 - -19,-1: - 0: 61064 - -18,-2: - 0: 65416 + 0: 52689 -18,-1: - 0: 65535 - -17,-1: - 0: 65535 - -16,-3: - 0: 28672 - -16,-2: - 0: 30583 - -18,-3: - 0: 32768 - -17,-3: - 0: 63624 - -17,-2: - 0: 65535 - -16,-4: - 0: 4096 - -16,4: - 0: 16 - -17,-4: - 0: 49152 + 0: 53452 + -18,2: + 0: 12 -17,4: - 0: 200 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 0,6: - 0: 52428 - 15,5: - 0: 65535 - 15,6: - 0: 65535 - 15,7: - 0: 65535 - 1,10: - 0: 13107 - 1,11: - 0: 819 - 15,8: - 0: 65535 + 1: 72 + -17,-4: + 1: 16384 + -17,-3: + 1: 2184 + 17,0: + 1: 61999 17,1: - 0: 65535 + 1: 15 + 0: 56576 17,2: - 0: 65535 + 0: 61661 17,3: 0: 65535 - 16,5: - 0: 4369 - 16,6: - 0: 65535 - 16,7: - 0: 65535 17,4: - 0: 65535 - 16,8: - 0: 65535 - 15,9: - 0: 65535 - 15,10: - 0: 65535 - 17,0: - 0: 61999 + 0: 36863 18,0: - 0: 61455 + 1: 61455 18,1: - 0: 65535 + 1: 15 + 0: 30464 18,2: - 0: 65535 + 0: 12407 + 1: 32768 18,3: - 0: 65535 + 0: 13107 + 1: 34952 + 18,4: + 0: 3059 19,0: - 0: 12847 + 1: 12847 19,1: - 0: 13107 + 1: 13107 19,2: - 0: 13107 + 1: 13107 + 20,0: + 1: 15 + 16,7: + 0: 61166 + 16,8: + 0: 61166 17,6: - 0: 65535 + 0: 53244 17,7: - 0: 13107 + 0: 4369 + 17,8: + 0: 4369 + 1: 50176 17,5: - 0: 61166 - 18,4: - 0: 65535 + 0: 3276 18,5: - 0: 30583 + 0: 819 18,6: 0: 30583 - 16,9: - 0: 255 - 17,8: - 0: 63283 + 19,4: + 0: 52732 + 20,4: + 0: 4369 + 1: 3808 17,9: - 0: 247 - 8,15: - 0: 50244 - 9,15: - 0: 64524 - 10,15: - 0: 65295 - 11,15: - 0: 63624 + 1: 244 + 18,8: + 1: 61440 + 18,9: + 1: 245 + 19,8: + 1: 61440 + 19,9: + 1: 36080 + 20,8: + 1: 61440 + 20,9: + 1: 40176 8,17: - 0: 60996 + 1: 60996 8,18: - 0: 14 - 8,16: - 0: 50244 - 9,16: - 0: 64524 + 1: 14 9,17: - 0: 61452 - 10,16: - 0: 65295 + 1: 61440 + 0: 12 10,17: - 0: 61455 - 11,16: - 0: 63624 + 0: 15 + 1: 61440 11,17: - 0: 64648 + 1: 64648 11,18: - 0: 12 + 1: 12 12,17: - 0: 4352 + 1: 4352 12,18: - 0: 1 - 15,13: - 0: 15 - 15,14: - 0: 15 - 19,4: - 0: 65535 - 18,8: - 0: 61440 - 18,9: - 0: 245 - 19,8: - 0: 61440 - 19,9: - 0: 36080 - 20,4: - 0: 8177 + 1: 1 21,4: - 0: 36856 + 1: 36856 21,5: 0: 52428 21,6: 0: 204 + 21,3: + 0: 52428 22,4: - 0: 36856 + 1: 36856 22,5: 0: 56797 22,6: 0: 221 + 22,3: + 0: 56797 23,4: - 0: 36856 + 1: 36856 23,5: 0: 56797 23,6: 0: 221 + 23,3: + 0: 56797 24,4: - 0: 36856 + 1: 36856 24,5: 0: 56797 24,6: 0: 221 + 24,3: + 0: 56797 25,4: - 0: 4080 + 1: 4080 25,5: 0: 4369 25,6: 0: 17 27,7: - 0: 25668 + 1: 25668 + 27,8: + 1: 29783 27,4: - 0: 17476 + 1: 17476 + 27,3: + 1: 17476 27,5: - 0: 17476 + 1: 17476 27,6: - 0: 17476 - 20,0: - 0: 15 + 1: 17476 21,0: - 0: 15 + 1: 15 21,2: 0: 52224 - 21,3: - 0: 52428 22,0: - 0: 143 + 1: 143 22,2: 0: 56576 - 22,3: - 0: 56797 + 22,-1: + 1: 32768 23,0: - 0: 62335 + 1: 62335 23,2: 0: 56576 - 23,3: - 0: 56797 + 23,-1: + 1: 29491 24,0: - 0: 61455 + 1: 61455 24,2: 0: 56576 - 24,3: - 0: 56797 + 24,-1: + 1: 17476 25,0: - 0: 61455 + 1: 61455 25,2: 0: 4352 25,3: 0: 4369 26,0: - 0: 61455 + 1: 61455 26,1: - 0: 140 + 1: 140 27,0: - 0: 29303 + 1: 29303 27,1: - 0: 26452 + 1: 26452 + 27,-1: + 1: 28672 27,2: - 0: 17476 - 27,3: - 0: 17476 - 22,-1: - 0: 32768 + 1: 17476 23,-4: - 0: 13107 + 1: 13107 + 23,-5: + 1: 13107 23,-3: - 0: 13107 + 1: 13107 23,-2: - 0: 13299 - 23,-1: - 0: 29491 + 1: 13299 + 24,-2: + 1: 17524 23,-7: - 0: 13056 + 1: 13056 23,-6: - 0: 62259 - 23,-5: - 0: 13107 - 24,-2: - 0: 17524 + 1: 62259 + 24,-6: + 1: 29764 24,-4: - 0: 17476 + 1: 17476 + 24,-5: + 1: 17476 24,-3: - 0: 17476 - 24,-1: - 0: 17476 - 27,-1: - 0: 28672 + 1: 17476 24,8: - 0: 61440 + 1: 61440 + 23,8: + 1: 61440 24,9: - 0: 240 + 1: 240 + 23,9: + 1: 240 25,8: - 0: 61440 + 1: 61440 25,9: - 0: 240 + 1: 240 26,8: - 0: 64640 + 1: 64640 26,9: - 0: 240 - 27,8: - 0: 29783 + 1: 240 27,9: - 0: 116 - 20,8: - 0: 61440 - 20,9: - 0: 40176 + 1: 116 20,10: - 0: 35051 - 20,11: - 0: 34952 + 1: 35051 21,8: - 0: 61440 + 1: 61440 21,9: - 0: 9968 + 1: 9968 + 20,11: + 1: 34952 + 20,12: + 1: 51336 21,10: - 0: 8814 + 1: 8814 21,11: - 0: 8738 + 1: 8738 + 21,12: + 1: 12834 22,8: - 0: 61440 + 1: 61440 22,9: - 0: 14064 + 1: 14064 22,10: - 0: 1 - 23,8: - 0: 61440 - 23,9: - 0: 240 - 16,13: - 0: 15 - 16,14: - 0: 15 + 1: 1 17,13: - 0: 15 + 1: 15 17,14: - 0: 15 + 1: 15 18,13: - 0: 15 + 1: 15 18,14: - 0: 15 + 1: 15 19,13: - 0: 15 + 1: 15 19,14: - 0: 15 + 1: 15 20,13: - 0: 51407 + 1: 51407 20,14: - 0: 207 - 20,12: - 0: 51336 - 21,12: - 0: 12834 + 1: 207 21,13: - 0: 4115 + 1: 4115 21,14: - 0: 17 - 24,-6: - 0: 29764 + 1: 17 24,-7: - 0: 16384 - 24,-5: - 0: 17476 - 15,-9: - 0: 65535 - -15,5: - 3: 12 - -14,5: - 3: 7 + 1: 16384 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11191,10 +11158,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + immutable: True moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -11206,10 +11173,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 235 moles: - - 20.078888 - - 75.53487 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -11223,7 +11190,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -11238,8 +11205,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11254,9 +11221,9 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11271,7 +11238,7 @@ entities: - 0 - 0 - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -11312,8 +11279,6 @@ entities: - 13077 - 8433 - 7909 - - type: AtmosDevice - joinedGrid: 6747 - uid: 490 components: - type: Transform @@ -11334,8 +11299,6 @@ entities: - 14634 - 14896 - 23520 - - type: AtmosDevice - joinedGrid: 6747 - uid: 1755 components: - type: Transform @@ -11359,8 +11322,6 @@ entities: - 21751 - 13451 - 13162 - - type: AtmosDevice - joinedGrid: 6747 - uid: 3694 components: - type: Transform @@ -11378,8 +11339,6 @@ entities: - 13867 - 13866 - 13951 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7456 components: - type: Transform @@ -11403,8 +11362,6 @@ entities: - 27297 - 27396 - 27395 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8860 components: - type: Transform @@ -11444,8 +11401,6 @@ entities: - 22284 - 13376 - 13246 - - type: AtmosDevice - joinedGrid: 6747 - uid: 9063 components: - type: Transform @@ -11474,8 +11429,6 @@ entities: - 26056 - 22745 - 25606 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13485 components: - type: Transform @@ -11509,8 +11462,6 @@ entities: - 15810 - 23752 - 23751 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13930 components: - type: Transform @@ -11547,8 +11498,6 @@ entities: - 24134 - 24138 - 24178 - - type: AtmosDevice - joinedGrid: 6747 - uid: 21858 components: - type: Transform @@ -11564,8 +11513,6 @@ entities: - 15006 - 15004 - 14712 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22036 components: - type: Transform @@ -11586,8 +11533,6 @@ entities: - 14231 - 14279 - 14264 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22037 components: - type: Transform @@ -11619,8 +11564,6 @@ entities: - 13588 - 13667 - 13586 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22038 components: - type: Transform @@ -11649,8 +11592,6 @@ entities: - 13658 - 13659 - 13561 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22041 components: - type: Transform @@ -11669,8 +11610,6 @@ entities: - 13496 - 13500 - 13499 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22043 components: - type: Transform @@ -11703,8 +11642,6 @@ entities: - 22323 - 22324 - 21389 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22087 components: - type: Transform @@ -11725,8 +11662,6 @@ entities: - 17141 - 25308 - 25307 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22089 components: - type: Transform @@ -11749,8 +11684,6 @@ entities: - 21797 - 21795 - 21796 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22091 components: - type: Transform @@ -11780,8 +11713,6 @@ entities: - 25302 - 25303 - 25304 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22093 components: - type: Transform @@ -11818,8 +11749,6 @@ entities: - 14526 - 14733 - 14515 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22096 components: - type: Transform @@ -11846,8 +11775,6 @@ entities: - 15412 - 15339 - 15411 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22097 components: - type: Transform @@ -11867,8 +11794,6 @@ entities: - 16656 - 16657 - 27085 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22099 components: - type: Transform @@ -11888,8 +11813,6 @@ entities: - 15170 - 15172 - 15168 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22101 components: - type: Transform @@ -11906,8 +11829,6 @@ entities: - 14631 - 14630 - 14829 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22103 components: - type: Transform @@ -11925,8 +11846,6 @@ entities: - 14841 - 14842 - 14629 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22105 components: - type: Transform @@ -11945,15 +11864,11 @@ entities: - 15131 - 15133 - 15132 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22111 components: - type: Transform pos: 24.5,-62.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22113 components: - type: Transform @@ -11970,8 +11885,6 @@ entities: - 14364 - 14365 - 14727 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22115 components: - type: Transform @@ -11985,8 +11898,6 @@ entities: - 21782 - 14394 - 14717 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22117 components: - type: Transform @@ -12004,8 +11915,6 @@ entities: - 13953 - 13874 - 13954 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22119 components: - type: Transform @@ -12020,8 +11929,6 @@ entities: - 21907 - 13875 - 13960 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22121 components: - type: Transform @@ -12062,8 +11969,6 @@ entities: - 14293 - 13595 - 13673 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22123 components: - type: Transform @@ -12084,8 +11989,6 @@ entities: - 21908 - 13959 - 13873 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22125 components: - type: Transform @@ -12110,8 +12013,6 @@ entities: - 25258 - 22295 - 1148 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22130 components: - type: Transform @@ -12135,8 +12036,6 @@ entities: - 14324 - 14396 - 14439 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22132 components: - type: Transform @@ -12152,8 +12051,6 @@ entities: - 15005 - 14680 - 15007 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22158 components: - type: Transform @@ -12165,8 +12062,6 @@ entities: - 10125 - 22157 - 21810 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22163 components: - type: Transform @@ -12186,8 +12081,6 @@ entities: - 16537 - 15574 - 16536 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22223 components: - type: Transform @@ -12219,8 +12112,6 @@ entities: - 17074 - 17367 - 17362 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22225 components: - type: Transform @@ -12236,8 +12127,6 @@ entities: - 14647 - 15011 - 23041 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22229 components: - type: Transform @@ -12258,8 +12147,6 @@ entities: - 14525 - 14524 - 14735 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22234 components: - type: Transform @@ -12277,8 +12164,6 @@ entities: - 438 - 25595 - 25608 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22239 components: - type: Transform @@ -12296,8 +12181,6 @@ entities: - 15431 - 15359 - 21428 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22288 components: - type: Transform @@ -12319,8 +12202,6 @@ entities: - 14234 - 14032 - 14232 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22293 components: - type: Transform @@ -12335,8 +12216,6 @@ entities: - 21911 - 13958 - 13872 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22317 components: - type: Transform @@ -12359,8 +12238,6 @@ entities: - 14088 - 14131 - 14130 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22330 components: - type: Transform @@ -12373,8 +12250,6 @@ entities: - 21931 - 15716 - 15989 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22346 components: - type: Transform @@ -12385,8 +12260,6 @@ entities: - 9416 - 9417 - 9418 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25271 components: - type: Transform @@ -12410,8 +12283,6 @@ entities: - 23685 - 24135 - 24119 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25275 components: - type: Transform @@ -12425,8 +12296,6 @@ entities: - 25207 - 24185 - 24179 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25278 components: - type: Transform @@ -12441,8 +12310,6 @@ entities: - 24196 - 24199 - 24200 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25281 components: - type: Transform @@ -12470,8 +12337,6 @@ entities: - 24296 - 24323 - 24295 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25283 components: - type: Transform @@ -12490,8 +12355,6 @@ entities: - 24269 - 24350 - 24268 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25286 components: - type: Transform @@ -12512,8 +12375,6 @@ entities: - 24433 - 24432 - 24417 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25287 components: - type: Transform @@ -12534,8 +12395,6 @@ entities: - 24287 - 24450 - 25289 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25290 components: - type: Transform @@ -12563,8 +12422,6 @@ entities: - 24699 - 24711 - 24701 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25293 components: - type: Transform @@ -12585,8 +12442,6 @@ entities: - 24850 - 24844 - 24839 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25295 components: - type: Transform @@ -12602,8 +12457,6 @@ entities: - 25236 - 24880 - 24879 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25298 components: - type: Transform @@ -12623,8 +12476,6 @@ entities: - 24908 - 24909 - 24889 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25299 components: - type: Transform @@ -12649,8 +12500,6 @@ entities: - 24848 - 24847 - 25018 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25305 components: - type: Transform @@ -12678,8 +12527,6 @@ entities: - 16024 - 24924 - 24478 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25309 components: - type: Transform @@ -12720,8 +12567,6 @@ entities: - 25028 - 25096 - 25148 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25311 components: - type: Transform @@ -12747,8 +12592,6 @@ entities: - 25039 - 24991 - 25065 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25315 components: - type: Transform @@ -12768,8 +12611,6 @@ entities: - 25117 - 25020 - 25116 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25317 components: - type: Transform @@ -12778,23 +12619,19 @@ entities: parent: 6747 - type: DeviceList devices: - - 25262 - - 15909 - - 15908 - - 15907 - - 15905 - - 25254 - - 25252 - - 25260 - - 25261 - - 23663 - - 25076 - - 25136 - - 24988 - - 25074 - 24970 - - type: AtmosDevice - joinedGrid: 6747 + - 25074 + - 24988 + - 25136 + - 25261 + - 25260 + - 25252 + - 25254 + - 15905 + - 15907 + - 15908 + - 15909 + - 25262 - uid: 25319 components: - type: Transform @@ -12814,8 +12651,6 @@ entities: - 25253 - 25147 - 25178 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25321 components: - type: Transform @@ -12827,8 +12662,6 @@ entities: - 15911 - 25184 - 25185 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25323 components: - type: Transform @@ -12847,8 +12680,6 @@ entities: - 24085 - 24089 - 24083 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25325 components: - type: Transform @@ -12865,8 +12696,6 @@ entities: - 25258 - 13955 - 1148 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26597 components: - type: Transform @@ -12876,8 +12705,6 @@ entities: - type: DeviceList devices: - 27051 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26945 components: - type: Transform @@ -12893,8 +12720,6 @@ entities: - 26058 - 26064 - 26131 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26958 components: - type: Transform @@ -12913,16 +12738,12 @@ entities: - 26226 - 26130 - 26069 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26963 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,16.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26970 components: - type: Transform @@ -12954,8 +12775,6 @@ entities: - 26317 - 26275 - 26276 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26989 components: - type: Transform @@ -12973,8 +12792,6 @@ entities: - 26949 - 26030 - 26049 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26991 components: - type: Transform @@ -12996,8 +12813,6 @@ entities: - 26952 - 26028 - 26051 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27003 components: - type: Transform @@ -13020,8 +12835,6 @@ entities: - 27020 - 26329 - 27021 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27005 components: - type: Transform @@ -13044,8 +12857,6 @@ entities: - 26316 - 13333 - 22062 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27009 components: - type: Transform @@ -13061,8 +12872,6 @@ entities: - 26199 - 13217 - 26345 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27036 components: - type: Transform @@ -13077,8 +12886,6 @@ entities: - 27035 - 26831 - 26824 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27087 components: - type: Transform @@ -13098,8 +12905,6 @@ entities: - 14910 - 14908 - 27086 - - type: AtmosDevice - joinedGrid: 6747 - proto: AirCanister entities: - uid: 7790 @@ -13107,43 +12912,31 @@ entities: - type: Transform pos: 48.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8184 components: - type: Transform pos: 32.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11336 components: - type: Transform pos: 57.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11372 components: - type: Transform pos: 34.5,22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 12029 components: - type: Transform pos: 33.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 16663 components: - type: Transform pos: 13.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: Airlock entities: - uid: 1212 @@ -14822,6 +14615,13 @@ entities: - type: Transform pos: 36.5,-1.5 parent: 6747 +- proto: AirlockMaintMantisLocked + entities: + - uid: 1225 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 6747 - proto: AirlockMaintMedLocked entities: - uid: 4925 @@ -14905,11 +14705,6 @@ entities: - type: Transform pos: 7.5,-63.5 parent: 6747 - - uid: 1225 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 6747 - proto: AirlockMedicalGlass entities: - uid: 3682 @@ -15925,6 +15720,7 @@ entities: - type: DeviceNetwork deviceLists: - 17357 + - 25317 - uid: 25259 components: - type: Transform @@ -15935,11 +15731,17 @@ entities: - type: Transform pos: -2.5,-17.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 25262 components: - type: Transform pos: -11.5,-24.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 25263 components: - type: Transform @@ -18212,8 +18014,6 @@ entities: - type: Transform pos: 10.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: Beaker entities: - uid: 4364 @@ -18265,7 +18065,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -19527,6 +19326,8 @@ entities: - type: Transform pos: 30.5,-13.5 parent: 6747 + - type: SpamEmitSound + enabled: False - proto: BoardGameSpawner entities: - uid: 6565 @@ -20408,6 +20209,11 @@ entities: - type: Transform pos: 22.5,-52.5 parent: 6747 + - uid: 1928 + components: + - type: Transform + pos: 58.5,2.5 + parent: 6747 - uid: 2268 components: - type: Transform @@ -20458,6 +20264,11 @@ entities: - type: Transform pos: -19.5,-49.5 parent: 6747 + - uid: 3465 + components: + - type: Transform + pos: 57.5,0.5 + parent: 6747 - uid: 3677 components: - type: Transform @@ -24353,11 +24164,6 @@ entities: - type: Transform pos: 58.5,0.5 parent: 6747 - - uid: 19246 - components: - - type: Transform - pos: 58.5,1.5 - parent: 6747 - uid: 19247 components: - type: Transform @@ -36138,11 +35944,6 @@ entities: - type: Transform pos: -50.5,16.5 parent: 6747 - - uid: 27622 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 6747 - proto: CableApcStack entities: - uid: 5081 @@ -45543,11 +45344,6 @@ entities: - type: Transform pos: 62.5,3.5 parent: 6747 - - uid: 18832 - components: - - type: Transform - pos: 61.5,3.5 - parent: 6747 - uid: 18833 components: - type: Transform @@ -47901,8 +47697,6 @@ entities: - type: Transform pos: 4.5,-82.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: CargoPallet entities: - uid: 4595 @@ -55838,6 +55632,11 @@ entities: - type: Transform pos: 6.5,-51.5 parent: 6747 + - uid: 10547 + components: + - type: Transform + pos: 35.5,2.5 + parent: 6747 - uid: 11343 components: - type: Transform @@ -55848,11 +55647,6 @@ entities: - type: Transform pos: 53.5,-17.5 parent: 6747 - - uid: 11369 - components: - - type: Transform - pos: 38.5,22.5 - parent: 6747 - uid: 11370 components: - type: Transform @@ -55888,6 +55682,53 @@ entities: - type: Transform pos: -62.5,-5.5 parent: 6747 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 9040 + components: + - type: Transform + pos: 38.5,22.5 + parent: 6747 + - uid: 11359 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 6747 + - uid: 11369 + components: + - type: Transform + pos: 35.5,7.5 + parent: 6747 + - uid: 27773 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 6747 + - uid: 27774 + components: + - type: Transform + pos: 73.5,-47.5 + parent: 6747 + - uid: 27775 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 6747 + - uid: 27776 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 6747 + - uid: 27777 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 6747 + - uid: 27778 + components: + - type: Transform + pos: 38.5,-64.5 + parent: 6747 - proto: ClosetFireFilled entities: - uid: 4031 @@ -55930,11 +55771,6 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 6747 - - uid: 9040 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 6747 - uid: 9141 components: - type: Transform @@ -55960,11 +55796,6 @@ entities: - type: Transform pos: 53.5,-16.5 parent: 6747 - - uid: 11359 - components: - - type: Transform - pos: 35.5,7.5 - parent: 6747 - uid: 11368 components: - type: Transform @@ -56313,11 +56144,6 @@ entities: - type: Transform pos: 20.5,23.5 parent: 6747 - - uid: 6770 - components: - - type: Transform - pos: 35.5,2.5 - parent: 6747 - uid: 6903 components: - type: Transform @@ -56399,6 +56225,31 @@ entities: - type: Transform pos: 60.5,-4.5 parent: 6747 + - type: 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: + - 3643 - uid: 21606 components: - type: Transform @@ -56704,25 +56555,6 @@ entities: - type: Transform pos: 30.735046,7.834367 parent: 6747 -- proto: ClothingHeadHatHairflower - entities: - - uid: 7182 - components: - - type: Transform - pos: 36.539196,-16.411207 - parent: 6747 - - uid: 12967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.258544,-30.379358 - parent: 6747 - - uid: 17532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.309444,-94.22372 - parent: 6747 - proto: ClothingHeadHatHardhatWhite entities: - uid: 4362 @@ -56842,6 +56674,13 @@ entities: - type: Transform pos: -15.503069,13.299613 parent: 6747 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 11582 + components: + - type: Transform + pos: 32.51328,-89.3608 + parent: 6747 - proto: ClothingHeadHelmetCosmonaut entities: - uid: 21864 @@ -56914,13 +56753,6 @@ entities: rot: 3.141592653589793 rad pos: -33.477093,1.431968 parent: 6747 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 11582 - components: - - type: Transform - pos: 32.51328,-89.3608 - parent: 6747 - proto: ClothingHeadHelmetTemplar entities: - uid: 21866 @@ -59962,8 +59794,6 @@ entities: - type: Transform pos: 12.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: CryoPodMachineCircuitboard entities: - uid: 17743 @@ -60184,8 +60014,6 @@ entities: - type: Transform pos: 67.5,14.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconAnomalyGenerator entities: - uid: 27409 @@ -60193,8 +60021,6 @@ entities: - type: Transform pos: 26.5,-66.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconArmory entities: - uid: 27410 @@ -60202,8 +60028,6 @@ entities: - type: Transform pos: -31.5,2.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconArrivals entities: - uid: 6925 @@ -60211,8 +60035,6 @@ entities: - type: Transform pos: 72.5,-22.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconArtifactLab entities: - uid: 27411 @@ -60220,8 +60042,6 @@ entities: - type: Transform pos: -6.5,-83.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconAtmospherics entities: - uid: 27077 @@ -60229,8 +60049,6 @@ entities: - type: Transform pos: 46.5,29.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconBar entities: - uid: 12090 @@ -60238,8 +60056,6 @@ entities: - type: Transform pos: -20.5,-30.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconBotany entities: - uid: 8864 @@ -60247,15 +60063,11 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 6747 - missingComponents: - - WarpPoint - uid: 10931 components: - type: Transform pos: -18.5,-17.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconBridge entities: - uid: 12094 @@ -60263,8 +60075,6 @@ entities: - type: Transform pos: -25.5,-48.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCameraServerRoom entities: - uid: 8862 @@ -60272,8 +60082,6 @@ entities: - type: Transform pos: -18.5,-57.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 8858 @@ -60281,8 +60089,6 @@ entities: - type: Transform pos: -30.5,-54.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCargoBay entities: - uid: 534 @@ -60290,8 +60096,6 @@ entities: - type: Transform pos: 20.5,35.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCargoReception entities: - uid: 27567 @@ -60299,8 +60103,6 @@ entities: - type: Transform pos: 24.5,18.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCERoom entities: - uid: 27412 @@ -60308,8 +60110,6 @@ entities: - type: Transform pos: 55.5,7.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconChapel entities: - uid: 27415 @@ -60317,8 +60117,6 @@ entities: - type: Transform pos: 14.5,-53.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconChemistry entities: - uid: 12093 @@ -60326,8 +60124,6 @@ entities: - type: Transform pos: 11.5,-26.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCMORoom entities: - uid: 27413 @@ -60335,8 +60131,6 @@ entities: - type: Transform pos: 24.5,-36.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconConferenceRoom entities: - uid: 8721 @@ -60344,8 +60138,6 @@ entities: - type: Transform pos: -22.5,-52.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCourtroom entities: - uid: 10934 @@ -60353,8 +60145,6 @@ entities: - type: Transform pos: -12.5,-44.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCryonics entities: - uid: 12095 @@ -60362,8 +60152,6 @@ entities: - type: Transform pos: 10.5,-18.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCryosleep entities: - uid: 27416 @@ -60371,8 +60159,6 @@ entities: - type: Transform pos: 68.5,-32.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconDetectiveRoom entities: - uid: 27417 @@ -60380,8 +60166,6 @@ entities: - type: Transform pos: -18.5,5.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconDisposals entities: - uid: 27418 @@ -60389,8 +60173,6 @@ entities: - type: Transform pos: 40.5,-0.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconDorms entities: - uid: 10935 @@ -60398,8 +60180,6 @@ entities: - type: Transform pos: 41.5,-14.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEngineering entities: - uid: 649 @@ -60407,8 +60187,6 @@ entities: - type: Transform pos: 43.5,10.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEscapePod entities: - uid: 10937 @@ -60416,15 +60194,11 @@ entities: - type: Transform pos: 6.5,11.5 parent: 6747 - missingComponents: - - WarpPoint - uid: 12097 components: - type: Transform pos: -53.5,-12.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEvac entities: - uid: 7708 @@ -60432,8 +60206,6 @@ entities: - type: Transform pos: 66.5,-44.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEVAStorage entities: - uid: 12096 @@ -60443,8 +60215,6 @@ entities: parent: 6747 - type: NavMapBeacon text: EVA - missingComponents: - - WarpPoint - proto: DefaultStationBeaconExam entities: - uid: 12098 @@ -60452,8 +60222,6 @@ entities: - type: Transform pos: 16.5,-24.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconGravGen entities: - uid: 27420 @@ -60461,8 +60229,6 @@ entities: - type: Transform pos: 66.5,6.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconHOPOffice entities: - uid: 12107 @@ -60470,8 +60236,6 @@ entities: - type: Transform pos: 41.5,-35.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconHOSRoom entities: - uid: 27421 @@ -60479,8 +60243,6 @@ entities: - type: Transform pos: -11.5,-6.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconJanitorsOffice entities: - uid: 22365 @@ -60488,8 +60250,6 @@ entities: - type: Transform pos: 30.5,2.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconKitchen entities: - uid: 22363 @@ -60497,8 +60257,6 @@ entities: - type: Transform pos: -7.5,-24.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconLawOffice entities: - uid: 10915 @@ -60506,8 +60264,6 @@ entities: - type: Transform pos: -8.5,-62.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconLibrary entities: - uid: 27422 @@ -60515,8 +60271,6 @@ entities: - type: Transform pos: 30.5,-56.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMailroom entities: - uid: 3687 @@ -60524,8 +60278,6 @@ entities: - type: Transform pos: 32.5,15.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMantis entities: - uid: 12109 @@ -60533,8 +60285,6 @@ entities: - type: Transform pos: 2.5,-55.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMedbay entities: - uid: 1608 @@ -60542,8 +60292,6 @@ entities: - type: Transform pos: 25.5,-28.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMedicalOutpost entities: - uid: 10927 @@ -60551,15 +60299,11 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 6747 - missingComponents: - - WarpPoint - uid: 10928 components: - type: Transform pos: 49.5,-42.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMetempsychosis entities: - uid: 10933 @@ -60567,8 +60311,6 @@ entities: - type: Transform pos: 19.5,-33.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconMorgue entities: - uid: 27423 @@ -60576,8 +60318,6 @@ entities: - type: Transform pos: 13.5,-38.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconPark entities: - uid: 22367 @@ -60585,8 +60325,6 @@ entities: - type: Transform pos: 13.5,-43.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconPermaBrig entities: - uid: 10921 @@ -60594,8 +60332,6 @@ entities: - type: Transform pos: -48.5,2.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconPowerBank entities: - uid: 27427 @@ -60603,8 +60339,6 @@ entities: - type: Transform pos: 59.5,20.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconPsychologist entities: - uid: 23899 @@ -60612,8 +60346,6 @@ entities: - type: Transform pos: 49.5,-52.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconQMRoom entities: - uid: 27424 @@ -60621,8 +60353,6 @@ entities: - type: Transform pos: 14.5,20.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconRDRoom entities: - uid: 27425 @@ -60630,8 +60360,6 @@ entities: - type: Transform pos: 14.5,-68.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconReporter entities: - uid: 22378 @@ -60639,8 +60367,6 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconRND entities: - uid: 24100 @@ -60648,8 +60374,6 @@ entities: - type: Transform pos: 4.5,-75.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconRobotics entities: - uid: 27426 @@ -60657,8 +60381,6 @@ entities: - type: Transform pos: 2.5,-70.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSalvage entities: - uid: 24101 @@ -60666,8 +60388,6 @@ entities: - type: Transform pos: -2.5,37.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconScience entities: - uid: 10936 @@ -60675,8 +60395,6 @@ entities: - type: Transform pos: 22.5,-50.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSecurity entities: - uid: 22370 @@ -60686,15 +60404,11 @@ entities: parent: 6747 - type: NavMapBeacon text: Shooting Range - missingComponents: - - WarpPoint - uid: 24102 components: - type: Transform pos: 0.5,-4.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconService entities: - uid: 6477 @@ -60704,8 +60418,6 @@ entities: parent: 6747 - type: NavMapBeacon text: Barber - missingComponents: - - WarpPoint - uid: 27428 components: - type: Transform @@ -60713,8 +60425,6 @@ entities: parent: 6747 - type: NavMapBeacon text: Service Lounge - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSolars entities: - uid: 25590 @@ -60722,22 +60432,16 @@ entities: - type: Transform pos: 40.5,49.5 parent: 6747 - missingComponents: - - WarpPoint - uid: 27429 components: - type: Transform pos: 78.5,18.5 parent: 6747 - missingComponents: - - WarpPoint - uid: 27431 components: - type: Transform pos: -53.5,-24.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSurgery entities: - uid: 24103 @@ -60745,8 +60449,6 @@ entities: - type: Transform pos: 11.5,-31.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconTechVault entities: - uid: 27432 @@ -60754,8 +60456,6 @@ entities: - type: Transform pos: 72.5,9.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconTEG entities: - uid: 24980 @@ -60763,8 +60463,6 @@ entities: - type: Transform pos: 58.5,27.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconTelecoms entities: - uid: 27433 @@ -60772,8 +60470,6 @@ entities: - type: Transform pos: 62.5,8.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconTheater entities: - uid: 26333 @@ -60783,8 +60479,6 @@ entities: parent: 6747 - type: NavMapBeacon text: Arena - missingComponents: - - WarpPoint - proto: DefaultStationBeaconToolRoom entities: - uid: 27434 @@ -60792,8 +60486,6 @@ entities: - type: Transform pos: 54.5,-25.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconVault entities: - uid: 27435 @@ -60801,8 +60493,6 @@ entities: - type: Transform pos: -34.5,-46.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconVirology entities: - uid: 27076 @@ -60810,8 +60500,6 @@ entities: - type: Transform pos: 21.5,-15.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconWardensOffice entities: - uid: 27436 @@ -60819,8 +60507,6 @@ entities: - type: Transform pos: -21.5,-6.5 parent: 6747 - missingComponents: - - WarpPoint - proto: DefibrillatorCabinet entities: - uid: 3246 @@ -61021,12 +60707,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 6747 - - uid: 2742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-53.5 - parent: 6747 - uid: 3700 components: - type: Transform @@ -61595,7 +61275,8 @@ entities: - uid: 12594 components: - type: Transform - pos: 30.5,-40.5 + rot: -1.5707963267948966 rad + pos: 33.5,-37.5 parent: 6747 - uid: 12595 components: @@ -61727,8 +61408,8 @@ entities: - uid: 15694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-46.5 + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 parent: 6747 - uid: 16788 components: @@ -61791,12 +61472,6 @@ entities: - type: Transform pos: -9.5,-32.5 parent: 6747 - - uid: 20349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 6747 - uid: 20392 components: - type: Transform @@ -61808,12 +61483,6 @@ entities: - type: Transform pos: -3.5,-25.5 parent: 6747 - - uid: 20398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 6747 - uid: 20399 components: - type: Transform @@ -61838,6 +61507,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-10.5 parent: 6747 + - uid: 20460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 6747 - uid: 22357 components: - type: Transform @@ -61907,6 +61582,123 @@ entities: rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 6747 + - uid: 27635 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 6747 + - uid: 27636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-51.5 + parent: 6747 + - uid: 27637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-57.5 + parent: 6747 + - uid: 27638 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 6747 + - uid: 27657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 6747 + - uid: 27658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-40.5 + parent: 6747 + - uid: 27660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 6747 + - uid: 27661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-29.5 + parent: 6747 + - uid: 27680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 6747 + - uid: 27684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 6747 + - uid: 27686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 6747 + - uid: 27687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-33.5 + parent: 6747 + - uid: 27710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 6747 + - uid: 27716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 6747 + - uid: 27719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,7.5 + parent: 6747 + - uid: 27721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-1.5 + parent: 6747 + - uid: 27742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 6747 + - uid: 27744 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 6747 + - uid: 27756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,27.5 + parent: 6747 + - uid: 27757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 6747 - proto: DisposalJunction entities: - uid: 3114 @@ -61975,6 +61767,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-46.5 parent: 6747 + - uid: 12401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-37.5 + parent: 6747 - uid: 12464 components: - type: Transform @@ -61993,6 +61791,24 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-46.5 parent: 6747 + - uid: 12590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 6747 + - uid: 12591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 6747 + - uid: 12593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,31.5 + parent: 6747 - uid: 12653 components: - type: Transform @@ -62047,6 +61863,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-11.5 parent: 6747 + - uid: 20398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 6747 - uid: 26000 components: - type: Transform @@ -62059,6 +61881,29 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 6747 + - uid: 27659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-37.5 + parent: 6747 + - uid: 27683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 6747 + - uid: 27718 + components: + - type: Transform + pos: -45.5,7.5 + parent: 6747 + - uid: 27755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,27.5 + parent: 6747 - proto: DisposalJunctionFlipped entities: - uid: 3477 @@ -62185,6 +62030,23 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-10.5 parent: 6747 + - uid: 27624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 + parent: 6747 + - uid: 27717 + components: + - type: Transform + pos: -45.5,8.5 + parent: 6747 + - uid: 27745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 6747 - proto: DisposalMachineFrame entities: - uid: 10578 @@ -62435,12 +62297,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,10.5 parent: 6747 - - uid: 8286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,31.5 - parent: 6747 - uid: 8828 components: - type: Transform @@ -65711,18 +65567,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-44.5 parent: 6747 - - uid: 12401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-43.5 - parent: 6747 - - uid: 12402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-42.5 - parent: 6747 - uid: 12403 components: - type: Transform @@ -66507,30 +66351,12 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 6747 - - uid: 12590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-36.5 - parent: 6747 - - uid: 12591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-37.5 - parent: 6747 - uid: 12592 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-38.5 parent: 6747 - - uid: 12593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-39.5 - parent: 6747 - uid: 12596 components: - type: Transform @@ -68822,12 +68648,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-3.5 parent: 6747 - - uid: 20460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-4.5 - parent: 6747 - uid: 21734 components: - type: Transform @@ -69629,6 +69449,614 @@ entities: - type: Transform pos: 38.5,12.5 parent: 6747 + - uid: 27622 + components: + - type: Transform + pos: -45.5,6.5 + parent: 6747 + - uid: 27625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-43.5 + parent: 6747 + - uid: 27626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 6747 + - uid: 27627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-42.5 + parent: 6747 + - uid: 27628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 6747 + - uid: 27629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-40.5 + parent: 6747 + - uid: 27630 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 6747 + - uid: 27631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-37.5 + parent: 6747 + - uid: 27632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-37.5 + parent: 6747 + - uid: 27633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-37.5 + parent: 6747 + - uid: 27634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-36.5 + parent: 6747 + - uid: 27640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-57.5 + parent: 6747 + - uid: 27641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-57.5 + parent: 6747 + - uid: 27642 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 6747 + - uid: 27643 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 6747 + - uid: 27644 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 6747 + - uid: 27645 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 6747 + - uid: 27646 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 6747 + - uid: 27647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-51.5 + parent: 6747 + - uid: 27648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-51.5 + parent: 6747 + - uid: 27649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-51.5 + parent: 6747 + - uid: 27650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-51.5 + parent: 6747 + - uid: 27651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-51.5 + parent: 6747 + - uid: 27652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-51.5 + parent: 6747 + - uid: 27653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-51.5 + parent: 6747 + - uid: 27654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-52.5 + parent: 6747 + - uid: 27662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-29.5 + parent: 6747 + - uid: 27663 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 6747 + - uid: 27664 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 6747 + - uid: 27665 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 6747 + - uid: 27666 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 6747 + - uid: 27667 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 6747 + - uid: 27668 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 6747 + - uid: 27669 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 6747 + - uid: 27670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-37.5 + parent: 6747 + - uid: 27671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-38.5 + parent: 6747 + - uid: 27672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-39.5 + parent: 6747 + - uid: 27673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 6747 + - uid: 27674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 6747 + - uid: 27675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-37.5 + parent: 6747 + - uid: 27676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-37.5 + parent: 6747 + - uid: 27677 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 6747 + - uid: 27678 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 6747 + - uid: 27679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-40.5 + parent: 6747 + - uid: 27688 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 6747 + - uid: 27689 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 6747 + - uid: 27690 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 6747 + - uid: 27691 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 6747 + - uid: 27692 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 6747 + - uid: 27693 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 6747 + - uid: 27694 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 6747 + - uid: 27695 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 6747 + - uid: 27696 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 6747 + - uid: 27697 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 6747 + - uid: 27698 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 6747 + - uid: 27699 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 6747 + - uid: 27700 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 6747 + - uid: 27701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 6747 + - uid: 27702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 6747 + - uid: 27703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 6747 + - uid: 27704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 6747 + - uid: 27705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 6747 + - uid: 27706 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 6747 + - uid: 27707 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 6747 + - uid: 27711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-30.5 + parent: 6747 + - uid: 27720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,8.5 + parent: 6747 + - uid: 27722 + components: + - type: Transform + pos: -45.5,5.5 + parent: 6747 + - uid: 27723 + components: + - type: Transform + pos: -45.5,4.5 + parent: 6747 + - uid: 27724 + components: + - type: Transform + pos: -45.5,3.5 + parent: 6747 + - uid: 27725 + components: + - type: Transform + pos: -45.5,2.5 + parent: 6747 + - uid: 27726 + components: + - type: Transform + pos: -45.5,1.5 + parent: 6747 + - uid: 27727 + components: + - type: Transform + pos: -45.5,0.5 + parent: 6747 + - uid: 27728 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 6747 + - uid: 27729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 6747 + - uid: 27730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-1.5 + parent: 6747 + - uid: 27731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 6747 + - uid: 27732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 6747 + - uid: 27733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 6747 + - uid: 27734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 6747 + - uid: 27735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 6747 + - uid: 27736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 6747 + - uid: 27737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 6747 + - uid: 27738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 6747 + - uid: 27739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 6747 + - uid: 27746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 6747 + - uid: 27747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 6747 + - uid: 27748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 6747 + - uid: 27749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 6747 + - uid: 27750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 6747 + - uid: 27751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 6747 + - uid: 27752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 6747 + - uid: 27758 + components: + - type: Transform + pos: 11.5,30.5 + parent: 6747 + - uid: 27759 + components: + - type: Transform + pos: 11.5,29.5 + parent: 6747 + - uid: 27760 + components: + - type: Transform + pos: 11.5,28.5 + parent: 6747 + - uid: 27761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 6747 + - uid: 27762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 6747 + - uid: 27763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 6747 + - uid: 27764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 6747 + - uid: 27765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 6747 + - uid: 27766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 6747 + - uid: 27767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,26.5 + parent: 6747 + - uid: 27768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 6747 + - uid: 27769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 6747 + - uid: 27770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 6747 + - uid: 27771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 6747 + - uid: 27772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 6747 +- proto: DisposalPipeBroken + entities: + - uid: 27709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-28.5 + parent: 6747 + - uid: 27712 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 6747 - proto: DisposalRouterFlipped entities: - uid: 23521 @@ -69923,6 +70351,11 @@ entities: - type: Transform pos: 27.5,19.5 parent: 6747 + - uid: 2742 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 6747 - uid: 3173 components: - type: Transform @@ -70233,6 +70666,11 @@ entities: - type: Transform pos: -43.5,-26.5 parent: 6747 + - uid: 20349 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 6747 - uid: 20391 components: - type: Transform @@ -70276,6 +70714,86 @@ entities: - type: Transform pos: -18.5,1.5 parent: 6747 + - uid: 27623 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 6747 + - uid: 27639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-58.5 + parent: 6747 + - uid: 27655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-40.5 + parent: 6747 + - uid: 27656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 6747 + - uid: 27681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-34.5 + parent: 6747 + - uid: 27682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-34.5 + parent: 6747 + - uid: 27708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 6747 + - uid: 27713 + components: + - type: Transform + pos: -46.5,9.5 + parent: 6747 + - uid: 27714 + components: + - type: Transform + pos: -45.5,9.5 + parent: 6747 + - uid: 27715 + components: + - type: Transform + pos: -44.5,9.5 + parent: 6747 + - uid: 27740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 6747 + - uid: 27741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 6747 + - uid: 27753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 6747 + - uid: 27754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 6747 - proto: DisposalUnit entities: - uid: 1799 @@ -70501,6 +71019,12 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-53.5 parent: 6747 + - uid: 8286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-53.5 + parent: 6747 - uid: 11883 components: - type: Transform @@ -70524,6 +71048,23 @@ entities: - type: Transform pos: 23.5,6.5 parent: 6747 + - uid: 12402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-46.5 + parent: 6747 + - uid: 27685 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 6747 + - uid: 27743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 6747 - proto: DogBed entities: - uid: 754 @@ -70845,7 +71386,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -71036,7 +71576,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -71197,7 +71736,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71214,7 +71752,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71238,7 +71775,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -71325,7 +71861,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71344,7 +71879,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71363,7 +71897,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71376,29 +71909,11 @@ entities: - type: Transform pos: -59.004444,-0.28683114 parent: 6747 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 20 - name: null - reagents: [] - uid: 23573 components: - type: Transform pos: -58.941944,-0.5161569 parent: 6747 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 20 - name: null - reagents: [] - proto: DrinkWaterJug entities: - uid: 17594 @@ -72674,8 +73189,6 @@ entities: - 26981 - 26982 - 26983 - - type: AtmosDevice - joinedGrid: 6747 - uid: 295 components: - type: Transform @@ -72698,8 +73211,6 @@ entities: - 21749 - 21750 - 21751 - - type: AtmosDevice - joinedGrid: 6747 - uid: 767 components: - type: Transform @@ -72729,8 +73240,6 @@ entities: - 15913 - 25266 - 25268 - - type: AtmosDevice - joinedGrid: 6747 - uid: 1781 components: - type: Transform @@ -72753,8 +73262,6 @@ entities: - 25209 - 1958 - 25206 - - type: AtmosDevice - joinedGrid: 6747 - uid: 3693 components: - type: Transform @@ -72768,8 +73275,6 @@ entities: - 21775 - 22292 - 21906 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7457 components: - type: Transform @@ -72785,8 +73290,6 @@ entities: - 5324 - 5866 - 5878 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7458 components: - type: Transform @@ -72802,8 +73305,6 @@ entities: - 7446 - 7445 - 7444 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13176 components: - type: Transform @@ -72819,8 +73320,6 @@ entities: - 26988 - 1959 - 2421 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13869 components: - type: Transform @@ -72842,8 +73341,6 @@ entities: - 21749 - 21750 - 21751 - - type: AtmosDevice - joinedGrid: 6747 - uid: 17095 components: - type: Transform @@ -72860,8 +73357,6 @@ entities: - 22151 - 21882 - 23520 - - type: AtmosDevice - joinedGrid: 6747 - uid: 17357 components: - type: Transform @@ -72877,8 +73372,6 @@ entities: - 25257 - 25258 - 1148 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22035 components: - type: Transform @@ -72894,8 +73387,6 @@ entities: - 21769 - 21770 - 22290 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22039 components: - type: Transform @@ -72910,8 +73401,6 @@ entities: - 21918 - 8989 - 8988 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22040 components: - type: Transform @@ -72927,8 +73416,6 @@ entities: - 9007 - 22184 - 21917 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22042 components: - type: Transform @@ -72943,8 +73430,6 @@ entities: - 22188 - 22328 - 22327 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22044 components: - type: Transform @@ -72971,8 +73456,6 @@ entities: - 8984 - 21916 - 21389 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22088 components: - type: Transform @@ -72987,8 +73470,6 @@ entities: - 17141 - 25308 - 25307 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22090 components: - type: Transform @@ -73005,8 +73486,6 @@ entities: - 21797 - 21795 - 21796 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22092 components: - type: Transform @@ -73030,8 +73509,6 @@ entities: - 25302 - 25303 - 25304 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22094 components: - type: Transform @@ -73060,8 +73537,6 @@ entities: - 8966 - 21784 - 21783 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22095 components: - type: Transform @@ -73075,8 +73550,6 @@ entities: - 22161 - 22160 - 22159 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22098 components: - type: Transform @@ -73087,8 +73560,6 @@ entities: - 21788 - 21891 - 27085 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22100 components: - type: Transform @@ -73102,8 +73573,6 @@ entities: - 21890 - 21787 - 21889 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22102 components: - type: Transform @@ -73116,8 +73585,6 @@ entities: - 22236 - 22237 - 21886 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22104 components: - type: Transform @@ -73129,8 +73596,6 @@ entities: - 21888 - 21887 - 22154 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22106 components: - type: Transform @@ -73141,15 +73606,11 @@ entities: - 21885 - 22147 - 21786 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22112 components: - type: Transform pos: 28.5,-62.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22114 components: - type: Transform @@ -73162,8 +73623,6 @@ entities: - 22142 - 22146 - 21783 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22116 components: - type: Transform @@ -73175,8 +73634,6 @@ entities: - 21879 - 22144 - 21782 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22118 components: - type: Transform @@ -73191,8 +73648,6 @@ entities: - 22174 - 22178 - 21909 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22120 components: - type: Transform @@ -73205,8 +73660,6 @@ entities: - 22176 - 22177 - 21907 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22122 components: - type: Transform @@ -73239,8 +73692,6 @@ entities: - 8975 - 8973 - 22177 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22124 components: - type: Transform @@ -73259,8 +73710,6 @@ entities: - 21781 - 21772 - 21908 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22126 components: - type: Transform @@ -73281,8 +73730,6 @@ entities: - 25257 - 25258 - 1148 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22127 components: - type: Transform @@ -73292,8 +73739,6 @@ entities: devices: - 22321 - 21931 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22131 components: - type: Transform @@ -73305,8 +73750,6 @@ entities: - 22136 - 22137 - 22139 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22140 components: - type: Transform @@ -73318,8 +73761,6 @@ entities: - 22136 - 22138 - 22135 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22164 components: - type: Transform @@ -73335,8 +73776,6 @@ entities: - 21414 - 21415 - 22246 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22224 components: - type: Transform @@ -73358,8 +73797,6 @@ entities: - 17052 - 17367 - 17362 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22226 components: - type: Transform @@ -73373,8 +73810,6 @@ entities: - 21811 - 22143 - 23041 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22230 components: - type: Transform @@ -73389,8 +73824,6 @@ entities: - 22228 - 22231 - 21881 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22235 components: - type: Transform @@ -73403,8 +73836,6 @@ entities: - 22153 - 22152 - 438 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22238 components: - type: Transform @@ -73416,8 +73847,6 @@ entities: - 10125 - 22157 - 21810 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22240 components: - type: Transform @@ -73431,8 +73860,6 @@ entities: - 22157 - 10125 - 10126 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22289 components: - type: Transform @@ -73450,8 +73877,6 @@ entities: - 6533 - 9007 - 21915 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22294 components: - type: Transform @@ -73464,8 +73889,6 @@ entities: - 22181 - 22180 - 21911 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22318 components: - type: Transform @@ -73482,8 +73905,6 @@ entities: - 21818 - 21819 - 22186 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25272 components: - type: Transform @@ -73499,8 +73920,6 @@ entities: - 25204 - 25212 - 25205 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25276 components: - type: Transform @@ -73512,8 +73931,6 @@ entities: - 25212 - 25277 - 25207 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25279 components: - type: Transform @@ -73524,8 +73941,6 @@ entities: devices: - 25212 - 25208 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25282 components: - type: Transform @@ -73547,8 +73962,6 @@ entities: - 25232 - 25220 - 25221 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25284 components: - type: Transform @@ -73559,8 +73972,6 @@ entities: devices: - 25219 - 25216 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25285 components: - type: Transform @@ -73571,8 +73982,6 @@ entities: devices: - 25219 - 25217 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25288 components: - type: Transform @@ -73585,8 +73994,6 @@ entities: - 25222 - 22246 - 25224 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25291 components: - type: Transform @@ -73598,8 +74005,6 @@ entities: - 25226 - 25229 - 25230 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25294 components: - type: Transform @@ -73614,8 +74019,6 @@ entities: - 25236 - 22162 - 25235 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25296 components: - type: Transform @@ -73629,8 +74032,6 @@ entities: - 25234 - 25233 - 25236 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25297 components: - type: Transform @@ -73644,8 +74045,6 @@ entities: - 25241 - 25238 - 25237 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25300 components: - type: Transform @@ -73662,8 +74061,6 @@ entities: - 25219 - 25221 - 25220 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25306 components: - type: Transform @@ -73688,8 +74085,6 @@ entities: - 25301 - 22249 - 25307 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25310 components: - type: Transform @@ -73725,8 +74120,6 @@ entities: - 15908 - 15907 - 15905 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25312 components: - type: Transform @@ -73748,8 +74141,6 @@ entities: - 25264 - 25314 - 25313 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25318 components: - type: Transform @@ -73767,8 +74158,6 @@ entities: - 25252 - 25260 - 25261 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25320 components: - type: Transform @@ -73786,8 +74175,6 @@ entities: - 25261 - 25254 - 25253 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25322 components: - type: Transform @@ -73798,8 +74185,6 @@ entities: devices: - 25262 - 15911 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25324 components: - type: Transform @@ -73812,8 +74197,6 @@ entities: - 25268 - 25219 - 25267 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25386 components: - type: Transform @@ -73829,8 +74212,6 @@ entities: - 15916 - 15915 - 15914 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26947 components: - type: Transform @@ -73842,8 +74223,6 @@ entities: - 21921 - 26953 - 26952 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26959 components: - type: Transform @@ -73854,16 +74233,12 @@ entities: devices: - 21921 - 26954 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26964 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,15.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26971 components: - type: Transform @@ -73889,8 +74264,6 @@ entities: - 26972 - 22433 - 26974 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26990 components: - type: Transform @@ -73905,8 +74278,6 @@ entities: - 26946 - 26948 - 26949 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26992 components: - type: Transform @@ -73926,8 +74297,6 @@ entities: - 26951 - 26960 - 26952 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27004 components: - type: Transform @@ -73941,8 +74310,6 @@ entities: - 1820 - 27002 - 27001 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27006 components: - type: Transform @@ -73961,8 +74328,6 @@ entities: - 26969 - 26972 - 26973 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27008 components: - type: Transform @@ -73975,8 +74340,6 @@ entities: - 26974 - 21928 - 27010 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27037 components: - type: Transform @@ -73989,8 +74352,6 @@ entities: - 27034 - 25212 - 27035 - - type: AtmosDevice - joinedGrid: 6747 - uid: 27088 components: - type: Transform @@ -74004,8 +74365,6 @@ entities: - 23520 - 5046 - 27086 - - type: AtmosDevice - joinedGrid: 6747 - proto: FireAlarmElectronics entities: - uid: 7654 @@ -74314,6 +74673,9 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 25253 components: - type: Transform @@ -74748,21 +75110,33 @@ entities: - type: Transform pos: -9.5,-26.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 15907 components: - type: Transform pos: -9.5,-25.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 15908 components: - type: Transform pos: -9.5,-24.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 15909 components: - type: Transform pos: -9.5,-20.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 15910 components: - type: Transform @@ -75379,6 +75753,9 @@ entities: - type: Transform pos: -1.5,-19.5 parent: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - uid: 25267 components: - type: Transform @@ -75862,6 +76239,58 @@ entities: parent: 6747 - type: Fixtures fixtures: {} +- proto: FloorTileItemBrassFilled + entities: + - uid: 5065 + components: + - type: Transform + pos: 58.353477,5.396351 + parent: 6747 + - uid: 6770 + components: + - type: Transform + pos: 58.509727,5.3755035 + parent: 6747 + - uid: 10327 + components: + - type: Transform + pos: 58.259727,5.719492 + parent: 6747 + - uid: 10328 + components: + - type: Transform + pos: 58.259727,5.719492 + parent: 6747 + - uid: 10329 + components: + - type: Transform + pos: 58.353477,5.396351 + parent: 6747 + - uid: 10330 + components: + - type: Transform + pos: 58.509727,5.3755035 + parent: 6747 + - uid: 10512 + components: + - type: Transform + pos: 58.415977,5.625677 + parent: 6747 + - uid: 10529 + components: + - type: Transform + pos: 58.415977,5.625677 + parent: 6747 + - uid: 10545 + components: + - type: Transform + pos: 58.551395,5.5839806 + parent: 6747 + - uid: 27790 + components: + - type: Transform + pos: 58.551395,5.5839806 + parent: 6747 - proto: FloraRockSolid01 entities: - uid: 7087 @@ -76228,7 +76657,7 @@ entities: - type: Transform pos: 110.47042,36.19293 parent: 6747 -- proto: FoodChili +- proto: FoodChiliPepper entities: - uid: 3862 components: @@ -76606,6 +77035,25 @@ entities: - type: Transform pos: 48.306625,-15.94488 parent: 6747 +- proto: FoodPoppy + entities: + - uid: 7182 + components: + - type: Transform + pos: 36.539196,-16.411207 + parent: 6747 + - uid: 12967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.258544,-30.379358 + parent: 6747 + - uid: 17532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.309444,-94.22372 + parent: 6747 - proto: FoodPotato entities: - uid: 218 @@ -76809,8 +77257,6 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#99FFFFFF' - uid: 7925 @@ -76819,8 +77265,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11423 @@ -76829,8 +77273,6 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - uid: 11971 @@ -76839,8 +77281,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,38.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 13117 @@ -76849,16 +77289,12 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13152 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 13364 @@ -76866,8 +77302,6 @@ entities: - type: Transform pos: 60.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 13369 @@ -76876,8 +77310,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 26913 @@ -76885,8 +77317,6 @@ entities: - type: Transform pos: 11.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#99FFFFFF' - proto: GasFilterFlipped @@ -76897,8 +77327,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7868 @@ -76907,8 +77335,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7869 @@ -76917,8 +77343,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7870 @@ -76927,8 +77351,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7871 @@ -76937,8 +77359,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7872 @@ -76947,8 +77367,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8120 @@ -76956,8 +77374,6 @@ entities: - type: Transform pos: 53.5,43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - proto: GasMinerNitrogenStation @@ -76967,8 +77383,6 @@ entities: - type: Transform pos: 38.5,41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasMinerOxygenStation entities: - uid: 6693 @@ -76976,8 +77390,6 @@ entities: - type: Transform pos: 36.5,41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasMixer entities: - uid: 11233 @@ -76986,8 +77398,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-85.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasMixerFlipped entities: - uid: 7887 @@ -76999,8 +77409,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11232 @@ -77009,8 +77417,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-85.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasOutletInjector entities: - uid: 250 @@ -77019,15 +77425,11 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7259 components: - type: Transform pos: 42.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF9999FF' - uid: 7261 @@ -77035,8 +77437,6 @@ entities: - type: Transform pos: 40.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 7262 @@ -77044,8 +77444,6 @@ entities: - type: Transform pos: 38.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF3333FF' - uid: 7263 @@ -77053,8 +77451,6 @@ entities: - type: Transform pos: 36.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 7938 @@ -77062,8 +77458,6 @@ entities: - type: Transform pos: 44.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#3399FFFF' - uid: 7939 @@ -77071,15 +77465,11 @@ entities: - type: Transform pos: 46.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7940 components: - type: Transform pos: 48.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8107 @@ -77087,8 +77477,6 @@ entities: - type: Transform pos: 53.5,49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8108 @@ -77096,48 +77484,36 @@ entities: - type: Transform pos: 54.5,49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11251 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-90.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11252 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-90.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13284 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13370 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15078 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-73.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15079 @@ -77146,8 +77522,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-78.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15482 @@ -77156,45 +77530,33 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-71.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-68.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15484 components: - type: Transform pos: -42.5,-53.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15485 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-82.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 16591 components: - type: Transform pos: -31.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 16592 components: - type: Transform pos: -26.5,15.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasPassiveGate entities: - uid: 7933 @@ -77203,8 +77565,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - uid: 23527 @@ -77212,8 +77572,6 @@ entities: - type: Transform pos: 43.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - uid: 25075 @@ -77222,8 +77580,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasPassiveVent @@ -77233,8 +77589,6 @@ entities: - type: Transform pos: 55.5,48.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7945 @@ -77243,8 +77597,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 7946 @@ -77253,8 +77605,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF3333FF' - uid: 7947 @@ -77263,8 +77613,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 7948 @@ -77273,8 +77621,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF9999FF' - uid: 7949 @@ -77283,8 +77629,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#3399FFFF' - uid: 7950 @@ -77293,16 +77637,12 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7951 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8031 @@ -77310,8 +77650,6 @@ entities: - type: Transform pos: 51.5,38.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8151 @@ -77319,23 +77657,17 @@ entities: - type: Transform pos: 53.5,44.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11253 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-89.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13272 components: - type: Transform pos: 57.5,41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasPipeBend entities: - uid: 344 @@ -108146,16 +108478,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7258 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7260 @@ -108164,8 +108492,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7753 @@ -108174,8 +108500,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7864 @@ -108184,8 +108508,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7865 @@ -108194,8 +108516,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7883 @@ -108204,8 +108524,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 7888 @@ -108214,8 +108532,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF3333FF' - uid: 7910 @@ -108224,56 +108540,42 @@ entities: rot: 3.141592653589793 rad pos: 49.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7913 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7917 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7918 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7926 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8128 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,44.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8144 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8145 @@ -108282,8 +108584,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11226 @@ -108291,44 +108591,32 @@ entities: - type: Transform pos: 1.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11227 components: - type: Transform pos: 2.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11228 components: - type: Transform pos: 3.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11229 components: - type: Transform pos: 4.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11256 components: - type: Transform pos: 2.5,-86.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11427 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11428 @@ -108337,8 +108625,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11442 @@ -108347,8 +108633,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - uid: 11769 @@ -108356,16 +108640,12 @@ entities: - type: Transform pos: -8.5,-84.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13084 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 13145 @@ -108373,16 +108653,12 @@ entities: - type: Transform pos: 60.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13150 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 13151 @@ -108391,8 +108667,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 13282 @@ -108401,24 +108675,18 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13340 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13341 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 14914 @@ -108427,24 +108695,18 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22211 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 23526 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF9999FF' - uid: 23897 @@ -108453,8 +108715,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasPressurePump entities: - uid: 246 @@ -108463,8 +108723,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7880 @@ -108472,8 +108730,6 @@ entities: - type: Transform pos: 37.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 7881 @@ -108481,8 +108737,6 @@ entities: - type: Transform pos: 39.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF3333FF' - uid: 7901 @@ -108491,8 +108745,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7903 @@ -108500,8 +108752,6 @@ entities: - type: Transform pos: 48.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7907 @@ -108509,8 +108759,6 @@ entities: - type: Transform pos: 49.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7914 @@ -108518,15 +108766,11 @@ entities: - type: Transform pos: 47.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7915 components: - type: Transform pos: 41.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 7919 @@ -108534,8 +108778,6 @@ entities: - type: Transform pos: 43.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF9999FF' - uid: 7920 @@ -108543,8 +108785,6 @@ entities: - type: Transform pos: 45.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#3399FFFF' - uid: 7931 @@ -108553,8 +108793,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8121 @@ -108563,8 +108801,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8127 @@ -108573,15 +108809,11 @@ entities: rot: 3.141592653589793 rad pos: 54.5,45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8141 components: - type: Transform pos: 54.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11245 @@ -108589,31 +108821,23 @@ entities: - type: Transform pos: 1.5,-87.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11246 components: - type: Transform pos: 3.5,-87.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11255 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-87.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11425 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - uid: 11439 @@ -108622,8 +108846,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11441 @@ -108631,8 +108853,6 @@ entities: - type: Transform pos: 41.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13283 @@ -108641,16 +108861,12 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15071 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-73.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15486 @@ -108659,8 +108875,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-68.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15521 @@ -108669,8 +108883,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15538 @@ -108678,8 +108890,6 @@ entities: - type: Transform pos: -34.5,-70.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15546 @@ -108687,8 +108897,6 @@ entities: - type: Transform pos: -48.5,-81.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16571 @@ -108697,8 +108905,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,16.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16572 @@ -108707,8 +108913,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26911 @@ -108717,8 +108921,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#99FFFFFF' - proto: GasRecycler @@ -108728,8 +108930,6 @@ entities: - type: Transform pos: 45.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#66FF66FF' - proto: GasThermoMachineFreezer @@ -108741,8 +108941,6 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 6747 - uid: 8147 components: - type: Transform @@ -108750,22 +108948,16 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#CC6600FF' - - type: AtmosDevice - joinedGrid: 6747 - uid: 11224 components: - type: Transform pos: 0.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11601 components: - type: Transform pos: -3.5,-86.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22329 components: - type: Transform @@ -108773,8 +108965,6 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#99FFFFFF' - - type: AtmosDevice - joinedGrid: 6747 - proto: GasThermoMachineFreezerEnabled entities: - uid: 11825 @@ -108784,8 +108974,6 @@ entities: parent: 6747 - type: GasThermoMachine targetTemperature: 249.8167 - - type: AtmosDevice - joinedGrid: 6747 - proto: GasThermoMachineHeater entities: - uid: 7935 @@ -108796,8 +108984,6 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#66FF66FF' - - type: AtmosDevice - joinedGrid: 6747 - uid: 8146 components: - type: Transform @@ -108805,22 +108991,16 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#CC6600FF' - - type: AtmosDevice - joinedGrid: 6747 - uid: 11225 components: - type: Transform pos: 0.5,-85.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11602 components: - type: Transform pos: -11.5,-86.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22502 components: - type: Transform @@ -108828,8 +109008,6 @@ entities: parent: 6747 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 6747 - proto: GasValve entities: - uid: 7542 @@ -108839,8 +109017,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 7862 @@ -108848,8 +109024,6 @@ entities: - type: Transform pos: 34.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7892 @@ -108858,8 +109032,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7893 @@ -108870,8 +109042,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8030 @@ -108879,8 +109049,6 @@ entities: - type: Transform pos: 51.5,37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 8210 @@ -108891,8 +109059,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 11944 @@ -108902,8 +109068,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#CC6600FF' - uid: 14625 @@ -108913,8 +109077,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14628 @@ -108924,8 +109086,6 @@ entities: parent: 6747 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24983 @@ -108934,8 +109094,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#E5CCFFFF' - proto: GasVentPump @@ -108949,8 +109107,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7254 @@ -108958,8 +109114,6 @@ entities: - type: Transform pos: 47.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8433 @@ -108968,8 +109122,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11770 @@ -108978,15 +109130,11 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 13062 components: - type: Transform pos: 53.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13246 @@ -108995,8 +109143,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13451 @@ -109005,8 +109151,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13452 @@ -109015,8 +109159,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13484 @@ -109025,8 +109167,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13486 @@ -109034,8 +109174,6 @@ entities: - type: Transform pos: -0.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13487 @@ -109044,8 +109182,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13496 @@ -109053,8 +109189,6 @@ entities: - type: Transform pos: 32.5,1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13499 @@ -109063,8 +109197,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13658 @@ -109072,8 +109204,6 @@ entities: - type: Transform pos: 36.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13659 @@ -109081,8 +109211,6 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13660 @@ -109090,8 +109218,6 @@ entities: - type: Transform pos: 41.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13661 @@ -109099,8 +109225,6 @@ entities: - type: Transform pos: 48.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13662 @@ -109109,8 +109233,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13664 @@ -109119,8 +109241,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13665 @@ -109129,8 +109249,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13666 @@ -109139,8 +109257,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13667 @@ -109149,8 +109265,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13668 @@ -109159,8 +109273,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13669 @@ -109169,8 +109281,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13670 @@ -109178,8 +109288,6 @@ entities: - type: Transform pos: 36.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13671 @@ -109188,8 +109296,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13672 @@ -109198,8 +109304,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13673 @@ -109208,8 +109312,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13674 @@ -109217,8 +109319,6 @@ entities: - type: Transform pos: 28.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13676 @@ -109226,8 +109326,6 @@ entities: - type: Transform pos: 38.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13774 @@ -109236,8 +109334,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13784 @@ -109246,8 +109342,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13951 @@ -109256,8 +109350,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13952 @@ -109266,8 +109358,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13953 @@ -109276,8 +109366,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13954 @@ -109286,8 +109374,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13955 @@ -109296,8 +109382,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13956 @@ -109305,8 +109389,6 @@ entities: - type: Transform pos: 17.5,-25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13957 @@ -109314,8 +109396,6 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13958 @@ -109323,8 +109403,6 @@ entities: - type: Transform pos: 25.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13959 @@ -109333,8 +109411,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13960 @@ -109343,8 +109419,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14115 @@ -109352,8 +109426,6 @@ entities: - type: Transform pos: 58.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14125 @@ -109362,8 +109434,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14130 @@ -109372,8 +109442,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14230 @@ -109382,8 +109450,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14231 @@ -109392,8 +109458,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14232 @@ -109401,8 +109465,6 @@ entities: - type: Transform pos: 53.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14234 @@ -109411,8 +109473,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14235 @@ -109420,8 +109480,6 @@ entities: - type: Transform pos: 74.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14236 @@ -109433,8 +109491,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14264 @@ -109443,8 +109499,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14293 @@ -109453,8 +109507,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-36.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14294 @@ -109463,8 +109515,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14397 @@ -109472,8 +109522,6 @@ entities: - type: Transform pos: 67.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14439 @@ -109482,8 +109530,6 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14717 @@ -109492,8 +109538,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-51.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14718 @@ -109501,8 +109545,6 @@ entities: - type: Transform pos: 36.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14719 @@ -109510,8 +109552,6 @@ entities: - type: Transform pos: 54.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14720 @@ -109520,8 +109560,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14721 @@ -109529,8 +109567,6 @@ entities: - type: Transform pos: 72.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14726 @@ -109539,8 +109575,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-50.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14727 @@ -109549,8 +109583,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-61.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14733 @@ -109558,8 +109590,6 @@ entities: - type: Transform pos: 25.5,-44.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14735 @@ -109568,8 +109598,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14743 @@ -109578,8 +109606,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14744 @@ -109587,8 +109613,6 @@ entities: - type: Transform pos: 19.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14759 @@ -109597,8 +109621,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-48.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14760 @@ -109606,8 +109628,6 @@ entities: - type: Transform pos: -9.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14763 @@ -109615,8 +109635,6 @@ entities: - type: Transform pos: -11.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14774 @@ -109624,8 +109642,6 @@ entities: - type: Transform pos: -5.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14806 @@ -109633,8 +109649,6 @@ entities: - type: Transform pos: 5.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14829 @@ -109643,8 +109657,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-82.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14830 @@ -109652,8 +109664,6 @@ entities: - type: Transform pos: 3.5,-75.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14841 @@ -109662,8 +109672,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14842 @@ -109672,8 +109680,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-81.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14896 @@ -109682,8 +109688,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-62.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14897 @@ -109691,8 +109695,6 @@ entities: - type: Transform pos: 6.5,-72.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14899 @@ -109701,8 +109703,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-67.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14902 @@ -109711,8 +109711,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-66.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14903 @@ -109721,8 +109719,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14906 @@ -109731,8 +109727,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-51.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14910 @@ -109741,8 +109735,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-68.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14920 @@ -109751,8 +109743,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-67.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14926 @@ -109761,8 +109751,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-66.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15004 @@ -109771,8 +109759,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-87.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15005 @@ -109781,8 +109767,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-81.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15006 @@ -109790,8 +109774,6 @@ entities: - type: Transform pos: 27.5,-78.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15007 @@ -109800,8 +109782,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15011 @@ -109810,8 +109790,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-74.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15131 @@ -109819,8 +109797,6 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15132 @@ -109829,8 +109805,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15141 @@ -109839,8 +109813,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-59.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15144 @@ -109849,8 +109821,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15162 @@ -109859,8 +109829,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15170 @@ -109869,8 +109837,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15172 @@ -109879,8 +109845,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-60.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15208 @@ -109889,8 +109853,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15211 @@ -109899,8 +109861,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-44.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15230 @@ -109909,8 +109869,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-54.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15267 @@ -109919,8 +109877,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15391 @@ -109928,8 +109884,6 @@ entities: - type: Transform pos: -33.5,-47.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15392 @@ -109937,8 +109891,6 @@ entities: - type: Transform pos: -31.5,-47.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15393 @@ -109947,8 +109899,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15394 @@ -109960,8 +109910,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15395 @@ -109973,8 +109921,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15396 @@ -109986,8 +109932,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15403 @@ -109996,8 +109940,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-54.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15411 @@ -110006,8 +109948,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15412 @@ -110016,8 +109956,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-59.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15431 @@ -110029,8 +109967,6 @@ entities: - type: DeviceNetwork deviceLists: - 22239 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15445 @@ -110039,8 +109975,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-52.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15555 @@ -110049,8 +109983,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15574 @@ -110058,8 +109990,6 @@ entities: - type: Transform pos: -44.5,-40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15989 @@ -110067,8 +109997,6 @@ entities: - type: Transform pos: 16.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15990 @@ -110077,8 +110005,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16067 @@ -110087,8 +110013,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-36.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16623 @@ -110097,8 +110021,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16624 @@ -110107,8 +110029,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16625 @@ -110117,8 +110037,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-61.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16626 @@ -110127,8 +110045,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16723 @@ -110136,8 +110052,6 @@ entities: - type: Transform pos: 13.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16844 @@ -110146,8 +110060,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16846 @@ -110156,8 +110068,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17062 @@ -110166,8 +110076,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17395 @@ -110176,8 +110084,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-51.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21428 @@ -110188,8 +110094,6 @@ entities: - type: DeviceNetwork deviceLists: - 22239 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22062 @@ -110197,8 +110101,6 @@ entities: - type: Transform pos: 12.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22268 @@ -110207,8 +110109,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22284 @@ -110217,8 +110117,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22310 @@ -110226,8 +110124,6 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22311 @@ -110236,8 +110132,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-16.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22312 @@ -110246,8 +110140,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22324 @@ -110255,8 +110147,6 @@ entities: - type: Transform pos: 18.5,-7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22326 @@ -110265,8 +110155,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23663 @@ -110275,8 +110163,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#E5CCFFFF' - uid: 23664 @@ -110284,8 +110170,6 @@ entities: - type: Transform pos: -19.5,-46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23671 @@ -110294,8 +110178,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23683 @@ -110304,8 +110186,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23684 @@ -110314,8 +110194,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23752 @@ -110323,8 +110201,6 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24049 @@ -110333,8 +110209,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-94.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24050 @@ -110342,8 +110216,6 @@ entities: - type: Transform pos: 27.5,-91.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24051 @@ -110352,8 +110224,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24087 @@ -110362,8 +110232,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-11.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24088 @@ -110371,8 +110239,6 @@ entities: - type: Transform pos: -20.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24089 @@ -110380,8 +110246,6 @@ entities: - type: Transform pos: -18.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24119 @@ -110390,8 +110254,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24120 @@ -110399,8 +110261,6 @@ entities: - type: Transform pos: -5.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24133 @@ -110409,8 +110269,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24175 @@ -110419,8 +110277,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24178 @@ -110429,8 +110285,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24179 @@ -110439,8 +110293,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24200 @@ -110449,8 +110301,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24201 @@ -110459,8 +110309,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24259 @@ -110468,8 +110316,6 @@ entities: - type: Transform pos: -38.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24268 @@ -110477,8 +110323,6 @@ entities: - type: Transform pos: -33.5,3.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24269 @@ -110487,8 +110331,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24270 @@ -110497,8 +110339,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24323 @@ -110507,8 +110347,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24324 @@ -110517,8 +110355,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24325 @@ -110527,8 +110363,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24384 @@ -110536,8 +110370,6 @@ entities: - type: Transform pos: -37.5,0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24407 @@ -110546,8 +110378,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24408 @@ -110556,8 +110386,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24409 @@ -110566,8 +110394,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24410 @@ -110576,8 +110402,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24432 @@ -110586,8 +110410,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24433 @@ -110595,8 +110417,6 @@ entities: - type: Transform pos: -46.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24435 @@ -110605,8 +110425,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24457 @@ -110615,8 +110433,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24459 @@ -110624,8 +110440,6 @@ entities: - type: Transform pos: -42.5,-4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24461 @@ -110634,8 +110448,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24643 @@ -110644,8 +110456,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-3.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24705 @@ -110653,8 +110463,6 @@ entities: - type: Transform pos: -63.5,12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24706 @@ -110663,8 +110471,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24707 @@ -110672,8 +110478,6 @@ entities: - type: Transform pos: -60.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24708 @@ -110681,8 +110485,6 @@ entities: - type: Transform pos: -66.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24709 @@ -110690,8 +110492,6 @@ entities: - type: Transform pos: -71.5,5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24710 @@ -110700,8 +110500,6 @@ entities: rot: 3.141592653589793 rad pos: -68.5,0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24711 @@ -110710,8 +110508,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24844 @@ -110720,8 +110516,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24847 @@ -110730,8 +110524,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24848 @@ -110740,8 +110532,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24849 @@ -110749,8 +110539,6 @@ entities: - type: Transform pos: -37.5,-26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24850 @@ -110758,8 +110546,6 @@ entities: - type: Transform pos: -39.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24879 @@ -110768,8 +110554,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-36.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24887 @@ -110778,8 +110562,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24888 @@ -110788,8 +110570,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24889 @@ -110798,8 +110578,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24924 @@ -110808,8 +110586,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-36.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24940 @@ -110818,8 +110594,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25038 @@ -110828,8 +110602,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25039 @@ -110838,8 +110610,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-28.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25065 @@ -110848,8 +110618,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25074 @@ -110858,8 +110626,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25096 @@ -110868,8 +110637,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25114 @@ -110878,8 +110645,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25115 @@ -110888,8 +110653,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25116 @@ -110897,8 +110660,6 @@ entities: - type: Transform pos: -24.5,-18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25117 @@ -110907,8 +110668,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25131 @@ -110917,8 +110676,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-23.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25136 @@ -110926,8 +110683,9 @@ entities: - type: Transform pos: -6.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25178 @@ -110936,8 +110694,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25179 @@ -110945,8 +110701,6 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25185 @@ -110954,8 +110708,6 @@ entities: - type: Transform pos: -19.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25289 @@ -110964,8 +110716,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25441 @@ -110974,8 +110724,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-11.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25442 @@ -110984,8 +110732,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25595 @@ -110993,8 +110739,6 @@ entities: - type: Transform pos: 3.5,-70.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25606 @@ -111003,8 +110747,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26028 @@ -111013,8 +110755,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26030 @@ -111023,8 +110763,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26031 @@ -111033,8 +110771,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26056 @@ -111043,8 +110779,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26058 @@ -111053,8 +110787,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,11.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26064 @@ -111063,8 +110795,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26069 @@ -111073,8 +110803,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26070 @@ -111083,8 +110811,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26072 @@ -111093,8 +110819,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26074 @@ -111103,8 +110827,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26169 @@ -111113,8 +110835,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26170 @@ -111123,8 +110843,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26172 @@ -111133,8 +110851,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26276 @@ -111143,8 +110859,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26317 @@ -111153,8 +110867,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26337 @@ -111163,8 +110875,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26345 @@ -111172,8 +110882,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26346 @@ -111182,8 +110890,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26367 @@ -111191,8 +110897,6 @@ entities: - type: Transform pos: 23.5,27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26828 @@ -111201,8 +110905,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26829 @@ -111211,8 +110913,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26830 @@ -111221,8 +110921,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26831 @@ -111231,8 +110929,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26997 @@ -111240,8 +110936,6 @@ entities: - type: Transform pos: 16.5,14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27011 @@ -111250,8 +110944,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27020 @@ -111260,8 +110952,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27021 @@ -111270,8 +110960,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27297 @@ -111283,8 +110971,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27395 @@ -111296,8 +110982,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -111311,8 +110995,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3755 @@ -111324,8 +111006,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7909 @@ -111333,8 +111013,6 @@ entities: - type: Transform pos: 36.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11508 @@ -111343,8 +111021,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13077 @@ -111352,8 +111028,6 @@ entities: - type: Transform pos: 51.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13162 @@ -111362,8 +111036,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13163 @@ -111371,8 +111043,6 @@ entities: - type: Transform pos: 30.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13174 @@ -111381,8 +111051,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13208 @@ -111390,8 +111058,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13217 @@ -111400,8 +111066,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13231 @@ -111409,8 +111073,6 @@ entities: - type: Transform pos: 52.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13332 @@ -111418,8 +111080,6 @@ entities: - type: Transform pos: -1.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13333 @@ -111428,8 +111088,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13334 @@ -111438,8 +111096,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13335 @@ -111448,8 +111104,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13376 @@ -111458,8 +111112,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13500 @@ -111468,8 +111120,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13561 @@ -111478,8 +111128,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13576 @@ -111488,8 +111136,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13577 @@ -111497,8 +111143,6 @@ entities: - type: Transform pos: 47.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13578 @@ -111506,8 +111150,6 @@ entities: - type: Transform pos: 42.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13579 @@ -111515,8 +111157,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13580 @@ -111525,8 +111165,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13586 @@ -111535,8 +111173,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-16.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13587 @@ -111545,8 +111181,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13588 @@ -111555,8 +111189,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13589 @@ -111565,8 +111197,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13595 @@ -111575,8 +111205,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13596 @@ -111584,8 +111212,6 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13635 @@ -111594,8 +111220,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13636 @@ -111604,8 +111228,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13637 @@ -111614,8 +111236,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13638 @@ -111624,8 +111244,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13639 @@ -111633,8 +111251,6 @@ entities: - type: Transform pos: 37.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13675 @@ -111643,8 +111259,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13783 @@ -111653,8 +111267,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13866 @@ -111663,8 +111275,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-38.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13867 @@ -111673,8 +111283,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-38.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13868 @@ -111683,8 +111291,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13870 @@ -111692,8 +111298,6 @@ entities: - type: Transform pos: 17.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13871 @@ -111701,8 +111305,6 @@ entities: - type: Transform pos: 19.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13872 @@ -111710,8 +111312,6 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13873 @@ -111720,8 +111320,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13874 @@ -111730,8 +111328,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13875 @@ -111740,8 +111336,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14021 @@ -111753,8 +111347,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14022 @@ -111762,8 +111354,6 @@ entities: - type: Transform pos: 75.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14031 @@ -111772,8 +111362,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14032 @@ -111781,8 +111369,6 @@ entities: - type: Transform pos: 54.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14041 @@ -111791,8 +111377,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14074 @@ -111801,8 +111385,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,3.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14088 @@ -111811,8 +111393,6 @@ entities: rot: 3.141592653589793 rad pos: 57.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14131 @@ -111821,8 +111401,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14277 @@ -111831,8 +111409,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14278 @@ -111841,8 +111417,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14279 @@ -111851,8 +111425,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14316 @@ -111861,8 +111433,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14324 @@ -111870,16 +111440,12 @@ entities: - type: Transform pos: 65.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 14364 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-50.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14365 @@ -111888,8 +111454,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-61.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14393 @@ -111897,8 +111461,6 @@ entities: - type: Transform pos: 35.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14394 @@ -111907,8 +111469,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-51.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14395 @@ -111916,8 +111476,6 @@ entities: - type: Transform pos: 53.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14396 @@ -111925,8 +111483,6 @@ entities: - type: Transform pos: 58.5,-40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14398 @@ -111934,8 +111490,6 @@ entities: - type: Transform pos: 69.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14473 @@ -111943,8 +111497,6 @@ entities: - type: Transform pos: -12.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14474 @@ -111953,8 +111505,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14515 @@ -111963,8 +111513,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14524 @@ -111973,8 +111521,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-54.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14525 @@ -111983,8 +111529,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-50.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14526 @@ -111992,8 +111536,6 @@ entities: - type: Transform pos: 21.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14559 @@ -112001,8 +111543,6 @@ entities: - type: Transform pos: -9.5,-83.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14626 @@ -112011,24 +111551,18 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 14627 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-86.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 14629 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-78.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14630 @@ -112037,8 +111571,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-82.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14631 @@ -112047,8 +111579,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-80.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14633 @@ -112057,8 +111587,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-73.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14634 @@ -112066,8 +111594,6 @@ entities: - type: Transform pos: 10.5,-62.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14635 @@ -112076,8 +111602,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-66.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14643 @@ -112086,8 +111610,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14647 @@ -112096,8 +111618,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-74.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14680 @@ -112106,8 +111626,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-88.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14711 @@ -112116,8 +111634,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-77.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14712 @@ -112126,8 +111642,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-85.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14713 @@ -112136,8 +111650,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-84.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14761 @@ -112145,8 +111657,6 @@ entities: - type: Transform pos: -10.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14775 @@ -112154,8 +111664,6 @@ entities: - type: Transform pos: -4.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14805 @@ -112163,8 +111671,6 @@ entities: - type: Transform pos: 4.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14898 @@ -112173,8 +111679,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-68.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14904 @@ -112183,8 +111687,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-57.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14905 @@ -112193,8 +111695,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-50.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14908 @@ -112203,8 +111703,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-69.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14915 @@ -112213,8 +111711,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-72.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14917 @@ -112223,8 +111719,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-67.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15133 @@ -112233,8 +111727,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-55.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15134 @@ -112243,8 +111735,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15142 @@ -112253,8 +111743,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-59.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15143 @@ -112263,8 +111751,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15161 @@ -112273,8 +111759,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15163 @@ -112283,8 +111767,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-57.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15168 @@ -112293,8 +111775,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-60.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15207 @@ -112303,8 +111783,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-41.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15210 @@ -112313,8 +111791,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15266 @@ -112322,8 +111798,6 @@ entities: - type: Transform pos: 3.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15279 @@ -112331,8 +111805,6 @@ entities: - type: Transform pos: -6.5,-49.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15304 @@ -112344,8 +111816,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15313 @@ -112353,8 +111823,6 @@ entities: - type: Transform pos: -27.5,-46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15317 @@ -112363,8 +111831,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15320 @@ -112372,8 +111838,6 @@ entities: - type: Transform pos: -29.5,-45.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15330 @@ -112382,8 +111846,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-51.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15338 @@ -112392,8 +111854,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15339 @@ -112402,8 +111862,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-57.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15340 @@ -112414,8 +111872,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15341 @@ -112426,8 +111882,6 @@ entities: - type: DeviceNetwork deviceLists: - 22089 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15358 @@ -112439,8 +111893,6 @@ entities: - type: DeviceNetwork deviceLists: - 22239 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15359 @@ -112452,8 +111904,6 @@ entities: - type: DeviceNetwork deviceLists: - 22239 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15716 @@ -112461,8 +111911,6 @@ entities: - type: Transform pos: 19.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15810 @@ -112471,8 +111919,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16024 @@ -112481,8 +111927,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16144 @@ -112491,8 +111935,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-52.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16468 @@ -112501,8 +111943,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-46.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16535 @@ -112510,8 +111950,6 @@ entities: - type: Transform pos: -56.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16536 @@ -112520,8 +111958,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16537 @@ -112530,8 +111966,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16654 @@ -112539,8 +111973,6 @@ entities: - type: Transform pos: -8.5,-56.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16655 @@ -112549,8 +111981,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-62.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16656 @@ -112559,8 +111989,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16657 @@ -112569,8 +111997,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16897 @@ -112579,8 +112005,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17074 @@ -112589,8 +112013,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17075 @@ -112599,8 +112021,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-43.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17363 @@ -112609,16 +112029,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-52.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 22267 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22283 @@ -112627,8 +112043,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22298 @@ -112637,8 +112051,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-15.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22299 @@ -112646,8 +112058,6 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22300 @@ -112656,8 +112066,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22323 @@ -112665,8 +112073,6 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22325 @@ -112675,8 +112081,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-15.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22440 @@ -112684,8 +112088,6 @@ entities: - type: Transform pos: 10.5,-21.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22571 @@ -112694,8 +112096,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22745 @@ -112704,8 +112104,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23659 @@ -112714,8 +112112,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23685 @@ -112724,8 +112120,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23686 @@ -112734,8 +112128,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23751 @@ -112744,8 +112136,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24029 @@ -112754,8 +112144,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-94.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24030 @@ -112764,8 +112152,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-95.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24031 @@ -112773,8 +112159,6 @@ entities: - type: Transform pos: 26.5,-90.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24083 @@ -112783,8 +112167,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24085 @@ -112793,8 +112175,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24086 @@ -112803,8 +112183,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-10.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24134 @@ -112813,8 +112191,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24135 @@ -112823,8 +112199,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24138 @@ -112833,8 +112207,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24144 @@ -112842,8 +112214,6 @@ entities: - type: Transform pos: -4.5,2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24174 @@ -112852,8 +112222,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24185 @@ -112862,8 +112230,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24196 @@ -112872,8 +112238,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24199 @@ -112882,8 +112246,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24287 @@ -112892,8 +112254,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24288 @@ -112902,8 +112262,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24289 @@ -112911,8 +112269,6 @@ entities: - type: Transform pos: -40.5,-4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24295 @@ -112921,8 +112277,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24296 @@ -112931,8 +112285,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24297 @@ -112940,8 +112292,6 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24348 @@ -112950,8 +112300,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24349 @@ -112960,8 +112308,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24350 @@ -112970,8 +112316,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24351 @@ -112979,8 +112323,6 @@ entities: - type: Transform pos: -36.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24383 @@ -112988,8 +112330,6 @@ entities: - type: Transform pos: -36.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24399 @@ -112997,8 +112337,6 @@ entities: - type: Transform pos: -48.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24400 @@ -113006,8 +112344,6 @@ entities: - type: Transform pos: -46.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24401 @@ -113015,8 +112351,6 @@ entities: - type: Transform pos: -44.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24402 @@ -113024,8 +112358,6 @@ entities: - type: Transform pos: -41.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24417 @@ -113034,8 +112366,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24418 @@ -113043,8 +112373,6 @@ entities: - type: Transform pos: -44.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24420 @@ -113053,8 +112381,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24450 @@ -113062,8 +112388,6 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24478 @@ -113072,8 +112396,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24697 @@ -113082,8 +112404,6 @@ entities: rot: 3.141592653589793 rad pos: -71.5,0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24698 @@ -113092,8 +112412,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24699 @@ -113102,8 +112420,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24700 @@ -113112,8 +112428,6 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24701 @@ -113122,8 +112436,6 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24702 @@ -113132,8 +112444,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-0.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24703 @@ -113142,8 +112452,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24704 @@ -113151,8 +112459,6 @@ entities: - type: Transform pos: -64.5,12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24828 @@ -113161,8 +112467,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24829 @@ -113170,8 +112474,6 @@ entities: - type: Transform pos: -36.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24836 @@ -113180,8 +112482,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24838 @@ -113189,8 +112489,6 @@ entities: - type: Transform pos: -39.5,-26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24839 @@ -113199,8 +112497,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24880 @@ -113209,8 +112505,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-38.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24907 @@ -113219,8 +112513,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24908 @@ -113229,8 +112521,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24909 @@ -113239,8 +112529,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24966 @@ -113249,8 +112537,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24967 @@ -113258,8 +112544,6 @@ entities: - type: Transform pos: -4.5,-31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24970 @@ -113268,8 +112552,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24988 @@ -113278,8 +112563,9 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 + - type: DeviceNetwork + deviceLists: + - 25317 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24991 @@ -113288,8 +112574,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25002 @@ -113297,8 +112581,6 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25017 @@ -113307,8 +112589,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25018 @@ -113317,8 +112597,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25019 @@ -113327,8 +112605,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25020 @@ -113336,8 +112612,6 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25028 @@ -113345,8 +112619,6 @@ entities: - type: Transform pos: -12.5,-25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25076 @@ -113354,8 +112626,6 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25135 @@ -113363,8 +112633,6 @@ entities: - type: Transform pos: -27.5,-25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25147 @@ -113372,8 +112640,6 @@ entities: - type: Transform pos: -1.5,-17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25148 @@ -113381,8 +112647,6 @@ entities: - type: Transform pos: -10.5,-14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25184 @@ -113390,8 +112654,6 @@ entities: - type: Transform pos: -18.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25425 @@ -113400,8 +112662,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-9.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25426 @@ -113410,8 +112670,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25608 @@ -113419,8 +112677,6 @@ entities: - type: Transform pos: 1.5,-70.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26049 @@ -113429,8 +112685,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,26.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26051 @@ -113439,8 +112693,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26130 @@ -113449,8 +112701,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,7.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26131 @@ -113459,8 +112709,6 @@ entities: rot: 3.141592653589793 rad pos: 73.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26136 @@ -113469,8 +112717,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26143 @@ -113479,8 +112725,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,11.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26145 @@ -113489,8 +112733,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26199 @@ -113499,8 +112741,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26226 @@ -113508,8 +112748,6 @@ entities: - type: Transform pos: 61.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26227 @@ -113517,8 +112755,6 @@ entities: - type: Transform pos: 54.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26228 @@ -113527,8 +112763,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26254 @@ -113537,8 +112771,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,14.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26275 @@ -113547,8 +112779,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,17.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26308 @@ -113557,8 +112787,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26316 @@ -113566,8 +112794,6 @@ entities: - type: Transform pos: 22.5,27.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26318 @@ -113575,8 +112801,6 @@ entities: - type: Transform pos: 19.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26329 @@ -113585,8 +112809,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26336 @@ -113595,8 +112817,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26824 @@ -113605,8 +112825,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26825 @@ -113615,8 +112833,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,2.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26826 @@ -113625,8 +112841,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26827 @@ -113635,8 +112849,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,8.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26916 @@ -113645,8 +112857,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-24.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27396 @@ -113658,8 +112868,6 @@ entities: - type: DeviceNetwork deviceLists: - 7456 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -113670,8 +112878,6 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,29.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 13366 @@ -113680,8 +112886,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - proto: Gauze @@ -117540,26 +116744,6 @@ entities: - type: Transform pos: 25.5,-92.5 parent: 6747 - - uid: 10325 - components: - - type: Transform - pos: 60.5,2.5 - parent: 6747 - - uid: 10326 - components: - - type: Transform - pos: 60.5,1.5 - parent: 6747 - - uid: 10329 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 6747 - - uid: 10330 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 6747 - uid: 10335 components: - type: Transform @@ -118770,11 +117954,6 @@ entities: - type: Transform pos: 62.5,3.5 parent: 6747 - - uid: 17708 - components: - - type: Transform - pos: 61.5,3.5 - parent: 6747 - uid: 18397 components: - type: Transform @@ -119680,6 +118859,26 @@ entities: - type: Transform pos: -19.5,-56.5 parent: 6747 + - uid: 27782 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 6747 + - uid: 27783 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 6747 + - uid: 27784 + components: + - type: Transform + pos: 61.5,1.5 + parent: 6747 + - uid: 27785 + components: + - type: Transform + pos: 61.5,2.5 + parent: 6747 - proto: GrilleBroken entities: - uid: 9970 @@ -120250,8 +119449,6 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 13089 @@ -120260,8 +119457,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 13090 @@ -120270,8 +119465,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 13091 @@ -120280,8 +119473,6 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,33.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#FF5500FF' - uid: 13318 @@ -120290,8 +119481,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 13319 @@ -120300,8 +119489,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,40.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 13320 @@ -120310,8 +119497,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - type: AtmosPipeColor color: '#00FFFFFF' - proto: HelicopterInstrument @@ -121052,7 +120237,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -121060,6 +120244,22 @@ entities: - data: null ReagentId: Oxygen Quantity: 150 +- proto: Jukebox + entities: + - uid: 10321 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 6747 +- proto: JukeboxCircuitBoard + entities: + - uid: 3643 + components: + - type: Transform + parent: 11217 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Katana entities: - uid: 2955 @@ -121334,7 +120534,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 1500 name: null @@ -121509,7 +120708,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 100 name: null @@ -122779,17 +121977,6 @@ entities: - type: Transform pos: 27.586369,32.542572 parent: 6747 - - uid: 10545 - components: - - type: Transform - pos: 58.71401,1.950434 - parent: 6747 - - uid: 10547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.859837,2.1172163 - parent: 6747 - proto: MaterialWoodPlank1 entities: - uid: 3265 @@ -122834,6 +122021,20 @@ entities: rot: -1.5707963267948966 rad pos: 41.36773,-54.375587 parent: 6747 +- proto: MaterialWoodPlank10 + entities: + - uid: 10320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.3221,2.3969424 + parent: 6747 + - uid: 27792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.8846,2.4907572 + parent: 6747 - proto: MatterBinStockPart entities: - uid: 21086 @@ -125209,78 +124410,56 @@ entities: - type: Transform pos: 8.5,-73.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 5108 components: - type: Transform pos: 30.5,-74.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 5315 components: - type: Transform pos: 49.5,-32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7756 components: - type: Transform pos: 38.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7878 components: - type: Transform pos: -35.5,-57.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8183 components: - type: Transform pos: 33.5,34.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 10992 components: - type: Transform pos: 50.5,-39.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11190 components: - type: Transform pos: 41.5,-80.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11353 components: - type: Transform pos: 52.5,-1.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15935 components: - type: Transform pos: 8.5,-6.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25414 components: - type: Transform pos: -51.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: NitrogenTankFilled entities: - uid: 1301 @@ -125344,15 +124523,11 @@ entities: - type: Transform pos: 42.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8189 components: - type: Transform pos: 32.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: NitrousOxideTank entities: - uid: 7877 @@ -125491,92 +124666,66 @@ entities: - type: Transform pos: 0.5,12.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 5069 components: - type: Transform pos: 9.5,-73.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 5093 components: - type: Transform pos: 31.5,-74.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 5314 components: - type: Transform pos: 49.5,-31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7786 components: - type: Transform pos: 36.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8180 components: - type: Transform pos: 32.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8181 components: - type: Transform pos: 33.5,35.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 10130 components: - type: Transform pos: -49.5,-69.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11340 components: - type: Transform pos: 4.5,4.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11356 components: - type: Transform pos: 53.5,-15.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11378 components: - type: Transform pos: 43.5,-37.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11409 components: - type: Transform pos: -35.5,-58.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 25415 components: - type: Transform pos: -52.5,-13.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: OxygenTankFilled entities: - uid: 11534 @@ -130299,7 +129448,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -130317,7 +129465,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -130335,7 +129482,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -130353,7 +129499,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -130371,7 +129516,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -130467,8 +129611,6 @@ entities: - type: Transform pos: 59.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: PlasmaOre1 entities: - uid: 25553 @@ -130761,6 +129903,24 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-24.5 parent: 6747 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 12112 + components: + - type: Transform + pos: -31.5,10.5 + parent: 6747 + - uid: 12127 + components: + - type: Transform + pos: -32.5,10.5 + parent: 6747 + - uid: 15045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 6747 - proto: PlasmaWindoorSecureChemistryLocked entities: - uid: 5400 @@ -130783,6 +129943,26 @@ entities: - type: Transform pos: 11.5,-21.5 parent: 6747 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 16975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 + parent: 6747 + - uid: 17708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-58.5 + parent: 6747 + - uid: 17709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-47.5 + parent: 6747 - proto: PlasmaWindoorSecureScienceLocked entities: - uid: 11437 @@ -130818,6 +129998,20 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-63.5 parent: 6747 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 18832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-26.5 + parent: 6747 + - uid: 19246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-26.5 + parent: 6747 - proto: PlasticFlapsAirtightClear entities: - uid: 1109 @@ -131638,11 +130832,6 @@ entities: - type: Transform pos: 36.5,-49.5 parent: 6747 - - uid: 1928 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 6747 - uid: 3342 components: - type: Transform @@ -134379,14 +133568,6 @@ entities: parent: 6747 - type: ApcPowerReceiver powerLoad: 0 - - uid: 16975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 6747 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 16990 components: - type: Transform @@ -134637,6 +133818,12 @@ entities: parent: 6747 - proto: PoweredlightEmpty entities: + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-0.5 + parent: 6747 - uid: 10526 components: - type: Transform @@ -134659,14 +133846,6 @@ entities: parent: 6747 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 6747 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10530 components: - type: Transform @@ -135288,6 +134467,12 @@ entities: - type: Transform pos: 33.5,-76.5 parent: 6747 + - uid: 10324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 6747 - uid: 10352 components: - type: Transform @@ -135753,7 +134938,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -135772,7 +134956,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -135801,7 +134984,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -135822,7 +135004,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -137539,10 +136720,10 @@ entities: - type: Transform pos: -67.5,-2.5 parent: 6747 - - uid: 25986 + - uid: 27779 components: - type: Transform - pos: 61.5,0.5 + pos: 62.5,0.5 parent: 6747 - proto: RandomDrinkBottle entities: @@ -145724,26 +144905,6 @@ entities: - type: Transform pos: 62.5,-5.5 parent: 6747 - - uid: 10509 - components: - - type: Transform - pos: 60.5,2.5 - parent: 6747 - - uid: 10510 - components: - - type: Transform - pos: 60.5,1.5 - parent: 6747 - - uid: 10511 - components: - - type: Transform - pos: 60.5,-1.5 - parent: 6747 - - uid: 10512 - components: - - type: Transform - pos: 60.5,-2.5 - parent: 6747 - uid: 11128 components: - type: Transform @@ -146314,6 +145475,26 @@ entities: - type: Transform pos: -19.5,-56.5 parent: 6747 + - uid: 27786 + components: + - type: Transform + pos: 61.5,2.5 + parent: 6747 + - uid: 27787 + components: + - type: Transform + pos: 61.5,1.5 + parent: 6747 + - uid: 27788 + components: + - type: Transform + pos: 61.5,-1.5 + parent: 6747 + - uid: 27789 + components: + - type: Transform + pos: 61.5,-2.5 + parent: 6747 - proto: RemoteSignaller entities: - uid: 1379 @@ -146851,6 +146032,13 @@ entities: - type: Transform pos: 37.37038,-63.68968 parent: 6747 +- proto: SheetBrass10 + entities: + - uid: 27791 + components: + - type: Transform + pos: -46.504875,-70.47645 + parent: 6747 - proto: SheetGlass entities: - uid: 3738 @@ -149741,6 +148929,11 @@ entities: - type: Transform pos: 58.5,43.5 parent: 6747 + - uid: 10326 + components: + - type: Transform + pos: 62.5,3.5 + parent: 6747 - uid: 11445 components: - type: Transform @@ -149776,11 +148969,6 @@ entities: - type: Transform pos: 77.5,11.5 parent: 6747 - - uid: 17709 - components: - - type: Transform - pos: 61.5,3.5 - parent: 6747 - uid: 17710 components: - type: Transform @@ -151249,6 +150437,13 @@ entities: - type: Transform pos: 103.5,18.5 parent: 6747 +- proto: SolidSecretDoor + entities: + - uid: 10510 + components: + - type: Transform + pos: 57.5,4.5 + parent: 6747 - proto: SophicScribe entities: - uid: 8916 @@ -151386,6 +150581,8 @@ entities: - type: Transform pos: 28.5,-13.5 parent: 6747 + - type: SpamEmitSound + enabled: False - proto: SpaceVillainArcadeFilled entities: - uid: 12178 @@ -151394,6 +150591,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-36.5 parent: 6747 + - type: SpamEmitSound + enabled: False - proto: SpareIdCabinetFilled entities: - uid: 27349 @@ -152785,99 +151984,71 @@ entities: - type: Transform pos: 22.5,-59.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 4418 components: - type: Transform pos: 22.5,-60.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7669 components: - type: Transform pos: 61.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7788 components: - type: Transform pos: 44.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 7789 components: - type: Transform pos: 46.5,42.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8186 components: - type: Transform pos: 32.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8187 components: - type: Transform pos: 33.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8191 components: - type: Transform pos: 33.5,30.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11259 components: - type: Transform pos: 4.5,-91.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11355 components: - type: Transform pos: 53.5,-18.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15857 components: - type: Transform pos: -50.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 15858 components: - type: Transform pos: -49.5,-5.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 16210 components: - type: Transform pos: 10.5,-20.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 26917 components: - type: Transform pos: 10.5,-19.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: StrangePill entities: - uid: 20202 @@ -155233,6 +154404,11 @@ entities: - type: Transform pos: 60.5,-10.5 parent: 6747 + - uid: 25986 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 6747 - uid: 27448 components: - type: Transform @@ -156981,6 +156157,11 @@ entities: - type: Transform pos: -31.5,18.5 parent: 6747 + - uid: 10325 + components: + - type: Transform + pos: 60.5,0.5 + parent: 6747 - uid: 10440 components: - type: Transform @@ -157354,8 +156535,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,32.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: TegCirculator entities: - uid: 13000 @@ -158626,15 +157805,6 @@ entities: - type: Transform pos: 9.5,30.5 parent: 6747 - - uid: 27623 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 6747 - - type: ApcPowerReceiver - powerLoad: 20000 - missingComponents: - - Anchorable - proto: VendingMachineSustenance entities: - uid: 9335 @@ -161271,6 +160441,11 @@ entities: - type: Transform pos: -17.5,-48.5 parent: 6747 + - uid: 2257 + components: + - type: Transform + pos: 61.5,4.5 + parent: 6747 - uid: 2260 components: - type: Transform @@ -163291,6 +162466,11 @@ entities: - type: Transform pos: -13.5,-60.5 parent: 6747 + - uid: 4985 + components: + - type: Transform + pos: 59.5,5.5 + parent: 6747 - uid: 4986 components: - type: Transform @@ -166529,17 +165709,7 @@ entities: - uid: 10319 components: - type: Transform - pos: 56.5,4.5 - parent: 6747 - - uid: 10320 - components: - - type: Transform - pos: 57.5,4.5 - parent: 6747 - - uid: 10321 - components: - - type: Transform - pos: 58.5,4.5 + pos: 61.5,3.5 parent: 6747 - uid: 10322 components: @@ -166551,25 +165721,10 @@ entities: - type: Transform pos: 60.5,4.5 parent: 6747 - - uid: 10324 - components: - - type: Transform - pos: 60.5,3.5 - parent: 6747 - - uid: 10327 - components: - - type: Transform - pos: 60.5,0.5 - parent: 6747 - - uid: 10328 - components: - - type: Transform - pos: 60.5,-0.5 - parent: 6747 - uid: 10331 components: - type: Transform - pos: 60.5,-3.5 + pos: 61.5,0.5 parent: 6747 - uid: 10332 components: @@ -168541,6 +167696,16 @@ entities: - type: Transform pos: -43.5,15.5 parent: 6747 + - uid: 27780 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 6747 + - uid: 27781 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 6747 - proto: WallShuttle entities: - uid: 6231 @@ -169880,11 +169045,6 @@ entities: - type: Transform pos: 40.5,-1.5 parent: 6747 - - uid: 2257 - components: - - type: Transform - pos: 35.5,2.5 - parent: 6747 - uid: 2259 components: - type: Transform @@ -172915,6 +172075,16 @@ entities: - type: Transform pos: 61.5,-7.5 parent: 6747 + - uid: 10509 + components: + - type: Transform + pos: 58.5,4.5 + parent: 6747 + - uid: 10511 + components: + - type: Transform + pos: 56.5,4.5 + parent: 6747 - uid: 11153 components: - type: Transform @@ -174456,22 +173626,16 @@ entities: - type: Transform pos: 32.5,31.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 8270 components: - type: Transform pos: 60.5,25.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - uid: 11258 components: - type: Transform pos: 3.5,-82.5 parent: 6747 - - type: AtmosDevice - joinedGrid: 6747 - proto: WeaponCapacitorRecharger entities: - uid: 120 @@ -175039,22 +174203,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-36.5 parent: 6747 - - uid: 3465 - components: - - type: Transform - pos: -32.5,10.5 - parent: 6747 - - uid: 3643 - components: - - type: Transform - pos: -31.5,10.5 - parent: 6747 - - uid: 12127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 6747 - proto: WindoorSecureChemistryLocked entities: - uid: 3757 @@ -175093,18 +174241,6 @@ entities: - type: Transform pos: -24.5,-49.5 parent: 6747 - - uid: 4985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-57.5 - parent: 6747 - - uid: 5065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-58.5 - parent: 6747 - uid: 6271 components: - type: Transform @@ -175117,12 +174253,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,-8.5 parent: 6747 - - uid: 15045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 6747 - proto: WindoorSecureEngineeringLocked entities: - uid: 12992 @@ -175313,24 +174443,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-39.5 parent: 6747 - - uid: 4062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 6747 - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 6747 - - uid: 12112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-26.5 - parent: 6747 - proto: WindoorServiceLocked entities: - uid: 17560 diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml index ac06ebba4e9..7d18001c54d 100644 --- a/Resources/Maps/asterisk.yml +++ b/Resources/Maps/asterisk.yml @@ -7451,7 +7451,7 @@ entities: - type: Transform pos: -52.5,-20.5 parent: 2 -- proto: BodyBag_Folded +- proto: BodyBagFolded entities: - uid: 7103 components: @@ -29385,7 +29385,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -29404,7 +29403,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index d5d897da5a5..8ed6d8d03b5 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -66,6 +66,7 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -178,7 +179,7 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACMAAAAAAA + tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -190,7 +191,7 @@ entities: version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -2,-3: ind: -2,-3 @@ -4531,1576 +4532,1680 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 30711 0,-1: - 0: 65535 + 0: 63351 -1,0: - 0: 65535 - -1,-1: - 0: 65535 + 0: 56829 0,1: - 0: 65535 + 0: 65303 + -1,1: + 0: 64285 0,2: - 0: 65535 + 0: 64440 + -1,2: + 0: 64915 0,3: - 0: 65535 + 0: 3979 + -1,3: + 0: 7965 + 0,4: + 1: 34959 + 0: 13056 1,0: - 0: 65535 + 0: 62719 1,1: - 0: 65535 + 0: 64799 1,2: - 0: 65535 + 0: 56796 1,3: - 0: 65535 + 0: 61213 + 1,-1: + 0: 62719 + 1,4: + 0: 26214 2,0: - 0: 65535 + 0: 7423 2,1: - 0: 65535 + 0: 64975 2,2: - 0: 65535 + 0: 64925 2,3: - 0: 65535 + 0: 57293 + 2,-1: + 0: 64671 3,0: - 0: 65535 + 0: 16383 3,1: 0: 65535 3,2: - 0: 65535 + 0: 56783 3,3: - 0: 65535 + 0: 61919 + 2,4: + 0: 30520 + 3,-1: + 0: 65359 + 3,4: + 0: 47935 + 4,0: + 0: 57583 + 4,1: + 0: 65518 + 4,2: + 0: 65486 + 4,3: + 0: 62719 0,-4: - 0: 65535 + 0: 48954 + -1,-4: + 0: 65287 0,-3: - 0: 65535 + 0: 1648 + -1,-3: + 0: 56796 0,-2: - 0: 65535 + 0: 20222 + -1,-2: + 0: 24061 + -1,-1: + 0: 64733 + 0,-5: + 0: 41598 1,-4: - 0: 65535 + 0: 65327 1,-3: - 0: 65535 + 0: 28671 1,-2: 0: 65535 - 1,-1: - 0: 65535 + 1,-5: + 0: 65295 2,-4: - 0: 65535 + 0: 65518 2,-3: - 0: 65535 + 0: 53200 2,-2: - 0: 65535 - 2,-1: - 0: 65535 + 0: 56817 + 2,-5: + 0: 61038 3,-4: 0: 65535 3,-3: - 0: 65535 + 0: 65522 3,-2: - 0: 65535 - 3,-1: - 0: 65535 + 0: 65531 + 3,-5: + 0: 65293 + 4,-3: + 0: 61226 -4,0: - 0: 65535 + 0: 63231 + -4,-1: + 0: 65309 + -5,0: + 0: 28927 -4,1: 0: 65535 + -5,1: + 0: 30719 -4,2: - 0: 15 - 1: 65520 + 2: 65520 + 0: 2 + -5,2: + 0: 32630 -4,3: - 1: 65535 + 2: 65535 + -4,4: + 0: 2034 -3,0: - 0: 65535 + 0: 61679 -3,1: 0: 65535 -3,2: - 0: 65535 + 0: 61422 -3,3: - 0: 65535 + 0: 62990 + -3,-1: + 0: 63726 + -3,4: + 0: 45054 -2,0: - 0: 65535 + 0: 56575 -2,1: - 0: 65535 + 0: 57341 -2,2: - 0: 65535 + 0: 49081 -2,3: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 + 0: 48059 + -2,-1: + 0: 61663 + -2,4: + 0: 48059 + -1,4: + 0: 47923 + 1: 8 -4,-4: - 0: 65535 + 0: 65422 + -5,-4: + 0: 61134 -4,-3: - 0: 65535 + 0: 56607 + -5,-3: + 0: 65262 -4,-2: - 0: 65535 - -4,-1: - 0: 65535 + 0: 56589 + -5,-2: + 0: 65230 + -5,-1: + 0: 65263 + -4,-5: + 0: 61438 -3,-4: - 0: 65535 + 0: 65307 -3,-3: - 0: 65535 + 0: 65256 -3,-2: - 0: 65535 - -3,-1: - 0: 65535 + 0: 65262 + -3,-5: + 0: 64507 -2,-4: - 0: 65535 + 0: 32523 -2,-3: - 0: 65535 + 0: 65520 -2,-2: 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: + -2,-5: + 0: 48123 + -1,-5: 0: 65535 + 4,4: + 0: 65327 4,-1: - 0: 65535 + 0: 61006 5,0: - 0: 65535 + 0: 61695 5,1: 0: 65535 5,2: - 0: 65535 + 0: 61007 5,3: - 0: 65535 + 0: 65262 + 5,-1: + 0: 65419 + 5,4: + 0: 61167 6,0: - 0: 65535 + 0: 20223 6,1: - 0: 65535 + 0: 61422 + 6,3: + 0: 61182 + 6,-1: + 0: 63351 6,2: + 0: 57582 + 6,4: + 0: 65102 + 7,0: + 0: 49663 + 7,1: + 0: 56797 + 7,2: + 0: 56541 + 7,3: + 0: 54749 + 7,-1: + 0: 63743 + 7,4: + 0: 64397 + 8,0: + 0: 63231 + 8,1: 0: 65535 - 6,3: + 8,2: 0: 65535 + 8,3: + 0: 45311 + 4,-4: + 0: 43566 + 4,-2: + 0: 61156 + 4,-5: + 0: 28199 5,-4: - 0: 65535 + 0: 63359 5,-3: - 0: 65535 + 0: 48903 5,-2: - 0: 65535 - 5,-1: - 0: 65535 + 0: 64312 6,-4: - 0: 65535 + 0: 30719 6,-3: - 0: 65535 + 0: 30583 6,-2: + 0: 63287 + 6,-5: + 0: 62071 + 7,-4: + 0: 61567 + 7,-3: 0: 65535 - 6,-1: - 0: 65535 - -4,4: + 7,-2: + 0: 65526 + 7,-5: + 0: 29439 + 8,-4: + 0: 62703 + 8,-3: + 0: 65407 + 8,-2: 0: 65535 + 8,-1: + 0: 61951 + -5,4: + 0: 56567 -4,5: - 0: 65535 - -3,4: - 0: 65535 + 0: 61182 + -5,5: + 0: 24029 + -4,6: + 0: 65522 + -5,6: + 0: 65532 + -4,7: + 0: 43760 + -5,7: + 0: 8177 + -4,8: + 0: 64394 + -3,6: + 0: 61438 + -3,7: + 0: 4080 -3,5: - 0: 65535 - -2,4: + 0: 61166 + -3,8: 0: 65535 -2,5: - 0: 65535 - -1,4: - 0: 65535 + 0: 65531 + -2,6: + 0: 61439 + -2,7: + 0: 53204 + -2,8: + 0: 64981 -1,5: - 0: 65535 - 0,4: - 0: 65535 + 0: 13115 + 1: 34816 + -1,6: + 0: 48115 + -1,7: + 0: 57297 + -1,8: + 0: 57309 0,5: + 0: 3 + 1: 32648 + 0,6: + 0: 65520 + 0,7: + 0: 30577 + 0,8: 0: 65535 - 1,4: - 0: 65535 + 1,6: + 0: 48051 + 1,7: + 0: 4082 1,5: - 0: 65535 - 2,4: - 0: 65535 + 0: 26214 + 1,8: + 0: 4369 + 1: 51400 2,5: - 0: 65535 - 3,4: - 0: 65535 + 0: 2039 + 2,6: + 0: 30711 + 2,7: + 0: 20464 3,5: - 0: 65535 - 4,4: - 0: 65535 + 0: 46011 + 3,6: + 0: 11259 + 3,7: + 0: 4095 + 3,8: + 1: 11822 4,5: - 0: 65535 - 5,4: - 0: 65535 + 0: 45311 + 4,6: + 0: 3003 + 4,7: + 0: 511 + 4,8: + 1: 3863 5,5: - 0: 65535 - 6,4: - 0: 65535 + 0: 65252 + 5,6: + 0: 8191 + 5,7: + 0: 29439 + 5,8: + 0: 7 6,5: + 0: 4078 + 6,6: + 0: 1911 + 6,7: + 0: 255 + 1: 36864 + 6,8: + 1: 4031 + 7,5: + 0: 35771 + 7,6: + 0: 63931 + 7,7: + 0: 63 + 1: 61440 + 7,8: + 1: 1908 + 8,4: + 0: 65419 + 8,5: + 0: 13107 + 1: 2048 + 8,6: + 0: 4371 + 1: 49280 + 8,7: + 0: 1 + 1: 64200 + 4,-8: 0: 65535 - 4,-6: - 0: 65535 - 4,-5: + 4,-9: + 0: 63960 + 3,-8: + 0: 52701 + 4,-7: 0: 65535 + 3,-7: + 0: 57341 + 4,-6: + 0: 63344 + 3,-6: + 0: 64985 + 5,-8: + 0: 30583 + 5,-7: + 0: 30583 5,-6: - 0: 65535 + 0: 64433 5,-5: + 0: 955 + 5,-9: + 0: 29282 + 6,-7: + 1: 61440 + 6,-6: + 0: 30576 + 7,-6: + 0: 65534 + 7,-7: + 0: 16384 + 8,-6: + 0: 65520 + 8,-5: + 0: 61695 + 0,-8: + 0: 61469 + 1: 64 + -1,-8: + 0: 61695 + 0,-7: 0: 65535 - 0,-6: - 0: 65535 - 0,-5: + -1,-7: 0: 65535 + 0,-6: + 0: 58623 + -1,-6: + 0: 8191 + 0,-9: + 0: 20231 + 1: 32768 + 1,-8: + 0: 12289 + 1: 32854 + 1,-7: + 0: 13107 + 1: 32776 1,-6: - 0: 65535 - 1,-5: - 0: 65535 + 0: 64531 + 1: 8 + 1,-9: + 0: 4367 + 1: 26112 + 2,-8: + 0: 52991 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 + 0: 65262 + 2,-9: + 0: 65516 + 2,-7: + 0: 61166 + 3,-9: + 0: 56784 + -4,-9: + 0: 57297 + -5,-8: + 0: 60159 + -4,-8: + 0: 61152 + -4,-7: + 0: 57582 + -5,-7: + 0: 65198 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 3822 + -5,-6: + 0: 61182 + -5,-5: + 0: 61167 + -3,-8: + 0: 64441 + -3,-7: + 0: 45243 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 35839 + -3,-9: + 0: 49081 + -2,-8: + 0: 14207 + -2,-7: + 0: 47547 -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 + 0: 15295 + -2,-9: + 0: 30583 + -1,-9: + 0: 32523 + -8,-8: + 0: 45567 + -8,-9: + 1: 4869 + 0: 57584 + -9,-8: + 0: 37119 + -8,-7: + 0: 35775 + -9,-7: + 0: 2184 + 1: 3 -8,-6: - 0: 65535 + 0: 65408 + 1: 2 + -9,-6: + 0: 65024 -8,-5: - 0: 65535 + 0: 35769 + -9,-5: + 0: 7088 + -8,-4: + 0: 48123 + -7,-8: + 0: 61567 + -7,-7: + 0: 56607 -7,-6: - 0: 65535 + 0: 7645 -7,-5: - 0: 65535 + 0: 2047 + -7,-9: + 0: 39409 + 1: 4 + -7,-4: + 0: 30583 + -6,-7: + 0: 65359 -6,-6: - 0: 65535 + 0: 20479 -6,-5: + 0: 62207 + -6,-8: + 0: 61166 + -6,-4: 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-4: - 0: 65535 + -6,-9: + 0: 61152 + -5,-9: + 0: 65529 + -9,-4: + 0: 48059 -8,-3: - 0: 65535 + 0: 65528 + -9,-3: + 0: 65411 -8,-2: - 0: 65535 + 0: 56793 + -9,-2: + 0: 56796 -8,-1: - 0: 65535 - -7,-4: - 0: 65535 + 0: 47608 + -9,-1: + 0: 53752 + -8,0: + 0: 65523 -7,-3: - 0: 65535 + 0: 65303 -7,-2: - 0: 65535 + 0: 56732 -7,-1: - 0: 65535 - -6,-4: - 0: 65535 + 0: 63964 + -7,0: + 0: 57308 -6,-3: - 0: 65535 + 0: 65327 -6,-2: - 0: 65535 + 0: 65391 -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,0: - 0: 65535 + 0: 61695 + -6,0: + 0: 53631 + -9,0: + 0: 56797 -8,1: - 0: 65535 + 0: 65521 + -9,1: + 0: 65520 -8,2: - 0: 65535 + 0: 48056 -8,3: - 0: 65535 - -7,0: - 0: 65535 + 0: 65466 + -9,3: + 0: 65520 + -8,4: + 0: 47903 -7,1: - 0: 65535 + 0: 57340 -7,2: - 0: 65535 + 0: 56796 -7,3: - 0: 65535 - -6,0: - 0: 65535 + 0: 65485 + -7,4: + 0: 47581 -6,1: - 0: 65535 - -6,2: - 0: 65535 + 0: 57341 -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 + 0: 40399 + -6,2: + 0: 61152 + -6,4: + 0: 55805 -5,3: - 0: 65535 - -8,4: - 0: 65535 + 0: 18016 + -9,4: + 0: 61006 -8,5: + 0: 20363 + -9,5: + 0: 16270 + -8,6: 0: 65535 - -7,4: + -9,6: + 0: 49080 + -8,7: 0: 65535 + -9,7: + 0: 47615 + -8,8: + 0: 56591 -7,5: - 0: 65535 - -6,4: - 0: 65535 + 0: 35771 + -7,6: + 0: 49147 + -7,7: + 0: 48059 + -7,8: + 0: 49035 -6,5: + 0: 57309 + -6,6: + 0: 65521 + -6,7: + 0: 48051 + -6,8: + 0: 64507 + -5,8: + 0: 65020 + -12,-4: + 0: 30583 + -12,-5: + 0: 30704 + -12,-3: + 0: 65394 + -13,-3: + 0: 65473 + -12,-2: + 0: 47795 + -13,-2: + 0: 53468 + -12,-1: + 0: 12851 + -13,-1: + 0: 28893 + -12,0: + 0: 13107 + 1: 32768 + -11,-4: + 0: 63679 + -11,-3: + 0: 65291 + -11,-2: + 0: 65526 + -11,-1: + 0: 65520 + -11,0: + 0: 255 + 1: 61440 + -10,-4: 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: + -10,-3: 0: 65535 -10,-2: - 0: 57343 - 2: 8192 + 0: 61412 -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -11,0: - 0: 65535 + 0: 39312 + -10,-5: + 0: 21844 + -10,0: + 0: 34969 + 1: 12288 + -12,1: + 0: 65522 + -13,1: + 0: 52416 + -12,2: + 0: 32754 + -13,2: + 0: 61160 + -12,3: + 0: 63351 + -13,3: + 0: 61423 + -12,4: + 0: 30719 -11,1: - 0: 65535 - -11,2: - 0: 65535 + 0: 65520 -11,3: - 0: 65535 - -10,0: - 0: 65535 + 0: 65279 + -11,2: + 0: 61162 + -11,4: + 0: 65278 -10,1: - 0: 65535 - -10,2: - 0: 65535 + 0: 57336 -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 + 0: 65508 + -10,2: + 0: 61152 + -10,4: + 0: 61156 -9,2: - 0: 65535 - -9,3: - 0: 65535 - -11,4: - 0: 65535 + 0: 30578 + -13,4: + 0: 61439 + -12,5: + 0: 65399 + -13,5: + 0: 61423 + -12,6: + 0: 65520 + -13,6: + 0: 61152 + -12,7: + 0: 12287 + -13,7: + 0: 3822 + -12,8: + 0: 16383 -11,5: - 0: 65535 + 0: 61167 -11,6: - 0: 65535 - -10,4: - 0: 65535 + 0: 65258 + -11,7: + 0: 58607 + -11,8: + 0: 44798 -10,5: - 0: 65535 + 0: 61262 -10,6: - 0: 65535 + 0: 65508 -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 + 0: 45295 + -10,8: + 0: 48063 + -9,8: + 0: 35771 + -12,-6: + 1: 5903 + -13,-6: + 1: 15934 + -12,-8: + 1: 19592 + -12,-7: + 1: 17604 + -12,-9: + 1: 32768 + -11,-8: + 1: 770 + 0: 4 + -11,-7: + 1: 116 -11,-6: - 0: 65535 + 0: 65280 -11,-5: - 0: 65535 + 0: 2995 + -11,-9: + 1: 13090 + 0: 17476 + -10,-8: + 0: 57583 + -10,-7: + 0: 61440 + 1: 222 -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 32639 - 8,6: - 0: 63479 - 8,7: - 0: 65535 - 7,-8: - 0: 65523 - 7,-7: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - 8,-8: - 0: 65520 - 8,-7: - 0: 65535 - 9,-8: - 0: 65520 - 9,-7: - 0: 65535 + 0: 62703 + -10,-9: + 0: 13299 + 1: 4 + -9,-9: + 0: 61937 9,-6: - 0: 65535 + 0: 65527 9,-5: - 0: 65535 - 10,-8: - 0: 4368 - 10,-7: - 0: 4369 + 0: 61183 + 9,-7: + 0: 8192 + 9,-4: + 0: 61135 10,-6: - 0: 65535 + 0: 4368 + 1: 2188 10,-5: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 + 0: 7967 + 10,-4: + 0: 4353 + 1: 2184 9,-2: - 0: 65535 + 0: 61422 + 9,-3: + 0: 61166 9,-1: - 0: 65535 - 10,-4: - 0: 65535 + 0: 61166 + 9,0: + 0: 45295 10,-3: - 0: 65535 + 0: 7967 10,-2: - 0: 65535 + 0: 4369 + 1: 2184 10,-1: - 0: 65535 - 9,0: - 0: 65535 + 0: 7967 + 10,0: + 0: 12561 + 1: 68 9,1: - 0: 65535 + 0: 48059 9,2: - 0: 65535 + 0: 64443 9,3: - 0: 65535 - 10,0: - 0: 65535 + 0: 63675 + 9,4: + 0: 4479 + 1: 32768 10,1: - 0: 65535 + 0: 13171 10,2: - 0: 65535 + 0: 64435 10,3: - 0: 65535 - 9,4: - 0: 49151 + 0: 13243 10,4: - 0: 63 - -14,0: - 0: 40959 - -14,1: - 0: 49145 - -14,2: - 0: 61070 - -14,3: - 0: 52974 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -14,-6: - 0: 57295 - -14,-5: - 0: 65533 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -14,4: - 0: 61132 - -14,5: - 0: 36590 - -14,6: - 0: 34952 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -6,-9: - 0: 65535 - -5,-9: - 0: 65535 - -4,-9: - 0: 65535 - -3,-9: - 0: 65535 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-9: - 0: 65535 - 5,-9: - 0: 65535 - -12,-7: - 0: 65535 - -11,-7: - 0: 65535 - -10,-7: - 0: 65535 - -14,-7: - 0: 34952 - -13,-7: - 0: 65535 - -6,-10: - 0: 65535 - -5,-10: - 0: 65535 - -4,-10: - 0: 65535 - -3,-10: - 0: 65535 - -2,-10: - 0: 65535 - 3,-11: - 0: 65527 - 3,-10: - 0: 65535 - 4,-11: - 0: 65520 - 4,-10: - 0: 65535 - 5,-11: - 0: 65520 - 5,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-9: - 0: 13111 - -12,7: - 0: 65535 - -11,7: - 0: 65535 - -11,-8: - 0: 53198 - -10,-8: - 0: 65535 + 0: 1 + 1: 8 + 11,2: + 0: 62256 + 1: 136 + 11,3: + 0: 51 + 1: 43136 + 11,4: + 1: 34959 + 12,2: + 0: 63628 + 12,3: + 1: 13056 + 0: 52362 + 9,5: + 1: 32668 + 9,6: + 1: 12917 + 12,4: + 1: 32816 + 0: 3276 + 11,5: + 1: 8 + 12,5: + 1: 15 -16,0: - 0: 56799 + 1: 4371 + 0: 2184 + -16,-1: + 1: 4381 + 0: 34816 + -17,0: + 1: 19554 -16,1: - 0: 8181 - -16,2: - 0: 15 + 1: 4085 + -17,1: + 1: 3140 -15,0: - 0: 65535 + 0: 4095 -15,1: - 0: 65521 - -15,2: - 0: 1 + 1: 4081 + -15,-1: + 0: 65518 + -14,0: + 0: 255 + -14,1: + 1: 36721 + -14,-1: + 0: 61949 + -14,3: + 0: 3790 + -14,4: + 1: 1092 + -13,0: + 0: 29047 -16,-4: - 0: 40857 + 1: 5905 + -16,-5: + 1: 14114 + -17,-4: + 1: 22004 -16,-3: - 0: 65529 + 1: 49 + 0: 65280 + -17,-3: + 1: 22005 -16,-2: - 0: 65535 - -16,-1: - 0: 56797 + 0: 4095 + 1: 12288 + -17,-2: + 1: 60079 + -17,-1: + 1: 11810 -15,-4: - 0: 65535 + 0: 47858 -15,-3: - 0: 65535 + 0: 48011 -15,-2: - 0: 65535 - -15,-1: - 0: 65535 + 0: 35775 + -15,-5: + 0: 47872 + 1: 5 + -14,-4: + 0: 65529 + -14,-3: + 0: 65343 + -14,-2: + 0: 61939 + -14,-5: + 0: 56576 + 1: 5 + -13,-4: + 0: 30580 + -13,-5: + 0: 26112 + 1: 2 -16,-6: - 0: 62844 - -16,-5: - 0: 49058 + 1: 62844 + -17,-6: + 1: 32768 + -17,-5: + 1: 19592 -15,-6: - 0: 24479 - -15,-5: - 0: 65525 + 1: 24479 + -14,-6: + 1: 55239 + -17,7: + 1: 52736 + -16,7: + 3: 24576 + -15,7: + 1: 4352 + 0: 49152 + -15,8: + 1: 4369 + 0: 52428 -14,7: - 0: 65416 - -13,7: + 0: 61440 + 1: 136 + -14,8: 0: 65535 + -14,5: + 0: 3790 + -14,6: + 1: 34952 + -13,8: + 0: 61182 -8,-12: - 0: 65535 + 0: 61424 + 1: 4096 + -8,-13: + 0: 63624 + 1: 1890 + -9,-12: + 0: 65520 -8,-11: - 0: 6641 + 1: 6401 + 0: 240 + -9,-11: + 0: 4593 + 1: 4 -8,-10: - 0: 5107 - -8,-9: - 0: 62453 + 0: 819 + 1: 4288 + -9,-10: + 0: 6553 + 1: 1120 -7,-12: - 0: 49151 + 0: 40944 + 1: 8192 -7,-11: - 0: 40441 + 0: 4601 + 1: 1024 -7,-10: - 0: 39417 - -7,-9: - 0: 39421 + 0: 4369 + 1: 96 + -7,-13: + 0: 28672 + 1: 4074 -6,-12: - 0: 65535 + 0: 57590 -6,-11: + 0: 61678 + -6,-10: 0: 65535 -5,-12: - 0: 65535 + 0: 65524 -5,-11: - 0: 65535 + 0: 47615 + -5,-10: + 0: 49087 + -5,-13: + 0: 56664 + 1: 4 -4,-12: - 0: 65535 + 0: 56785 -4,-11: - 0: 65535 + 0: 53725 + -4,-10: + 0: 56799 + -4,-13: + 0: 39320 + 1: 16455 -3,-12: - 0: 65535 + 0: 47928 -3,-11: - 0: 65535 + 0: 45243 + -3,-10: + 0: 15291 + -3,-13: + 1: 12835 + 0: 34952 -2,-12: - 0: 65535 + 0: 65419 -2,-11: - 0: 65535 + 0: 28927 + -2,-10: + 0: 14335 + -2,-13: + 0: 48015 -1,-12: 0: 65535 -1,-11: 0: 65535 -1,-10: + 0: 49151 + -1,-13: 0: 65535 0,-12: - 0: 65535 + 0: 46003 + 1: 2056 0,-11: - 0: 65535 + 0: 46003 + 1: 2056 0,-10: - 0: 65535 + 0: 32755 + 0,-13: + 0: 46003 + 1: 2056 + 1,-10: + 0: 65534 1,-12: - 0: 61937 3: 14 4: 3584 1,-11: - 0: 65521 5: 14 - 1,-10: - 0: 65535 + 0: 3584 + 2,-10: + 0: 61438 2,-12: - 0: 65535 + 1: 558 + 0: 52416 2,-11: - 0: 65535 - 2,-10: - 0: 65535 + 0: 60654 + 2,-13: + 1: 25126 + 0: 32768 3,-12: - 0: 16383 - 6,-11: - 0: 65520 - 6,-10: - 0: 4095 - 7,-11: - 0: 65296 - 7,-10: - 0: 53247 - -12,8: - 0: 65535 + 1: 3855 + 0: 240 + 4,-12: + 1: 3855 + 0: 240 + 4,-13: + 1: 60544 + 5,-12: + 0: 113 + 1: 3982 + 5,-13: + 0: 4352 + 1: 58928 + 6,-12: + 1: 305 + 6,-9: + 1: 17 -12,9: - 0: 65535 - -11,8: - 0: 65535 + 0: 45499 + -13,9: + 0: 49391 + 1: 4096 + -12,10: + 0: 47291 + -13,10: + 0: 204 + 1: 28945 + -12,11: + 0: 61227 + -13,11: + 0: 65392 -11,9: - 0: 65535 + 0: 61627 -11,10: 0: 65535 - -10,8: - 0: 65535 + -11,11: + 0: 65311 + -11,12: + 0: 65522 -10,9: - 0: 65535 + 0: 47547 -10,10: - 0: 65535 - -9,8: - 0: 65535 + 0: 48123 + -10,11: + 0: 65419 -9,9: - 0: 65535 + 0: 3551 -9,10: - 0: 65535 - -14,8: - 0: 65535 - -14,9: - 0: 65535 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -8,8: - 0: 65535 + 0: 4607 + -9,11: + 0: 4369 -8,9: - 0: 65535 + 0: 17749 -8,10: - 0: 61439 - -7,8: - 0: 65535 + 0: 503 + -16,8: + 1: 65520 + -17,8: + 1: 20068 + -17,9: + 1: 50254 + -16,9: + 3: 96 + 1: 61440 + -16,10: + 1: 231 + -17,10: + 1: 8 + -15,9: + 1: 28945 + 0: 204 + -15,10: + 1: 55125 + -15,11: + 1: 35047 + -14,9: + 0: 28927 + -14,10: + 0: 119 + 1: 61440 + -14,11: + 1: 785 + 0: 34944 + -15,12: + 1: 136 + -14,12: + 0: 2191 + 1: 13056 + -13,12: + 0: 4095 -7,9: - 0: 65535 + 0: 65464 -7,10: - 0: 65535 - -6,8: - 0: 65535 + 0: 61439 + -8,11: + 1: 34952 + -7,11: + 1: 48912 + 0: 12 + -8,12: + 1: 15 + -7,12: + 1: 234 -6,9: - 0: 65535 + 0: 65443 -6,10: 0: 65535 - -5,8: - 0: 65535 + -6,11: + 0: 7 + 1: 20224 + -6,12: + 1: 63 -5,9: - 0: 65535 + 0: 4380 + 1: 17408 -5,10: - 0: 65535 - -4,8: - 0: 65535 + 0: 273 + 1: 49344 + -5,11: + 1: 44858 + -5,12: + 1: 239 -4,9: - 0: 65535 + 0: 65339 -4,10: - 0: 65535 - -3,8: - 0: 65535 + 1: 4368 + 0: 52424 + -4,11: + 1: 20337 + -4,12: + 1: 246 -3,9: 0: 65535 -3,10: - 0: 65535 - -2,8: - 0: 65535 + 0: 65520 + -3,11: + 0: 15 + 1: 24320 + -3,12: + 1: 31 -2,9: - 0: 65535 + 0: 65485 -2,10: - 0: 65535 - -1,8: - 0: 65535 + 0: 13105 + 1: 34944 + -2,11: + 1: 48104 + -2,12: + 1: 47 -1,9: - 0: 65535 + 0: 57297 -1,10: - 0: 65535 - 0,8: - 0: 65535 + 1: 30208 + 0: 12 + -1,11: + 1: 13044 0,9: - 0: 65535 + 0: 30576 0,10: - 0: 63487 + 0: 791 + 1: 32768 + 0,11: + 1: 251 + 1,9: + 1: 30200 + 1,10: + 1: 4402 + 2,9: + 1: 240 + 3,9: + 1: 50 + 0,-16: + 1: 51592 + 0: 8738 + -1,-16: + 1: 40874 + 0,-15: + 1: 16 + 0: 8738 + -1,-15: + 1: 39321 + -1,-14: + 1: 2463 0,-14: - 0: 65522 - 3: 12 - 0,-13: - 0: 65535 + 0: 44610 + 1: 12 + 0,-17: + 0: 8738 + 1: 35037 + 1,-16: + 1: 4096 1,-14: - 0: 65521 + 1: 3809 + 1,-15: + 1: 273 + 0: 4096 1,-13: - 0: 61937 3: 14 6: 3584 2,-14: - 0: 12848 - 2,-13: - 0: 62263 + 1: 8720 + 0: 32 -4,-16: - 0: 57241 + 0: 34817 + 1: 22408 + -4,-17: + 0: 4337 + 1: 60928 + -5,-16: + 0: 34828 + 1: 17408 -4,-15: - 0: 49055 - -4,-14: - 0: 40891 - -4,-13: - 0: 64511 - -3,-13: - 0: 65263 - -2,-14: - 0: 64853 - -2,-13: - 0: 65535 - -1,-14: - 0: 63903 - -1,-13: - 0: 65535 - -8,-13: - 0: 65514 - -7,-13: - 0: 65514 - -6,-13: - 0: 65019 - -6,-16: - 0: 63903 - -6,-15: - 0: 64443 - -6,-14: - 0: 63897 + 1: 14103 + 0: 34952 -5,-15: - 0: 52431 - -5,-13: - 0: 65532 - -5,-16: - 0: 52431 + 0: 34952 + 1: 17479 + -4,-14: + 1: 5939 + 0: 34952 -5,-14: - 0: 53196 - -11,-11: - 0: 61183 - -11,-10: - 0: 61422 - -11,-9: - 0: 65518 - -11,-12: - 0: 61132 - -10,-12: - 0: 16383 - -10,-11: - 0: 14331 - -10,-10: - 0: 13299 - -10,-9: - 0: 13303 - -9,-12: - 0: 65535 - -9,-11: - 0: 4597 - -9,-10: - 0: 7673 - -9,-9: - 0: 61937 - -11,-13: - 0: 49152 - -10,-13: - 0: 65216 - -9,-13: - 0: 65367 - -17,-4: - 0: 22004 - -17,-3: - 0: 56821 - -17,-2: - 0: 60079 - -17,-1: - 0: 11810 - -17,0: - 0: 19554 - -17,1: - 0: 52292 - -17,-5: - 0: 19592 - -17,-6: - 0: 32768 - -4,-17: - 0: 65521 - -3,-17: - 0: 63486 - -2,-17: - 0: 63999 - -1,-18: - 0: 61713 - -1,-17: - 0: 44991 - -8,-20: - 0: 65535 - -8,-19: - 0: 65535 - -8,-18: - 0: 63630 - -7,-18: - 0: 61455 - -6,-18: - 0: 29775 - -6,-17: - 0: 65527 - -5,-18: - 0: 61183 - -5,-17: - 0: 65534 - -10,-20: - 0: 65535 - -10,-19: - 0: 65535 - -9,-20: - 0: 63889 - -9,-19: - 0: 4505 - -9,-18: - 0: 61713 - 0,-22: - 0: 65520 - 0,-21: - 0: 61166 - 0,-18: - 0: 65262 - 0,-20: - 0: 65262 - 0,-19: - 0: 61166 - -4,-22: - 0: 28959 - -3,-22: - 0: 12015 - -2,-22: - 0: 4095 - -1,-22: - 0: 65527 - -9,-22: - 0: 65520 - -9,-21: - 0: 4369 - -8,-22: - 0: 65520 - -7,-22: - 0: 65520 - -6,-22: - 0: 30591 - -5,-22: - 0: 60623 - 0,-16: - 0: 60330 - 0,-15: - 0: 8754 - 1,-16: - 0: 4096 - 1,-15: - 0: 4369 + 0: 34952 + 1: 18244 -3,-16: - 0: 20379 + 0: 3857 + 1: 16522 -3,-15: - 0: 17524 + 1: 17524 -3,-14: - 0: 58100 + 1: 8948 + -3,-17: + 0: 4414 + 1: 59072 -2,-16: - 0: 8089 + 0: 4369 + 1: 3720 + -2,-14: + 0: 273 + 1: 3140 + -2,-17: + 0: 4383 + 1: 59616 -2,-15: - 0: 22001 - -1,-16: - 0: 40874 - -1,-15: - 0: 39321 + 0: 4369 + 1: 17632 + -1,-17: + 1: 44990 + 0: 1 -8,-16: - 0: 43946 + 1: 8994 + 0: 34952 + -9,-16: + 1: 43929 + 0: 17476 -8,-15: - 0: 43946 + 1: 8994 + 0: 34952 + -9,-15: + 1: 43562 + 0: 17476 -8,-14: - 0: 47787 + 1: 12835 + 0: 34952 + -9,-14: + 1: 37147 + 0: 17476 + -9,-13: + 1: 2835 + 0: 62532 + -8,-17: + 1: 12791 + 0: 34824 -7,-16: - 0: 24551 + 1: 7075 + 0: 17476 -7,-15: - 0: 61583 - -9,-16: - 0: 61405 - -9,-14: - 0: 54623 - -9,-15: - 0: 61038 + 1: 61571 + 0: 12 + -7,-17: + 1: 37691 + 0: 19524 + -7,-14: + 1: 11810 + -6,-16: + 0: 39321 + 1: 24576 + -6,-15: + 0: 39321 + 1: 25122 + -6,-14: + 0: 39321 + 1: 24576 + -6,-13: + 0: 2457 + 1: 1122 + -6,-17: + 0: 37333 + 1: 28194 + -5,-17: + 0: 49404 + 1: 13056 + -11,-11: + 1: 8755 + 0: 17476 + -11,-10: + 1: 8994 + 0: 17476 + -11,-12: + 1: 8704 + 0: 17408 + -10,-12: + 0: 16352 + -10,-11: + 0: 13299 + 1: 1032 + -10,-10: + 0: 13107 + 1: 192 + -10,-13: + 0: 57344 + 1: 3776 + -9,-17: + 1: 48027 + 0: 17412 -4,-20: - 0: 65535 + 0: 48056 + -4,-21: + 0: 13107 + -5,-20: + 0: 56785 -4,-19: - 0: 65535 + 0: 14523 + -5,-19: + 0: 49629 -4,-18: - 0: 6143 + 0: 4147 + -5,-18: + 0: 49356 -3,-20: - 0: 65535 + 0: 46079 -3,-19: - 0: 65535 + 0: 4083 -3,-18: - 0: 8959 + 0: 8704 -2,-20: - 0: 65535 + 0: 56831 -2,-19: - 0: 65535 - -2,-18: - 0: 127 + 0: 12285 + -2,-21: + 0: 8192 -1,-20: - 0: 63347 - -1,-19: - 0: 13175 - -8,-17: - 0: 47615 + 0: 36864 + -1,-18: + 0: 61712 + 0,-20: + 0: 65250 + 1: 12 + 0,-18: + 0: 12834 + 1: 52428 + -8,-20: + 0: 61166 + -8,-19: + 0: 3822 + -8,-18: + 0: 63616 + -9,-18: + 0: 61713 -7,-20: - 0: 65535 + 0: 46079 -7,-19: - 0: 65535 - -7,-17: - 0: 57215 + 0: 65523 + -7,-18: + 0: 61440 + -7,-21: + 0: 61440 + -6,-18: + 0: 29760 -6,-20: - 0: 65535 + 0: 61166 -6,-19: - 0: 65535 - -5,-20: - 0: 65535 - -5,-19: - 0: 65535 - -10,-18: + 0: 3822 + -5,-21: 0: 52428 - -10,-17: + -10,-20: + 1: 13119 + 0: 52416 + -10,-21: + 1: 64716 + -10,-19: + 1: 65331 0: 204 - -9,-17: - 0: 65503 - 1,-21: + -10,-18: + 1: 52428 + -10,-17: + 1: 204 + -9,-20: + 0: 28945 + -9,-19: + 0: 4369 + -9,-21: + 0: 4369 + 0,-22: + 1: 53232 0: 12288 - 0,-17: - 0: 43775 - 1,-19: - 0: 13107 + -1,-22: + 1: 3831 + 0: 61696 + 0,-21: + 0: 8738 + 1: 52428 + 1,-21: + 1: 12288 1,-20: - 0: 13107 + 1: 13107 + 0,-19: + 0: 8942 + 1: 52224 + 1,-19: + 1: 13107 -4,-23: - 0: 65280 - -4,-21: - 0: 65527 + 1: 65280 + -5,-23: + 1: 65280 + -4,-22: + 0: 15 + 1: 272 + -5,-22: + 0: 2191 + 1: 1088 -3,-23: - 0: 65280 + 1: 65280 + -3,-22: + 0: 11811 + 1: 204 -3,-21: - 0: 65522 - -2,-21: - 0: 65392 + 0: 2 + -2,-22: + 1: 255 + 0: 3840 -1,-21: - 0: 12561 - -10,-21: - 0: 64716 + 0: 17 -10,-22: - 0: 52416 + 1: 52416 + -9,-22: + 1: 4080 + 0: 61440 + -8,-22: + 1: 4080 + 0: 61440 + -7,-22: + 1: 4080 + 0: 61440 -8,-21: - 0: 65160 - -7,-21: - 0: 65280 + 0: 136 + -6,-22: + 1: 819 + 0: 29772 -6,-23: - 0: 65280 + 1: 65280 -6,-21: - 0: 65348 - -5,-23: - 0: 65280 - -5,-21: - 0: 65534 - -12,-8: - 0: 19592 - 11,2: - 0: 65535 - 11,3: - 0: 45055 - 9,5: - 0: 32671 - -7,-14: - 0: 11810 - -12,-9: - 0: 32768 - 12,2: - 0: 63884 - 12,3: - 0: 65419 - 12,0: - 0: 52224 + 0: 68 12,1: - 0: 64767 - 13,0: - 0: 64768 + 0: 52428 13,1: - 0: 56799 + 0: 56797 + 1: 2 13,2: - 0: 63631 + 0: 63629 + 1: 2 13,3: - 0: 56824 + 1: 112 + 0: 56712 + 13,0: + 1: 31744 + 13,4: + 0: 3549 + 1: 4098 14,0: - 0: 40704 + 1: 40704 14,1: - 0: 57309 + 0: 56797 + 1: 512 14,2: - 0: 63741 + 0: 63629 + 1: 112 14,3: - 0: 57288 + 0: 56712 + 1: 576 + 14,4: + 0: 3549 + 1: 53248 15,0: - 0: 22272 + 1: 18176 15,1: - 0: 30039 + 0: 4369 + 1: 25670 15,2: - 0: 64709 + 0: 61441 + 1: 3268 15,3: - 0: 22012 - 12,4: - 0: 52476 - 12,5: - 0: 15 - 13,4: - 0: 40415 - 13,5: - 0: 15 - 14,4: - 0: 56797 - 14,5: - 0: 15 + 1: 17660 + 0: 4352 15,4: - 0: 21847 - 15,5: - 0: 7 - 11,1: - 0: 40847 - 9,6: - 0: 12917 - 11,4: - 0: 34959 - 11,5: - 0: 8 - -4,11: - 0: 20479 - -3,11: - 0: 24575 - -2,11: - 0: 48127 - 1,8: - 0: 64507 - 1,9: - 0: 30203 - 2,8: - 0: 249 - 3,8: - 0: 11838 + 0: 273 + 1: 17478 16,2: - 0: 12848 + 1: 12848 16,3: - 0: 50 - 4,8: - 0: 3999 - 5,8: - 0: 255 - 6,8: - 0: 4031 - 7,8: - 0: 1908 - -16,7: - 0: 40704 - 3: 24576 - -15,7: - 0: 65280 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,11: - 0: 65535 - -10,11: - 0: 65535 - -9,11: - 0: 13119 - -16,8: - 0: 65535 - -16,9: - 0: 65439 - 3: 96 - -16,10: - 0: 231 - -15,8: - 0: 65535 - -15,9: - 0: 65535 - -15,10: - 0: 57309 - -15,11: - 0: 35047 - -14,10: - 0: 65535 - -14,11: - 0: 65501 - -13,10: - 0: 65535 - -13,11: - 0: 65535 - -8,11: - 0: 36523 - -7,11: - 0: 49151 - -6,11: - 0: 20479 - -5,11: - 0: 44859 - -1,11: - 0: 13044 - 0,11: - 0: 251 - 1,10: - 0: 4402 - -4,12: - 0: 246 - -3,12: - 0: 31 - -2,12: - 0: 47 - -7,12: - 0: 234 - -6,12: - 0: 63 - -5,12: - 0: 239 - -12,12: - 0: 56799 + 1: 50 + 13,5: + 1: 15 + 14,5: + 1: 15 + 15,5: + 1: 7 + -9,12: + 1: 12 -12,14: - 0: 8191 + 0: 4095 + 1: 4096 + -13,14: + 0: 3822 + 1: 16 -12,15: - 0: 20479 + 0: 4095 + 1: 16384 + -13,15: + 0: 3822 + 1: 32784 + -12,12: + 0: 34944 -12,13: - 0: 17484 - -11,12: - 0: 65535 - -11,13: - 0: 16255 + 1: 17472 + -12,16: + 0: 4095 + 1: 40960 -11,14: - 0: 12026 + 0: 11002 + 1: 1024 -11,15: - 0: 60410 - -10,12: - 0: 49055 + 0: 11002 + 1: 49408 + -11,13: + 0: 12834 + 1: 2048 + -11,16: + 0: 11002 + 1: 33792 -10,13: - 0: 44975 + 1: 44974 -10,14: - 0: 16383 + 0: 4095 + 1: 12288 -10,15: 0: 4095 - -9,12: - 0: 15 + -10,12: + 1: 44672 -9,13: - 0: 44800 + 1: 44800 -9,14: - 0: 35835 + 0: 819 + 1: 35016 -9,15: - 0: 39931 - -15,12: - 0: 136 - -14,12: - 0: 65535 + 0: 819 + 1: 39112 + -9,16: + 0: 819 + 1: 35016 -14,13: - 0: 34816 + 1: 34816 + -13,13: + 1: 36761 -14,14: - 0: 34952 + 1: 34952 -14,15: - 0: 34952 - -13,12: - 0: 65535 - -13,13: - 0: 36761 - -13,14: - 0: 3838 - -13,15: - 0: 36606 - -12,16: - 0: 45055 + 1: 34952 + -14,16: + 1: 34952 + -13,16: + 0: 3822 + 1: 8208 -12,17: - 0: 2191 - -11,16: - 0: 44794 + 1: 2191 + -13,17: + 1: 15 -11,17: - 0: 4015 + 1: 4013 + 0: 2 -10,16: - 0: 12287 + 0: 4095 + 1: 8192 -10,17: - 0: 15 - -9,16: - 0: 35835 + 1: 15 -9,17: - 0: 15 - -14,16: - 0: 34952 + 1: 15 -14,17: - 0: 8 - -13,16: - 0: 12030 - -13,17: - 0: 15 - -17,8: - 0: 20068 - -17,9: - 0: 50254 - -17,10: - 0: 8 - -17,7: - 0: 52736 - 2,9: - 0: 240 - 3,9: - 0: 50 - -8,12: - 0: 15 - 4,-12: - 0: 4095 - 5,-12: - 0: 883 - 3: 3212 - 3,-13: - 0: 51200 - 4,-13: - 0: 65392 - 3: 128 - 5,-13: - 0: 4096 - 3: 59184 - 6,-12: - 3: 305 + 1: 8 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6118,10 +6223,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + immutable: True moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -6133,7 +6238,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 235 moles: - 21.824879 - 82.10312 @@ -6212,6 +6317,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Edge + - type: NavMap - proto: ActionToggleLight entities: - uid: 4 @@ -6245,8 +6351,6 @@ entities: - 10561 - 10376 - 10346 - - type: AtmosDevice - joinedGrid: 2 - uid: 6 components: - type: Transform @@ -6257,8 +6361,6 @@ entities: - 10426 - 10309 - 7450 - - type: AtmosDevice - joinedGrid: 2 - uid: 7 components: - type: Transform @@ -6283,8 +6385,6 @@ entities: - 7418 - 7472 - 7483 - - type: AtmosDevice - joinedGrid: 2 - uid: 8 components: - type: Transform @@ -6301,8 +6401,6 @@ entities: - 7363 - 7364 - 10582 - - type: AtmosDevice - joinedGrid: 2 - uid: 9 components: - type: Transform @@ -6322,8 +6420,6 @@ entities: - 10530 - 7502 - 7368 - - type: AtmosDevice - joinedGrid: 2 - uid: 10 components: - type: Transform @@ -6348,8 +6444,6 @@ entities: - 10484 - 10476 - 10283 - - type: AtmosDevice - joinedGrid: 2 - uid: 11 components: - type: Transform @@ -6363,8 +6457,6 @@ entities: - 10411 - 10410 - 10228 - - type: AtmosDevice - joinedGrid: 2 - uid: 12 components: - type: Transform @@ -6387,8 +6479,6 @@ entities: - 10392 - 10469 - 10280 - - type: AtmosDevice - joinedGrid: 2 - uid: 13 components: - type: Transform @@ -6401,8 +6491,6 @@ entities: - 10539 - 10335 - 7510 - - type: AtmosDevice - joinedGrid: 2 - uid: 14 components: - type: Transform @@ -6421,8 +6509,6 @@ entities: - 10464 - 7396 - 7397 - - type: AtmosDevice - joinedGrid: 2 - uid: 15 components: - type: Transform @@ -6444,8 +6530,6 @@ entities: - 7427 - 7428 - 10578 - - type: AtmosDevice - joinedGrid: 2 - uid: 16 components: - type: Transform @@ -6472,8 +6556,6 @@ entities: - 10529 - 10300 - 10496 - - type: AtmosDevice - joinedGrid: 2 - uid: 17 components: - type: Transform @@ -6488,8 +6570,6 @@ entities: - 7436 - 7437 - 7442 - - type: AtmosDevice - joinedGrid: 2 - uid: 18 components: - type: Transform @@ -6505,8 +6585,6 @@ entities: - 10310 - 10427 - 10242 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -6524,8 +6602,6 @@ entities: - 7497 - 7499 - 7494 - - type: AtmosDevice - joinedGrid: 2 - uid: 20 components: - type: Transform @@ -6550,8 +6626,6 @@ entities: - 10384 - 10356 - 434 - - type: AtmosDevice - joinedGrid: 2 - uid: 21 components: - type: Transform @@ -6570,8 +6644,6 @@ entities: - 7542 - 7560 - 7561 - - type: AtmosDevice - joinedGrid: 2 - uid: 22 components: - type: Transform @@ -6590,8 +6662,6 @@ entities: - 10284 - 10422 - 10239 - - type: AtmosDevice - joinedGrid: 2 - uid: 23 components: - type: Transform @@ -6605,8 +6675,6 @@ entities: - 10550 - 10339 - 7369 - - type: AtmosDevice - joinedGrid: 2 - uid: 24 components: - type: Transform @@ -6622,8 +6690,6 @@ entities: - 7501 - 7500 - 7365 - - type: AtmosDevice - joinedGrid: 2 - uid: 25 components: - type: Transform @@ -6639,16 +6705,12 @@ entities: - 7553 - 7552 - 7551 - - type: AtmosDevice - joinedGrid: 2 - uid: 26 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 27 components: - type: Transform @@ -6667,8 +6729,6 @@ entities: - 10365 - 10527 - 10377 - - type: AtmosDevice - joinedGrid: 2 - uid: 28 components: - type: Transform @@ -6687,8 +6747,6 @@ entities: - 10281 - 7389 - 7395 - - type: AtmosDevice - joinedGrid: 2 - uid: 29 components: - type: Transform @@ -6706,8 +6764,6 @@ entities: - 7378 - 7493 - 7492 - - type: AtmosDevice - joinedGrid: 2 - uid: 30 components: - type: Transform @@ -6725,8 +6781,6 @@ entities: - 10438 - 10439 - 10226 - - type: AtmosDevice - joinedGrid: 2 - uid: 31 components: - type: Transform @@ -6745,8 +6799,6 @@ entities: - 10487 - 7391 - 7394 - - type: AtmosDevice - joinedGrid: 2 - uid: 32 components: - type: Transform @@ -6770,8 +6822,6 @@ entities: - 10273 - 10254 - 10448 - - type: AtmosDevice - joinedGrid: 2 - uid: 33 components: - type: Transform @@ -6790,8 +6840,6 @@ entities: - 10225 - 10288 - 10466 - - type: AtmosDevice - joinedGrid: 2 - uid: 34 components: - type: Transform @@ -6808,8 +6856,6 @@ entities: - 10258 - 10447 - 10247 - - type: AtmosDevice - joinedGrid: 2 - uid: 35 components: - type: Transform @@ -6825,8 +6871,6 @@ entities: - 7460 - 7534 - 7535 - - type: AtmosDevice - joinedGrid: 2 - uid: 36 components: - type: Transform @@ -6839,8 +6883,6 @@ entities: - 10333 - 10546 - 7511 - - type: AtmosDevice - joinedGrid: 2 - uid: 37 components: - type: Transform @@ -6858,15 +6900,11 @@ entities: - 10246 - 10434 - 7359 - - type: AtmosDevice - joinedGrid: 2 - uid: 38 components: - type: Transform pos: -10.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 39 components: - type: Transform @@ -6879,8 +6917,6 @@ entities: - 7381 - 10461 - 10278 - - type: AtmosDevice - joinedGrid: 2 - uid: 40 components: - type: Transform @@ -6902,8 +6938,6 @@ entities: - 7519 - 7518 - 10382 - - type: AtmosDevice - joinedGrid: 2 - uid: 41 components: - type: Transform @@ -6931,8 +6965,6 @@ entities: - 7437 - 7393 - 7392 - - type: AtmosDevice - joinedGrid: 2 - uid: 42 components: - type: Transform @@ -6947,8 +6979,6 @@ entities: - 10479 - 10289 - 7357 - - type: AtmosDevice - joinedGrid: 2 - uid: 43 components: - type: Transform @@ -6966,8 +6996,6 @@ entities: - 7518 - 7519 - 7383 - - type: AtmosDevice - joinedGrid: 2 - uid: 44 components: - type: Transform @@ -6991,8 +7019,6 @@ entities: - 10307 - 10517 - 10308 - - type: AtmosDevice - joinedGrid: 2 - uid: 45 components: - type: Transform @@ -7011,8 +7037,6 @@ entities: - 7470 - 10317 - 10429 - - type: AtmosDevice - joinedGrid: 2 - uid: 46 components: - type: Transform @@ -7030,8 +7054,6 @@ entities: - 7536 - 7537 - 433 - - type: AtmosDevice - joinedGrid: 2 - uid: 47 components: - type: Transform @@ -7046,8 +7068,6 @@ entities: - 7540 - 10440 - 10245 - - type: AtmosDevice - joinedGrid: 2 - uid: 48 components: - type: Transform @@ -7061,8 +7081,6 @@ entities: - 10252 - 10413 - 10241 - - type: AtmosDevice - joinedGrid: 2 - uid: 49 components: - type: Transform @@ -7080,8 +7098,6 @@ entities: - 7522 - 10372 - 10499 - - type: AtmosDevice - joinedGrid: 2 - uid: 50 components: - type: Transform @@ -7099,8 +7115,6 @@ entities: - 7386 - 7388 - 7387 - - type: AtmosDevice - joinedGrid: 2 - uid: 51 components: - type: Transform @@ -7125,8 +7139,6 @@ entities: - 7409 - 7398 - 7404 - - type: AtmosDevice - joinedGrid: 2 - uid: 52 components: - type: MetaData @@ -7138,8 +7150,6 @@ entities: - type: DeviceList devices: - 10583 - - type: AtmosDevice - joinedGrid: 2 - uid: 53 components: - type: Transform @@ -7160,73 +7170,43 @@ entities: - 441 - 442 - 7364 - - type: AtmosDevice - joinedGrid: 2 - proto: AirCanister entities: - - uid: 54 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 55 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 56 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 57 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 59 components: - type: Transform pos: -14.5,-83.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 60 components: - type: Transform pos: 18.9538,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 62 components: - type: Transform pos: -2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 63 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Airlock entities: - uid: 64 @@ -7822,25 +7802,10 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - - uid: 179 - components: - - type: Transform - pos: -51.5,19.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: -51.5,11.5 - parent: 2 - uid: 181 components: - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: -51.5,21.5 + pos: -51.5,12.5 parent: 2 - uid: 183 components: @@ -7872,6 +7837,21 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 172 @@ -8094,29 +8074,29 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 205 + - uid: 5648 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,11.5 + pos: -54.5,20.5 parent: 2 - - uid: 206 + - uid: 5649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,19.5 + pos: -54.5,22.5 parent: 2 - - uid: 207 + - uid: 6089 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,13.5 + pos: -54.5,12.5 parent: 2 - - uid: 208 + - uid: 15898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,21.5 + pos: -54.5,14.5 parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: @@ -10110,6 +10090,11 @@ entities: parent: 2 - proto: AtmosDeviceFanTiny entities: + - uid: 205 + components: + - type: Transform + pos: -54.5,20.5 + parent: 2 - uid: 514 components: - type: Transform @@ -10157,26 +10142,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 - - uid: 523 - components: - - type: Transform - pos: -54.5,11.5 - parent: 2 - - uid: 524 - components: - - type: Transform - pos: -54.5,13.5 - parent: 2 - - uid: 525 - components: - - type: Transform - pos: -54.5,19.5 - parent: 2 - - uid: 526 - components: - - type: Transform - pos: -54.5,21.5 - parent: 2 - uid: 527 components: - type: Transform @@ -10228,6 +10193,21 @@ entities: - type: Transform pos: -31.5,42.5 parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: -54.5,22.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 - proto: AtmosFixBlockerMarker entities: - uid: 536 @@ -10626,7 +10606,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -11200,7 +11179,7 @@ entities: - type: Transform pos: -58.5,-3.5 parent: 2 -- proto: BodyBag_Container +- proto: BodyBag entities: - uid: 699 components: @@ -11663,6 +11642,11 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 526 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 - uid: 683 components: - type: Transform @@ -12373,21 +12357,11 @@ entities: - type: Transform pos: -46.5,25.5 parent: 2 - - uid: 908 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - uid: 909 components: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 910 - components: - - type: Transform - pos: -53.5,12.5 - parent: 2 - uid: 911 components: - type: Transform @@ -13153,21 +13127,6 @@ entities: - type: Transform pos: -49.5,20.5 parent: 2 - - uid: 1064 - components: - - type: Transform - pos: -50.5,20.5 - parent: 2 - - uid: 1065 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 1066 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - uid: 1067 components: - type: Transform @@ -13211,17 +13170,12 @@ entities: - uid: 1075 components: - type: Transform - pos: -50.5,12.5 + pos: -50.5,13.5 parent: 2 - uid: 1076 components: - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 1077 - components: - - type: Transform - pos: -52.5,12.5 + pos: -51.5,13.5 parent: 2 - uid: 1078 components: @@ -22923,6 +22877,26 @@ entities: - type: Transform pos: -32.5,19.5 parent: 2 + - uid: 15788 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 - uid: 17430 components: - type: Transform @@ -22938,6 +22912,11 @@ entities: - type: Transform pos: 44.5,13.5 parent: 2 + - uid: 17475 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 - proto: CableApcStack entities: - uid: 3016 @@ -33123,8 +33102,6 @@ entities: - type: Transform pos: 0.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CargoRequestComputerCircuitboard entities: - uid: 5015 @@ -33703,6 +33680,31 @@ entities: parent: 2 - proto: Catwalk entities: + - uid: 180 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -52.5,22.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -53.5,22.5 + parent: 2 - uid: 1672 components: - type: Transform @@ -36275,11 +36277,6 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 5593 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - uid: 5594 components: - type: Transform @@ -36527,40 +36524,10 @@ entities: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 5643 - components: - - type: Transform - pos: -53.5,11.5 - parent: 2 - uid: 5644 components: - type: Transform - pos: -52.5,13.5 - parent: 2 - - uid: 5645 - components: - - type: Transform - pos: -53.5,13.5 - parent: 2 - - uid: 5646 - components: - - type: Transform - pos: -52.5,19.5 - parent: 2 - - uid: 5647 - components: - - type: Transform - pos: -53.5,19.5 - parent: 2 - - uid: 5648 - components: - - type: Transform - pos: -52.5,21.5 - parent: 2 - - uid: 5649 - components: - - type: Transform - pos: -53.5,21.5 + pos: -53.5,14.5 parent: 2 - uid: 5650 components: @@ -36974,6 +36941,16 @@ entities: - type: Transform pos: 21.5,-46.5 parent: 2 + - uid: 15993 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 - uid: 17432 components: - type: Transform @@ -38469,6 +38446,11 @@ entities: parent: 2 - proto: ClosetEmergencyFilledRandom entities: + - uid: 525 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 - uid: 5975 components: - type: Transform @@ -38504,21 +38486,6 @@ entities: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 5982 - components: - - type: Transform - pos: -51.5,17.5 - parent: 2 - - uid: 5983 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 5984 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - uid: 5985 components: - type: Transform @@ -38579,6 +38546,16 @@ entities: - type: Transform pos: 9.5,-39.5 parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 5997 @@ -38596,11 +38573,6 @@ entities: - type: Transform pos: 7.5,3.5 parent: 2 - - uid: 6000 - components: - - type: Transform - pos: -51.5,15.5 - parent: 2 - uid: 6001 components: - type: Transform @@ -38636,6 +38608,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 2 + - uid: 12501 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 6008 @@ -39155,36 +39132,62 @@ entities: parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 6088 + - uid: 13305 components: - type: Transform - pos: -20.697605,-21.704687 - parent: 2 - - uid: 6089 + parent: 14172 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13350 components: - type: Transform - pos: -20.70455,-25.651873 - parent: 2 - - uid: 6090 + parent: 14173 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13351 components: - type: Transform - pos: -20.31566,-25.554583 - parent: 2 - - uid: 6091 + parent: 14174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13388 components: - type: Transform - pos: -20.64205,-25.373901 - parent: 2 - - uid: 6092 + parent: 14175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13431 components: - type: Transform - pos: -20.287882,-21.551802 - parent: 2 - - uid: 6093 + parent: 14176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13443 components: - type: Transform - pos: -20.655937,-21.371122 - parent: 2 + parent: 14177 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14214 + components: + - type: Transform + parent: 14178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14676 + components: + - type: Transform + parent: 14179 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesBootsWork entities: - uid: 6095 @@ -39505,6 +39508,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,41.5 parent: 2 + - uid: 17483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 - proto: ComputerId entities: - uid: 6146 @@ -39670,12 +39679,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 6171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 2 - uid: 6172 components: - type: Transform @@ -39688,14 +39691,20 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,33.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - uid: 6174 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-7.5 parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 6171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 - uid: 6175 components: - type: Transform @@ -40460,15 +40469,11 @@ entities: - type: Transform pos: 16.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6283 components: - type: Transform pos: 18.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: CyborgEndoskeleton entities: - uid: 6284 @@ -45830,7 +45835,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -45842,10 +45846,11 @@ entities: transformed: True currentReagent: metamorphicChangeColor: True - id: GinTonic + metamorphicFillBaseName: null flavor: gintonic flavorMinimum: 0.1 slippery: False + fizziness: 0 viscosity: 0 worksOnTheDead: False metabolisms: @@ -45904,13 +45909,11 @@ entities: referenceDistance: 1 rolloffFactor: 1 maxDistance: 20 - busName: Master pitch: 1 volume: 0 - attenuation: LinearDistanceClamped collection: FootstepWater + id: GinTonic name: reagent-name-gin-tonic - metamorphicFillBaseName: null group: Drinks parent: - BaseAlcohol @@ -45938,7 +45941,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -45950,10 +45952,11 @@ entities: transformed: True currentReagent: metamorphicChangeColor: True - id: WhiskeyCola + metamorphicFillBaseName: null flavor: whiskeycola flavorMinimum: 0.1 slippery: False + fizziness: 0 viscosity: 0 worksOnTheDead: False metabolisms: @@ -46012,13 +46015,11 @@ entities: referenceDistance: 1 rolloffFactor: 1 maxDistance: 20 - busName: Master pitch: 1 volume: 0 - attenuation: LinearDistanceClamped collection: FootstepWater + id: WhiskeyCola name: reagent-name-whiskey-cola - metamorphicFillBaseName: null group: Drinks parent: - BaseAlcohol @@ -46083,7 +46084,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46102,7 +46102,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46121,7 +46120,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46165,7 +46163,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46184,7 +46181,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46206,7 +46202,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46225,7 +46220,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -46423,6 +46417,12 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 6088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,9.5 + parent: 2 - uid: 7189 components: - type: Transform @@ -46536,13 +46536,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 2 - - uid: 7210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,22.5 + pos: -50.5,19.5 parent: 2 - uid: 7211 components: @@ -47077,6 +47071,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-38.5 parent: 2 + - uid: 11380 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 7308 @@ -47295,8 +47294,6 @@ entities: - 7454 - 7455 - 7450 - - type: AtmosDevice - joinedGrid: 2 - uid: 7337 components: - type: Transform @@ -47309,8 +47306,6 @@ entities: - 7464 - 7462 - 7463 - - type: AtmosDevice - joinedGrid: 2 - uid: 7338 components: - type: Transform @@ -47325,8 +47320,6 @@ entities: - 7542 - 7561 - 7560 - - type: AtmosDevice - joinedGrid: 2 - uid: 7339 components: - type: Transform @@ -47337,8 +47330,6 @@ entities: - 7487 - 7488 - 7489 - - type: AtmosDevice - joinedGrid: 2 - uid: 7340 components: - type: Transform @@ -47352,8 +47343,6 @@ entities: - 7467 - 7435 - 7379 - - type: AtmosDevice - joinedGrid: 2 - uid: 7341 components: - type: Transform @@ -47372,8 +47361,6 @@ entities: - 7410 - 7524 - 7523 - - type: AtmosDevice - joinedGrid: 2 - uid: 7342 components: - type: Transform @@ -47385,8 +47372,6 @@ entities: - 7382 - 7525 - 7526 - - type: AtmosDevice - joinedGrid: 2 - uid: 7343 components: - type: Transform @@ -47400,8 +47385,6 @@ entities: - 7384 - 7475 - 7476 - - type: AtmosDevice - joinedGrid: 2 - uid: 7344 components: - type: Transform @@ -47414,8 +47397,6 @@ entities: - 7552 - 7553 - 7554 - - type: AtmosDevice - joinedGrid: 2 - uid: 7345 components: - type: Transform @@ -47434,8 +47415,6 @@ entities: - 7459 - 7458 - 7358 - - type: AtmosDevice - joinedGrid: 2 - uid: 7346 components: - type: Transform @@ -47450,8 +47429,6 @@ entities: - 7371 - 7531 - 7530 - - type: AtmosDevice - joinedGrid: 2 - uid: 7347 components: - type: Transform @@ -47466,8 +47443,6 @@ entities: - 7436 - 7393 - 7392 - - type: AtmosDevice - joinedGrid: 2 - uid: 7349 components: - type: Transform @@ -47480,8 +47455,6 @@ entities: - 7529 - 7533 - 7532 - - type: AtmosDevice - joinedGrid: 2 - uid: 7350 components: - type: Transform @@ -47499,8 +47472,6 @@ entities: - 7468 - 7473 - 7474 - - type: AtmosDevice - joinedGrid: 2 - uid: 7351 components: - type: Transform @@ -47511,8 +47482,6 @@ entities: - 7371 - 7372 - 7381 - - type: AtmosDevice - joinedGrid: 2 - uid: 7352 components: - type: Transform @@ -47526,8 +47495,6 @@ entities: - 7456 - 7459 - 7458 - - type: AtmosDevice - joinedGrid: 2 - uid: 7353 components: - type: Transform @@ -47544,8 +47511,6 @@ entities: - 7416 - 441 - 442 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 7354 @@ -49160,7 +49125,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 10 name: null @@ -49449,8 +49413,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7684 @@ -49461,8 +49423,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7685 @@ -49470,15 +49430,11 @@ entities: - type: Transform pos: -56.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7686 components: - type: Transform pos: -56.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasFilterFlipped entities: - uid: 7687 @@ -49489,8 +49445,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7688 @@ -49501,8 +49455,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7689 @@ -49513,8 +49465,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7690 @@ -49525,8 +49475,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7691 @@ -49537,8 +49485,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasMinerCarbonDioxide @@ -49548,8 +49494,6 @@ entities: - type: Transform pos: 6.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerNitrogenStation entities: - uid: 7692 @@ -49557,8 +49501,6 @@ entities: - type: Transform pos: 6.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygen entities: - uid: 7693 @@ -49566,8 +49508,6 @@ entities: - type: Transform pos: 6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixer entities: - uid: 7696 @@ -49581,8 +49521,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 7697 @@ -49591,8 +49529,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 7698 @@ -49603,8 +49539,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7699 @@ -49615,8 +49549,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasOutletInjector @@ -49626,31 +49558,23 @@ entities: - type: Transform pos: -61.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7701 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7702 components: - type: Transform pos: -54.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7703 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7707 @@ -49659,8 +49583,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7709 @@ -49669,8 +49591,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7710 @@ -49679,8 +49599,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7711 @@ -49689,8 +49607,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7716 @@ -49699,8 +49615,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 17426 @@ -49709,8 +49623,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - proto: GasPassiveGate @@ -49721,8 +49633,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 7705 @@ -49731,8 +49641,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 7706 @@ -49741,8 +49649,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - proto: GasPassiveVent @@ -49753,8 +49659,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 7712 @@ -49763,38 +49667,28 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7713 components: - type: Transform pos: -55.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7714 components: - type: Transform pos: -62.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7715 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7717 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7719 @@ -49803,8 +49697,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7720 @@ -49813,8 +49705,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#CB00F5FF' - uid: 7721 @@ -49823,8 +49713,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#808080FF' - uid: 7722 @@ -49833,8 +49721,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7723 @@ -49843,8 +49729,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 7724 @@ -49853,8 +49737,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 7725 @@ -49863,8 +49745,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasPipeBend @@ -68636,16 +68516,12 @@ entities: - type: Transform pos: -2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10175 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10177 @@ -68654,24 +68530,18 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10178 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10179 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10180 @@ -68680,8 +68550,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10181 @@ -68690,8 +68558,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10182 @@ -68699,16 +68565,12 @@ entities: - type: Transform pos: -3.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10183 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10184 @@ -68717,24 +68579,18 @@ entities: rot: 3.141592653589793 rad pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10185 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10186 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10187 @@ -68743,8 +68599,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10188 @@ -68752,8 +68606,6 @@ entities: - type: Transform pos: -4.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10189 @@ -68761,8 +68613,6 @@ entities: - type: Transform pos: -5.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10190 @@ -68771,8 +68621,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasPressurePump @@ -68785,8 +68633,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10192 @@ -68797,8 +68643,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-49.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#CB00F5FF' - uid: 10193 @@ -68809,8 +68653,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10194 @@ -68821,8 +68663,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10195 @@ -68833,8 +68673,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10196 @@ -68843,8 +68681,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10197 @@ -68856,8 +68692,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10198 @@ -68870,8 +68704,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 200 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10199 @@ -68884,8 +68716,6 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 80 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 10200 @@ -68896,8 +68726,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10201 @@ -68906,8 +68734,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10202 @@ -68918,8 +68744,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#EE4B2BFF' - uid: 10203 @@ -68930,8 +68754,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#808080FF' - uid: 10204 @@ -68942,8 +68764,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10205 @@ -68953,8 +68773,6 @@ entities: - type: Transform pos: -6.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10206 @@ -68965,8 +68783,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10207 @@ -68977,8 +68793,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10208 @@ -68989,8 +68803,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10209 @@ -69001,8 +68813,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasRecycler @@ -69012,8 +68822,6 @@ entities: - type: Transform pos: 2.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasRecyclerMachineCircuitboard entities: - uid: 10211 @@ -69031,15 +68839,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 10213 components: - type: Transform pos: -8.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 10214 @@ -69050,8 +68854,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00AABBFF' - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeater entities: - uid: 10215 @@ -69059,8 +68861,6 @@ entities: - type: Transform pos: -7.5,-42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 10216 @@ -69071,8 +68871,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10217 @@ -69083,8 +68881,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10218 @@ -69096,8 +68892,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 10219 @@ -69110,8 +68904,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10220 @@ -69122,8 +68914,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - uid: 10221 components: - type: Transform @@ -69132,16 +68922,12 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - uid: 10222 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-51.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: GasVentPump @@ -69152,8 +68938,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10224 @@ -69162,8 +68946,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10225 @@ -69172,8 +68954,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10226 @@ -69181,8 +68961,6 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10227 @@ -69190,8 +68968,6 @@ entities: - type: Transform pos: 9.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10228 @@ -69200,8 +68976,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10229 @@ -69210,8 +68984,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10230 @@ -69220,8 +68992,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10231 @@ -69230,8 +69000,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10232 @@ -69240,8 +69008,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10233 @@ -69249,8 +69015,6 @@ entities: - type: Transform pos: 16.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10234 @@ -69259,8 +69023,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10235 @@ -69268,8 +69030,6 @@ entities: - type: Transform pos: 18.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10236 @@ -69278,8 +69038,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10237 @@ -69288,8 +69046,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10238 @@ -69298,8 +69054,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10239 @@ -69308,8 +69062,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10240 @@ -69317,8 +69069,6 @@ entities: - type: Transform pos: -46.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10241 @@ -69326,8 +69076,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10242 @@ -69336,16 +69084,12 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10243 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10244 @@ -69354,8 +69098,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-75.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10245 @@ -69364,8 +69106,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10246 @@ -69373,8 +69113,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10247 @@ -69383,8 +69121,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10248 @@ -69393,8 +69129,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10249 @@ -69403,8 +69137,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10250 @@ -69413,8 +69145,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10251 @@ -69423,8 +69153,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10252 @@ -69433,8 +69161,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10253 @@ -69443,8 +69169,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10254 @@ -69452,8 +69176,6 @@ entities: - type: Transform pos: 26.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10255 @@ -69461,8 +69183,6 @@ entities: - type: Transform pos: 26.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10256 @@ -69471,8 +69191,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10257 @@ -69480,8 +69198,6 @@ entities: - type: Transform pos: 31.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10258 @@ -69490,8 +69206,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10259 @@ -69500,8 +69214,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10260 @@ -69509,8 +69221,6 @@ entities: - type: Transform pos: -7.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10261 @@ -69518,8 +69228,6 @@ entities: - type: Transform pos: -3.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10262 @@ -69527,8 +69235,6 @@ entities: - type: Transform pos: 35.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10263 @@ -69537,8 +69243,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10264 @@ -69547,8 +69251,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10265 @@ -69557,8 +69259,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10266 @@ -69567,8 +69267,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10267 @@ -69577,8 +69275,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10268 @@ -69587,8 +69283,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10269 @@ -69597,8 +69291,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10270 @@ -69607,8 +69299,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10271 @@ -69616,8 +69306,6 @@ entities: - type: Transform pos: 21.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10272 @@ -69625,8 +69313,6 @@ entities: - type: Transform pos: 18.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10273 @@ -69635,8 +69321,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10274 @@ -69645,8 +69329,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10275 @@ -69655,8 +69337,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10276 @@ -69664,8 +69344,6 @@ entities: - type: Transform pos: 8.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10277 @@ -69674,8 +69352,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10278 @@ -69684,8 +69360,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10279 @@ -69694,8 +69368,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10280 @@ -69704,8 +69376,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10281 @@ -69714,8 +69384,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10282 @@ -69724,8 +69392,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10283 @@ -69734,8 +69400,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10284 @@ -69744,8 +69408,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10285 @@ -69754,8 +69416,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10286 @@ -69764,8 +69424,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10287 @@ -69774,8 +69432,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10288 @@ -69784,8 +69440,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10289 @@ -69794,8 +69448,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10290 @@ -69804,8 +69456,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10291 @@ -69814,8 +69464,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10292 @@ -69824,8 +69472,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10293 @@ -69834,8 +69480,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10294 @@ -69844,8 +69488,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10295 @@ -69853,8 +69495,6 @@ entities: - type: Transform pos: -7.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10296 @@ -69863,8 +69503,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00AABBFF' - uid: 10297 @@ -69873,8 +69511,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10298 @@ -69882,8 +69518,6 @@ entities: - type: Transform pos: -42.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10299 @@ -69892,8 +69526,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10300 @@ -69901,8 +69533,6 @@ entities: - type: Transform pos: -24.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10301 @@ -69911,8 +69541,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10302 @@ -69921,8 +69549,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10303 @@ -69930,8 +69556,6 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10304 @@ -69940,8 +69564,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10305 @@ -69950,8 +69572,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10306 @@ -69960,8 +69580,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10307 @@ -69970,8 +69588,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10308 @@ -69980,8 +69596,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10309 @@ -69990,8 +69604,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10310 @@ -70000,8 +69612,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10311 @@ -70010,8 +69620,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10312 @@ -70020,8 +69628,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10313 @@ -70030,8 +69636,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10314 @@ -70040,8 +69644,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10315 @@ -70050,8 +69652,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#34EB43FF' - uid: 10316 @@ -70060,8 +69660,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10317 @@ -70070,8 +69668,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10318 @@ -70079,8 +69675,6 @@ entities: - type: Transform pos: -20.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10319 @@ -70089,8 +69683,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10320 @@ -70099,8 +69691,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10321 @@ -70108,8 +69698,6 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10322 @@ -70117,8 +69705,6 @@ entities: - type: Transform pos: -44.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10323 @@ -70127,8 +69713,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10324 @@ -70137,8 +69721,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10325 @@ -70146,8 +69728,6 @@ entities: - type: Transform pos: -20.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10326 @@ -70156,8 +69736,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10327 @@ -70166,8 +69744,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10328 @@ -70175,8 +69751,6 @@ entities: - type: Transform pos: -52.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10329 @@ -70184,8 +69758,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10330 @@ -70194,8 +69766,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10331 @@ -70203,8 +69773,6 @@ entities: - type: Transform pos: -22.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10332 @@ -70213,8 +69781,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10333 @@ -70223,8 +69789,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10334 @@ -70232,8 +69796,6 @@ entities: - type: Transform pos: -11.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10335 @@ -70242,8 +69804,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10336 @@ -70252,8 +69812,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10337 @@ -70262,8 +69820,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10338 @@ -70272,8 +69828,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10339 @@ -70281,8 +69835,6 @@ entities: - type: Transform pos: -41.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10340 @@ -70291,8 +69843,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10341 @@ -70301,8 +69851,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10342 @@ -70311,8 +69859,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10343 @@ -70321,8 +69867,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10344 @@ -70331,8 +69875,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10345 @@ -70341,8 +69883,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10346 @@ -70351,8 +69891,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10347 @@ -70360,8 +69898,6 @@ entities: - type: Transform pos: -42.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10348 @@ -70370,8 +69906,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10349 @@ -70380,8 +69914,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10350 @@ -70389,8 +69921,6 @@ entities: - type: Transform pos: -19.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10351 @@ -70399,8 +69929,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10352 @@ -70409,8 +69937,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10353 @@ -70419,8 +69945,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,47.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10354 @@ -70429,8 +69953,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10355 @@ -70439,8 +69961,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10356 @@ -70449,8 +69969,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10357 @@ -70459,8 +69977,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10358 @@ -70469,8 +69985,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10359 @@ -70479,8 +69993,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10360 @@ -70489,8 +70001,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10361 @@ -70498,8 +70008,6 @@ entities: - type: Transform pos: -38.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10362 @@ -70508,8 +70016,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10363 @@ -70518,8 +70024,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10364 @@ -70527,8 +70031,6 @@ entities: - type: Transform pos: 27.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10365 @@ -70537,8 +70039,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10366 @@ -70547,8 +70047,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10367 @@ -70557,8 +70055,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10368 @@ -70567,8 +70063,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10369 @@ -70576,8 +70070,6 @@ entities: - type: Transform pos: -20.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10370 @@ -70586,8 +70078,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10371 @@ -70596,8 +70086,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10372 @@ -70606,8 +70094,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10373 @@ -70616,8 +70102,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10374 @@ -70625,8 +70109,6 @@ entities: - type: Transform pos: -34.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10376 @@ -70634,8 +70116,6 @@ entities: - type: Transform pos: -33.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10377 @@ -70644,8 +70124,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10378 @@ -70654,8 +70132,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10379 @@ -70663,8 +70139,6 @@ entities: - type: Transform pos: -46.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10380 @@ -70672,8 +70146,6 @@ entities: - type: Transform pos: -45.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10381 @@ -70682,8 +70154,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10382 @@ -70692,8 +70162,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10383 @@ -70702,8 +70170,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10384 @@ -70712,8 +70178,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10385 @@ -70721,8 +70185,6 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10386 @@ -70730,8 +70192,6 @@ entities: - type: Transform pos: -36.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10387 @@ -70740,8 +70200,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10388 @@ -70749,8 +70207,6 @@ entities: - type: Transform pos: -14.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10389 @@ -70759,8 +70215,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10390 @@ -70769,8 +70223,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10391 @@ -70779,8 +70231,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10392 @@ -70789,8 +70239,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10393 @@ -70799,8 +70247,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10394 @@ -70808,8 +70254,6 @@ entities: - type: Transform pos: -43.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10395 @@ -70818,8 +70262,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10396 @@ -70828,8 +70270,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10397 @@ -70838,8 +70278,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10398 @@ -70848,8 +70286,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10399 @@ -70857,8 +70293,6 @@ entities: - type: Transform pos: -17.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10400 @@ -70866,8 +70300,6 @@ entities: - type: Transform pos: -11.5,-74.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10401 @@ -70876,8 +70308,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10402 @@ -70886,8 +70316,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10403 @@ -70896,8 +70324,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10404 @@ -70906,8 +70332,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10405 @@ -70916,8 +70340,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10406 @@ -70926,8 +70348,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10407 @@ -70935,8 +70355,6 @@ entities: - type: Transform pos: -1.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10408 @@ -70944,8 +70362,6 @@ entities: - type: Transform pos: -5.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - proto: GasVentScrubber @@ -70956,8 +70372,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,41.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10410 @@ -70966,8 +70380,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10411 @@ -70976,8 +70388,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10412 @@ -70986,8 +70396,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10413 @@ -70996,8 +70404,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10414 @@ -71006,8 +70412,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10415 @@ -71016,8 +70420,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10416 @@ -71026,8 +70428,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10417 @@ -71036,8 +70436,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10418 @@ -71046,8 +70444,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10419 @@ -71056,8 +70452,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10420 @@ -71065,8 +70459,6 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10421 @@ -71075,8 +70467,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10422 @@ -71085,8 +70475,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10423 @@ -71094,8 +70482,6 @@ entities: - type: Transform pos: -33.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10424 @@ -71103,8 +70489,6 @@ entities: - type: Transform pos: -40.5,42.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10425 @@ -71113,8 +70497,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10426 @@ -71123,8 +70505,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10427 @@ -71132,8 +70512,6 @@ entities: - type: Transform pos: -55.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10428 @@ -71142,8 +70520,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10429 @@ -71152,8 +70528,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10430 @@ -71161,8 +70535,6 @@ entities: - type: Transform pos: -7.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10431 @@ -71171,8 +70543,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10432 @@ -71181,8 +70551,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10433 @@ -71191,8 +70559,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10434 @@ -71200,8 +70566,6 @@ entities: - type: Transform pos: -11.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10435 @@ -71210,8 +70574,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10436 @@ -71220,8 +70582,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10437 @@ -71230,8 +70590,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10438 @@ -71240,8 +70598,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10439 @@ -71250,8 +70606,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10440 @@ -71260,8 +70614,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10441 @@ -71270,8 +70622,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10442 @@ -71279,8 +70629,6 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10443 @@ -71289,8 +70637,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10444 @@ -71299,8 +70645,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10445 @@ -71309,8 +70653,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10446 @@ -71318,8 +70660,6 @@ entities: - type: Transform pos: 20.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10447 @@ -71328,8 +70668,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10448 @@ -71337,8 +70675,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10449 @@ -71346,8 +70682,6 @@ entities: - type: Transform pos: 27.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10450 @@ -71356,8 +70690,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10451 @@ -71366,8 +70698,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10452 @@ -71376,8 +70706,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10453 @@ -71385,8 +70713,6 @@ entities: - type: Transform pos: 33.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10454 @@ -71395,8 +70721,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10455 @@ -71404,8 +70728,6 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10456 @@ -71414,8 +70736,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10457 @@ -71423,8 +70743,6 @@ entities: - type: Transform pos: 40.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10458 @@ -71432,8 +70750,6 @@ entities: - type: Transform pos: 32.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10459 @@ -71442,8 +70758,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10460 @@ -71452,8 +70766,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10461 @@ -71462,8 +70774,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10462 @@ -71472,8 +70782,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10463 @@ -71482,8 +70790,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10464 @@ -71492,8 +70798,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10465 @@ -71501,8 +70805,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10466 @@ -71511,8 +70813,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10467 @@ -71521,8 +70821,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10468 @@ -71530,8 +70828,6 @@ entities: - type: Transform pos: 21.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10469 @@ -71540,8 +70836,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10470 @@ -71549,8 +70843,6 @@ entities: - type: Transform pos: 13.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10471 @@ -71558,8 +70850,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10472 @@ -71568,8 +70858,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10473 @@ -71578,8 +70866,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10474 @@ -71588,8 +70874,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10475 @@ -71598,8 +70882,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10476 @@ -71607,8 +70889,6 @@ entities: - type: Transform pos: 13.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10477 @@ -71617,8 +70897,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10478 @@ -71627,8 +70905,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10479 @@ -71636,8 +70912,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10480 @@ -71646,8 +70920,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10481 @@ -71656,8 +70928,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10482 @@ -71665,8 +70935,6 @@ entities: - type: Transform pos: 0.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10483 @@ -71675,8 +70943,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10484 @@ -71684,8 +70950,6 @@ entities: - type: Transform pos: 20.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10485 @@ -71693,8 +70957,6 @@ entities: - type: Transform pos: -5.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10486 @@ -71703,8 +70965,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10487 @@ -71713,8 +70973,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10488 @@ -71723,8 +70981,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10489 @@ -71733,8 +70989,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10490 @@ -71742,8 +70996,6 @@ entities: - type: Transform pos: -14.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10491 @@ -71752,8 +71004,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10492 @@ -71762,8 +71012,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10493 @@ -71771,8 +71019,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10494 @@ -71781,8 +71027,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10495 @@ -71790,8 +71034,6 @@ entities: - type: Transform pos: -22.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10496 @@ -71800,8 +71042,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10497 @@ -71810,8 +71050,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10498 @@ -71820,8 +71058,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10499 @@ -71830,8 +71066,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10500 @@ -71840,8 +71074,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10501 @@ -71850,8 +71082,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10502 @@ -71860,8 +71090,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10503 @@ -71870,8 +71098,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10504 @@ -71880,8 +71106,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10505 @@ -71889,8 +71113,6 @@ entities: - type: Transform pos: -32.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10506 @@ -71898,8 +71120,6 @@ entities: - type: Transform pos: -36.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10507 @@ -71908,8 +71128,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10508 @@ -71917,8 +71135,6 @@ entities: - type: Transform pos: -42.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10509 @@ -71927,8 +71143,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10510 @@ -71937,8 +71151,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10511 @@ -71947,8 +71159,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10512 @@ -71957,8 +71167,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10513 @@ -71967,8 +71175,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10514 @@ -71977,8 +71183,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10515 @@ -71986,8 +71190,6 @@ entities: - type: Transform pos: -58.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10516 @@ -71996,8 +71198,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10517 @@ -72005,8 +71205,6 @@ entities: - type: Transform pos: -52.5,-12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10518 @@ -72014,8 +71212,6 @@ entities: - type: Transform pos: -47.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10519 @@ -72023,8 +71219,6 @@ entities: - type: Transform pos: -52.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10520 @@ -72033,8 +71227,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10521 @@ -72043,8 +71235,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10522 @@ -72053,8 +71243,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10523 @@ -72063,8 +71251,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10524 @@ -72073,8 +71259,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10525 @@ -72083,8 +71267,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10526 @@ -72093,8 +71275,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10527 @@ -72102,8 +71282,6 @@ entities: - type: Transform pos: -28.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10528 @@ -72112,8 +71290,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10529 @@ -72122,8 +71298,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10530 @@ -72132,8 +71306,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10531 @@ -72142,8 +71314,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10532 @@ -72152,8 +71322,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10533 @@ -72162,8 +71330,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10534 @@ -72171,8 +71337,6 @@ entities: - type: Transform pos: -42.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10535 @@ -72180,8 +71344,6 @@ entities: - type: Transform pos: -35.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10536 @@ -72190,8 +71352,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10537 @@ -72199,8 +71359,6 @@ entities: - type: Transform pos: -49.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10538 @@ -72209,8 +71367,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10539 @@ -72219,8 +71375,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10540 @@ -72228,8 +71382,6 @@ entities: - type: Transform pos: -16.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10541 @@ -72238,8 +71390,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10542 @@ -72247,8 +71397,6 @@ entities: - type: Transform pos: -24.5,40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10543 @@ -72256,8 +71404,6 @@ entities: - type: Transform pos: -26.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10544 @@ -72265,8 +71411,6 @@ entities: - type: Transform pos: -15.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10545 @@ -72274,8 +71418,6 @@ entities: - type: Transform pos: -19.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10546 @@ -72284,8 +71426,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10547 @@ -72293,8 +71433,6 @@ entities: - type: Transform pos: -8.5,43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10548 @@ -72302,8 +71440,6 @@ entities: - type: Transform pos: 0.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10549 @@ -72311,8 +71447,6 @@ entities: - type: Transform pos: 3.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10550 @@ -72320,8 +71454,6 @@ entities: - type: Transform pos: -40.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10551 @@ -72329,8 +71461,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10552 @@ -72339,8 +71469,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10553 @@ -72349,8 +71477,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10554 @@ -72358,8 +71484,6 @@ entities: - type: Transform pos: -9.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10555 @@ -72368,8 +71492,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10556 @@ -72377,8 +71499,6 @@ entities: - type: Transform pos: -46.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10557 @@ -72387,8 +71507,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10558 @@ -72396,8 +71514,6 @@ entities: - type: Transform pos: -37.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10559 @@ -72406,8 +71522,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10561 @@ -72415,8 +71529,6 @@ entities: - type: Transform pos: -31.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10562 @@ -72425,8 +71537,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10563 @@ -72435,8 +71545,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10564 @@ -72445,8 +71553,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10565 @@ -72455,8 +71561,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10566 @@ -72465,8 +71569,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10567 @@ -72475,8 +71577,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10568 @@ -72485,8 +71585,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10569 @@ -72495,8 +71593,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10570 @@ -72505,8 +71601,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10571 @@ -72515,8 +71609,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10572 @@ -72524,8 +71616,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10573 @@ -72533,8 +71623,6 @@ entities: - type: Transform pos: -12.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - uid: 10574 @@ -72543,8 +71631,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10575 @@ -72553,8 +71639,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10576 @@ -72563,8 +71647,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10577 @@ -72573,8 +71655,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10578 @@ -72583,8 +71663,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10579 @@ -72592,8 +71670,6 @@ entities: - type: Transform pos: 10.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10580 @@ -72602,8 +71678,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10581 @@ -72612,8 +71686,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10582 @@ -72622,8 +71694,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - uid: 10583 @@ -72632,8 +71702,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-48.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10584 @@ -72642,8 +71710,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - uid: 10585 @@ -72652,8 +71718,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' - proto: GasVolumePump @@ -72664,8 +71728,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10587 @@ -72676,8 +71738,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-40.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - uid: 10588 @@ -72688,8 +71748,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10589 @@ -72700,8 +71758,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' - uid: 10590 @@ -72710,8 +71766,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' - proto: Gauze @@ -72884,11 +71938,26 @@ entities: parent: 2 - proto: Grille entities: + - uid: 5643 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 - uid: 5822 components: - type: Transform pos: -32.5,17.5 parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 - uid: 10613 components: - type: Transform @@ -76898,21 +75967,6 @@ entities: - type: Transform pos: -43.5,16.5 parent: 2 - - uid: 11380 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 11381 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - pos: -52.5,15.5 - parent: 2 - uid: 11383 components: - type: Transform @@ -76923,16 +75977,6 @@ entities: - type: Transform pos: -52.5,17.5 parent: 2 - - uid: 11385 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 11386 - components: - - type: Transform - pos: -54.5,20.5 - parent: 2 - uid: 11387 components: - type: Transform @@ -77207,11 +76251,6 @@ entities: - type: Transform pos: -51.5,28.5 parent: 2 - - uid: 11442 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - uid: 11443 components: - type: Transform @@ -77531,6 +76570,21 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-46.5 parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 12133 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 - uid: 15024 components: - type: Transform @@ -78109,6 +77163,18 @@ entities: - type: Transform pos: -43.5,-0.5 parent: 2 +- proto: HandheldStationMap + entities: + - uid: 17478 + components: + - type: Transform + pos: -20.41225,-25.227034 + parent: 2 + - uid: 17480 + components: + - type: Transform + pos: -10.479895,-30.344042 + parent: 2 - proto: HandLabeler entities: - uid: 11631 @@ -78769,7 +77835,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -78788,7 +77853,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -78796,6 +77860,20 @@ entities: - data: null ReagentId: Oxygen Quantity: 200 +- proto: Jukebox + entities: + - uid: 17477 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 +- proto: JukeboxCircuitBoard + entities: + - uid: 15760 + components: + - type: Transform + pos: -3.5105395,-3.0565822 + parent: 2 - proto: KitchenDeepFryer entities: - uid: 11744 @@ -80034,13 +79112,16 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 54 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 - uid: 11949 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NitrousOxideCanister entities: - uid: 11950 @@ -80048,15 +79129,11 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11951 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NoticeBoard entities: - uid: 12888 @@ -80132,34 +79209,31 @@ entities: parent: 2 - proto: OxygenCanister entities: + - uid: 57 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 - uid: 11962 components: - type: Transform pos: -36.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11963 components: - type: Transform pos: 4.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11964 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11965 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PaintingAmogusTriptych entities: - uid: 11966 @@ -80811,8 +79885,6 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 12075 @@ -80940,6 +80012,11 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: + - uid: 11442 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 - uid: 12095 components: - type: Transform @@ -81156,11 +80233,6 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 12133 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - uid: 12134 components: - type: Transform @@ -81173,6 +80245,11 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 + - uid: 17481 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 - proto: PosterLegitMedicate entities: - uid: 12136 @@ -81646,6 +80723,18 @@ entities: parent: 2 - proto: Poweredlight entities: + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,16.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,13.5 + parent: 2 - uid: 10626 components: - type: Transform @@ -81858,18 +80947,6 @@ entities: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 12250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,20.5 - parent: 2 - - uid: 12251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 2 - uid: 12252 components: - type: Transform @@ -83291,17 +82368,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-16.5 parent: 2 - - uid: 12501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,15.5 - parent: 2 - - uid: 12502 - components: - - type: Transform - pos: -51.5,17.5 - parent: 2 - uid: 12503 components: - type: Transform @@ -83455,6 +82521,17 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-37.5 parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,21.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 12529 @@ -84251,7 +83328,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84270,7 +83346,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84289,7 +83364,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84308,7 +83382,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84327,7 +83400,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84346,7 +83418,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -84635,11 +83706,6 @@ entities: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 12724 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - uid: 12725 components: - type: Transform @@ -85416,11 +84482,6 @@ entities: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 12112 - components: - - type: Transform - pos: -51.5,10.5 - parent: 2 - uid: 12861 components: - type: Transform @@ -87038,11 +86099,36 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 5593 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 - uid: 10176 components: - type: Transform pos: 6.5,-27.5 parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 - uid: 12885 components: - type: Transform @@ -87753,11 +86839,6 @@ entities: - type: Transform pos: -37.5,-25.5 parent: 2 - - uid: 13305 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - uid: 13306 components: - type: Transform @@ -87979,18 +87060,6 @@ entities: - type: Transform pos: -41.5,36.5 parent: 2 - - uid: 13350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,12.5 - parent: 2 - - uid: 13351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,15.5 - parent: 2 - uid: 13352 components: - type: Transform @@ -88172,12 +87241,6 @@ entities: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 13388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,20.5 - parent: 2 - uid: 13389 components: - type: Transform @@ -88380,11 +87443,6 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 2 - - uid: 13431 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - uid: 13432 components: - type: Transform @@ -88440,11 +87498,6 @@ entities: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 13443 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - uid: 13444 components: - type: Transform @@ -88496,6 +87549,11 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-46.5 parent: 2 + - uid: 17474 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 13453 @@ -88645,6 +87703,11 @@ entities: - type: Transform pos: 17.5,9.5 parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 - uid: 5940 components: - type: Transform @@ -88690,20 +87753,15 @@ entities: - type: Transform pos: -6.5,28.5 parent: 2 - - uid: 12110 - components: - - type: Transform - pos: -51.5,18.5 - parent: 2 - - uid: 12259 + - uid: 13918 components: - type: Transform - pos: -51.5,14.5 + pos: 2.5,5.5 parent: 2 - - uid: 13918 + - uid: 15992 components: - type: Transform - pos: 2.5,5.5 + pos: -51.5,19.5 parent: 2 - uid: 16349 components: @@ -89046,6 +88104,15 @@ entities: - type: Transform pos: 39.844673,5.9532356 parent: 2 +- proto: SheetRPGlass1 + entities: + - uid: 17476 + components: + - type: Transform + pos: -54.30088,37.209225 + parent: 2 + - type: Stack + count: 5 - proto: SheetSteel entities: - uid: 13528 @@ -91630,6 +90697,8 @@ entities: - type: Transform pos: -49.5,-12.5 parent: 2 + - type: SpamEmitSound + enabled: False - proto: SpareIdCabinetFilled entities: - uid: 16973 @@ -92749,6 +91818,11 @@ entities: - type: Transform pos: -31.5,21.5 parent: 2 + - uid: 17479 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 - proto: SteelBench entities: - uid: 14090 @@ -93113,43 +92187,31 @@ entities: - type: Transform pos: -3.5,-44.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5714 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14153 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14154 components: - type: Transform pos: -54.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14155 components: - type: Transform pos: -55.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 14156 components: - type: Transform pos: -56.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: SubstationBasic entities: - uid: 14158 @@ -93253,41 +92315,241 @@ entities: - type: Transform pos: -25.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: + - 13305 - uid: 14173 components: - type: Transform pos: -24.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: + - 13350 - uid: 14174 components: - type: Transform pos: -25.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: + - 13351 - uid: 14175 components: - type: Transform pos: -24.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: + - 13388 - uid: 14176 components: - type: Transform pos: -22.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: + - 13431 - uid: 14177 components: - type: Transform pos: -23.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: + - 13443 - uid: 14178 components: - type: Transform pos: -23.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: + - 14214 - uid: 14179 components: - type: Transform pos: -22.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: + - 14676 - uid: 14180 components: - type: Transform @@ -93606,27 +92868,27 @@ entities: id: canisters - proto: SurveillanceCameraGeneral entities: - - uid: 14213 + - uid: 12251 components: - type: Transform - pos: -11.5,3.5 + rot: -1.5707963267948966 rad + pos: -50.5,19.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: south kitchen - - uid: 14214 + id: evac + - uid: 14213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,18.5 + pos: -11.5,3.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: evac + id: south kitchen - uid: 14215 components: - type: Transform @@ -96601,6 +95863,11 @@ entities: - type: Transform pos: 6.6968956,7.356404 parent: 2 + - uid: 17482 + components: + - type: Transform + pos: -20.651834,-25.64399 + parent: 2 - proto: ToolboxGoldFilled entities: - uid: 14672 @@ -96617,6 +95884,11 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: + - uid: 12259 + components: + - type: Transform + pos: -53.843914,36.94062 + parent: 2 - uid: 14674 components: - type: Transform @@ -96627,11 +95899,6 @@ entities: - type: Transform pos: -41.22711,-6.611117 parent: 2 - - uid: 14676 - components: - - type: Transform - pos: -49.65051,32.736427 - parent: 2 - uid: 14677 components: - type: Transform @@ -97139,17 +96406,19 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 2 -- proto: VendingMachineDonut +- proto: VendingMachineDiscount entities: - - uid: 14740 + - uid: 15765 components: - type: Transform - pos: -25.5,-2.5 + pos: -51.5,-11.5 parent: 2 - - uid: 14741 +- proto: VendingMachineDonut + entities: + - uid: 14740 components: - type: Transform - pos: -51.5,-11.5 + pos: -25.5,-2.5 parent: 2 - proto: VendingMachineEngiDrobe entities: @@ -97401,6 +96670,51 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 182 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 - uid: 10710 components: - type: Transform @@ -97416,6 +96730,11 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 2 + - uid: 11385 + components: + - type: Transform + pos: -54.5,23.5 + parent: 2 - uid: 11396 components: - type: Transform @@ -97426,6 +96745,16 @@ entities: - type: Transform pos: 8.5,-25.5 parent: 2 + - uid: 12250 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 - uid: 14778 components: - type: Transform @@ -102585,12 +101914,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 - - uid: 15760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 2 - uid: 15761 components: - type: Transform @@ -102615,12 +101938,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 - - uid: 15765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,10.5 - parent: 2 - uid: 15766 components: - type: Transform @@ -102704,8 +102021,7 @@ entities: - uid: 15782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,22.5 + pos: -53.5,15.5 parent: 2 - uid: 15783 components: @@ -102732,12 +102048,6 @@ entities: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 15788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,22.5 - parent: 2 - uid: 15789 components: - type: Transform @@ -102803,12 +102113,6 @@ entities: - type: Transform pos: 0.5,43.5 parent: 2 - - uid: 15802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 2 - uid: 15803 components: - type: Transform @@ -103267,41 +102571,20 @@ entities: - type: Transform pos: -38.5,48.5 parent: 2 - - uid: 15893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,18.5 - parent: 2 - uid: 15894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,14.5 + pos: -53.5,11.5 parent: 2 - uid: 15895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,22.5 + pos: -54.5,19.5 parent: 2 - uid: 15896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,18.5 - parent: 2 - - uid: 15897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,18.5 - parent: 2 - - uid: 15898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,10.5 + pos: -52.5,11.5 parent: 2 - uid: 15899 components: @@ -103798,41 +103081,11 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,45.5 parent: 2 - - uid: 15992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,10.5 - parent: 2 - - uid: 15993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,10.5 - parent: 2 - - uid: 15994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,14.5 - parent: 2 - uid: 15995 components: - type: Transform pos: -37.5,4.5 parent: 2 - - uid: 15996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,18.5 - parent: 2 - - uid: 15997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,22.5 - parent: 2 - uid: 15998 components: - type: Transform @@ -108490,8 +107743,6 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: WeaponCapacitorRecharger entities: - uid: 16890 diff --git a/Resources/Maps/hammurabi.yml b/Resources/Maps/hammurabi.yml index 022c647ba76..070d289a8f0 100644 --- a/Resources/Maps/hammurabi.yml +++ b/Resources/Maps/hammurabi.yml @@ -39,6 +39,7 @@ tilemap: 60: FloorHullReinforced 61: FloorHydro 62: FloorIce + 1: FloorJungleAstroGrass 63: FloorKitchen 64: FloorLaundry 65: FloorLino @@ -84,167 +85,167 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: PQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAADJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAADUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAA + tiles: PQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAAAJQAAAAABJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAAAJQAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAADJQAAAAABUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAABJQAAAAABJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: UAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAABJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAADJQAAAAABJQAAAAADJQAAAAAAJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAADJQAAAAACJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAdgAAAAABfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAdgAAAAACdgAAAAABdgAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAdgAAAAACdgAAAAACdgAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAdgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: UAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAACJQAAAAABJQAAAAACJQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAADJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAABJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAdgAAAAADfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAdgAAAAAAdgAAAAADdgAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAdgAAAAADdgAAAAADdgAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAdgAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,0: ind: 0,0 - tiles: UgAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAADUgAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAADUgAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAACUgAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABJQAAAAACJQAAAAABJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAACUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAbwAAAAADUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: UgAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAADUgAAAAAAfwAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAABJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAADUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAbwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAZQAAAAAAbwAAAAADXgAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAADZQAAAAAAXgAAAAACXgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAADUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAACUgAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAADUgAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAACJQAAAAADJQAAAAAAJQAAAAABJQAAAAADJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAZQAAAAAAbwAAAAADXgAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAACZQAAAAAAXgAAAAABXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAADUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAACUgAAAAAAfwAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAABJQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAACUgAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAAUgAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAXgAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: XgAAAAACUAAAAAAAIAAAAAABIAAAAAADIAAAAAABfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAABUAAAAAAAcQAAAAADcQAAAAACXgAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADcQAAAAACcQAAAAADcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAAAcQAAAAACXgAAAAADUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADUAAAAAAAcQAAAAABcQAAAAABcQAAAAADUAAAAAAAcQAAAAABcQAAAAADcQAAAAACUAAAAAAAcQAAAAACcQAAAAADXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAKQAAAAADKQAAAAADKQAAAAABfwAAAAAAcQAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAACfwAAAAAAKQAAAAABKQAAAAADKQAAAAAAKQAAAAADcQAAAAACcQAAAAAAcQAAAAACcQAAAAACfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAADfwAAAAAAKQAAAAACKQAAAAAAKQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAA + tiles: XgAAAAAAUAAAAAAAIAAAAAABIAAAAAAAIAAAAAACfwAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAABcQAAAAAAcQAAAAADUAAAAAAAcQAAAAAAcQAAAAACXgAAAAADUAAAAAAAIAAAAAABIAAAAAACIAAAAAADcQAAAAADcQAAAAADcQAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAABcQAAAAADcQAAAAACXgAAAAADUAAAAAAAIAAAAAADIAAAAAABIAAAAAABUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAACUAAAAAAAcQAAAAADcQAAAAAAcQAAAAABUAAAAAAAcQAAAAACcQAAAAADXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAADcQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAABfwAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAACcQAAAAAAcQAAAAADcQAAAAACcQAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAAAfwAAAAAAKQAAAAABKQAAAAACKQAAAAADfwAAAAAAcQAAAAABcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADfwAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fwAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAXgAAAAACfwAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAABIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAACIAAAAAACIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAACIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAACZQAAAAAA + tiles: fwAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAUAAAAAAAXgAAAAADfwAAAAAAXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAADIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAIAAAAAABIAAAAAABIAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAZQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAAANQAAAAADNQAAAAACfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAACfwAAAAAAaQAAAAABaQAAAAACaQAAAAABaQAAAAACaQAAAAACfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAACIQAAAAACfwAAAAAAaQAAAAADaQAAAAAAaQAAAAACaQAAAAABaQAAAAACfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAADIQAAAAADfwAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAADaQAAAAACfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAAAIQAAAAACfwAAAAAAaQAAAAACaQAAAAAAaQAAAAADaQAAAAAAaQAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAACIQAAAAABfwAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAABaQAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAACJQAAAAAAJQAAAAAD + tiles: PQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAAANQAAAAABNQAAAAACfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAADIQAAAAADfwAAAAAAaQAAAAADaQAAAAACaQAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAADIQAAAAAAfwAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAADaQAAAAACfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAADIQAAAAAAfwAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAABaQAAAAACfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAAAIQAAAAABfwAAAAAAaQAAAAAAaQAAAAACaQAAAAADaQAAAAADaQAAAAABfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAABIQAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAADaQAAAAAAaQAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAJQAAAAAAJQAAAAADJQAAAAAC version: 6 -2,0: ind: -2,0 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAJQAAAAADJQAAAAADJQAAAAADUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABPwAAAAAAPwAAAAAAUwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAJQAAAAADJQAAAAABJQAAAAADUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACPwAAAAAAPwAAAAAAUwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAQwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABfwAAAAAAbQAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAA version: 6 1,0: ind: 1,0 - tiles: XgAAAAACXgAAAAADXgAAAAABQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAACXgAAAAABXgAAAAACQwAAAAAAQwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABQwAAAAAAQwAAAAAAXgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAQwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAACXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAACXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAQwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAXgAAAAACfwAAAAAAZQAAAAAAXgAAAAAAXgAAAAACXgAAAAADZQAAAAAAZQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAACXgAAAAABUgAAAAAAUgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAXgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAADXgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbwAAAAACQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAXgAAAAABQwAAAAAAQwAAAAAAXgAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAADXgAAAAACQwAAAAAAQwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAABXgAAAAABfwAAAAAAZQAAAAAAXgAAAAADXgAAAAACXgAAAAABZQAAAAAAZQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAADXgAAAAADUgAAAAAAUgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAABXgAAAAACfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAACQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAACXgAAAAADQwAAAAAAQwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAADUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAXgAAAAADXgAAAAACZQAAAAAAbwAAAAADZQAAAAAAZQAAAAAAXgAAAAABZQAAAAAAXgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADZQAAAAAAbwAAAAADXgAAAAADZQAAAAAAXgAAAAADZQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAADZQAAAAAAXgAAAAAAbwAAAAABXgAAAAABZQAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAXgAAAAABXgAAAAACXgAAAAADfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAACZQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABZQAAAAAAZQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAACfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAACfQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAXgAAAAACXgAAAAABZQAAAAAAbwAAAAADZQAAAAAAZQAAAAAAXgAAAAACZQAAAAAAXgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAbwAAAAABXgAAAAAAZQAAAAAAXgAAAAADZQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAACXgAAAAACZQAAAAAAXgAAAAADbwAAAAAAXgAAAAACZQAAAAAAXgAAAAAAXgAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADZQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAABfQAAAAACfQAAAAAAfQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAAAfQAAAAACfQAAAAACfQAAAAADfQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAA version: 6 0,1: ind: 0,1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXwAAAAABZQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAADJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAAAJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: UAAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAAAewAAAAADewAAAAABJQAAAAACewAAAAABewAAAAADewAAAAADewAAAAABfwAAAAAAXgAAAAAAXgAAAAABJwAAAAAAJwAAAAACfwAAAAAAJQAAAAADJQAAAAABJQAAAAACewAAAAADewAAAAABJQAAAAAAJQAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADJwAAAAACJwAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAADewAAAAABewAAAAABJQAAAAADJQAAAAAAJQAAAAACfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACJwAAAAABJwAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAABewAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAewAAAAADewAAAAAAewAAAAABfwAAAAAAbwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACewAAAAAAewAAAAACewAAAAACewAAAAABfwAAAAAANQAAAAABNQAAAAADNQAAAAABNQAAAAABfwAAAAAAQwAAAAAAbwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADewAAAAACewAAAAABewAAAAABewAAAAAAfwAAAAAANQAAAAAANQAAAAADNQAAAAABNQAAAAADfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: UAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAAAewAAAAABewAAAAABJQAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAXgAAAAABXgAAAAAAJwAAAAAAJwAAAAAAfwAAAAAAJQAAAAABJQAAAAAAJQAAAAABewAAAAADewAAAAABJQAAAAABJQAAAAADJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACJwAAAAAAJwAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAADewAAAAACewAAAAACJQAAAAABJQAAAAACJQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACJwAAAAABJwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAADewAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAbwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACewAAAAADewAAAAADewAAAAADewAAAAABfwAAAAAANQAAAAABNQAAAAADNQAAAAADNQAAAAACfwAAAAAAQwAAAAAAbwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACewAAAAABewAAAAAAewAAAAACewAAAAADfwAAAAAANQAAAAABNQAAAAAANQAAAAADNQAAAAACfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAADNQAAAAAANQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: NQAAAAABNQAAAAAANQAAAAABNQAAAAADNQAAAAACXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAKwAAAAABGgAAAAAFKwAAAAABUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAADNQAAAAACNQAAAAADNQAAAAAANQAAAAAAXgAAAAABXgAAAAABXgAAAAACUAAAAAAAKwAAAAADGgAAAAADKwAAAAABUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAADNQAAAAAANQAAAAABXgAAAAAAXgAAAAAAXgAAAAAAGgAAAAAHGgAAAAACGgAAAAAEPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAADNQAAAAADNQAAAAAANQAAAAACNQAAAAAANQAAAAABXgAAAAABXgAAAAACUAAAAAAAKwAAAAABGgAAAAADKwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAAANQAAAAACNQAAAAAANQAAAAACNQAAAAAAXgAAAAACXgAAAAABXgAAAAACUAAAAAAAKwAAAAACGgAAAAABKwAAAAACUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAANQAAAAABNQAAAAABNQAAAAADNQAAAAADNQAAAAACXgAAAAACXgAAAAADXgAAAAABUAAAAAAAKwAAAAAAGgAAAAAGKwAAAAABUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXgAAAAACXgAAAAAANQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAIQAAAAACIQAAAAADIQAAAAABIQAAAAADIQAAAAADIQAAAAACUAAAAAAAIwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAUAAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAABIQAAAAACIQAAAAABTwAAAAAAIwAAAAADIQAAAAABIwAAAAADTwAAAAADfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACUAAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAABIwAAAAACewAAAAABewAAAAABewAAAAADUAAAAAAAXgAAAAABXgAAAAADXgAAAAAAUAAAAAAAIQAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAAAIQAAAAACIwAAAAADIwAAAAADewAAAAADewAAAAABewAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAABUAAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAACIQAAAAABIQAAAAABTwAAAAABIwAAAAACewAAAAAAewAAAAAAewAAAAACUAAAAAAAXgAAAAADXgAAAAABXgAAAAABUAAAAAAAIQAAAAABIQAAAAABIQAAAAABIQAAAAABIQAAAAAAIQAAAAACIwAAAAADIwAAAAAAewAAAAADewAAAAADewAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAAAIQAAAAACIQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAADXgAAAAACUAAAAAAAKwAAAAADGgAAAAABKwAAAAACUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAADXgAAAAACUAAAAAAAKwAAAAADGgAAAAAFKwAAAAADUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAADXgAAAAADXgAAAAACGgAAAAAHGgAAAAAGGgAAAAAGPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAACUAAAAAAAKwAAAAACGgAAAAAGKwAAAAADUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAKwAAAAABGgAAAAAAKwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAKwAAAAAAGgAAAAAFKwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXgAAAAADXgAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAPQAAAAAAPQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABfwAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAADIQAAAAABIQAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABUAAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAAAIQAAAAACUAAAAAAAIwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABUAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAADTwAAAAADIwAAAAAAIQAAAAADIwAAAAABTwAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAUAAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAAAIQAAAAADIQAAAAACIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAABUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIwAAAAACewAAAAAAewAAAAADewAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAAAUAAAAAAAIQAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAACIQAAAAAAIwAAAAABIwAAAAABewAAAAAAewAAAAABewAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAACUAAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAADTwAAAAADIwAAAAABewAAAAADewAAAAACewAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAACUAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAACIwAAAAABIwAAAAADewAAAAACewAAAAABewAAAAADUAAAAAAAXgAAAAABXgAAAAABXgAAAAACfwAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAABIQAAAAACIQAAAAAD version: 6 -3,0: ind: -3,0 - tiles: IQAAAAABIwAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIQAAAAABIQAAAAAAIQAAAAABIwAAAAACIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADUAAAAAAAIQAAAAAAIQAAAAADIQAAAAABTwAAAAACIwAAAAABIQAAAAABUAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAADXgAAAAABXgAAAAADXgAAAAAAMAAAAAABMAAAAAADMAAAAAADXgAAAAAAXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAADIwAAAAABTwAAAAADUAAAAAAAXgAAAAACXgAAAAABXgAAAAABMAAAAAABfwAAAAAAMAAAAAAAXgAAAAABXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAACIwAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAMAAAAAADMAAAAAADMAAAAAADXgAAAAABXgAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATwAAAAAAIwAAAAABIQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAACIwAAAAABIwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADaQAAAAADaQAAAAABaQAAAAACaQAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: IQAAAAABIwAAAAACewAAAAADewAAAAAAewAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIQAAAAACIQAAAAAAIQAAAAABIwAAAAADIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAACUAAAAAAAIQAAAAADIQAAAAAAIQAAAAABTwAAAAADIwAAAAADIQAAAAACUAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABXgAAAAADXgAAAAAAXgAAAAABMAAAAAACMAAAAAADMAAAAAAAXgAAAAABXgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIQAAAAAAIwAAAAACTwAAAAACUAAAAAAAXgAAAAACXgAAAAACXgAAAAABMAAAAAAAfwAAAAAAMAAAAAACXgAAAAAAXgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAABIwAAAAADfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABMAAAAAAAMAAAAAAAMAAAAAACXgAAAAADXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATwAAAAABIwAAAAAAIQAAAAABfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAIwAAAAAAIwAAAAACIwAAAAACfwAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAABQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACaQAAAAABaQAAAAAAaQAAAAABaQAAAAAAaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,1: ind: -3,1 - tiles: aQAAAAAAaQAAAAACaQAAAAADaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABMAAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABNQAAAAAANQAAAAADNQAAAAACNQAAAAADNQAAAAADNQAAAAAAMAAAAAAAXgAAAAADMAAAAAACXgAAAAADMAAAAAACXgAAAAABXgAAAAACMAAAAAADXgAAAAABXgAAAAACNQAAAAAANQAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAAAXgAAAAABXgAAAAACXgAAAAABMAAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAANQAAAAADNQAAAAADNQAAAAADNQAAAAAANQAAAAABNQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAABXgAAAAACMAAAAAABXgAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAABXgAAAAACXgAAAAADMAAAAAACXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABMAAAAAACXgAAAAACXgAAAAADMAAAAAACXgAAAAACXgAAAAAAMAAAAAAAXgAAAAADXgAAAAADfQAAAAAAfwAAAAAAfQAAAAACfQAAAAABfQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAACfQAAAAADfwAAAAAAfQAAAAADfQAAAAAAfQAAAAADfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAABQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADfQAAAAAAfwAAAAAAfQAAAAAAfQAAAAACfQAAAAACfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABUAAAAAAAXgAAAAABXgAAAAADUAAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAA + tiles: aQAAAAAAaQAAAAADaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACXgAAAAABMAAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAADMAAAAAAAXgAAAAABXgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAADMAAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAADXgAAAAADMAAAAAAAXgAAAAACXgAAAAADMAAAAAABXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAACMAAAAAADXgAAAAACXgAAAAACMAAAAAACXgAAAAADXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACMAAAAAAAXgAAAAADXgAAAAABMAAAAAACXgAAAAABXgAAAAACMAAAAAADXgAAAAAAXgAAAAACfQAAAAACfwAAAAAAfQAAAAABfQAAAAABfQAAAAACfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADfQAAAAABfwAAAAAAfQAAAAABfQAAAAABfQAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADfQAAAAABfwAAAAAAfQAAAAACfQAAAAAAfQAAAAACfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADUAAAAAAAXgAAAAADXgAAAAADUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAABQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAC version: 6 -2,1: ind: -2,1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAADXgAAAAABXgAAAAADXgAAAAACUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABXgAAAAABXgAAAAABMAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAABXgAAAAADXgAAAAAAMAAAAAACXgAAAAACUAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAfQAAAAABfQAAAAACfQAAAAACXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfQAAAAADfQAAAAACfQAAAAACXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAfQAAAAACfQAAAAAAfQAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAABUAAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAMAAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABXgAAAAAAXgAAAAADMAAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAABXgAAAAAAMAAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfQAAAAACfQAAAAADfQAAAAACXgAAAAABXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACXgAAAAAAXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: aQAAAAADaQAAAAADaQAAAAABaQAAAAACaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAACUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAADaQAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAaQAAAAAAUAAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAJwAAAAACJwAAAAAAJwAAAAABaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACJwAAAAACJwAAAAAAJwAAAAACJwAAAAADaQAAAAABUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAABfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAABaQAAAAADfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAaQAAAAABUAAAAAAAfwAAAAAAaQAAAAACaQAAAAABfwAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAADaQAAAAAAaQAAAAABXgAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAADaQAAAAADXgAAAAABXgAAAAABXgAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbwAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbwAAAAAAbwAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAACaQAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAewAAAAADewAAAAADfwAAAAAAewAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAewAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAewAAAAAAewAAAAADfwAAAAAAewAAAAACXgAAAAABXgAAAAADNQAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: aQAAAAACaQAAAAABaQAAAAABaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAACUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAADaQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAJwAAAAADJwAAAAABJwAAAAAAaQAAAAACUAAAAAAAfwAAAAAAaQAAAAABaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACfwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAaQAAAAADUAAAAAAAUAAAAAAAaQAAAAADaQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAABaQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACaQAAAAACUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAaQAAAAAAUAAAAAAAfwAAAAAAaQAAAAADaQAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAABaQAAAAADXgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAADaQAAAAAAaQAAAAAAXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbwAAAAAAbQAAAAAAbwAAAAABaQAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbwAAAAADbwAAAAADaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAACfwAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAAAfwAAAAAAewAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAewAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADfwAAAAAAewAAAAACewAAAAABfwAAAAAAewAAAAAAXgAAAAAAXgAAAAABAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: XgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACNQAAAAABNQAAAAACNQAAAAADNQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACNQAAAAADNQAAAAAANQAAAAADNQAAAAADfwAAAAAAZQAAAAAAXgAAAAADfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACNQAAAAABNQAAAAACNQAAAAACNQAAAAACfwAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAANQAAAAABNQAAAAADNQAAAAAANQAAAAADfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAABXgAAAAACfwAAAAAAbQAAAAAAbQAAAAAAXgAAAAADXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAcQAAAAACcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAADcQAAAAABfwAAAAAAEQAAAAAAXgAAAAACXgAAAAADUAAAAAAAcQAAAAACcQAAAAABcQAAAAAAUAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAEQAAAAAAXgAAAAADXgAAAAAAUAAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAACcQAAAAADcQAAAAABfwAAAAAAEQAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAADcQAAAAADcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAABfwAAAAAAXgAAAAABXgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAACXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAcQAAAAABUAAAAAAAfwAAAAAAcQAAAAADcQAAAAACXgAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAcQAAAAAAcQAAAAADcQAAAAADUAAAAAAAcQAAAAAAcQAAAAACcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAA + tiles: XgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACNQAAAAACNQAAAAADNQAAAAACNQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADNQAAAAAANQAAAAABNQAAAAACNQAAAAACfwAAAAAAZQAAAAAAXgAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADNQAAAAACNQAAAAAANQAAAAACNQAAAAACfwAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAANQAAAAABNQAAAAADNQAAAAABNQAAAAACfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAADXgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAXgAAAAABXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACUAAAAAAAcQAAAAAAcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAACcQAAAAACcQAAAAABcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAADfwAAAAAAEQAAAAAAXgAAAAABXgAAAAAAUAAAAAAAcQAAAAAAcQAAAAACcQAAAAADUAAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAABcQAAAAADcQAAAAAAcQAAAAADfwAAAAAAEQAAAAAAXgAAAAAAXgAAAAACUAAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAACcQAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAEQAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAADcQAAAAACfwAAAAAAXgAAAAAAXgAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAABfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAcQAAAAABUAAAAAAAfwAAAAAAcQAAAAAAcQAAAAACXgAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAACfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAUAAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: XgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAXgAAAAABXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAQQAAAAAAUAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAIAAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAIAAAAAADfwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAAAcQAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAUAAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA + tiles: XgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAXgAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAQQAAAAAAUAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAIAAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAADcQAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAUAAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAARgAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: cQAAAAAAcQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAAAcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADUAAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAUAAAAAAAaQAAAAACUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAABcQAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAABcQAAAAACcQAAAAADcQAAAAABfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADUAAAAAAAaQAAAAADaQAAAAADaQAAAAAAaQAAAAADaQAAAAADcQAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACcQAAAAADcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACfwAAAAAAUAAAAAAAJQAAAAABUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAcQAAAAADcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAADfwAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADcQAAAAAAcQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAADfwAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAABcQAAAAACcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAABcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAB + tiles: cQAAAAADcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAABaQAAAAADaQAAAAADaQAAAAAAaQAAAAAAcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADUAAAAAAAaQAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABaQAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACcQAAAAABcQAAAAADcQAAAAABfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADUAAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAACaQAAAAADcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAABcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAADfwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAADcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAADfwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADfwAAAAAAUAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAABcQAAAAACcQAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAADcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAABcQAAAAADcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAaQAAAAACcQAAAAADcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAABUAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAABcQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: XgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACNQAAAAABXgAAAAACfwAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAADfwAAAAAAXgAAAAABXgAAAAADNQAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAABLAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAIQAAAAABIwAAAAADTwAAAAACIwAAAAADIQAAAAAAIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAATwAAAAACIwAAAAAAIQAAAAAAIwAAAAAATwAAAAACIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAABIwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfQAAAAAAfwAAAAAAfQAAAAABfQAAAAABfwAAAAAAIQAAAAABIwAAAAABTwAAAAABIwAAAAAAIQAAAAADIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfQAAAAADfwAAAAAAfwAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAAA + tiles: XgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAUAAAAAAAXgAAAAADUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAAQAAAAAAXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACLAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAIQAAAAABIwAAAAADTwAAAAAAIwAAAAADIQAAAAABIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAATwAAAAAAIwAAAAABIQAAAAADIwAAAAACTwAAAAACIwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAABIwAAAAACIwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAADfwAAAAAAfQAAAAABfQAAAAADfwAAAAAAIQAAAAACIwAAAAABTwAAAAAAIwAAAAABIQAAAAADIwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfQAAAAACfwAAAAAAfwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: IAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAADfwAAAAAAXgAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABbwAAAAAAbwAAAAAAbwAAAAADfwAAAAAAXgAAAAABTwAAAAACUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACbwAAAAADbwAAAAAAbwAAAAABfwAAAAAAXgAAAAABTwAAAAABUAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADbwAAAAAAbwAAAAABbwAAAAACfwAAAAAAXgAAAAACTwAAAAABUAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABUAAAAAAAfwAAAAAAIAAAAAACIAAAAAADUAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAXgAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAADUAAAAAAAXgAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABUAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADUAAAAAAAXgAAAAABIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAAAewAAAAAAewAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAADfwAAAAAAXgAAAAACXgAAAAABIgAAAAABTwAAAAABfwAAAAAAJQAAAAACJQAAAAAAJQAAAAABewAAAAADewAAAAACJQAAAAACJQAAAAADJQAAAAADJQAAAAADJQAAAAADfwAAAAAAXgAAAAACXgAAAAADTwAAAAAAIgAAAAABfwAAAAAAJQAAAAACJQAAAAACJQAAAAADewAAAAAAewAAAAADJQAAAAADewAAAAADewAAAAAAewAAAAABewAAAAADfwAAAAAAXgAAAAABXgAAAAABIgAAAAABIgAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAAAewAAAAACewAAAAAAJQAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAABUAAAAAAAXgAAAAABXgAAAAADTwAAAAABIgAAAAACfwAAAAAAJQAAAAABJQAAAAABJQAAAAABewAAAAACewAAAAAAJQAAAAABewAAAAABewAAAAABewAAAAADewAAAAACUAAAAAAAXgAAAAADXgAAAAACIgAAAAABTwAAAAADfwAAAAAAJQAAAAACJQAAAAABJQAAAAADewAAAAACewAAAAACJQAAAAACewAAAAADewAAAAADewAAAAABewAAAAABUAAAAAAAXgAAAAACXgAAAAAC + tiles: IAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAACfwAAAAAAXgAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAABbwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAXgAAAAADTwAAAAAAUAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAAAbwAAAAABbwAAAAADbwAAAAADfwAAAAAAXgAAAAADTwAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADbwAAAAADbwAAAAAAbwAAAAABfwAAAAAAXgAAAAADTwAAAAACUAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADUAAAAAAAfwAAAAAAIAAAAAADIAAAAAABUAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAACUAAAAAAAXgAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAAAUAAAAAAAXgAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABUAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABUAAAAAAAXgAAAAADIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAAAewAAAAABewAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAADJQAAAAADfwAAAAAAXgAAAAABXgAAAAACIgAAAAAATwAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAADewAAAAABewAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADfwAAAAAAXgAAAAABXgAAAAAATwAAAAAAIgAAAAABfwAAAAAAJQAAAAADJQAAAAAAJQAAAAADewAAAAABewAAAAAAJQAAAAABewAAAAACewAAAAADewAAAAADewAAAAABfwAAAAAAXgAAAAAAXgAAAAADIgAAAAABIgAAAAABfwAAAAAAJQAAAAAAJQAAAAADJQAAAAADewAAAAACewAAAAABJQAAAAACewAAAAACewAAAAADewAAAAAAewAAAAAAUAAAAAAAXgAAAAABXgAAAAADTwAAAAADIgAAAAABfwAAAAAAJQAAAAADJQAAAAADJQAAAAACewAAAAADewAAAAADJQAAAAABewAAAAABewAAAAABewAAAAAAewAAAAACUAAAAAAAXgAAAAAAXgAAAAADIgAAAAAATwAAAAACfwAAAAAAJQAAAAABJQAAAAAAJQAAAAAAewAAAAAAewAAAAADJQAAAAABewAAAAAAewAAAAABewAAAAADewAAAAACUAAAAAAAXgAAAAABXgAAAAAD version: 6 -4,0: ind: -4,0 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAABfQAAAAABfQAAAAABfwAAAAAAJQAAAAACIwAAAAABIQAAAAACIwAAAAAAMAAAAAAAIwAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfQAAAAAAfQAAAAABfQAAAAABfQAAAAABfQAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAAAIwAAAAADIwAAAAADbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAACfQAAAAADfwAAAAAAIQAAAAADIwAAAAACTwAAAAACIwAAAAAAIQAAAAABIwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACfwAAAAAAXgAAAAAAfwAAAAAAIwAAAAACIQAAAAABIwAAAAAATwAAAAADIwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAXgAAAAABfwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAADgAAAAAAIwAAAAADTwAAAAAAIwAAAAABIQAAAAABIwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIQAAAAADIwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAADfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAIAAAAAABIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfwAAAAAAJQAAAAACIwAAAAAAIQAAAAABIwAAAAACMAAAAAAAIwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAACfQAAAAABfQAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADIwAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAACfwAAAAAAIQAAAAABIwAAAAAATwAAAAABIwAAAAACIQAAAAACIwAAAAADbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACfwAAAAAAXgAAAAADfwAAAAAAIwAAAAAAIQAAAAACIwAAAAAATwAAAAACIwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAADfwAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAAAIwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABDgAAAAACIwAAAAACTwAAAAADIwAAAAADIQAAAAAAIwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACfwAAAAAAIwAAAAAAIwAAAAACIwAAAAABIQAAAAABIwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAIAAAAAACfwAAAAAAIAAAAAABfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAAAEwAAAAACEwAAAAADEwAAAAACEwAAAAADQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAAAEwAAAAACQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAADEwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAbQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAADEwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAACEwAAAAADQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADfwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAADUAAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAACfwAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAACUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbwAAAAACfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbwAAAAACQwAAAAAAfwAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAA + tiles: fwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAABEwAAAAABQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAADQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAADQQAAAAAAQQAAAAAAfwAAAAAAbQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAADEwAAAAADQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAABEwAAAAACQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAACQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAACfwAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAACfwAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADUAAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAIAAAAAAAfwAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAABUAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbwAAAAADfwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAbwAAAAABQwAAAAAAfwAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: fwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABfwAAAAAAUAAAAAAAaQAAAAACaQAAAAADfwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIAAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACIAAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACIQAAAAADIQAAAAAAIQAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACMAAAAAABXgAAAAABXgAAAAAAXgAAAAABMAAAAAABUAAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAADMAAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAABXgAAAAAAIAAAAAADIQAAAAADIQAAAAACIQAAAAAAIQAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADMAAAAAACXgAAAAACXgAAAAABXgAAAAACMAAAAAAAUAAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIQAAAAADIQAAAAACIQAAAAACUAAAAAAAXgAAAAAAMAAAAAACMAAAAAACXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfQAAAAABfQAAAAADfQAAAAAAfwAAAAAAfQAAAAABfQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACMAAAAAADMAAAAAACXgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfwAAAAAAfQAAAAADfQAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADfwAAAAAAfQAAAAABfQAAAAACfQAAAAACfwAAAAAAfQAAAAACfQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADMAAAAAACMAAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAABfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIAAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIQAAAAACIQAAAAACIQAAAAAAUAAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAADMAAAAAACXgAAAAABXgAAAAABXgAAAAACMAAAAAADUAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAAAMAAAAAAAXgAAAAADMAAAAAABXgAAAAAAMAAAAAABXgAAAAAAIAAAAAACIQAAAAADIQAAAAABIQAAAAADIQAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADMAAAAAADXgAAAAAAXgAAAAABXgAAAAACMAAAAAADUAAAAAAAIQAAAAABIQAAAAABIQAAAAADIQAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIQAAAAAAIQAAAAABIQAAAAABUAAAAAAAXgAAAAACMAAAAAADMAAAAAACXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfwAAAAAAfQAAAAAAfQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAMAAAAAAAMAAAAAADXgAAAAABfwAAAAAAfQAAAAACfQAAAAACfQAAAAAAfwAAAAAAfQAAAAABfQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfwAAAAAAfQAAAAADfQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAACMAAAAAACMAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: XgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAawAAAAACawAAAAAAawAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABawAAAAACawAAAAAAawAAAAABawAAAAAAawAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAawAAAAADawAAAAADawAAAAADawAAAAADawAAAAABawAAAAACawAAAAAAfwAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAACawAAAAACawAAAAADawAAAAABfwAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAACfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAawAAAAADawAAAAAAawAAAAAAfwAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAawAAAAAAawAAAAADawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAABawAAAAAAawAAAAADawAAAAADewAAAAADewAAAAACewAAAAAAewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAACUAAAAAAAawAAAAAAawAAAAABawAAAAABfwAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABUAAAAAAAawAAAAAAawAAAAAAawAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAADewAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAACawAAAAAAawAAAAACUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACawAAAAACawAAAAABawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAACUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAACewAAAAAD + tiles: XgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAAAawAAAAACawAAAAAAawAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADawAAAAABawAAAAABawAAAAACawAAAAACawAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAAAawAAAAABawAAAAADfwAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAABawAAAAACfwAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAADfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAawAAAAAAawAAAAADawAAAAADfwAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAAAfwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAACUAAAAAAAawAAAAADawAAAAAAawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAAAawAAAAAAawAAAAABawAAAAADewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAAAUAAAAAAAawAAAAADawAAAAADawAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAADUAAAAAAAawAAAAAAawAAAAABawAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAAAawAAAAADawAAAAABUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAABawAAAAADawAAAAACawAAAAABawAAAAADawAAAAACawAAAAABawAAAAABawAAAAACUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAB version: 6 -5,-2: ind: -5,-2 - tiles: UgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAABcQAAAAADfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAACfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAACcQAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAACcQAAAAAAcQAAAAABcQAAAAACcQAAAAADUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAAAcQAAAAAAcQAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAABUAAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAACcQAAAAABUAAAAAAAcQAAAAACcQAAAAABcQAAAAADcQAAAAAAXgAAAAADcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAADcQAAAAABcQAAAAACcQAAAAADcQAAAAACcQAAAAACcQAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAACUAAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAUAAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAfwAAAAAAUAAAAAAAcQAAAAADUAAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAABcQAAAAADcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAABcQAAAAADfwAAAAAAcQAAAAACcQAAAAABfwAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAACcQAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAADcQAAAAACcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAUAAAAAAAcQAAAAACcQAAAAACUAAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAAC + tiles: UgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAADcQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAABUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAACcQAAAAAAcQAAAAABcQAAAAACcQAAAAABUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAAAcQAAAAAAcQAAAAADfwAAAAAAcQAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAAAUAAAAAAAUgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAABUAAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAADcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAACcQAAAAAAcQAAAAADUAAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAACXgAAAAACcQAAAAACcQAAAAACcQAAAAABcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAACcQAAAAADcQAAAAABcQAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAACUAAAAAAAcQAAAAADUAAAAAAAcQAAAAACfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAcQAAAAADcQAAAAADcQAAAAACUAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAADfwAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAUAAAAAAAcQAAAAADUAAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAACfwAAAAAAUAAAAAAAcQAAAAABcQAAAAACUAAAAAAAfwAAAAAAUAAAAAAAcQAAAAACcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAABcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAABcQAAAAABcQAAAAACcQAAAAADcQAAAAACcQAAAAABcQAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAACcQAAAAADcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAABcQAAAAACcQAAAAACcQAAAAACcQAAAAABcQAAAAAAcQAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAcQAAAAAAcQAAAAADUAAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAADUAAAAAAAcQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAXgAAAAAAfwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABfwAAAAAAPwAAAAAAUAAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: bQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACUAAAAAAAXgAAAAAAXgAAAAAAQwAAAAAAfwAAAAAAIAAAAAACTwAAAAABIQAAAAABTwAAAAADIQAAAAADTwAAAAABIQAAAAABTwAAAAAAIQAAAAADTwAAAAAAIAAAAAACIAAAAAADXgAAAAADMAAAAAACQwAAAAAAfwAAAAAAIAAAAAAATwAAAAAAIQAAAAABTwAAAAABIQAAAAACTwAAAAADIQAAAAABTwAAAAACIQAAAAABTwAAAAACIAAAAAAAIAAAAAADXgAAAAADMAAAAAADQwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAADUAAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAABfwAAAAAAIAAAAAACKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABfwAAAAAAaQAAAAAAaQAAAAABaQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAADfwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAABKQAAAAADKQAAAAAAfwAAAAAAaQAAAAABaQAAAAACaQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAACQwAAAAAAfwAAAAAAKQAAAAABKQAAAAADKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAABaQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZwAAAAAAQwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAKQAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAABaQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAADfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAAAKQAAAAABUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAACaQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAADXgAAAAABfwAAAAAAUAAAAAAAKQAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAZwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + tiles: bQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAQwAAAAAAfwAAAAAAIAAAAAADTwAAAAACIQAAAAADTwAAAAADIQAAAAADTwAAAAACIQAAAAABTwAAAAACIQAAAAADTwAAAAADIAAAAAAAIAAAAAABXgAAAAAAMAAAAAABQwAAAAAAfwAAAAAAIAAAAAAATwAAAAACIQAAAAACTwAAAAAAIQAAAAABTwAAAAABIQAAAAADTwAAAAADIQAAAAAATwAAAAABIAAAAAAAIAAAAAADXgAAAAABMAAAAAACQwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAACUAAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAABfwAAAAAAIAAAAAACKQAAAAADKQAAAAABKQAAAAADKQAAAAABKQAAAAACfwAAAAAAaQAAAAABaQAAAAABaQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABKQAAAAACfwAAAAAAaQAAAAAAaQAAAAADaQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAABQwAAAAAAfwAAAAAAKQAAAAADKQAAAAACKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAACaQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZwAAAAADQwAAAAAAfwAAAAAAKQAAAAACKQAAAAADKQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAADfwAAAAAAfwAAAAAAKQAAAAABKQAAAAACKQAAAAAAUAAAAAAAUAAAAAAAaQAAAAADaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAABfwAAAAAAfwAAAAAAKQAAAAABKQAAAAADKQAAAAABUAAAAAAAUAAAAAAAaQAAAAABaQAAAAADaQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZwAAAAABXgAAAAAAfwAAAAAAUAAAAAAAKQAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAZwAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAABXgAAAAAAXgAAAAACMAAAAAAAXgAAAAADXgAAAAADMAAAAAAAMAAAAAACMAAAAAACMAAAAAAAXgAAAAAAMAAAAAACMAAAAAAAMAAAAAACMAAAAAABXgAAAAACMAAAAAABXgAAAAACXgAAAAADMAAAAAACXgAAAAABXgAAAAADMAAAAAAAMAAAAAACMAAAAAACMAAAAAABXgAAAAACMAAAAAABMAAAAAACMAAAAAAAMAAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAZwAAAAADZwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAewAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAZwAAAAADXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAACewAAAAACZwAAAAABZwAAAAACXgAAAAACXgAAAAAAXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAADewAAAAADewAAAAACewAAAAACewAAAAAAewAAAAAAZwAAAAAAZwAAAAADXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAABewAAAAADewAAAAADewAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAAAZwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAACZwAAAAADZwAAAAABZwAAAAADZwAAAAACZwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAABewAAAAADewAAAAACZwAAAAAAZwAAAAABXgAAAAADXgAAAAACXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAADewAAAAACewAAAAABewAAAAADewAAAAAAZwAAAAACZwAAAAABXgAAAAAAXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAADZwAAAAACZwAAAAADXgAAAAACXgAAAAABXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAABewAAAAACZwAAAAABZwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAewAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAABMAAAAAACXgAAAAACXgAAAAAAMAAAAAABMAAAAAAAMAAAAAADMAAAAAAAXgAAAAADMAAAAAACMAAAAAADMAAAAAADMAAAAAADXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAADMAAAAAABXgAAAAAAXgAAAAABMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACXgAAAAABMAAAAAAAMAAAAAACMAAAAAACMAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAZwAAAAADZwAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAewAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAZwAAAAABXgAAAAAAXgAAAAACXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAABewAAAAADewAAAAABZwAAAAABZwAAAAACXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAACewAAAAABZwAAAAABZwAAAAADXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAADZwAAAAABZwAAAAADZwAAAAACZwAAAAACZwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAACewAAAAABZwAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAACZwAAAAACZwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAACZwAAAAADZwAAAAAAXgAAAAAAXgAAAAACXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAABewAAAAADewAAAAABewAAAAADewAAAAAAewAAAAAAewAAAAABZwAAAAADZwAAAAAAXgAAAAAAXgAAAAABXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADewAAAAAAZwAAAAACZwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: bQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAMAAAAAABXgAAAAABXgAAAAADMAAAAAAAMAAAAAACXgAAAAACXgAAAAAAXgAAAAADMAAAAAACMAAAAAACXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACMAAAAAABXgAAAAADMAAAAAABXgAAAAADXgAAAAABMAAAAAADMAAAAAABXgAAAAACXgAAAAABXgAAAAADMAAAAAACMAAAAAABXgAAAAAAMAAAAAABXgAAAAADXgAAAAADMAAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACgAAAAAACgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAGgAAAAAFDAAAAAAACgAAAAAACgAAAAAADAAAAAABDAAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAABUAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAGgAAAAAADAAAAAABDAAAAAAACgAAAAAADAAAAAAADAAAAAADfwAAAAAAewAAAAABewAAAAACewAAAAABewAAAAAAewAAAAABUAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAGgAAAAABDAAAAAAADAAAAAACCgAAAAAACgAAAAAADAAAAAABfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAABCgAAAAAADAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA + tiles: bQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAADUAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACMAAAAAADXgAAAAACXgAAAAAAMAAAAAACMAAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAAAMAAAAAADXgAAAAADMAAAAAACXgAAAAABXgAAAAACMAAAAAAAXgAAAAADMAAAAAADXgAAAAAAXgAAAAADMAAAAAADMAAAAAABXgAAAAADXgAAAAABXgAAAAAAMAAAAAAAMAAAAAACXgAAAAABMAAAAAAAXgAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAADUAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACgAAAAAACgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAACfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAGgAAAAAADAAAAAADCgAAAAAACgAAAAAADAAAAAAADAAAAAACfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAACewAAAAACUAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAGgAAAAAHDAAAAAAADAAAAAAACgAAAAAADAAAAAAADAAAAAABfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAGgAAAAABDAAAAAADDAAAAAABCgAAAAAACgAAAAAADAAAAAACfwAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAABCgAAAAAADAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: fwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAANgAAAAAANgAAAAACNgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfQAAAAADfQAAAAACNgAAAAADNgAAAAAANgAAAAADNgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfQAAAAABfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAJQAAAAACJQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAADfwAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAAAJQAAAAADfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfQAAAAABfQAAAAADfQAAAAABfwAAAAAAJQAAAAABTwAAAAAATwAAAAAAJQAAAAACTwAAAAADTwAAAAABJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAACJQAAAAABTwAAAAACTwAAAAABJQAAAAAAJQAAAAABfwAAAAAAXgAAAAAC + tiles: fwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAANgAAAAADNgAAAAABNgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfQAAAAADfQAAAAABNgAAAAABNgAAAAAANgAAAAABNgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAJQAAAAACJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADfwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfwAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAACfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfQAAAAADfQAAAAABfQAAAAACfwAAAAAAJQAAAAACTwAAAAABTwAAAAACJQAAAAADTwAAAAADTwAAAAACJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADJQAAAAABTwAAAAADTwAAAAACJQAAAAABJQAAAAABfwAAAAAAXgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABCwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACwAAAAAACwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAABwAAAAAKBwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACCwAAAAAACwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAABwAAAAAEBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAABwAAAAAABwAAAAAEBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAC version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAACBwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAABCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAABBwAAAAAABwAAAAAICwAAAAAACwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: UAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAABfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABUAAAAAAAUAAAAAAAaQAAAAABUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAADaQAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABUAAAAAAATwAAAAAATwAAAAABUAAAAAAAUAAAAAAAaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADUAAAAAAATwAAAAADTwAAAAADaQAAAAACaQAAAAABaQAAAAACUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADUAAAAAAATwAAAAACTwAAAAACUAAAAAAAUAAAAAAAaQAAAAABUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAfwAAAAAAUAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADUAAAAAAAIAAAAAADIAAAAAABaQAAAAAAaQAAAAAAfwAAAAAAaQAAAAACaQAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADaQAAAAABaQAAAAADfwAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABUAAAAAAAIAAAAAAAIAAAAAACaQAAAAABUAAAAAAAfwAAAAAAaQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAACaQAAAAABaQAAAAAAaQAAAAADaQAAAAACaQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAATwAAAAAAIgAAAAAAIgAAAAADaQAAAAADaQAAAAACaQAAAAADaQAAAAADaQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAABTwAAAAADIgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAAAaQAAAAACUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIgAAAAACIgAAAAAATwAAAAABUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAADaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIgAAAAACTwAAAAACIgAAAAACaQAAAAADUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAATwAAAAAAIgAAAAADIgAAAAAA + tiles: UAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAABaQAAAAABUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACUAAAAAAATwAAAAAATwAAAAADUAAAAAAAUAAAAAAAaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAUAAAAAAATwAAAAABTwAAAAADaQAAAAADaQAAAAADaQAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABUAAAAAAATwAAAAABTwAAAAACUAAAAAAAUAAAAAAAaQAAAAABUwAAAAAAUwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAAAUAAAAAAAIAAAAAAAIAAAAAABaQAAAAAAaQAAAAADfwAAAAAAaQAAAAACaQAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAABaQAAAAACaQAAAAABfwAAAAAAaQAAAAADaQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABUAAAAAAAIAAAAAACIAAAAAACaQAAAAADUAAAAAAAfwAAAAAAaQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAAAaQAAAAACaQAAAAABaQAAAAADaQAAAAADaQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAATwAAAAADIgAAAAADIgAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAADaQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIgAAAAAATwAAAAABIgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIgAAAAABIgAAAAADTwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAaQAAAAABaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIgAAAAADTwAAAAACIgAAAAABaQAAAAACUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAATwAAAAAAIgAAAAADIgAAAAAB version: 6 -4,-3: ind: -4,-3 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAABfwAAAAAAfwAAAAAAaQAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADaQAAAAADaQAAAAABUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAADaQAAAAABaQAAAAADaQAAAAABaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAaQAAAAACUAAAAAAAUAAAAAAAaQAAAAADUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAUAAAAAAAaQAAAAABaQAAAAADUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAADbQAAAAAAbQAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACaQAAAAACaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAABfQAAAAABfQAAAAABfwAAAAAAaQAAAAACaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAAAfwAAAAAAaQAAAAADaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAaQAAAAABaQAAAAACfwAAAAAAaQAAAAABaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAaQAAAAADaQAAAAABfwAAAAAAaQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAaQAAAAAAaQAAAAACaQAAAAACaQAAAAABaQAAAAADaQAAAAADQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAaQAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAAAaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAABUAAAAAAAaQAAAAADaQAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADaQAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAABfwAAAAAAfwAAAAAAaQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAADaQAAAAAAaQAAAAABUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAACaQAAAAAAaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAaQAAAAACUAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfQAAAAACfQAAAAADfQAAAAABfQAAAAADfQAAAAACfQAAAAAAUAAAAAAAaQAAAAADaQAAAAADUAAAAAAAUAAAAAAAaQAAAAADaQAAAAADbQAAAAAAbQAAAAAAfwAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAABaQAAAAABaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAACfQAAAAABfQAAAAAAfwAAAAAAaQAAAAACaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABaQAAAAADfwAAAAAAaQAAAAACaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAaQAAAAABaQAAAAACfwAAAAAAaQAAAAACaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABaQAAAAADaQAAAAABfwAAAAAAaQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABfwAAAAAAaQAAAAADaQAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAABaQAAAAADaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAUAAAAAAAaQAAAAABaQAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAaQAAAAAAaQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAUAAAAAAAUAAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAAA version: 6 3,0: ind: 3,0 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJCwAAAAAACwAAAAAACwAAAAAABwAAAAABGQAAAAAEGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAARgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAGQAAAAACGQAAAAADGQAAAAAEGQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAGQAAAAABGQAAAAACGQAAAAADGQAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAABwAAAAAABwAAAAAAGQAAAAAEGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAFfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABCwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFCwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAEBwAAAAAIBwAAAAACBwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGCwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAMBwAAAAAGBwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAGQAAAAAEGQAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAARgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAGQAAAAADGQAAAAAAGQAAAAAFGQAAAAAGAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAGQAAAAACGQAAAAADGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: bQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbwAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 @@ -256,11 +257,11 @@ entities: version: 6 3,2: ind: 3,2 - tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAEGQAAAAADGQAAAAADGQAAAAACGQAAAAAGGQAAAAABGQAAAAAFGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAABAAAAAAAABwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAACGQAAAAAAGQAAAAABGQAAAAAAGQAAAAACGQAAAAAGGQAAAAAGGQAAAAADGQAAAAAFAAAAAAAABwAAAAAAfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAAAGQAAAAAGGQAAAAABGQAAAAABGQAAAAAFAAAAAAAABwAAAAAAfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAAGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAACGQAAAAADGQAAAAAEGQAAAAAGfgAAAAAABwAAAAAGRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAAGQAAAAACGQAAAAABGQAAAAABGQAAAAADGQAAAAACGQAAAAAGGQAAAAAEBwAAAAAABwAAAAAEfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAAGQAAAAACGQAAAAAGGQAAAAAAGQAAAAABGQAAAAACGQAAAAACGQAAAAACBwAAAAAABwAAAAADfwAAAAAAUAAAAAAARQAAAAAARQAAAAAAUAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAFBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADGQAAAAADGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAJBwAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAABwAAAAAEBwAAAAAABwAAAAAEGQAAAAACGQAAAAADGQAAAAABGQAAAAACGQAAAAAGGQAAAAAFGQAAAAADGQAAAAACGQAAAAAFGQAAAAAEGQAAAAAFGQAAAAAAAAAAAAAABwAAAAAAfwAAAAAAfwAAAAAAGQAAAAABGQAAAAADGQAAAAABGQAAAAACGQAAAAADGQAAAAABGQAAAAAEGQAAAAAFGQAAAAADGQAAAAADGQAAAAABGQAAAAAGAAAAAAAABwAAAAAFfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAAGQAAAAAAGQAAAAABGQAAAAABGQAAAAAEGQAAAAAEGQAAAAAAGQAAAAAFGQAAAAABAAAAAAAABwAAAAAAfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAAGQAAAAAEGQAAAAAEGQAAAAAEGQAAAAABGQAAAAACGQAAAAADGQAAAAADfgAAAAAABwAAAAALRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAAGQAAAAAEGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAADBwAAAAALBwAAAAAGfwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfwAAAAAABwAAAAAIGQAAAAACGQAAAAAGGQAAAAABGQAAAAABGQAAAAAFGQAAAAAEGQAAAAABBwAAAAAABwAAAAAAfwAAAAAAUAAAAAAARQAAAAAARQAAAAAAUAAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAABBwAAAAAAGQAAAAACGQAAAAAGBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAAGQAAAAABBwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGQAAAAAGBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAACGQAAAAAAGQAAAAAEBwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACGQAAAAAFGQAAAAACGQAAAAACBwAAAAAAGQAAAAADGQAAAAACGQAAAAAAGQAAAAAFGQAAAAAFGQAAAAAFBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGQAAAAAFGQAAAAABGQAAAAAAGQAAAAAFGQAAAAABGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAACBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAABGQAAAAAEGQAAAAABGQAAAAAFGQAAAAAAGQAAAAAGGQAAAAAEGQAAAAADGQAAAAADGQAAAAAFBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAADGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAFGQAAAAACGQAAAAAEGQAAAAAAGQAAAAADGQAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAJfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAGBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAADGQAAAAADGQAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAEGQAAAAAEGQAAAAAFBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACGQAAAAAEGQAAAAAAGQAAAAAABwAAAAAAGQAAAAACGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAHGQAAAAAAGQAAAAAFGQAAAAACGQAAAAADGQAAAAABGQAAAAACGQAAAAAAGQAAAAADGQAAAAAGGQAAAAAAGQAAAAAABwAAAAAABwAAAAAEAAAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAAGQAAAAACGQAAAAADGQAAAAACGQAAAAABGQAAAAAFGQAAAAAEBwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAGGQAAAAAAGQAAAAAAGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAADGQAAAAAEGQAAAAACGQAAAAABBwAAAAAA version: 6 2,1: ind: 2,1 @@ -268,11 +269,11 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAHBwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: fwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAaQAAAAAAaQAAAAAAaQAAAAADfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: fwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABaQAAAAAAaQAAAAADaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABaQAAAAAAaQAAAAAAaQAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA version: 6 -1,-5: ind: -1,-5 @@ -280,155 +281,155 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAACIgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAABIgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAJQAAAAADJQAAAAABJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAIgAAAAABIgAAAAAAIgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAACIgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAJQAAAAACJQAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAJgAAAAAAJgAAAAAAJQAAAAACJQAAAAABJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: JgAAAAAAJgAAAAAAJgAAAAAAJQAAAAABJQAAAAADJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADKQAAAAABKQAAAAADKQAAAAAAKQAAAAAAKQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAAAIAAAAAADKQAAAAABKQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAABKQAAAAADIAAAAAABKQAAAAABKQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAXgAAAAABXgAAAAADfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAABKQAAAAADKQAAAAABKQAAAAABKQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAAAKQAAAAADIAAAAAABKQAAAAABKQAAAAABfwAAAAAAKQAAAAADKQAAAAACKQAAAAADIAAAAAABIAAAAAACXgAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAABKQAAAAABKQAAAAADKQAAAAABKQAAAAABfwAAAAAAKQAAAAACKQAAAAAAKQAAAAADIAAAAAAAIAAAAAADXgAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACfwAAAAAAUAAAAAAAIAAAAAADIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAABTwAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABTwAAAAAAIAAAAAACUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAABTwAAAAACIAAAAAAAIAAAAAACIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAACUAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIAAAAAADIAAAAAAD + tiles: JgAAAAAAJgAAAAAAJgAAAAAAJQAAAAAAJQAAAAABJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAADIAAAAAABKQAAAAADKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAACKQAAAAACIAAAAAACKQAAAAAAKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAXgAAAAACXgAAAAADfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAADKQAAAAACIAAAAAAAKQAAAAACKQAAAAAAfwAAAAAAKQAAAAABKQAAAAACKQAAAAAAIAAAAAACIAAAAAABXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAAAKQAAAAACfwAAAAAAKQAAAAACKQAAAAACKQAAAAADIAAAAAADIAAAAAABXgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABfwAAAAAAUAAAAAAAIAAAAAAAIAAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAATwAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAAATwAAAAACIAAAAAABUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACTwAAAAADIAAAAAADIAAAAAADIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAADUAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIAAAAAAC version: 6 -5,1: ind: -5,1 - tiles: ewAAAAAAfwAAAAAAaQAAAAABaQAAAAACUAAAAAAAawAAAAABawAAAAACawAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAaQAAAAADaQAAAAADaQAAAAAAawAAAAAAawAAAAADawAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAaQAAAAABaQAAAAACUAAAAAAAawAAAAAAawAAAAAAawAAAAADfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAIAAAAAACfwAAAAAAIAAAAAAAfwAAAAAAewAAAAACfwAAAAAAaQAAAAABaQAAAAABUAAAAAAAawAAAAAAawAAAAACawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAABawAAAAADawAAAAACfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAAAawAAAAABawAAAAADfwAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAABawAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAACawAAAAADfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAACawAAAAABawAAAAABfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAIgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAaQAAAAACaQAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAAAIgAAAAAAQwAAAAAAUAAAAAAAaQAAAAACaQAAAAADaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAACIgAAAAAAIgAAAAACQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAIgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAADawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAACawAAAAADawAAAAADUAAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAACIQAAAAABIQAAAAADIQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAACawAAAAADawAAAAACIQAAAAADIQAAAAABIQAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAAD + tiles: ewAAAAAAfwAAAAAAaQAAAAAAaQAAAAABUAAAAAAAawAAAAADawAAAAABawAAAAABfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAbQAAAAAAQwAAAAAAewAAAAACfwAAAAAAaQAAAAADaQAAAAACaQAAAAAAawAAAAADawAAAAACawAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABfwAAAAAAbQAAAAAAQwAAAAAAewAAAAABfwAAAAAAaQAAAAABaQAAAAACUAAAAAAAawAAAAACawAAAAAAawAAAAABfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAIAAAAAAAfwAAAAAAewAAAAABfwAAAAAAaQAAAAACaQAAAAACUAAAAAAAawAAAAAAawAAAAADawAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAABawAAAAABawAAAAADfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAABawAAAAACfwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAAAawAAAAABawAAAAADUAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAADawAAAAABawAAAAADfwAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAawAAAAADawAAAAADfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAaQAAAAACaQAAAAAAaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAIgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAaQAAAAACaQAAAAACaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIgAAAAAAIgAAAAACIgAAAAAAIgAAAAABIgAAAAABIgAAAAADQwAAAAAAUAAAAAAAaQAAAAAAaQAAAAACaQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIgAAAAADIgAAAAABIgAAAAAAIgAAAAAAIgAAAAABIgAAAAACQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAIgAAAAADQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAABawAAAAACawAAAAAAUAAAAAAAIQAAAAACIQAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAACIQAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAACawAAAAAAawAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAAB version: 6 -5,0: ind: -5,0 - tiles: awAAAAABawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAACawAAAAACawAAAAADUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAawAAAAACawAAAAADawAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAawAAAAAAawAAAAADawAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAawAAAAADawAAAAABawAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAAAawAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAACawAAAAADawAAAAACfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAADawAAAAADawAAAAADRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAACawAAAAABawAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAADawAAAAADawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAAAawAAAAABawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAABawAAAAAAawAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAABawAAAAACawAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAAAawAAAAACawAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAADawAAAAADawAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAADawAAAAABawAAAAABfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAACawAAAAACfwAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAA + tiles: awAAAAADawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAADawAAAAACUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAfwAAAAAAawAAAAAAawAAAAADawAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAawAAAAAAawAAAAACawAAAAABfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAUAAAAAAAawAAAAACawAAAAACawAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAAAawAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAADawAAAAACawAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAADRAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAACawAAAAADawAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAAAawAAAAADawAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAADawAAAAAAawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAawAAAAADawAAAAABawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAAAawAAAAACawAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAABawAAAAABawAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAawAAAAAAawAAAAADawAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADawAAAAACawAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADfwAAAAAAbQAAAAAAbQAAAAAA version: 6 -4,2: ind: -4,2 - tiles: UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACMAAAAAACMAAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAADXgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABfwAAAAAAXgAAAAADXgAAAAADXgAAAAABMAAAAAAAXgAAAAACMAAAAAACXgAAAAACXgAAAAAAMAAAAAACMAAAAAACXgAAAAADXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACMAAAAAABXgAAAAACMAAAAAACXgAAAAADXgAAAAABMAAAAAABMAAAAAADXgAAAAACXgAAAAAAMAAAAAAAXgAAAAAAMAAAAAADUAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAdgAAAAABdgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABMAAAAAACMAAAAAADXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAACJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAADXgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABMAAAAAACXgAAAAAAMAAAAAAAXgAAAAABXgAAAAAAMAAAAAABMAAAAAAAXgAAAAADXgAAAAAAMAAAAAAAXgAAAAABMAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADMAAAAAABXgAAAAABMAAAAAACXgAAAAAAXgAAAAAAMAAAAAABMAAAAAAAXgAAAAADXgAAAAABMAAAAAABXgAAAAACMAAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAdgAAAAACdgAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: XgAAAAADXgAAAAADXgAAAAACJQAAAAACJQAAAAABfwAAAAAAfwAAAAAAaQAAAAADaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAJQAAAAADJQAAAAABfwAAAAAAaQAAAAABaQAAAAACaQAAAAACaQAAAAAAaQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAADaQAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABMAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAaQAAAAABbwAAAAAAbwAAAAACbwAAAAAAaQAAAAADaQAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACMAAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADXgAAAAACaQAAAAAAbwAAAAABbwAAAAADbwAAAAACaQAAAAAAaQAAAAAAXgAAAAACXgAAAAABMAAAAAACMAAAAAABMAAAAAADMAAAAAADMAAAAAADXgAAAAACXgAAAAABXgAAAAACaQAAAAACaQAAAAAAaQAAAAABaQAAAAADaQAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAMAAAAAABbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABbQAAAAAAQwAAAAAAfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAABewAAAAADewAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABbQAAAAAAQwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAABewAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABbQAAAAAAbQAAAAAAfwAAAAAAewAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAACXgAAAAACXgAAAAACJQAAAAACJQAAAAADfwAAAAAAfwAAAAAAaQAAAAAAaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABJQAAAAAAJQAAAAAAfwAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAADaQAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAACfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABMAAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAaQAAAAADbwAAAAAAbwAAAAADbwAAAAACaQAAAAACaQAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACMAAAAAABMAAAAAAAMAAAAAACXgAAAAADXgAAAAAAXgAAAAAAaQAAAAAAbwAAAAABbwAAAAADbwAAAAAAaQAAAAADaQAAAAABXgAAAAADXgAAAAADMAAAAAADMAAAAAACMAAAAAADMAAAAAACMAAAAAACXgAAAAABXgAAAAADXgAAAAAAaQAAAAADaQAAAAACaQAAAAADaQAAAAABaQAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAAAaQAAAAADfwAAAAAAXgAAAAADXgAAAAACXgAAAAABMAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABbQAAAAAAQwAAAAAAfwAAAAAAewAAAAAAewAAAAADfwAAAAAAewAAAAAAewAAAAABfwAAAAAAewAAAAADewAAAAACewAAAAADQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADbQAAAAAAQwAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAABewAAAAADewAAAAADewAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADbQAAAAAAbQAAAAAAfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAJQAAAAACJQAAAAADJQAAAAACJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABfwAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAACJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADfwAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABUAAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAACUAAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAUAAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAACUAAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAUAAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACUAAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAADfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAACfwAAAAAAUAAAAAAAaQAAAAACaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAaQAAAAADaQAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADJQAAAAABJQAAAAADJQAAAAADJQAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAACJQAAAAAAJQAAAAABJQAAAAADJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAABfwAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAADfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADfwAAAAAAJQAAAAADJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAACUAAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAADUAAAAAAAXgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAACUAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAABUAAAAAAAXgAAAAABXgAAAAADXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAABUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAJQAAAAABJQAAAAAAJQAAAAACJQAAAAACfwAAAAAAfwAAAAAAXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAUAAAAAAAaQAAAAABaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADfwAAAAAAUAAAAAAAaQAAAAACaQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAaQAAAAAAaQAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAABcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABUAAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAACcQAAAAADcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADUAAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAABcQAAAAABcQAAAAADcQAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAQwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: gwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADXgAAAAABXgAAAAACZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAACXgAAAAACfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAgwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA + tiles: gwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAACXgAAAAACfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAABXgAAAAADUAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAABZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAXgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADUAAAAAAAZQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADZQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAADZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAXgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAXgAAAAADZQAAAAAAZQAAAAAAZQAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAADUAAAAAAAZQAAAAAAXgAAAAABXgAAAAACXgAAAAABZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADZQAAAAAAUAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACZQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAXgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAJAAAAAACJAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJAAAAAADJAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJAAAAAACJAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJAAAAAADJAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJAAAAAAAJAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: UAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAAAcQAAAAADfwAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAABfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAADfwAAAAAAUgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAADfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAAAfwAAAAAAUAAAAAAAcQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAcQAAAAACUAAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAACcQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAADcQAAAAAAUAAAAAAAcQAAAAABcQAAAAADcQAAAAABcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADfwAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAADfwAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA + tiles: UAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADcQAAAAABfwAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAACcQAAAAABfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAJQAAAAABJQAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAABfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAAAfwAAAAAAUgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAcQAAAAADcQAAAAACcQAAAAACfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAUAAAAAAAcQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAADcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAADcQAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAACUAAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA version: 6 -6,-3: ind: -6,-3 - tiles: fwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAABfQAAAAABfQAAAAABfwAAAAAAfQAAAAABfQAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAADfQAAAAABfQAAAAACfwAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfQAAAAADUAAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAARwAAAAAARwAAAAAAfwAAAAAAbwAAAAAAXgAAAAAAXgAAAAABbwAAAAABbwAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACfwAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADRwAAAAAARwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAAARwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAACcQAAAAABcQAAAAABRwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABRwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAACfwAAAAAAfwAAAAAARwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAACfwAAAAAAUgAAAAAA + tiles: fwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAACfQAAAAADfQAAAAADfwAAAAAAfQAAAAACfQAAAAACfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAACfQAAAAABfQAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfQAAAAADUAAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAARwAAAAAARwAAAAAAfwAAAAAAbwAAAAAAXgAAAAABXgAAAAABbwAAAAACbwAAAAADZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADfwAAAAAAZQAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAACRwAAAAAARwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAACRwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAACRwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAARwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAARwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAACfwAAAAAAUgAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: XgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAMAAAAAABMAAAAAACMAAAAAADMAAAAAADMAAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAMAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAMAAAAAADXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADUAAAAAAAXgAAAAACMAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAMAAAAAADXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAACXgAAAAABfwAAAAAAXgAAAAADfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAADfwAAAAAAXgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAACGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAGAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADewAAAAADewAAAAABewAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAewAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAADawAAAAAAawAAAAADawAAAAABawAAAAABawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAAAawAAAAABawAAAAABawAAAAACawAAAAABawAAAAAAawAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAACawAAAAACNQAAAAABNQAAAAACNQAAAAACawAAAAAAawAAAAAAawAAAAAAfwAAAAAAJQAAAAACJQAAAAADUAAAAAAAUAAAAAAAbAAAAAADbAAAAAADawAAAAACawAAAAADNQAAAAADNQAAAAADNQAAAAACNQAAAAABNQAAAAAAawAAAAAAawAAAAAAawAAAAAB + tiles: XgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAAAMAAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAMAAAAAABUwAAAAAAUwAAAAAAUwAAAAAAMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADUAAAAAAAXgAAAAAAMAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAMAAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAADMAAAAAACMAAAAAAAMAAAAAACMAAAAAADMAAAAAACXgAAAAADfwAAAAAAXgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADewAAAAADewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAGAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAADGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAADewAAAAACewAAAAACewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAGAAAAAAAfwAAAAAAUAAAAAAAewAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAACawAAAAACawAAAAACawAAAAABawAAAAAAawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAABawAAAAACawAAAAADawAAAAAAawAAAAABawAAAAAAawAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAADNQAAAAAANQAAAAABNQAAAAACawAAAAABawAAAAADawAAAAAAfwAAAAAAJQAAAAACJQAAAAACUAAAAAAAUAAAAAAAbAAAAAADbAAAAAAAawAAAAACawAAAAADNQAAAAAANQAAAAADNQAAAAACNQAAAAABNQAAAAADawAAAAADawAAAAACawAAAAAC version: 6 -7,-2: ind: -7,-2 - tiles: UAAAAAAAfwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAABZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARwAAAAAAZwAAAAACfwAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAACfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAACZwAAAAACZwAAAAADfwAAAAAAfQAAAAACfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAADZwAAAAABZwAAAAACUAAAAAAAZwAAAAADZwAAAAABZwAAAAADUAAAAAAAZwAAAAADZwAAAAAAZwAAAAAAZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAZwAAAAACZwAAAAACZwAAAAABZwAAAAABZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAABfwAAAAAAfwAAAAAAZwAAAAADZwAAAAADfwAAAAAAZwAAAAACUAAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAACZwAAAAADZwAAAAACZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAADfwAAAAAAZwAAAAABfwAAAAAAZwAAAAACZwAAAAACZwAAAAADUAAAAAAAZwAAAAADZwAAAAADZwAAAAABZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAACZwAAAAADfwAAAAAAZwAAAAABZwAAAAADZwAAAAACZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAZwAAAAACZwAAAAADZwAAAAABfwAAAAAAZwAAAAADZwAAAAADZwAAAAABZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADQwAAAAAAQwAAAAAAZwAAAAADZwAAAAACZwAAAAABfwAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAADJQAAAAAAQwAAAAAAQwAAAAAAZwAAAAACZwAAAAADZwAAAAABfwAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAZwAAAAACUAAAAAAAfwAAAAAAUAAAAAAAZwAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAACZwAAAAAAZwAAAAACZwAAAAABZwAAAAADfwAAAAAAXgAAAAABXgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAABZwAAAAADZwAAAAABZwAAAAACZwAAAAADZwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA + tiles: UAAAAAAAfwAAAAAAZwAAAAAAZwAAAAABZwAAAAADZwAAAAACZwAAAAABZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARwAAAAAAZwAAAAADfwAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAACZwAAAAADZwAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAACZwAAAAADfwAAAAAAfQAAAAACfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAACUAAAAAAAZwAAAAACZwAAAAABZwAAAAABUAAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAACZwAAAAADZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAADfwAAAAAAfwAAAAAAZwAAAAACZwAAAAABfwAAAAAAZwAAAAADUAAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAACZwAAAAAAZwAAAAADZwAAAAADZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAAAfwAAAAAAZwAAAAAAfwAAAAAAZwAAAAAAZwAAAAADZwAAAAABUAAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAAAZwAAAAADfwAAAAAAZwAAAAACZwAAAAACZwAAAAACZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAZwAAAAADZwAAAAABZwAAAAAAfwAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABQwAAAAAAQwAAAAAAZwAAAAAAZwAAAAABZwAAAAACfwAAAAAAZwAAAAACZwAAAAACZwAAAAABZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADJQAAAAADQwAAAAAAQwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACfwAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAZwAAAAABUAAAAAAAfwAAAAAAUAAAAAAAZwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAADZwAAAAACfwAAAAAAXgAAAAACXgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAACZwAAAAADZwAAAAABQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAAAZwAAAAABZwAAAAADZwAAAAADZwAAAAADZwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA version: 6 -6,0: ind: -6,0 - tiles: UAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAAAbAAAAAABawAAAAABawAAAAACNQAAAAAANQAAAAACNQAAAAAANQAAAAACNQAAAAADawAAAAADawAAAAADawAAAAACNAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAbAAAAAAAbAAAAAABawAAAAABawAAAAADNQAAAAAANQAAAAADNQAAAAABNQAAAAACNQAAAAACawAAAAADawAAAAAAfwAAAAAANAAAAAAAJQAAAAACJQAAAAAAbAAAAAACbAAAAAACbAAAAAAAawAAAAAAawAAAAAANQAAAAACNQAAAAACNQAAAAAANQAAAAADNQAAAAABawAAAAABawAAAAAAUAAAAAAANAAAAAAAJQAAAAABJQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACawAAAAABawAAAAAANQAAAAABNQAAAAACNQAAAAAANQAAAAADNQAAAAADawAAAAACawAAAAABUAAAAAAANAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAABbAAAAAABawAAAAACawAAAAABNQAAAAADNQAAAAADNQAAAAABNQAAAAADNQAAAAACawAAAAADawAAAAABfwAAAAAAUAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAADbAAAAAADawAAAAAAawAAAAACNQAAAAADNQAAAAACNQAAAAABNQAAAAAANQAAAAAAawAAAAADawAAAAACUAAAAAAAJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAAAbAAAAAABawAAAAAAawAAAAAANQAAAAACNQAAAAADNQAAAAACNQAAAAACNQAAAAAAawAAAAAAawAAAAAAGAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAABawAAAAACNQAAAAADNQAAAAAANQAAAAAAawAAAAACawAAAAABawAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAACawAAAAAAawAAAAACawAAAAACawAAAAABawAAAAACawAAAAADawAAAAABawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAACawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAADfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAACfwAAAAAAGAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAABewAAAAABewAAAAABewAAAAAAewAAAAACfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADUAAAAAAAGAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAABewAAAAACewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAUAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAACewAAAAACewAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAADUAAAAAAAUAAAAAAA + tiles: UAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAADbAAAAAACawAAAAABawAAAAABNQAAAAACNQAAAAABNQAAAAAANQAAAAAANQAAAAAAawAAAAADawAAAAADawAAAAADNAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAbAAAAAABbAAAAAADawAAAAADawAAAAACNQAAAAADNQAAAAAANQAAAAACNQAAAAAANQAAAAAAawAAAAADawAAAAACfwAAAAAANAAAAAAAJQAAAAACJQAAAAACbAAAAAADbAAAAAADbAAAAAACawAAAAACawAAAAADNQAAAAABNQAAAAABNQAAAAADNQAAAAAANQAAAAABawAAAAADawAAAAADUAAAAAAANAAAAAAAJQAAAAADJQAAAAABbAAAAAACbAAAAAABbAAAAAACawAAAAABawAAAAACNQAAAAACNQAAAAABNQAAAAADNQAAAAAANQAAAAADawAAAAADawAAAAAAUAAAAAAANAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAbAAAAAABbAAAAAACawAAAAABawAAAAACNQAAAAADNQAAAAADNQAAAAABNQAAAAABNQAAAAAAawAAAAACawAAAAABfwAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAbAAAAAABbAAAAAAAawAAAAADawAAAAABNQAAAAAANQAAAAAANQAAAAADNQAAAAADNQAAAAABawAAAAADawAAAAABUAAAAAAAJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAbAAAAAACbAAAAAABawAAAAACawAAAAADNQAAAAADNQAAAAADNQAAAAABNQAAAAAANQAAAAAAawAAAAACawAAAAABGAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAACawAAAAADNQAAAAADNQAAAAAANQAAAAAAawAAAAABawAAAAABawAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAACawAAAAADawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAAAawAAAAACfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAewAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAADfwAAAAAAGAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAABewAAAAABfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAADUAAAAAAAGAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAACUAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAABUAAAAAAAUAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAACewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAABIQAAAAADewAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAABewAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAACfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAaQAAAAACUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAADaQAAAAAAaQAAAAABaQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAACaQAAAAADaQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAADXgAAAAAATwAAAAABXgAAAAADTwAAAAACXgAAAAADTwAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABTwAAAAABXgAAAAABTwAAAAACXgAAAAABTwAAAAACXgAAAAAATwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABXgAAAAAATwAAAAACXgAAAAACTwAAAAABXgAAAAACTwAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAABewAAAAACewAAAAAAIQAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAADewAAAAADewAAAAACewAAAAACewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADewAAAAADIQAAAAAAIQAAAAABIQAAAAACIQAAAAABfwAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABaQAAAAADaQAAAAADUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAaQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAACXgAAAAADTwAAAAAAXgAAAAACTwAAAAAAXgAAAAABTwAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABTwAAAAAAXgAAAAAATwAAAAADXgAAAAADTwAAAAACXgAAAAACTwAAAAADXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADXgAAAAABTwAAAAACXgAAAAADTwAAAAACXgAAAAACTwAAAAAAXgAAAAABfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAABZwAAAAACUAAAAAAAXgAAAAADXgAAAAACUwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAZwAAAAADUAAAAAAAfwAAAAAAZwAAAAACZwAAAAACZwAAAAACZwAAAAAAXgAAAAACXgAAAAACXgAAAAABaQAAAAADaQAAAAABaQAAAAADaQAAAAAAfwAAAAAAZwAAAAABZwAAAAADZwAAAAADfwAAAAAAZwAAAAABZwAAAAADZwAAAAADZwAAAAABXgAAAAADXgAAAAACXgAAAAAAaQAAAAAAaQAAAAADaQAAAAAAaQAAAAABaQAAAAABZwAAAAABZwAAAAACZwAAAAACfwAAAAAAZwAAAAADZwAAAAAAZwAAAAABZwAAAAAAUAAAAAAAXgAAAAADXgAAAAAAaQAAAAABaQAAAAABaQAAAAABaQAAAAABaQAAAAABZwAAAAAAZwAAAAACZwAAAAAAfwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAADUAAAAAAAXgAAAAADXgAAAAACaQAAAAACaQAAAAACaQAAAAAAaQAAAAAAfwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACfwAAAAAAZwAAAAADZwAAAAADZwAAAAAAZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAABZwAAAAADZwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUwAAAAAALQAAAAAALQAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAABewAAAAACewAAAAACewAAAAABJQAAAAAD + tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAADZwAAAAACZwAAAAABUAAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAZwAAAAABUAAAAAAAfwAAAAAAZwAAAAADZwAAAAADZwAAAAADZwAAAAADXgAAAAADXgAAAAABXgAAAAABaQAAAAADaQAAAAABaQAAAAABaQAAAAAAfwAAAAAAZwAAAAABZwAAAAAAZwAAAAADfwAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAAAXgAAAAABXgAAAAABXgAAAAACaQAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAAAZwAAAAABZwAAAAABZwAAAAACfwAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAABUAAAAAAAXgAAAAADXgAAAAADaQAAAAACaQAAAAABaQAAAAADaQAAAAADaQAAAAACZwAAAAACZwAAAAABZwAAAAABfwAAAAAAZwAAAAACZwAAAAABZwAAAAACZwAAAAABUAAAAAAAXgAAAAADXgAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAABfwAAAAAAZwAAAAADZwAAAAACZwAAAAACfwAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUwAAAAAALQAAAAAALQAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAAAJQAAAAAC version: 6 -7,0: ind: -7,0 - tiles: ewAAAAAAJQAAAAADJQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAACewAAAAACewAAAAABUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAABewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAABUAAAAAAAJQAAAAADJQAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAABUAAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAJQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAAATwAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAAATwAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAA + tiles: ewAAAAADJQAAAAACJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAACUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAABewAAAAACewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAACewAAAAABewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAABJQAAAAABUAAAAAAAUAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAABJQAAAAAAJQAAAAACJQAAAAADJQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAADTwAAAAADIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAACTwAAAAABIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAOQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIQAAAAADIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAJQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAAAJQAAAAACJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAA version: 6 -8,0: ind: -8,0 - tiles: UAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAACewAAAAACIQAAAAADIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIQAAAAACIQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABIQAAAAAAIQAAAAACIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAACIQAAAAABIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAADOQAAAAAAEgAAAAAAEgAAAAAAIQAAAAABIQAAAAAAIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAEgAAAAAAOQAAAAAAIQAAAAAAIQAAAAACIQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAADOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAABIQAAAAAAIQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABOQAAAAAAEgAAAAAAEgAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAABIQAAAAADIQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: UAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAABewAAAAAAIQAAAAADIQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAADJQAAAAACJQAAAAAAIQAAAAADIQAAAAAAIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAACIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAADOQAAAAAAEgAAAAAAEgAAAAAAIQAAAAABIQAAAAACIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAfwAAAAAAIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAADOQAAAAAAEgAAAAAAOQAAAAAAIQAAAAACIQAAAAADIQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAAAIQAAAAABIQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABOQAAAAAAEgAAAAAAEgAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAACIQAAAAACIQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAACaQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAAAaQAAAAABAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAaQAAAAABaQAAAAADAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAADaQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAACewAAAAACfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAADfwAAAAAAUAAAAAAAJQAAAAACJQAAAAABJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAABewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABaQAAAAAAaQAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABaQAAAAADaQAAAAACAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAACaQAAAAADaQAAAAACAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAAAaQAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAADJQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAACfwAAAAAAUAAAAAAAJQAAAAACJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAAD version: 6 -8,1: ind: -8,1 - tiles: AAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAACMwAAAAACAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAACAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABCwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAADMAAAAAAAMAAAAAAAUAAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAAAMAAAAAACMAAAAAAAUAAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAAAMAAAAAACMAAAAAACUAAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAADMAAAAAABMAAAAAABUAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAABMAAAAAAAMAAAAAABUAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMAAAAAACMAAAAAADMAAAAAADUAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAADfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -7,1: ind: -7,1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMwAAAAACMwAAAAAAMwAAAAADCwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMwAAAAACMwAAAAADMwAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAADUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAAATwAAAAACfwAAAAAAXgAAAAAB + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACTwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAADTwAAAAACfwAAAAAAXgAAAAAB version: 6 -6,2: ind: -6,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAABXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAACXgAAAAAATwAAAAABXgAAAAADTwAAAAADXgAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADTwAAAAAAXgAAAAABTwAAAAAAXgAAAAACTwAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABTwAAAAACXgAAAAADTwAAAAABXgAAAAABTwAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAACXgAAAAADTwAAAAAAXgAAAAAATwAAAAACXgAAAAACTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADTwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAAAXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAABXgAAAAACTwAAAAADXgAAAAAATwAAAAABXgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADTwAAAAABXgAAAAAATwAAAAADXgAAAAABTwAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABTwAAAAAAXgAAAAABTwAAAAADXgAAAAAATwAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAAAXgAAAAADTwAAAAACXgAAAAAATwAAAAABXgAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADTwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADTwAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACTwAAAAABXgAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAAXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABXgAAAAACTwAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAADXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAAATwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAADXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAADXgAAAAACXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACTwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAAATwAAAAACXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAATwAAAAACXgAAAAABXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADTwAAAAACXgAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAACXgAAAAADXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAAATwAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACTwAAAAABXgAAAAABXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAACXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAADXgAAAAAATwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADTwAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAABXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACTwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAACTwAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAATwAAAAABXgAAAAADXgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAAXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: fwAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAACJQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAACTwAAAAACQwAAAAAATwAAAAACTwAAAAAATwAAAAABTwAAAAACUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAATwAAAAACTwAAAAADQwAAAAAATwAAAAACTwAAAAADQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADQwAAAAAAQwAAAAAATwAAAAABTwAAAAABTwAAAAABTwAAAAAATwAAAAACUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAADTwAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJQAAAAACJQAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAACJQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAABJQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAATwAAAAAATwAAAAAAQwAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAACUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAABTwAAAAABTwAAAAABQwAAAAAATwAAAAADTwAAAAABQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAADQwAAAAAAQwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACTwAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAADTwAAAAAATwAAAAACTwAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAJQAAAAADJQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAACJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: XgAAAAADXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACXgAAAAADXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAABfwAAAAAAfQAAAAACfQAAAAABfQAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfQAAAAACUAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAMAAAAAAAXgAAAAADMAAAAAAAMAAAAAACXgAAAAADMAAAAAACXgAAAAABMAAAAAABXgAAAAABMAAAAAACMAAAAAAAXgAAAAABMAAAAAACXgAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAAAXgAAAAABfwAAAAAAaQAAAAABaQAAAAACQwAAAAAAQwAAAAAAaQAAAAAAaQAAAAADfwAAAAAAIAAAAAABIAAAAAABIAAAAAABQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAaQAAAAADaQAAAAADaQAAAAADaQAAAAABaQAAAAAAaQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADUAAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAACaQAAAAAAaQAAAAABfwAAAAAAIAAAAAACIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAAAXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfQAAAAABfQAAAAACfQAAAAACXgAAAAABXgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfQAAAAAAfQAAAAADfQAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfQAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAADMAAAAAAAXgAAAAADMAAAAAAAMAAAAAABXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAABMAAAAAABMAAAAAADXgAAAAADMAAAAAABXgAAAAACMAAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAaQAAAAAAaQAAAAACQwAAAAAAQwAAAAAAaQAAAAABaQAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAADQwAAAAAAQwAAAAAAQwAAAAAAXgAAAAABXgAAAAADUAAAAAAAaQAAAAABaQAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAUAAAAAAAaQAAAAACaQAAAAADaQAAAAACaQAAAAACaQAAAAAAaQAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fQAAAAAAfQAAAAAAfQAAAAADfQAAAAABfQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfQAAAAADfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAaQAAAAAAaQAAAAABaQAAAAAAaQAAAAACaQAAAAAAaQAAAAAAaQAAAAABaQAAAAACaQAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAaQAAAAADaQAAAAAAaQAAAAABaQAAAAAAaQAAAAAAaQAAAAABaQAAAAADaQAAAAAAaQAAAAABaQAAAAADUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAUAAAAAAAaQAAAAADaQAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAAAaQAAAAACfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAADfwAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAAAaQAAAAADaQAAAAAAaQAAAAAAaQAAAAACaQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAACfQAAAAAAfQAAAAACfQAAAAABfQAAAAADfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABUAAAAAAAaQAAAAAAaQAAAAADaQAAAAAAaQAAAAAAaQAAAAADaQAAAAAAaQAAAAADaQAAAAACaQAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAADaQAAAAADaQAAAAACaQAAAAABaQAAAAACaQAAAAAAaQAAAAADaQAAAAABaQAAAAACaQAAAAABaQAAAAACUAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAACUAAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAADaQAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACfwAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAABaQAAAAACaQAAAAABaQAAAAACaQAAAAAAaQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -5,2: ind: -5,2 - tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAAAawAAAAAAawAAAAADUAAAAAAAIQAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAADawAAAAABawAAAAAAfwAAAAAAIQAAAAAAIQAAAAADIQAAAAABIQAAAAADIQAAAAACIQAAAAADIQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAABUAAAAAAAawAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABMAAAAAAAMAAAAAADXgAAAAAAXgAAAAAAMAAAAAAAXgAAAAABMAAAAAAAXgAAAAACXgAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAAAMAAAAAABXgAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAABXgAAAAABXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAACawAAAAACawAAAAAAUAAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAawAAAAABawAAAAAAawAAAAACfwAAAAAAIQAAAAADIQAAAAADIQAAAAAAIQAAAAAAIQAAAAACIQAAAAACIQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAawAAAAACUAAAAAAAawAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABMAAAAAAAMAAAAAABXgAAAAAAXgAAAAACMAAAAAABXgAAAAACMAAAAAADXgAAAAACXgAAAAABMAAAAAABMAAAAAADMAAAAAACMAAAAAABXgAAAAACXgAAAAAAXgAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADMAAAAAACXgAAAAABMAAAAAACXgAAAAABXgAAAAADMAAAAAACMAAAAAAAMAAAAAADMAAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-3: ind: -7,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARwAAAAAARQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAZwAAAAAAZwAAAAADZwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAQwAAAAAAEgAAAAAAEgAAAAAAbQAAAAAAfwAAAAAAZwAAAAABZwAAAAABZwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAACfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAACZwAAAAACZwAAAAAAZwAAAAACZwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAAAZwAAAAAAZwAAAAADfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAARwAAAAAARwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARwAAAAAARQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAZwAAAAACZwAAAAAAZwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAQwAAAAAAEgAAAAAAEgAAAAAAbQAAAAAAfwAAAAAAZwAAAAACZwAAAAACZwAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAARwAAAAAARwAAAAAA version: 6 -10,-1: ind: -10,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAJQAAAAAAJQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAACNQAAAAADUAAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACNQAAAAADUAAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAADNQAAAAACUAAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAADNQAAAAAAUAAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAANQAAAAAANQAAAAABNQAAAAADUAAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAJQAAAAABJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAABNQAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAACJQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAADNQAAAAACUAAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADNQAAAAACUAAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAABNQAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAANQAAAAAANQAAAAAANQAAAAAAUAAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAADJQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAAB version: 6 -9,-1: ind: -9,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAANQAAAAADNQAAAAADNQAAAAACNQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACNQAAAAACNQAAAAACUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAACJQAAAAAAJQAAAAABJQAAAAACJQAAAAABfwAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAACJQAAAAAAUAAAAAAAJQAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADJQAAAAACJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAABJQAAAAABUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAACUAAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAADUAAAAAAAJQAAAAAAJQAAAAABQwAAAAAAJQAAAAABJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACUAAAAAAAJQAAAAABJQAAAAACQwAAAAAAJQAAAAABJQAAAAADJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAADUAAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAABfwAAAAAAJQAAAAACJQAAAAABQwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAANQAAAAACNQAAAAABNQAAAAADNQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAAANQAAAAADNQAAAAADUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAADJQAAAAABJQAAAAADJQAAAAABJQAAAAADJQAAAAADfwAAAAAAJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAACfwAAAAAAJQAAAAACJQAAAAADJQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADJQAAAAAAUAAAAAAAJQAAAAABJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAAAUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAACJQAAAAAAJQAAAAACUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAABUAAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAADUAAAAAAAJQAAAAABJQAAAAACQwAAAAAAJQAAAAABJQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAAAUAAAAAAAJQAAAAADJQAAAAAAQwAAAAAAJQAAAAADJQAAAAADJQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAACUAAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAAAfwAAAAAAJQAAAAAAJQAAAAACQwAAAAAA version: 6 -9,0: ind: -9,0 - tiles: JQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACUAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADfwAAAAAAJQAAAAAAJQAAAAABQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAACUAAAAAAAfgAAAAAAUAAAAAAANQAAAAABNQAAAAADfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAACUAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAABUAAAAAAAJQAAAAABJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAACUAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAABUAAAAAAAJQAAAAADJQAAAAABUAAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAADJQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACUAAAAAAAJQAAAAADJQAAAAABUAAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAADJQAAAAAAJQAAAAACfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAABUAAAAAAAJQAAAAADJQAAAAADUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAANQAAAAADNQAAAAABfwAAAAAAJQAAAAABJQAAAAACUAAAAAAAfwAAAAAAXAAAAAAIJQAAAAADJQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAABUAAAAAAAJQAAAAABJQAAAAABUAAAAAAAJQAAAAAAJQAAAAADXAAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADUAAAAAAAJQAAAAABJQAAAAACUAAAAAAAJQAAAAAAXAAAAAAEXAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAADUAAAAAAAJQAAAAACJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAANQAAAAADNQAAAAABUAAAAAAAJQAAAAAAJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAACfwAAAAAAJQAAAAADJQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAAAfwAAAAAAJQAAAAADJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAABfwAAAAAAJQAAAAABJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAABUAAAAAAAJQAAAAAAJQAAAAADfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAADUAAAAAAAJQAAAAACJQAAAAAAfwAAAAAA + tiles: JQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAADJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAADfwAAAAAAJQAAAAAAJQAAAAADQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAADUAAAAAAAfgAAAAAAUAAAAAAANQAAAAAANQAAAAADfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAADUAAAAAAAAAAAAAAAUAAAAAAANQAAAAABNQAAAAACUAAAAAAAJQAAAAADJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAABUAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACUAAAAAAAJQAAAAAAJQAAAAACUAAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAAAUAAAAAAAJQAAAAACJQAAAAACUAAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAACUAAAAAAAJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAANQAAAAADNQAAAAABfwAAAAAAJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAXAAAAAAIJQAAAAAAJQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADUAAAAAAAJQAAAAADJQAAAAACUAAAAAAAJQAAAAADJQAAAAACXAAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAABUAAAAAAAJQAAAAADJQAAAAABUAAAAAAAJQAAAAABXAAAAAAAXAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAACUAAAAAAAJQAAAAADJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAANQAAAAABNQAAAAAAUAAAAAAAJQAAAAADJQAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAAAfwAAAAAAJQAAAAADJQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADfwAAAAAAJQAAAAACJQAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAACfwAAAAAAJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAABUAAAAAAAJQAAAAAAJQAAAAACfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAAAUAAAAAAAJQAAAAACJQAAAAAAfwAAAAAA version: 6 -10,0: ind: -10,0 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAACJQAAAAABJQAAAAACJQAAAAABUAAAAAAANQAAAAADUAAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAAAJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAACfwAAAAAAJQAAAAADUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAAAJQAAAAABJQAAAAADUAAAAAAANQAAAAABfwAAAAAAJQAAAAABfwAAAAAAJQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAUAAAAAAANQAAAAADfwAAAAAAJQAAAAAAfwAAAAAAJQAAAAACfwAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAXAAAAAAAJQAAAAAAXAAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAABfwAAAAAAJQAAAAABUAAAAAAAAAAAAAAAUAAAAAAAXAAAAAALJQAAAAABXAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABUAAAAAAAJQAAAAACfwAAAAAAJQAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAXAAAAAAAJQAAAAACXAAAAAAAXAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADUAAAAAAAJQAAAAAAfwAAAAAAJQAAAAADUAAAAAAAfwAAAAAAUAAAAAAAXAAAAAAAJQAAAAAAXAAAAAAEXAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAACfwAAAAAAJQAAAAAAUAAAAAAAfgAAAAAAUAAAAAAAXAAAAAAHXAAAAAAAJQAAAAAAXAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAANQAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXAAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAAC + tiles: AAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAADJQAAAAADJQAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAACJQAAAAADUAAAAAAANQAAAAADUAAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAADJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAAAJQAAAAACUAAAAAAANQAAAAADUAAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAADJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACUAAAAAAANQAAAAABUAAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAANQAAAAADUAAAAAAAJQAAAAADfwAAAAAAJQAAAAACUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAACJQAAAAACJQAAAAACUAAAAAAANQAAAAAAfwAAAAAAJQAAAAABfwAAAAAAJQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAABUAAAAAAANQAAAAACfwAAAAAAJQAAAAADfwAAAAAAJQAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAXAAAAAAAJQAAAAABXAAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAANQAAAAABUAAAAAAAJQAAAAAAfwAAAAAAJQAAAAACUAAAAAAAAAAAAAAAUAAAAAAAXAAAAAAKJQAAAAACXAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACUAAAAAAAJQAAAAACfwAAAAAAJQAAAAACUAAAAAAAfgAAAAAAUAAAAAAAXAAAAAAAJQAAAAAAXAAAAAAAXAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABUAAAAAAAJQAAAAADfwAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXAAAAAAAJQAAAAABXAAAAAAAXAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAABUAAAAAAAJQAAAAAAfwAAAAAAJQAAAAABUAAAAAAAfgAAAAAAUAAAAAAAXAAAAAAAXAAAAAABJQAAAAABXAAAAAAHfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAANQAAAAABfwAAAAAAJQAAAAADfwAAAAAAJQAAAAABfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXAAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAAC version: 6 -10,1: ind: -10,1 - tiles: UAAAAAAANQAAAAAAfwAAAAAAJQAAAAABfwAAAAAAJQAAAAADfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXAAAAAAAXAAAAAAAJQAAAAACJQAAAAADJQAAAAADUAAAAAAANQAAAAAAUAAAAAAAJQAAAAAAfwAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAAAJQAAAAACUAAAAAAANQAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXAAAAAAAJQAAAAAAJQAAAAAAUAAAAAAANQAAAAADUAAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAACJQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAADUAAAAAAANQAAAAACUAAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAADUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAAAJQAAAAABfgAAAAAAfgAAAAAAfwAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAADJQAAAAADJQAAAAACAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAJQAAAAAAJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: UAAAAAAANQAAAAAAfwAAAAAAJQAAAAADfwAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXAAAAAAAXAAAAAADJQAAAAAAJQAAAAACJQAAAAADUAAAAAAANQAAAAABUAAAAAAAJQAAAAABfwAAAAAAJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAJQAAAAACJQAAAAACUAAAAAAANQAAAAABUAAAAAAAJQAAAAADJQAAAAACJQAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXAAAAAAAJQAAAAACJQAAAAADUAAAAAAANQAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAACJQAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADUAAAAAAANQAAAAACUAAAAAAAJQAAAAACJQAAAAABJQAAAAADJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAADJQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAADJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAABfgAAAAAAfgAAAAAAfwAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAADJQAAAAADAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAJQAAAAADJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -9,1: ind: -9,1 - tiles: UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAADUAAAAAAAJQAAAAABJQAAAAADfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAAAUAAAAAAAJQAAAAACJQAAAAADUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAABJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAACUAAAAAAAJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACJQAAAAABJQAAAAACUAAAAAAAJQAAAAABJQAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAADUAAAAAAAJQAAAAACJQAAAAADJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAADJQAAAAACJQAAAAACJQAAAAADJQAAAAAAUAAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAACfwAAAAAAJQAAAAACJQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAADJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAADNQAAAAAANQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAACNQAAAAACNQAAAAAANQAAAAADUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAAANQAAAAADUAAAAAAAJQAAAAACJQAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAADUAAAAAAAJQAAAAADJQAAAAADUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAABUAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACJQAAAAACJQAAAAACUAAAAAAAJQAAAAACJQAAAAADUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAACJQAAAAAAUAAAAAAAJQAAAAABJQAAAAAAJQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAADJQAAAAABUAAAAAAAJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAACfwAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAACJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAADNQAAAAABNQAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANQAAAAADNQAAAAADNQAAAAADNQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -6,-4: ind: -6,-4 - tiles: RwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAgwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAADfQAAAAACfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAABfQAAAAACfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAADfQAAAAAAfQAAAAABfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAACfQAAAAACfwAAAAAAfwAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAABfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfQAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAA + tiles: RwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAACgwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAARwAAAAAARwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfQAAAAAAfQAAAAABfwAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfQAAAAADfQAAAAABfwAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAABfQAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfQAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACMAAAAAADMAAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAACMAAAAAACXgAAAAABMAAAAAADMAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAMAAAAAABMAAAAAACXgAAAAACMAAAAAACXgAAAAABXgAAAAADMAAAAAADXgAAAAABMAAAAAABMAAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAewAAAAADewAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAFgAAAAAEfQAAAAACfQAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfQAAAAACfQAAAAADfQAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfQAAAAACfQAAAAABfQAAAAADfQAAAAADewAAAAABewAAAAABewAAAAAAewAAAAAAXgAAAAADfQAAAAADfQAAAAADfQAAAAABfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfQAAAAADfQAAAAABfQAAAAABfQAAAAADewAAAAADewAAAAADewAAAAADewAAAAABXgAAAAABfQAAAAAAfQAAAAADfQAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfQAAAAAAfQAAAAADfQAAAAADfwAAAAAAfwAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAADfQAAAAAAfQAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABMAAAAAADMAAAAAABXgAAAAACMAAAAAADXgAAAAAAXgAAAAABMAAAAAADXgAAAAAAMAAAAAABMAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADMAAAAAADMAAAAAAAXgAAAAACMAAAAAACXgAAAAADXgAAAAAAMAAAAAABXgAAAAACMAAAAAABMAAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAewAAAAABewAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABUAAAAAAAFgAAAAAGfQAAAAABfQAAAAACfwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAACfwAAAAAAfQAAAAACfQAAAAAAfQAAAAADfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACfQAAAAAAfQAAAAADfQAAAAAAfQAAAAADewAAAAADewAAAAACewAAAAACewAAAAABXgAAAAAAfQAAAAABfQAAAAAAfQAAAAADfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABfQAAAAABfQAAAAABfQAAAAABfQAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAAAXgAAAAACfQAAAAACfQAAAAADfQAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAADfQAAAAAAfQAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACfQAAAAADfQAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA version: 6 -2,-6: ind: -2,-6 @@ -436,7 +437,7 @@ entities: version: 6 3,-4: ind: 3,-4 - tiles: bQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXgAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAACQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAACbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbwAAAAADbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAA + tiles: bQAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXgAAAAADUAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAA version: 6 -3,-6: ind: -3,-6 @@ -448,23 +449,23 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: fwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAABbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbQAAAAAAbQAAAAAAbwAAAAACbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAADbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbQAAAAAAbQAAAAAAbwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAIBwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAFCwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAADBwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAACwAAAAAACwAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAgwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACfwAAAAAAgwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAACfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -9,-2: ind: -9,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABQAAAAANBQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABQAAAAAEBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA version: 6 -10,-2: ind: -10,-2 @@ -472,7 +473,7 @@ entities: version: 6 -8,-2: ind: -8,-2 - tiles: QwAAAAAABQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAABQAAAAAEQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAAAZwAAAAAAZwAAAAACZwAAAAACBQAAAAAOBQAAAAAABQAAAAAABQAAAAAGBQAAAAANfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAABQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAQwAAAAAABQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAJQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: QwAAAAAABQAAAAALQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAABQAAAAAKQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAACZwAAAAABZwAAAAAABQAAAAANBQAAAAAKBQAAAAAEBQAAAAAGBQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAABQAAAAANQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAQwAAAAAABQAAAAAHQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAbQAAAAAAbQAAAAAAZwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAJQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAJQAAAAADJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA version: 6 -5,-6: ind: -5,-6 @@ -480,7 +481,7 @@ entities: version: 6 -6,-6: ind: -6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAADTwAAAAABTwAAAAADQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADWwAAAAAAWwAAAAAATwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADWwAAAAAAWwAAAAAATwAAAAACQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADWwAAAAAAWwAAAAAATwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAABTwAAAAAATwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWwAAAAAAWwAAAAAATwAAAAADQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWwAAAAAAWwAAAAAATwAAAAACQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACWwAAAAAAWwAAAAAATwAAAAACQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAACTwAAAAACTwAAAAACQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 -7,-4: ind: -7,-4 @@ -492,11 +493,11 @@ entities: version: 6 5,2: ind: 5,2 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAFGQAAAAABGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAAGGQAAAAADGQAAAAAEGQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAGQAAAAAGGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAABGQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAADGQAAAAAFGQAAAAAEBwAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAACGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAADGQAAAAACGQAAAAABGQAAAAADBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAABGQAAAAADGQAAAAAFGQAAAAAGGQAAAAAGGQAAAAABGQAAAAAEGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAGGQAAAAABGQAAAAAFGQAAAAABGQAAAAABBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAFGQAAAAABGQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAFGQAAAAADGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAGGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGGQAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACGQAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAFGQAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAFGQAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGGQAAAAAAGQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAGGQAAAAAGGQAAAAAGBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAAGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAAGQAAAAADGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAGGQAAAAAAGQAAAAACBwAAAAAAGQAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAAGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAAAGQAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAADGQAAAAAAGQAAAAABGQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACGQAAAAAAGQAAAAAGGQAAAAACGQAAAAABBwAAAAAABwAAAAAKBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAABGQAAAAACGQAAAAAEBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAAGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAEGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGGQAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAFGQAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAABGQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGQAAAAABGQAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAGQAAAAAGBwAAAAAIBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACGQAAAAAFBwAAAAAABwAAAAAABwAAAAALBwAAAAAGGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHGQAAAAADGQAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAAGQAAAAAGBwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAADGQAAAAABBwAAAAADGQAAAAABGQAAAAABGQAAAAAFGQAAAAADGQAAAAABGQAAAAAAGQAAAAABGQAAAAACGQAAAAAEGQAAAAACGQAAAAAEGQAAAAACGQAAAAAGGQAAAAAGGQAAAAABBwAAAAAKGQAAAAACGQAAAAABBwAAAAAAGQAAAAACGQAAAAADGQAAAAACGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAACGQAAAAAFGQAAAAABGQAAAAAEGQAAAAAEGQAAAAABGQAAAAAEGQAAAAABGQAAAAACBwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAACBwAAAAAABwAAAAAAGQAAAAABGQAAAAAAGQAAAAAEGQAAAAABGQAAAAACGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAEBwAAAAAABwAAAAAABwAAAAAAGQAAAAAEGQAAAAAFBwAAAAAABwAAAAAKBwAAAAABBwAAAAALGQAAAAAAGQAAAAADGQAAAAAEGQAAAAAEGQAAAAACGQAAAAADGQAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABBwAAAAAAGQAAAAAFGQAAAAACGQAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAGQAAAAADBwAAAAAABwAAAAAAGQAAAAABGQAAAAAGBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAGQAAAAAAGQAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAAGQAAAAADGQAAAAAEBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAAGQAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAABwAAAAALBwAAAAAMBwAAAAAAGQAAAAADGQAAAAADGQAAAAAFBwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAABGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAAFGQAAAAAGGQAAAAABGQAAAAAFGQAAAAAFGQAAAAADGQAAAAADGQAAAAAFBwAAAAAAGQAAAAABGQAAAAAEGQAAAAABGQAAAAAEGQAAAAAFGQAAAAAAGQAAAAABGQAAAAAFGQAAAAADGQAAAAAGGQAAAAADGQAAAAAEGQAAAAAEGQAAAAAGGQAAAAAGBwAAAAAAGQAAAAACGQAAAAACBwAAAAAAGQAAAAADGQAAAAAGGQAAAAAAGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAACGQAAAAADGQAAAAADGQAAAAAAGQAAAAAAGQAAAAABBwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAFBwAAAAAABwAAAAAAGQAAAAADGQAAAAAEGQAAAAADGQAAAAABGQAAAAACGQAAAAAFGQAAAAAEGQAAAAADGQAAAAABBwAAAAAABwAAAAAABwAAAAAEGQAAAAADGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAADGQAAAAABGQAAAAAEGQAAAAABGQAAAAAFGQAAAAADBwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGGQAAAAAGBwAAAAAAGQAAAAAGGQAAAAACGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGBwAAAAAABwAAAAAAGQAAAAABGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFGQAAAAAFGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAA version: 6 -11,-1: ind: -11,-1 @@ -528,19 +529,19 @@ entities: version: 6 -8,-3: ind: -8,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAALQAAAAAALQAAAAAAPAAAAAAAPAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAbQAAAAAALQAAAAAALQAAAAAAPAAAAAAAPAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAbwAAAAADOQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAADUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbwAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAALQAAAAAALQAAAAAAPAAAAAAAPAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAbQAAAAAALQAAAAAALQAAAAAAPAAAAAAAPAAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAbwAAAAADOQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAACUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbwAAAAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -9,-3: ind: -9,-3 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAADfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAXgAAAAACfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAABfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAOQAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -8,-4: ind: -8,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAewAAAAADFgAAAAADewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAACewAAAAACFgAAAAAGFgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAFgAAAAACewAAAAABFgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAFgAAAAACewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAADbwAAAAAAbwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAewAAAAAAFgAAAAAEewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFgAAAAABewAAAAABFgAAAAACFgAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAFgAAAAACewAAAAADFgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAFgAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbwAAAAAAbwAAAAADbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAA version: 6 -9,-4: ind: -9,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADZQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZQAAAAAAXgAAAAAAXgAAAAADZQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbwAAAAABUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAACXgAAAAAAXgAAAAAAZQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZQAAAAAAXgAAAAABXgAAAAADZQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAXgAAAAABfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 @@ -552,11 +553,11 @@ entities: version: 6 -8,-5: ind: -8,-5 - tiles: AAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAA + tiles: AAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAewAAAAABewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAewAAAAADewAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAA version: 6 -7,-6: ind: -7,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAADaQAAAAACaQAAAAADaQAAAAABaQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAAAfwAAAAAAMwAAAAABKwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAAAbwAAAAACfwAAAAAAQwAAAAAAaQAAAAADaQAAAAAAaQAAAAAAaQAAAAABfwAAAAAAaQAAAAAAfwAAAAAAKwAAAAACKwAAAAACKwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABQwAAAAAAaQAAAAABaQAAAAABfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAKwAAAAACKwAAAAACKwAAAAAAKwAAAAABMwAAAAAAMwAAAAADbwAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAaQAAAAADaQAAAAAAaQAAAAABaQAAAAABaQAAAAADaQAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABfwAAAAAAMwAAAAAAKwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAADbwAAAAABfwAAAAAAQwAAAAAAaQAAAAADaQAAAAACaQAAAAABaQAAAAAAfwAAAAAAaQAAAAADfwAAAAAAKwAAAAAAKwAAAAABKwAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAADQwAAAAAAaQAAAAABaQAAAAABfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAKwAAAAAAKwAAAAABKwAAAAABKwAAAAABMwAAAAAAMwAAAAABbwAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -8,-6: ind: -8,-6 @@ -564,23 +565,23 @@ entities: version: 6 4,-1: ind: 4,-1 - tiles: BwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAGQAAAAAEGQAAAAAGGQAAAAADGQAAAAAEGQAAAAABGQAAAAADGQAAAAADGQAAAAACGQAAAAAEGQAAAAACGQAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAGGQAAAAADGQAAAAAFGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAADGQAAAAAGGQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJGQAAAAADGQAAAAAGGQAAAAAGGQAAAAABGQAAAAAGGQAAAAABGQAAAAAEGQAAAAAFGQAAAAAFGQAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAAFGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAGQAAAAADGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAABGQAAAAADGQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAAGQAAAAAEGQAAAAAEGQAAAAADGQAAAAAGGQAAAAABGQAAAAADGQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAGQAAAAAFGQAAAAAGGQAAAAABGQAAAAADGQAAAAAEGQAAAAAGGQAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAEGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKGQAAAAAEGQAAAAAEGQAAAAACGQAAAAAFGQAAAAABGQAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAEGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAAGQAAAAACGQAAAAAAGQAAAAACGQAAAAAEGQAAAAAFGQAAAAABGQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAADGQAAAAAEGQAAAAACGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAGBwAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAAAGQAAAAADGQAAAAAEGQAAAAABGQAAAAABGQAAAAAGGQAAAAAFGQAAAAADGQAAAAACGQAAAAADGQAAAAACGQAAAAAFBwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAEGQAAAAADGQAAAAACGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAEGQAAAAAEGQAAAAADGQAAAAABGQAAAAAAGQAAAAADBwAAAAAABwAAAAAAGQAAAAAEGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABGQAAAAAFGQAAAAAGGQAAAAABGQAAAAAFGQAAAAACGQAAAAAAGQAAAAABGQAAAAAEBwAAAAABGQAAAAACGQAAAAACGQAAAAAGGQAAAAAFGQAAAAABGQAAAAAAGQAAAAACGQAAAAABGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAACGQAAAAAA + tiles: BwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAGQAAAAAEGQAAAAABGQAAAAAGGQAAAAACGQAAAAADGQAAAAADGQAAAAAEGQAAAAADGQAAAAAFGQAAAAAGGQAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAFGQAAAAAAGQAAAAADGQAAAAADGQAAAAADGQAAAAADGQAAAAACGQAAAAAGGQAAAAACGQAAAAABGQAAAAACBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAACGQAAAAADGQAAAAAFGQAAAAABGQAAAAAGGQAAAAADGQAAAAAEGQAAAAABGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAADGQAAAAACGQAAAAADGQAAAAAFGQAAAAACGQAAAAAFGQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAGGQAAAAAAGQAAAAACGQAAAAAEGQAAAAACGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAADGQAAAAAGGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAGQAAAAAAGQAAAAABGQAAAAAAGQAAAAACGQAAAAADGQAAAAACGQAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAAGQAAAAADGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAAFBwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAAAGQAAAAAGGQAAAAAEGQAAAAACGQAAAAACGQAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAALBwAAAAAKBwAAAAAABwAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAADGQAAAAAEGQAAAAABGQAAAAADGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAAGQAAAAACGQAAAAAEGQAAAAAGGQAAAAABGQAAAAADGQAAAAADGQAAAAABGQAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAADGQAAAAAFGQAAAAAEGQAAAAAGGQAAAAACBwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAABGQAAAAADGQAAAAABGQAAAAACGQAAAAADGQAAAAAEGQAAAAAAGQAAAAACGQAAAAABGQAAAAACGQAAAAAFGQAAAAAEBwAAAAAJBwAAAAAABwAAAAAAGQAAAAAGGQAAAAAAGQAAAAACGQAAAAAEGQAAAAAEGQAAAAAAGQAAAAADGQAAAAAGGQAAAAAGGQAAAAABGQAAAAABGQAAAAAAGQAAAAABBwAAAAAABwAAAAAAGQAAAAAEGQAAAAAEGQAAAAACGQAAAAADGQAAAAABGQAAAAACGQAAAAAGGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAADGQAAAAAFGQAAAAAFBwAAAAAAGQAAAAACGQAAAAABGQAAAAAGGQAAAAAGGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAABGQAAAAAGGQAAAAADGQAAAAAEGQAAAAABGQAAAAAAGQAAAAAGGQAAAAAB version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAAGQAAAAAGGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGQAAAAAFGQAAAAAGGQAAAAADGQAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAAGQAAAAAAGQAAAAABGQAAAAADGQAAAAACGQAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAABGQAAAAAGGQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAHGQAAAAAFGQAAAAADGQAAAAAEGQAAAAAFGQAAAAACGQAAAAAGGQAAAAAEBwAAAAAABwAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAMBwAAAAALBwAAAAAAGQAAAAAGGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAFBwAAAAAAGQAAAAAEGQAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAFGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAGGQAAAAAGGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAGQAAAAACGQAAAAAEGQAAAAAAGQAAAAADGQAAAAACGQAAAAAGBwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAAGQAAAAACGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAFGQAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKGQAAAAAFGQAAAAACGQAAAAAAGQAAAAAGGQAAAAAAGQAAAAAGGQAAAAAAGQAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAAGGQAAAAAFGQAAAAAEGQAAAAADGQAAAAACGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAFGQAAAAAAGQAAAAABGQAAAAAEGQAAAAACGQAAAAAGGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAF + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHGQAAAAABGQAAAAAGGQAAAAABGQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAAGQAAAAADGQAAAAAEGQAAAAACGQAAAAAEGQAAAAABBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAGQAAAAACGQAAAAAFGQAAAAAEGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADGQAAAAAEGQAAAAAFGQAAAAADGQAAAAAEGQAAAAAFGQAAAAAGBwAAAAAABwAAAAAAGQAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAACGQAAAAAGGQAAAAAFGQAAAAADBwAAAAAAGQAAAAABGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMGQAAAAACGQAAAAACGQAAAAAGGQAAAAABGQAAAAAFGQAAAAAFGQAAAAAFGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAADGQAAAAAGGQAAAAACGQAAAAADGQAAAAAEBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAGQAAAAABGQAAAAABGQAAAAAEGQAAAAACGQAAAAADGQAAAAADGQAAAAADGQAAAAAGBwAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAKBwAAAAAAGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAAGQAAAAACGQAAAAAFBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAACBwAAAAAAGQAAAAAFGQAAAAAGGQAAAAADGQAAAAAGGQAAAAADGQAAAAAGGQAAAAAFGQAAAAABGQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAACGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAEGQAAAAAEGQAAAAAEGQAAAAAG version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAHBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: GQAAAAADGQAAAAAGGQAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAAGQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABGQAAAAAFGQAAAAACGQAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAABGQAAAAADGQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAACGQAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAABGQAAAAAGBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAABGQAAAAAFBwAAAAAAGQAAAAACBwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAEGQAAAAACGQAAAAABGQAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GQAAAAADGQAAAAAEGQAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAFGQAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAABGQAAAAADGQAAAAAEGQAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFGQAAAAAGGQAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAGGQAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAACGQAAAAACBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFGQAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAGGQAAAAACBwAAAAAAGQAAAAAEBwAAAAAGBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAGGQAAAAADGQAAAAABGQAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAABGQAAAAAGGQAAAAAGGQAAAAAFBwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: BwAAAAAAGQAAAAAEGQAAAAAGGQAAAAACGQAAAAAEGQAAAAACGQAAAAAAGQAAAAAFGQAAAAACGQAAAAAAGQAAAAAEGQAAAAAEGQAAAAAFGQAAAAAGGQAAAAAEGQAAAAAGBwAAAAAABwAAAAAAGQAAAAADGQAAAAAFGQAAAAACGQAAAAAFGQAAAAAGGQAAAAABGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAACGQAAAAADGQAAAAADGQAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAEGQAAAAADGQAAAAADGQAAAAAEGQAAAAABGQAAAAAAGQAAAAAGGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAGBwAAAAADBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAAEGQAAAAABGQAAAAAEGQAAAAACBwAAAAAGBwAAAAALBwAAAAAABwAAAAABBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAACGQAAAAADGQAAAAAFGQAAAAABGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJGQAAAAAAGQAAAAAAGQAAAAACGQAAAAAFGQAAAAAGGQAAAAAEGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAEGQAAAAAFGQAAAAAAGQAAAAADGQAAAAADGQAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAFGQAAAAABGQAAAAABGQAAAAAFGQAAAAAEGQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAAGQAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAAGQAAAAABGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAADGQAAAAABGQAAAAAGGQAAAAACGQAAAAABGQAAAAACGQAAAAACGQAAAAAAGQAAAAAGGQAAAAAAGQAAAAAFBwAAAAAABwAAAAALGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAACGQAAAAAFGQAAAAAABwAAAAAABwAAAAAHBwAAAAAEGQAAAAADGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAABGQAAAAABGQAAAAAGGQAAAAAEGQAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAADGQAAAAACGQAAAAABGQAAAAAFGQAAAAAGGQAAAAAGGQAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAACGQAAAAAGGQAAAAADGQAAAAAGGQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAGQAAAAAAGQAAAAACGQAAAAACGQAAAAAGGQAAAAABGQAAAAAFGQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAEGQAAAAAFGQAAAAAFGQAAAAAEGQAAAAAAGQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAEGQAAAAAFGQAAAAABGQAAAAAAGQAAAAACGQAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-5: ind: 0,-5 @@ -600,7 +601,7 @@ entities: version: 6 5,0: ind: 5,0 - tiles: BwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-4: ind: 4,-4 @@ -620,11 +621,11 @@ entities: version: 6 6,2: ind: 6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAGQAAAAAGGQAAAAAFGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAABGQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAACGQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAEGQAAAAACGQAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAABwAAAAALBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAGGQAAAAAGGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAGQAAAAABGQAAAAABGQAAAAABBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAFGQAAAAAAGQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAGQAAAAADGQAAAAACBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGGQAAAAAAGQAAAAADGQAAAAACBwAAAAAABwAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 @@ -632,15 +633,15 @@ entities: version: 6 4,3: ind: 4,3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,-3: ind: -10,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,-4: ind: -10,-4 @@ -716,8 +717,6 @@ entities: - type: Fixtures fixtures: {} - type: OccluderTree - - type: Parallax - parallax: AspidParallax - type: Shuttle angularDamping: 10000 linearDamping: 10000 @@ -12685,4333 +12684,4166 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 -4,-4: + 0: 48059 + -4,-5: + 0: 40413 + -5,-4: 0: 65535 -4,-3: - 0: 65535 + 0: 59583 + -5,-3: + 0: 61695 -4,-2: + 0: 61438 + -5,-2: 0: 65535 -4,-1: + 0: 61166 + -5,-1: 0: 65535 + -4,0: + 0: 65518 -3,-4: - 0: 65535 + 0: 15291 -3,-3: - 0: 65535 + 0: 15291 -3,-2: 0: 65535 -3,-1: 0: 65535 - -2,-4: + -3,0: 0: 65535 + -3,-5: + 0: 12014 + -2,-4: + 0: 4095 -2,-3: - 0: 65535 + 0: 4095 -2,-2: 0: 65535 -2,-1: 0: 65535 - -1,-4: + -2,0: 0: 65535 + -1,-4: + 0: 52733 -1,-3: - 0: 65535 + 0: 52703 -1,-2: 0: 65535 - -4,0: + -1,-1: + 0: 57341 + -1,0: + 0: 65533 + -1,-5: + 0: 52991 + 0,-4: + 0: 7677 + 0,-3: + 0: 7647 + 0,-2: 0: 65535 - -4,1: + 0,-1: + 0: 57341 + -5,0: 0: 65535 + -4,1: + 0: 20222 + -5,1: + 0: 4080 -4,2: - 0: 65535 + 0: 25719 + -5,2: + 1: 63351 -4,3: - 0: 65535 - -3,0: - 0: 65535 + 0: 30534 + -5,3: + 1: 15 + 0: 65280 + -4,4: + 0: 32759 -3,1: - 0: 65535 + 0: 12287 -3,2: - 0: 65535 + 0: 30583 -3,3: - 0: 65535 - -2,0: - 0: 65535 + 2: 65520 -2,1: - 0: 65535 + 0: 12287 -2,2: - 0: 65535 + 0: 30583 -2,3: + 2: 65520 + -3,4: + 0: 36856 + -2,4: 0: 65535 + -1,1: + 0: 12287 -1,2: - 0: 65535 + 0: 30583 -1,3: + 2: 65520 + -1,4: 0: 65535 0,0: - 0: 65535 + 0: 65533 0,1: - 0: 65535 + 0: 12287 0,2: - 0: 65535 + 0: 30583 0,3: + 2: 65520 + 0,4: 0: 65535 1,0: 0: 65535 1,1: - 0: 65535 + 0: 12287 1,2: - 0: 65535 + 0: 30583 1,3: + 2: 65520 + 1,-1: + 0: 65535 + 1,4: 0: 65535 2,0: 0: 65535 2,1: - 0: 65535 + 0: 12287 2,2: - 0: 65535 + 0: 30583 2,3: + 2: 30576 + 2,-1: 0: 65535 3,0: - 0: 65535 + 0: 48059 3,1: - 0: 65535 + 0: 8179 3,2: - 0: 65535 + 0: 47547 3,3: + 0: 16371 + 3,-1: + 0: 48059 + 3,4: + 0: 35771 + 4,0: 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 4,1: + 0: 14322 + 4,2: + 0: 30583 + 4,3: + 0: 8176 + 0,-5: + 0: 7167 1,-4: - 0: 65535 + 0: 4095 1,-3: - 0: 65535 + 0: 4095 1,-2: 0: 65535 - 1,-1: + 2,-2: 0: 65535 2,-4: - 0: 65535 + 0: 61166 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 + 0: 61166 + 2,-5: + 0: 20479 3,-4: - 0: 65535 + 0: 65262 3,-3: - 0: 65535 + 0: 16304 3,-2: + 0: 48127 + 3,-5: + 0: 57583 + 4,-4: + 0: 49072 + 4,-3: + 0: 4080 + 4,-2: 0: 65535 - 3,-1: + 4,-1: 0: 65535 -4,-8: - 0: 65535 + 0: 7645 + -4,-9: + 0: 37887 + -5,-8: + 0: 65485 -4,-7: - 0: 65535 + 0: 3549 + -5,-7: + 0: 53247 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 51711 + -5,-6: + 0: 3581 + -5,-5: + 0: 3822 -3,-8: - 0: 65535 + 0: 52733 -3,-7: - 0: 65535 + 0: 52733 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 61183 + -3,-9: + 0: 53691 -2,-8: - 0: 65535 + 0: 3583 -2,-7: - 0: 65535 + 0: 51643 -2,-6: - 0: 65535 + 0: 4095 -2,-5: - 0: 65535 + 0: 3839 + -2,-9: + 0: 55551 -1,-8: - 0: 65535 + 0: 3581 -1,-7: - 0: 65535 + 0: 8191 + -1,-9: + 0: 7415 -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 0,-8: - 0: 65535 + 0: 61164 0,-7: - 0: 65535 + 0: 53247 0,-6: - 0: 65535 - 0,-5: - 0: 65535 + 0: 15289 + 0,-8: + 0: 3822 + 0,-9: + 0: 61182 1,-8: - 0: 65535 + 0: 52733 1,-7: - 0: 65535 + 0: 15281 1,-6: - 0: 65535 + 0: 36863 1,-5: - 0: 65535 + 0: 3071 + 1,-9: + 0: 56829 2,-8: - 0: 65535 + 0: 56797 2,-7: - 0: 65535 + 0: 24016 2,-6: 0: 65535 - 2,-5: - 0: 65535 + 2,-9: + 0: 56829 3,-8: - 0: 65535 + 0: 61424 3,-7: - 0: 65535 + 0: 3810 3,-6: - 0: 65535 - 3,-5: - 0: 65535 + 0: 61166 + 3,-9: + 0: 61166 + 4,-8: + 0: 30438 + 4,-6: + 0: 4573 + 4,-5: + 0: 3327 -8,-4: 0: 65535 + -9,-4: + 0: 61422 -8,-3: - 0: 65535 + 0: 45311 + -9,-3: + 0: 64750 -8,-2: + 0: 48059 + -9,-2: 0: 65535 -8,-1: + 0: 47280 + -9,-1: 0: 65535 + -8,-5: + 0: 20471 -7,-4: - 0: 65535 + 0: 65407 -7,-3: - 0: 65535 + 0: 62583 -7,-2: 0: 65535 -7,-1: - 0: 65535 + 0: 65524 + -8,0: + 0: 65512 + -7,0: + 0: 48059 + -7,-5: + 0: 61152 -6,-4: - 0: 65535 + 0: 65516 -6,-3: - 0: 65535 + 0: 57599 + -6,-5: + 0: 7644 -6,-2: - 0: 65535 + 0: 61166 -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,0: - 0: 65535 + 0: 61166 + -6,0: + 0: 65528 + -9,0: + 0: 65262 -8,1: - 0: 65535 + 0: 61183 + -9,1: + 0: 61183 -8,2: - 0: 65535 + 0: 32624 + -9,2: + 0: 56784 + -9,3: + 0: 3816 -8,3: - 0: 65535 - -7,0: - 0: 65535 + 0: 1636 + -8,4: + 0: 63743 -7,1: - 0: 65535 + 0: 49083 -7,2: - 0: 30591 + 0: 14131 1: 34944 -7,3: - 0: 65535 - -6,0: - 0: 65535 + 0: 15282 + -7,4: + 0: 53503 -6,1: - 0: 65535 + 0: 15347 -6,2: - 0: 7 1: 65528 -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 1: 63351 - 0: 2184 - -5,3: - 1: 15 - 0: 65520 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 + 0: 3952 + -6,4: + 0: 61695 + -5,4: + 0: 59647 + 4,4: + 0: 30583 5,0: - 0: 32767 + 0: 13235 + 2: 2056 5,1: - 0: 65535 + 0: 3056 5,2: - 0: 36863 + 0: 127 5,3: - 0: 65535 + 0: 4080 + 5,-1: + 0: 13115 + 2: 34944 6,0: - 0: 4095 + 2: 3855 + 0: 240 6,1: - 0: 65535 + 0: 15344 6,2: - 0: 32767 + 0: 13307 6,3: - 0: 65535 + 0: 16371 + 6,4: + 0: 62211 7,0: - 0: 4095 - 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 2: 3855 + 0: 240 + 7,1: + 0: 16 + 7,2: + 0: 16 + 8,0: + 2: 771 + 0: 2232 5,-4: - 0: 65535 + 0: 65520 5,-3: - 0: 65535 + 0: 36848 5,-2: - 0: 65535 - 5,-1: - 0: 65535 + 0: 13115 + 2: 32768 6,-4: - 0: 65535 + 0: 57308 6,-3: - 0: 65535 + 0: 65532 6,-2: - 0: 61695 + 0: 15 + 2: 61440 6,-1: - 0: 255 + 0: 15 + 2: 240 + 6,-5: + 0: 52428 7,-4: - 0: 65535 + 0: 61416 7,-3: - 0: 65535 + 0: 4088 7,-2: - 0: 61713 + 2: 61440 7,-1: - 0: 255 - -4,4: - 0: 65535 + 0: 15 + 2: 240 + 7,-5: + 0: 48059 + 8,-4: + 0: 13105 + 8,-3: + 0: 4080 + 8,-2: + 2: 61440 + 8,-1: + 0: 15 + 2: 240 -4,5: - 0: 65535 + 0: 58887 + -5,5: + 0: 61167 -4,6: - 0: 65535 - -3,4: - 0: 65535 + 0: 61182 + -5,6: + 0: 61182 + -4,7: + 0: 65520 + -5,7: + 0: 61156 + -4,8: + 0: 58623 -3,5: - 0: 65535 + 2: 255 + 0: 61440 -3,6: - 0: 65535 - -2,4: - 0: 65535 + 0: 7679 + -3,7: + 0: 61948 + -3,8: + 0: 45277 -2,5: - 0: 65535 + 2: 35071 + 0: 12288 -2,6: - 0: 65535 - -1,4: - 0: 65535 + 0: 819 + 2: 34952 + -2,7: + 2: 61166 + -2,8: + 2: 14 + 0: 61440 -1,5: - 0: 65535 + 2: 13073 + 0: 238 -1,6: - 0: 65535 - 0,4: - 0: 65535 + 2: 13107 + -1,7: + 2: 13107 + -1,8: + 2: 3 + 0: 61440 0,5: - 0: 13311 + 0: 51 + 2: 204 + 0,7: + 0: 64860 0,6: - 0: 65523 - 1,4: - 0: 65535 + 0: 52224 + 0,8: + 0: 58572 1,5: - 0: 255 + 2: 255 + 1,6: + 0: 53504 + 2: 3072 + 1,7: + 0: 64769 + 2: 12 + 1,8: + 0: 61661 2,4: - 0: 65535 + 0: 4080 2,5: - 0: 35071 + 2: 119 2,6: - 0: 65450 - 3,4: - 0: 65535 + 2: 3840 + 0: 61440 + 2,7: + 2: 28175 + 0: 4096 3,5: - 0: 65535 + 0: 35771 3,6: - 0: 65407 + 2: 3891 + 0: 61440 + 3,7: + 2: 3855 + 4,5: + 0: 30583 + 4,6: + 2: 3840 + 0: 61440 + 4,7: + 2: 3855 -8,-8: - 0: 65535 + 0: 15288 + -8,-9: + 0: 48059 + -9,-8: + 0: 65256 -8,-7: - 0: 65535 + 0: 4095 + -9,-7: + 0: 4095 -8,-6: - 0: 65535 - -8,-5: - 0: 65535 + 0: 28927 + -9,-6: + 0: 63743 + -9,-5: + 0: 2987 -7,-8: - 0: 65535 + 0: 4095 -7,-7: - 0: 16383 + 0: 4095 1: 49152 -7,-6: - 0: 65395 + 0: 62227 1: 140 - -7,-5: + -7,-9: 0: 65535 -6,-8: - 0: 65535 + 0: 1919 -6,-7: - 0: 53247 + 0: 4095 1: 12288 -6,-6: 1: 19 - 0: 65516 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: + 0: 64648 + -6,-9: 0: 65535 + -5,-9: + 0: 56797 -12,-4: 0: 65535 + -12,-5: + 0: 65521 + -13,-4: + 0: 61439 -12,-3: 0: 65535 + -13,-3: + 0: 65278 -12,-2: - 0: 65535 + 0: 65327 + -13,-2: + 0: 65422 -12,-1: 0: 65535 + -13,-1: + 0: 65535 + -12,0: + 0: 63295 -11,-4: 0: 65535 -11,-3: 0: 65535 -11,-2: - 0: 65535 + 0: 56783 -11,-1: - 0: 65535 + 0: 56797 + -11,-5: + 0: 65532 + -11,0: + 0: 65485 -10,-4: - 0: 65535 + 0: 61422 -10,-3: - 0: 65535 + 0: 53486 -10,-2: - 0: 65535 + 0: 56797 -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,0: + 0: 56797 + -10,0: + 0: 65521 + -13,0: 0: 65535 -12,1: + 0: 30519 + -13,1: 0: 65535 -12,2: - 0: 65535 + 0: 16368 + -13,2: + 0: 40944 -12,3: - 0: 65535 - -11,0: - 0: 65535 + 0: 65419 + -13,3: + 0: 59451 + -12,4: + 0: 62719 -11,1: 0: 65535 -11,2: - 0: 65535 + 0: 52732 -11,3: - 0: 65535 - -10,0: - 0: 65535 + 0: 65503 + -11,4: + 0: 64733 -10,1: - 0: 65535 + 0: 65534 -10,2: - 0: 65535 + 0: 56793 -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -12,4: - 0: 65535 - -11,4: - 0: 65535 - -11,5: - 0: 61439 + 0: 56797 -10,4: + 0: 61917 + -9,4: + 0: 61695 + -13,4: + 0: 61678 + -12,5: + 0: 255 + -13,5: + 0: 255 + -12,6: + 0: 56784 + -13,6: + 0: 56784 + -12,7: + 0: 4088 + -13,7: + 0: 4088 + -12,8: 0: 65535 + -11,5: + 0: 52479 + -11,6: + 0: 40412 + -11,7: + 0: 52700 + -11,8: + 0: 56785 -10,5: 0: 65535 - -9,4: + -10,6: + 0: 57343 + -10,7: 0: 65535 -9,5: 0: 65535 - -8,4: + -9,6: + 0: 4095 + -9,7: 0: 65535 - -8,5: + -9,8: 0: 65535 - -7,4: + -8,5: 0: 65535 + -8,6: + 0: 4095 + -8,7: + 0: 13107 + -8,8: + 0: 62259 -7,5: - 0: 65535 - -6,4: - 0: 65535 + 0: 8159 + -7,6: + 0: 52733 + -7,7: + 0: 52428 + -7,8: + 0: 61644 -6,5: + 0: 4095 + -6,6: 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: + -6,7: 0: 65535 + -6,8: + 0: 61657 + -5,8: + 0: 62702 -12,-8: - 0: 65535 + 0: 63935 + -12,-9: + 0: 48015 + -13,-8: + 0: 63967 -12,-7: - 0: 65535 + 0: 63999 + -13,-7: + 0: 55551 -12,-6: - 0: 65535 - -12,-5: - 0: 65535 + 0: 65471 + -13,-6: + 0: 56781 + -13,-5: + 0: 61160 -11,-8: - 0: 65535 + 0: 12767 -11,-7: - 0: 65535 + 0: 64985 -11,-6: - 0: 65535 - -11,-5: - 0: 65535 + 0: 56783 + -11,-9: + 0: 53691 + -10,-8: + 0: 64671 -10,-7: - 0: 65535 + 0: 8191 -10,-6: - 0: 65535 + 0: 30173 -10,-5: - 0: 65535 - -10,-8: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 + 0: 1911 + -10,-9: + 0: 56575 + -9,-9: + 0: 61167 -4,-12: 0: 65535 + -4,-13: + 0: 63965 + -5,-12: + 0: 48011 -4,-11: - 0: 65535 + 0: 46079 + -5,-11: + 0: 48011 -4,-10: - 0: 65535 - -4,-9: - 0: 65535 + 0: 15295 + -5,-10: + 0: 56715 -3,-12: - 0: 65535 + 0: 46079 -3,-11: - 0: 65535 + 0: 14523 -3,-10: - 0: 65535 - -3,-9: - 0: 65535 + 0: 36799 + -3,-13: + 0: 63709 -2,-12: - 0: 65535 + 0: 23807 -2,-11: - 0: 65535 + 0: 4095 -2,-10: 0: 65535 - -2,-9: - 0: 65535 + -2,-13: + 0: 61815 -1,-12: - 0: 65535 + 0: 12287 -1,-11: - 0: 65535 + 0: 1790 -1,-10: - 0: 65535 - -1,-9: - 0: 65535 + 0: 15291 0,-12: - 0: 65535 + 0: 4095 0,-11: - 0: 65535 + 0: 61695 0,-10: 0: 65535 - 0,-9: - 0: 65535 + 0,-13: + 0: 16383 1,-12: - 0: 65535 + 0: 4095 1,-11: - 0: 65535 + 0: 3839 1,-10: - 0: 65535 - 1,-9: - 0: 65535 + 0: 5493 2,-12: - 0: 65535 + 0: 4095 2,-11: - 0: 65535 + 0: 53239 2,-10: - 0: 65535 - 2,-9: - 0: 65535 + 0: 52733 + 2,-13: + 0: 36590 3,-12: 0: 65535 3,-11: - 0: 65535 + 0: 20222 3,-10: + 0: 61166 + 4,-12: + 0: 65520 + 4,-11: + 0: 61157 + 4,-10: + 0: 65310 + 4,-9: 0: 65535 - 3,-9: + -16,-8: + 0: 48059 + -17,-8: 0: 65535 + -16,-7: + 0: 48063 + -17,-7: + 0: 65439 + -16,-6: + 0: 3003 + -17,-6: + 0: 7099 -16,-5: - 0: 65535 + 0: 8183 + -17,-5: + 0: 49151 + -16,-4: + 0: 40959 + -16,-9: + 0: 35771 + -15,-8: + 0: 48049 + -15,-7: + 0: 56603 + -15,-6: + 0: 30493 + -15,-9: + 0: 56797 -15,-5: - 0: 65535 - -14,-5: - 0: 65535 + 0: 9830 + -15,-4: + 0: 36863 -14,-8: - 0: 65535 + 0: 65532 -14,-7: - 0: 65535 + 0: 55759 -14,-6: - 0: 65535 - -13,-8: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -16,-4: - 0: 65535 + 0: 65437 + -14,-5: + 0: 4095 + -14,-9: + 0: 57309 + -14,-4: + 0: 36863 + -13,-9: + 0: 56591 + -17,-4: + 0: 65528 -16,-3: - 0: 65535 + 0: 62717 + -17,-3: + 0: 62463 -16,-2: - 0: 65535 + 0: 26222 + -17,-2: + 0: 7423 -16,-1: + 0: 26214 + -17,-1: 0: 65535 - -15,-4: - 0: 65535 + -16,0: + 0: 30582 -15,-3: - 0: 65535 + 0: 61693 -15,-2: - 0: 65535 + 0: 65295 -15,-1: - 0: 65535 - -14,-4: - 0: 65535 + 0: 43791 + -15,0: + 0: 12287 -14,-3: - 0: 65535 + 0: 61693 -14,-2: - 0: 65535 + 0: 64911 -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 + 0: 52685 + -14,0: + 0: 36349 + -8,-12: + 0: 56575 + -9,-12: + 0: 53503 + -8,-11: + 0: 64733 + -9,-11: + 0: 55773 -8,-10: - 0: 65535 - -8,-9: - 0: 65535 + 0: 47167 + -9,-10: + 0: 59615 + -8,-13: + 0: 36317 + -7,-12: + 0: 65339 + -7,-11: + 0: 61135 -7,-10: - 0: 65535 - -7,-9: - 0: 65535 + 0: 65486 + -7,-13: + 0: 36304 + -6,-12: + 0: 47887 + -6,-11: + 0: 65291 -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -16,0: - 0: 65535 + 0: 65359 + -6,-13: + 0: 65530 + -5,-13: + 0: 45565 + -17,0: + 0: 48048 -16,1: - 0: 65535 + 0: 61166 + -17,1: + 0: 56792 -16,2: - 0: 65535 - -15,0: - 0: 65535 + 0: 41214 + -17,2: + 0: 53232 + -16,3: + 0: 61162 + -17,3: + 0: 56524 + -16,4: + 0: 62702 -15,1: - 0: 65535 + 0: 49083 -15,2: - 0: 65535 - -14,0: - 0: 65535 + 0: 10483 + -15,3: + 0: 29690 + -15,4: + 0: 57591 -14,1: - 0: 65535 + 0: 49066 -14,2: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - 4,-8: - 0: 65535 + 0: 8176 + -14,3: + 0: 61627 + -14,4: + 0: 63231 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 + 0: 52974 5,-8: 0: 65535 5,-7: 0: 65535 5,-6: - 0: 65535 + 0: 255 5,-5: - 0: 65535 + 0: 4095 + 5,-9: + 0: 65523 6,-8: 0: 65535 6,-7: - 0: 65535 + 0: 40959 6,-6: - 0: 65535 - 6,-5: - 0: 65535 + 0: 52445 + 6,-9: + 0: 65532 7,-8: - 0: 65535 + 0: 30583 7,-7: - 0: 65535 + 0: 1911 7,-6: + 0: 45183 + 7,-9: + 0: 63351 + 8,-8: + 0: 15291 + 8,-7: + 0: 13107 + 8,-6: + 0: 13107 + 8,-5: + 0: 4369 + -17,4: + 0: 62813 + 3: 128 + -16,5: + 0: 61182 + -17,5: 0: 65535 - 7,-5: + -17,6: + 0: 65520 + -17,7: + 0: 65311 + -15,5: + 0: 61439 + -15,6: + 0: 61166 + -15,7: + 0: 61166 + -15,8: + 0: 64750 + -14,5: + 0: 4607 + -14,6: + 0: 56785 + -14,7: + 0: 7673 + -14,8: + 0: 61457 + -13,8: + 0: 56524 + -20,-4: + 0: 49151 + -20,-5: + 0: 61631 + -21,-4: 0: 65535 - -13,4: + -20,-3: + 0: 6399 + -21,-3: + 0: 61695 + -20,-2: + 0: 60997 + -21,-2: + 0: 4095 + -20,-1: + 0: 61695 + -20,0: + 0: 65391 + -21,-1: + 0: 63347 + -19,-4: 0: 65535 - -18,-4: + -19,-3: 0: 65535 + -19,-2: + 0: 65262 + -19,-1: + 0: 65262 + -19,-5: + 0: 40159 + -19,0: + 0: 61167 + -18,-4: + 0: 49137 -18,-3: + 0: 37887 + -18,-2: + 0: 61676 + -18,-5: + 0: 57343 + -18,-1: + 0: 14 + -20,-8: + 0: 30583 + -20,-9: + 0: 29055 + -21,-8: + 0: 48059 + -20,-7: + 0: 65319 + -21,-7: + 0: 65307 + -20,-6: + 0: 48943 + -21,-6: + 0: 30495 + -19,-8: 0: 65535 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65535 - -17,-5: - 0: 65535 - 4,-12: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 + -19,-7: + 0: 65487 + -19,-6: + 0: 55775 + -19,-9: + 0: 12287 + -18,-8: + 0: 48059 + -18,-7: + 0: 64779 + -18,-6: + 0: 40157 + -18,-9: + 0: 40959 5,-12: - 0: 65535 + 0: 65520 5,-11: - 0: 30591 + 0: 14129 1: 34944 5,-10: - 0: 65535 - 5,-9: + 0: 48019 + 5,-13: 0: 65535 6,-12: - 0: 65535 + 0: 65521 6,-11: - 0: 61167 1: 4368 + 0: 52236 6,-10: + 0: 24016 + 6,-13: 0: 65535 7,-12: - 0: 65535 + 0: 57296 7,-11: - 0: 65535 - 7,-10: - 0: 65535 + 0: 4353 + 7,-13: + 0: 65527 + 8,-12: + 0: 63350 + 8,-10: + 0: 30702 + 8,-9: + 0: 49075 -4,-16: - 0: 65535 + 0: 56337 + -4,-17: + 0: 4368 + 2: 3072 + -5,-16: + 0: 59647 -4,-15: - 0: 65535 + 0: 59613 + -5,-15: + 0: 64750 -4,-14: - 0: 65535 - -4,-13: - 0: 65535 + 0: 56782 + -5,-14: + 0: 52431 -3,-16: - 0: 65535 + 0: 65280 + 2: 3 -3,-15: - 0: 65535 + 0: 28927 -3,-14: - 0: 65535 - -3,-13: - 0: 65535 + 0: 53623 + -3,-17: + 2: 16128 -2,-16: - 0: 65535 + 0: 65348 -2,-15: - 0: 65535 + 0: 2047 -2,-14: - 0: 65535 - -2,-13: - 0: 65535 + 0: 30583 + -2,-17: + 0: 17408 + 2: 256 + -1,-16: + 0: 64785 + 2: 8 -1,-15: - 0: 65535 + 0: 32991 + -1,-17: + 0: 4352 + 2: 35840 -1,-14: - 0: 65535 + 0: 34952 -1,-13: - 0: 65535 + 0: 2184 + 0,-16: + 0: 65348 0,-15: - 0: 65535 + 0: 62463 0,-14: 0: 65535 - 0,-13: - 0: 65535 + 0,-17: + 0: 17408 + 2: 256 + 1,-16: + 0: 65297 + 2: 8 1,-15: - 0: 65535 + 0: 4351 1,-14: - 0: 65535 + 0: 4369 1,-13: - 0: 65535 - 2,-13: + 0: 273 + 1,-17: + 0: 4352 + 2: 35840 + 2,-16: + 2: 1 + 0: 65280 + 2,-15: + 0: 58623 + 2,-17: + 2: 7936 + 2,-14: + 0: 61166 + 3,-16: + 0: 65280 + 2: 3 + 3,-15: + 0: 61695 + 3,-14: 0: 65535 3,-13: - 0: 65535 - 4,-13: - 0: 39321 - -6,-15: - 0: 65535 - -6,-14: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - -5,-16: - 0: 65535 - 8,-2: - 0: 65228 - 8,-1: - 0: 52991 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 9,-4: - 0: 40959 - 9,-3: - 0: 65535 - 9,-2: - 0: 64409 - 9,-1: - 0: 62463 - 10,-1: - 0: 65535 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 11,-1: - 0: 65535 - 8,0: - 0: 53247 - 8,3: - 0: 65535 - 8,2: - 0: 65164 + 0: 4095 + 3,-17: + 2: 14080 + 4,-16: + 0: 65365 + 4,-15: + 0: 57599 + 4,-14: + 0: 3838 + 4,-17: + 0: 21760 + 5,-16: + 0: 63232 + 2: 2 + 5,-15: + 0: 4223 + 2: 16384 + 5,-14: + 0: 273 + 2: 3140 + 5,-17: + 2: 9984 + 6,-16: + 0: 65365 + 6,-15: + 0: 59647 + 6,-17: + 0: 21760 + 6,-14: + 0: 3822 + 7,-16: + 0: 65280 + 2: 6 + 7,-15: + 0: 29183 + 7,-14: + 0: 10103 + 7,-17: + 2: 28416 + 8,-16: + 0: 65280 + 2: 12 + 8,-15: + 0: 28927 + 8,-14: + 0: 32527 + 8,-13: + 0: 28640 + -8,-16: + 0: 4369 + 2: 204 + -8,-17: + 0: 4369 + 2: 52428 + -9,-16: + 0: 34952 + -8,-15: + 0: 58129 + -9,-15: + 0: 15291 + -8,-14: + 0: 55534 + -9,-14: + 0: 62463 + -9,-13: + 0: 53247 + -7,-15: + 0: 61440 + 2: 136 + -7,-14: + 0: 65039 + -7,-16: + 4: 3822 + -7,-17: + 4: 57344 + 2: 255 + -6,-16: + 4: 819 + 0: 136 + 2: 32768 + -6,-15: + 2: 255 + 0: 61440 + -6,-14: + 0: 15 + -6,-17: + 4: 12288 + 0: 34944 + -5,-17: + 0: 65496 + 9,-3: + 0: 4080 + 9,-2: + 2: 61440 + 9,-1: + 0: 15 + 2: 33008 + 9,-4: + 0: 36079 + 9,-5: + 0: 65518 9,0: + 0: 883 + 2: 34952 + 10,-4: 0: 65535 - 9,2: - 0: 65535 - 9,3: + 10,-3: + 0: 20464 + 10,-5: 0: 65535 + 10,-2: + 0: 58598 + 10,-1: + 0: 16622 + 2: 40960 10,0: - 0: 65535 + 2: 43690 + 0: 17476 + 11,-4: + 0: 20215 + 11,-3: + 0: 4080 + 11,-5: + 0: 56463 + 11,-2: + 0: 61166 + 11,-1: + 0: 34958 + 2: 96 + 12,-4: + 0: 65520 + 12,-3: + 0: 4090 + 12,-2: + 0: 8191 + 12,-1: + 0: 65301 + 11,0: + 0: 35020 + 8,1: + 2: 34952 + 9,1: + 0: 4369 + 2: 43690 + 8,2: + 2: 34952 + 9,2: + 0: 4369 + 2: 43690 + 8,3: + 2: 34952 + 9,3: + 0: 4369 + 2: 43690 + 8,4: + 2: 34952 + 9,4: + 0: 4369 + 2: 43690 + 10,1: + 2: 43690 + 0: 17476 10,2: - 0: 65535 + 2: 43690 + 0: 17476 10,3: - 0: 65535 - 10,1: - 0: 65262 - 11,0: - 0: 39935 - 11,2: - 0: 65532 - 11,3: - 0: 65535 - 8,-12: + 2: 43690 + 0: 17476 + 10,4: + 2: 43690 + 0: 17476 + 12,0: 0: 65535 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-9: - 0: 65535 - 10,-9: 0: 61166 + 9,-12: + 0: 61440 + 9,-11: + 0: 64799 + 9,-10: + 0: 13 + 9,-9: + 0: 30576 + 9,-8: + 0: 1911 + 10,-12: + 0: 61440 + 10,-11: + 0: 65295 10,-10: - 0: 20479 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: + 0: 15 + 11,-12: + 0: 65262 + 11,-11: + 0: 61679 + 11,-10: + 0: 238 + 11,-13: + 0: 61428 + 12,-11: + 0: 61678 + 12,-10: + 0: 255 + 12,-5: 0: 65535 - 9,-8: + 13,-4: + 0: 57340 + 13,-3: + 0: 61412 + 13,-2: + 0: 65294 + 13,-1: 0: 65535 - 9,-7: - 0: 65501 - 9,-6: + 13,0: 0: 65535 - 9,-5: + 13,-5: + 0: 52991 + 14,-4: 0: 65535 - 10,-8: + 14,-2: 0: 65518 - 10,-7: + 14,-1: 0: 65535 - 10,-6: + 14,-5: 0: 65535 - 10,-5: + 14,-3: + 0: 61038 + 14,0: 0: 65535 - -12,-9: + 15,-4: 0: 65535 - -11,-9: + 15,-3: + 0: 65295 + 15,-2: 0: 65535 - -10,-10: + 15,-1: 0: 65535 - -10,-9: + 15,-5: 0: 65535 - -9,-10: + 15,0: 0: 65535 - -9,-9: + 16,-4: 0: 65535 - -14,-9: + 16,-3: + 0: 30479 + 16,-2: + 0: 30583 + 16,-1: + 0: 4983 + -12,-12: + 0: 65357 + -12,-13: + 0: 53725 + -13,-12: + 0: 65102 + -12,-11: + 0: 4087 + -13,-11: + 0: 3822 + -12,-10: + 0: 63931 + -13,-10: + 0: 62054 + -11,-12: + 0: 56782 + -11,-11: + 0: 52700 + -11,-10: + 0: 47325 + -11,-13: + 0: 58047 + -10,-11: + 0: 65262 + -10,-12: + 0: 59630 + -10,-10: + 0: 57582 + -16,-12: 0: 65535 - -13,-9: + -16,-13: + 0: 65520 + -16,-11: + 0: 48048 + -17,-11: + 0: 34944 + -16,-10: + 0: 36849 + -17,-10: + 0: 20464 + -17,-9: + 0: 2525 + -15,-12: + 0: 61408 + -15,-11: + 0: 65520 + -15,-10: + 0: 57297 + -15,-13: + 0: 65398 + -14,-12: + 0: 61412 + -14,-11: + 0: 57308 + -14,-10: + 0: 57308 + -14,-13: 0: 65535 + -13,-13: + 0: 61166 + 12,1: + 0: 61183 12,2: - 0: 65533 - 12,3: - 0: 65535 + 0: 140 + 13,1: + 0: 46079 13,2: - 0: 65535 + 0: 49851 + 2: 12544 13,3: - 0: 65535 + 2: 30711 + 0: 8 + 13,4: + 2: 30583 + 14,1: + 0: 29055 + 14,2: + 0: 29559 + 2: 32768 14,3: - 0: 65535 - 4,7: - 0: 61423 - 4,6: - 0: 65519 - 4,5: - 0: 65535 - 5,5: - 0: 65534 + 0: 7 + 2: 48120 + 14,4: + 2: 48059 + 15,1: + 0: 239 + 15,2: + 0: 3315 + 2: 13056 + 15,3: + 2: 13107 + 15,4: + 2: 62259 + 16,0: + 0: 29489 + 16,1: + 0: 55 + 16,2: + 0: 504 5,6: - 0: 65535 + 2: 3840 + 0: 61440 5,7: - 0: 65535 + 2: 3855 5,4: - 0: 61128 - 6,4: - 0: 65535 + 0: 32768 + 5,5: + 0: 2184 6,5: - 0: 65535 + 0: 4095 6,6: - 0: 65535 + 2: 3840 + 0: 61440 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 + 2: 3855 7,6: - 0: 65535 + 2: 3840 + 0: 61440 7,7: - 0: 65535 + 2: 3855 + 8,6: + 2: 776 + 0: 47104 + 8,7: + 2: 3843 + 0: 8 4,8: - 0: 61852 + 2: 61440 + 4,9: + 0: 15 + 2: 240 + 3,8: + 2: 61440 + 3,9: + 0: 15 + 2: 240 + 4,10: + 2: 25135 + 3,10: + 2: 287 + 4,11: + 2: 18174 + 3,11: + 2: 5104 + 4,12: + 2: 15 5,8: - 0: 65535 + 2: 61440 5,9: - 0: 2303 + 0: 15 + 2: 240 + 5,10: + 2: 143 + 5,11: + 2: 240 6,8: - 0: 65535 + 2: 61440 6,9: - 0: 65535 + 0: 15 + 2: 240 6,10: - 0: 3295 + 2: 159 + 6,11: + 2: 10228 + 6,12: + 2: 15 7,8: - 0: 65535 + 2: 61440 7,9: - 0: 65535 + 0: 15 + 2: 240 7,10: - 0: 65535 + 2: 2463 + 7,11: + 2: 33018 8,8: - 0: 65535 + 2: 61440 8,9: - 0: 65535 + 0: 15 + 2: 240 8,10: - 0: 65535 + 2: 4911 + 8,11: + 2: 12787 + 7,12: + 2: 15 + 8,12: + 2: 15 9,8: - 0: 65535 + 2: 61440 9,9: - 0: 65535 + 0: 15 + 2: 51440 9,10: - 0: 65535 - 10,8: - 0: 65535 + 2: 51407 + 9,11: + 2: 17662 + 9,12: + 2: 15 10,9: - 0: 65535 - 10,10: - 0: 65535 - 11,8: - 0: 65535 + 2: 4096 + 0: 1262 + 10,8: + 0: 57412 + 2: 170 + 10,11: + 2: 4096 + 10,12: + 2: 1 + 10,7: + 2: 43690 + 0: 17476 11,9: - 0: 65535 + 2: 14 + 0: 2048 11,10: - 0: 65535 - 12,8: - 0: 65535 + 2: 52224 + 0: 8 + 11,11: + 2: 12 12,9: - 0: 65535 + 2: 1 + 0: 62394 12,10: - 0: 65535 + 0: 52991 + 2: 12544 + 12,11: + 2: 3 + 0: 12 + 12,8: + 0: 43566 + 12,7: + 0: 58944 13,8: - 0: 65535 + 0: 30464 13,9: - 0: 65535 + 0: 62327 13,10: 0: 65535 + 13,11: + 0: 375 14,8: - 0: 65535 + 0: 4096 14,9: - 0: 65535 + 0: 65497 14,10: - 0: 53247 - 15,8: - 0: 65535 + 0: 53231 + 14,7: + 0: 53215 15,9: + 0: 13072 + 15,10: + 0: 65527 + 14,11: + 0: 136 + 15,11: 0: 65535 - 12,4: + 15,8: + 0: 51328 + 15,12: + 0: 140 + 15,7: + 0: 35293 + 16,8: 0: 65535 - 12,5: + 16,9: + 0: 239 + 16,10: + 0: 63345 + 16,11: 0: 65535 12,6: - 0: 65535 - 12,7: - 0: 65535 - 13,4: - 0: 65535 + 0: 2048 13,5: - 0: 65535 + 2: 30583 13,6: - 0: 65535 + 2: 27 + 0: 61156 13,7: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 65535 + 0: 2252 14,6: - 0: 65535 - 14,7: - 0: 65535 - 15,4: - 0: 65535 + 2: 7 + 0: 65528 + 14,5: + 2: 48059 15,5: - 0: 65535 + 2: 4607 15,6: - 0: 65535 - 15,7: - 0: 65535 - 8,4: + 2: 1 + 0: 58128 + 16,4: + 2: 61440 + 16,5: + 2: 255 + 0: 32768 + 16,6: + 0: 65256 + 16,7: 0: 65535 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 + 2: 34952 9,5: - 0: 65535 + 0: 4369 + 2: 43690 9,6: - 0: 65535 + 0: 13057 + 2: 34954 9,7: - 0: 65535 - 10,4: - 0: 65535 + 0: 19 + 2: 3976 10,5: - 0: 65535 + 2: 43690 + 0: 17476 10,6: + 2: 43690 + 0: 17476 + 17,4: + 2: 61440 + 17,5: + 2: 255 + 0: 63232 + 17,6: 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 16,6: - 0: 65535 - 16,7: - 0: 65535 - -5,-17: - 0: 65535 - -4,-17: - 0: 65535 - -3,-17: - 0: 65535 - -2,-17: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -7,-12: - 0: 65535 - -7,-11: - 0: 65535 - -6,-12: - 0: 65535 - -6,-11: - 0: 65535 - -1,-16: - 0: 65535 - 0,-16: - 0: 65535 - 1,-16: - 0: 65535 - 2,-16: - 0: 65535 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 3,-16: - 0: 65535 - 3,-15: - 0: 65535 - 3,-14: - 0: 65535 - 4,-16: - 0: 65535 - 4,-15: - 0: 65535 - 4,-14: - 0: 65535 - -8,-16: - 0: 13311 - -8,-15: - 0: 65395 - -8,-14: - 0: 65535 - -8,-13: - 0: 65535 - -7,-16: - 0: 61713 - 2: 3822 - -7,-15: - 0: 65416 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 2: 819 - 0: 64716 - -6,-13: - 0: 65535 - -11,-12: + 17,7: 0: 65535 - -11,-11: + 17,8: 0: 65535 - -11,-10: + 18,4: + 2: 61440 + 18,5: + 2: 255 + 18,6: + 0: 63760 + 18,7: 0: 65535 - -10,-12: + 18,8: 0: 65535 - -10,-11: + 19,4: + 2: 61440 + 19,5: + 2: 255 + 19,6: + 0: 65456 + 19,7: 0: 65535 - -9,-12: + 19,8: 0: 65535 - -9,-11: + 20,4: + 2: 61440 + 20,5: + 2: 255 + 20,6: + 0: 65393 + 20,7: 0: 65535 + -8,-20: + 0: 4369 + 2: 4 + -8,-21: + 0: 4352 + 2: 50177 + -9,-20: + 0: 61166 + -8,-19: + 0: 56785 + -9,-19: + 0: 64440 -8,-18: - 0: 65535 - -8,-17: - 0: 65535 + 0: 8185 + -9,-18: + 0: 34959 + -9,-17: + 0: 49083 + -7,-19: + 0: 65520 -7,-18: - 0: 65535 - -7,-17: - 0: 8191 - 2: 57344 + 0: 4084 + -7,-20: + 2: 51340 + -7,-21: + 2: 64512 + -6,-20: + 2: 4097 -6,-18: - 0: 65535 - -6,-17: - 0: 53196 - 2: 12288 + 0: 36852 + -6,-21: + 2: 61696 + -6,-19: + 0: 60928 -5,-18: - 0: 65535 + 0: 57342 + -5,-20: + 2: 8 + -5,-21: + 2: 63488 + -4,-20: + 2: 4371 -5,-19: - 0: 63896 + 2: 2048 -4,-19: - 0: 65535 + 2: 785 -4,-18: - 0: 65535 - -4,-20: - 0: 65535 - -3,-20: - 0: 65535 - -3,-19: - 0: 65535 - -3,-18: - 0: 65535 - -2,-20: - 0: 40863 - -2,-19: - 0: 63897 - -2,-18: - 0: 65535 - -1,-19: - 0: 65535 - -1,-18: - 0: 65535 - -1,-17: - 0: 65535 - -9,-18: - 0: 64767 - -9,-17: - 0: 65535 + 0: 4369 + -4,-21: + 2: 13056 + -12,-20: + 0: 65344 + -13,-20: + 0: 60992 + 2: 1 + -12,-19: + 0: 255 + -13,-19: + 0: 3582 + -12,-18: + 0: 61120 + -13,-18: + 0: 52224 + 2: 256 + -12,-17: + 0: 61166 + -13,-17: + 0: 32524 + -12,-16: + 0: 3967 + -11,-20: + 0: 65344 + -11,-19: + 0: 239 + -11,-18: + 0: 65392 + -11,-17: + 0: 13311 + -11,-16: + 0: 65283 + -10,-19: + 0: 2287 + 2: 4096 + -10,-18: + 2: 1 + 0: 4352 + -10,-17: + 0: 35037 + -10,-20: + 2: 1635 + 0: 12 + -10,-21: + 2: 13118 + 0: 52416 + -9,-21: + 0: 65280 + 2: 1 + -12,-15: + 0: 64759 + -13,-15: + 0: 57582 + -12,-14: + 0: 52701 + -13,-14: + 0: 20206 + -11,-14: + 0: 45294 + -11,-15: + 0: 61166 + -10,-16: + 0: 13056 + -10,-15: + 0: 15291 -10,-14: - 0: 65535 + 0: 62139 -10,-13: + 0: 3839 + -20,4: + 0: 56797 + -21,4: 0: 65535 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - -9,-16: - 0: 64719 - -9,-15: - 0: 65535 - 0,-17: - 0: 65535 - 1,-17: - 0: 65535 - 2,-19: - 0: 65535 - 2,-18: - 0: 65535 - 2,-17: - 0: 65535 - 3,-19: - 0: 65535 - 3,-18: - 0: 65535 - 3,-17: - 0: 65535 - 4,-19: - 0: 65535 - 4,-18: - 0: 65535 - 4,-17: - 0: 65535 - -12,5: - 0: 4095 - -15,-6: - 0: 65535 - -16,3: - 0: 65535 - -15,3: - 0: 65535 - -14,3: - 0: 65535 - -16,4: - 0: 65535 - -16,5: - 0: 65535 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -14,4: + -20,5: + 0: 4080 + -21,5: + 0: 4080 + -20,6: 0: 65535 - -14,5: - 0: 16383 - -13,5: + -21,6: 0: 4095 - -4,7: - 0: 65535 - -3,7: - 0: 65535 - -2,7: - 0: 65535 - -1,7: - 0: 65535 - 0,7: - 0: 65535 - -11,6: - 0: 65534 - -11,7: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -5,7: - 0: 65535 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -16,6: - 0: 4383 - -15,6: - 0: 65535 - -15,7: - 0: 65535 - -14,6: - 0: 65523 - -14,7: - 0: 65535 - -20,-4: - 0: 65535 - -20,-3: - 0: 65535 - -20,-2: - 0: 65535 - -20,-1: - 0: 65535 - -19,-4: - 0: 65535 - -19,-3: - 0: 65535 - -19,-2: - 0: 65535 - -19,-1: - 0: 65535 - -18,-2: - 0: 65535 - -18,-1: - 0: 39423 - -17,-1: - 0: 65535 - -20,-8: - 0: 65535 - -20,-7: - 0: 65535 - -20,-6: - 0: 65535 - -20,-5: - 0: 65535 - -19,-8: - 0: 65535 - -19,-7: - 0: 65535 - -19,-6: - 0: 65535 - -19,-5: - 0: 65535 - -18,-8: - 0: 65535 - -18,-7: - 0: 65535 - -18,-6: - 0: 65535 - -18,-5: - 0: 65535 - -17,-8: - 0: 65535 - -17,-7: - 0: 65535 - -17,-6: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -12,-10: - 0: 65535 - -16,-12: - 0: 65535 - -16,-11: - 0: 65535 - -16,-10: - 0: 65535 - -16,-9: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-12: - 0: 65535 - -14,-11: - 0: 65535 - -14,-10: - 0: 65535 - -13,-12: - 0: 65535 - -13,-11: - 0: 65535 - -13,-10: - 0: 65535 - -12,-15: - 0: 65535 - -12,-14: - 0: 65535 - -12,-13: - 0: 65535 - -11,-13: - 0: 65535 - -20,4: - 0: 65535 + -20,7: + 0: 15 -19,4: - 0: 65535 - -18,4: - 0: 65535 + 0: 61182 + -19,5: + 0: 61182 + -19,6: + 0: 65519 + -19,7: + 0: 61166 + -19,3: + 0: 61166 + -19,8: + 0: 60142 -18,5: - 0: 65535 + 0: 56829 + -18,7: + 0: 65038 + -18,4: + 0: 1774 -18,6: - 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 65535 - -20,0: - 0: 65535 + 0: 61156 + -18,3: + 0: 57344 + -18,8: + 0: 57582 + -17,8: + 0: 61695 + -21,0: + 0: 30591 -20,1: - 0: 65535 - -20,3: - 0: 65535 + 0: 65520 + -21,1: + 0: 32631 -20,2: 0: 65535 - -19,0: - 0: 65535 + -21,2: + 0: 47159 + -20,3: + 0: 4095 + -21,3: + 0: 15291 -19,1: - 0: 65535 + 0: 61166 -19,2: - 0: 65535 - -19,3: - 0: 65535 + 0: 61166 -18,0: - 0: 65529 + 0: 65024 -18,1: - 0: 65535 + 0: 61408 -18,2: - 0: 65535 - -18,3: - 0: 65297 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65518 - -15,8: - 0: 65535 - -14,8: - 0: 65331 - -11,8: - 0: 65535 + 0: 3824 + -16,8: + 0: 61440 + -16,9: + 0: 4095 + -17,9: + 0: 45055 + -17,10: + 0: 60074 + -16,10: + 2: 3788 + -17,11: + 0: 174 + -16,11: + 2: 224 + -15,9: + 0: 53247 + -15,11: + 2: 240 + -15,10: + 0: 61166 + -14,9: + 0: 4095 + -14,10: + 0: 4369 + 2: 3072 + -14,11: + 2: 240 + -13,9: + 0: 36831 + -13,10: + 2: 819 + 0: 34952 + -13,11: + 2: 48 + 0: 136 + -12,9: + 0: 16383 + -12,10: + 0: 15291 + -12,11: + 0: 35 + -11,9: + 0: 36351 + -11,10: + 0: 509 -10,8: + 0: 63344 + -10,9: + 0: 1919 + -10,10: + 0: 1790 + -9,9: 0: 65535 - -16,-16: + -9,10: + 0: 1279 + -8,9: 0: 65535 + -8,10: + 0: 511 + -16,-16: + 0: 56785 + -16,-17: + 0: 65419 + -17,-16: + 0: 35003 -16,-15: - 0: 32767 - -16,-14: - 0: 61447 - -16,-13: - 0: 65535 + 0: 12765 + -17,-15: + 0: 65512 -15,-16: - 0: 65535 + 0: 49136 -15,-15: + 0: 26155 + -15,-17: 0: 65535 -15,-14: - 0: 65535 - -15,-13: - 0: 65535 + 0: 26214 -14,-16: - 0: 65535 + 0: 65520 -14,-15: 0: 65535 -14,-14: 0: 65535 - -14,-13: - 0: 65535 + -14,-17: + 0: 65399 -13,-16: - 0: 65535 - -13,-15: - 0: 65535 - -13,-14: - 0: 65535 - -13,-13: - 0: 65535 + 0: 26214 + -20,-13: + 0: 32512 + 2: 4 -20,-11: - 0: 65518 + 0: 28876 -20,-10: - 0: 65535 - -20,-9: - 0: 65535 + 0: 30479 + -21,-11: + 0: 57344 + -21,-10: + 0: 65039 + -21,-9: + 0: 45966 -20,-12: - 0: 60559 + 0: 32768 -19,-12: - 0: 65399 + 0: 29491 -19,-11: - 0: 65535 + 0: 62327 -19,-10: - 0: 65535 - -19,-9: - 0: 65535 + 0: 28927 + -19,-13: + 0: 13111 + -18,-12: + 2: 4352 + 0: 136 -18,-11: - 0: 65416 + 0: 28672 + 2: 136 -18,-10: - 0: 65535 - -18,-9: - 0: 65535 - -18,-12: - 0: 65518 + 0: 36855 + -18,-13: + 0: 32768 + 2: 24 -17,-12: - 0: 65535 - -17,-10: - 0: 65535 - -17,-9: - 0: 65535 - -17,-11: - 0: 52428 + 0: 55 + -17,-13: + 0: 12288 + -20,-16: + 0: 35597 + -21,-16: + 0: 11 + 2: 1024 -20,-15: - 0: 65535 + 0: 65523 + -21,-15: + 0: 2303 + 2: 12288 -20,-14: - 0: 36095 - -20,-13: - 0: 65532 - -19,-15: - 0: 65535 + 0: 143 + -21,-13: + 0: 32631 -19,-14: - 0: 65535 - -19,-13: - 0: 30719 + 0: 29695 + -19,-15: + 0: 3822 + -19,-16: + 0: 32768 + -18,-16: + 0: 4351 -18,-15: - 0: 65523 + 0: 53009 -18,-14: - 0: 36863 - -18,-13: - 0: 61176 - -17,-15: - 0: 65535 - -17,-14: - 0: 52479 - -17,-13: - 0: 65532 - -17,-16: - 0: 53247 + 0: 127 + 2: 32768 + -18,-17: + 0: 65039 -17,-17: + 0: 48907 + -17,-14: + 0: 6 + 2: 3072 + -20,-19: + 0: 1799 + -21,-19: + 0: 11788 + 2: 1 + -20,-18: + 0: 60943 + -21,-18: + 0: 43706 + -20,-17: + 0: 3822 + -21,-17: + 0: 36576 + -20,-20: + 0: 49152 + 2: 200 + -20,-21: + 2: 52992 + -19,-20: + 2: 16 + 0: 4096 + -19,-19: + 0: 49648 + -19,-18: + 0: 65229 + -19,-17: + 0: 1790 + -18,-19: + 0: 24816 + -18,-18: + 0: 65382 + -17,-19: + 0: 47312 + -17,-18: + 0: 64435 + -16,-20: + 0: 65280 + -16,-19: 0: 65535 - -16,-17: - 0: 65535 + -16,-18: + 0: 15344 + -15,-18: + 0: 56796 + -15,-20: + 0: 61166 + -15,-19: + 0: 61164 + -15,-21: + 0: 60928 + 2: 2 + -14,-20: + 0: 4381 + 2: 2176 + -14,-21: + 0: 65472 + 2: 14 + -14,-19: + 0: 28396 + -14,-18: + 0: 26214 + -13,-21: + 2: 4369 -24,-8: - 0: 65535 + 0: 65532 + -24,-9: + 0: 55615 + -25,-8: + 0: 53241 -24,-7: - 0: 13119 + 0: 1 + -25,-7: + 0: 56829 + -25,-6: + 0: 56797 -24,-6: - 0: 13107 + 0: 4352 -24,-5: - 0: 65527 - -23,-8: + 0: 30512 + -25,-5: + 0: 65496 + -24,-4: 0: 65535 + -23,-8: + 0: 15283 + -23,-5: + 0: 65294 + -23,-9: + 0: 65519 -23,-7: - 0: 65535 + 0: 61160 -23,-6: - 0: 65535 - -23,-5: + 0: 60942 + -23,-4: 0: 65535 -22,-8: - 0: 65535 + 0: 36348 -22,-7: - 0: 65535 + 0: 64315 -22,-6: - 0: 65535 + 0: 64779 -22,-5: - 0: 65535 - -21,-8: - 0: 65535 - -21,-7: - 0: 65535 - -21,-6: - 0: 65535 + 0: 7629 + -22,-9: + 0: 56607 + -22,-4: + 0: 57343 -21,-5: + 0: 1911 + -24,-12: + 0: 13107 + 2: 34952 + -24,-13: + 0: 12288 + 2: 34952 + 4: 34 + -25,-12: 0: 65535 - -24,-9: - 0: 65535 - -23,-9: - 0: 65535 + -24,-11: + 0: 45875 + 2: 136 + -25,-11: + 0: 61439 + -24,-10: + 0: 45963 + -25,-10: + 0: 61134 + -25,-9: + 0: 56558 + -23,-11: + 2: 16 + 0: 57344 -23,-10: - 0: 65535 + 0: 59631 + -23,-12: + 0: 2184 + -23,-13: + 0: 34952 + 2: 4913 + -22,-12: + 0: 53247 + -22,-11: + 0: 56516 -22,-10: + 0: 64733 + -22,-13: 0: 65535 - -22,-9: - 0: 65535 - -21,-10: - 0: 65535 - -21,-9: - 0: 65535 - -24,-4: - 0: 65535 + -21,-12: + 0: 1651 + -25,-4: + 0: 57341 -24,-3: - 0: 65535 + 0: 1367 + -25,-3: + 0: 17757 -24,-2: - 0: 65535 + 0: 32631 + -25,-2: + 0: 247 -24,-1: - 0: 65535 - -23,-4: - 0: 65535 + 0: 30471 + -24,0: + 0: 65399 + -25,-1: + 0: 63232 -23,-3: 0: 65535 -23,-2: - 0: 65535 + 0: 16370 -23,-1: - 0: 65535 - -22,-4: + 0: 64712 + -23,0: 0: 65535 -22,-3: - 0: 65535 + 0: 53725 -22,-2: - 0: 65535 + 0: 40412 -22,-1: 0: 65535 - -21,-4: - 0: 65535 - -21,-3: - 0: 65535 - -21,-2: - 0: 65535 - -21,-1: - 0: 65535 - -25,-8: - 0: 65535 - -25,-7: - 0: 65535 - -25,-6: + -22,0: 0: 65535 - -25,-5: + -28,-8: + 0: 61916 + -28,-9: + 0: 56607 + -29,-8: + 0: 65532 + -28,-7: 0: 65535 - -24,0: + -29,-7: 0: 65535 + -28,-6: + 0: 65524 + -29,-6: + 0: 65504 + -28,-5: + 0: 65295 + -29,-5: + 0: 60942 + -28,-4: + 0: 65311 + -27,-8: + 0: 20223 + -27,-7: + 0: 61182 + -27,-6: + 0: 65518 + -27,-9: + 0: 65358 + -27,-5: + 0: 61156 + -27,-4: + 0: 65102 + -26,-7: + 0: 61438 + -26,-5: + 0: 65524 + -26,-8: + 0: 9768 + -26,-6: + 0: 61166 + -26,-4: + 0: 61167 + -26,-9: + 0: 61166 -24,1: - 0: 65535 + 0: 30583 + -25,1: + 0: 32631 -24,2: - 0: 65535 + 0: 57328 + -25,2: + 0: 43682 -24,3: - 0: 319 - -23,0: - 0: 65535 + 0: 1 + -25,3: + 0: 30718 -23,1: - 0: 65535 + 0: 53247 -23,2: - 0: 65535 + 0: 45983 -23,3: - 0: 65535 - -22,0: - 0: 65535 + 0: 61160 + -23,4: + 0: 61422 -22,1: 0: 65535 -22,2: - 0: 65535 + 0: 62719 -22,3: 0: 65535 - -21,0: - 0: 65535 - -21,1: - 0: 65535 - -21,2: - 0: 65535 - -21,3: - 0: 65535 - -23,4: - 0: 65535 -22,4: 0: 65535 - -21,4: - 0: 65535 - -28,-4: - 0: 65535 + -24,4: + 0: 65280 + -25,4: + 0: 48951 + -24,5: + 0: 65520 + -25,5: + 0: 12275 + -24,6: + 0: 255 + -24,7: + 0: 65520 + -25,7: + 0: 49136 + -23,5: + 0: 36848 + -23,7: + 0: 65520 + -22,5: + 0: 32752 + -22,7: + 0: 26480 + -22,8: + 0: 61166 + -21,8: + 0: 63215 + -29,-4: + 0: 60942 -28,-3: - 0: 65535 + 0: 61951 + -29,-3: + 0: 57582 -28,-2: - 0: 65535 + 0: 61455 + -29,-2: + 0: 29823 -28,-1: - 0: 65535 - -27,-4: - 0: 65535 + 0: 57599 + -28,0: + 0: 3823 + -29,-1: + 0: 63345 -27,-3: - 0: 65535 + 0: 61679 -27,-2: - 0: 65535 + 0: 25327 -27,-1: - 0: 57343 - -26,-4: - 0: 65535 - -26,-3: - 0: 65535 + 0: 34822 + 2: 17408 -26,-2: - 0: 65535 + 0: 2047 -26,-1: - 0: 65520 - -25,-3: - 0: 65535 - -25,-2: - 0: 36863 - -25,-1: - 0: 65528 - -25,-4: - 0: 65535 - -28,0: - 0: 65535 + 0: 65280 + -26,-3: + 0: 3822 + -26,0: + 0: 12287 + -25,0: + 0: 1911 + -29,0: + 0: 255 -28,1: 0: 65535 + -29,1: + 0: 65535 -28,2: 0: 65535 - -28,3: + -29,2: 0: 65535 + -28,3: + 0: 4095 + -29,3: + 0: 4095 -27,0: - 0: 65535 + 0: 2032 -27,1: - 0: 65535 + 0: 48123 -27,2: - 0: 65535 + 0: 13107 -27,3: - 0: 65535 - -26,0: - 0: 65535 + 0: 819 -26,1: 0: 65535 -26,2: - 0: 65535 - -25,0: - 0: 65535 - -25,1: - 0: 65535 - -25,2: - 0: 65535 - -30,0: - 0: 61439 - -30,1: - 0: 61166 - -30,2: - 0: 61166 - -30,3: - 0: 61166 - -29,0: - 0: 65535 - -29,1: - 0: 65535 - -29,2: - 0: 65535 - -29,3: - 0: 65535 - -29,-4: - 0: 65535 - -29,-3: - 0: 65535 - -29,-2: - 0: 65535 - -29,-1: - 0: 65535 - -30,4: - 0: 61454 - -29,4: - 0: 61455 - -28,4: - 0: 61455 - -27,4: - 0: 61455 - 1,6: - 0: 65328 - 1,7: - 0: 65535 - 2,7: - 0: 65471 - 3,7: - 0: 32639 - -12,7: - 0: 65535 - -9,7: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 30583 - -7,6: - 0: 65535 - -7,7: - 0: 61166 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -16,7: - 0: 4369 - -13,7: - 0: 65535 - 4,4: - 0: 65535 - -20,5: - 0: 65535 - -19,5: - 0: 65535 - -19,6: - 0: 65535 - -19,7: - 0: 65535 - -18,7: - 0: 65535 - -17,7: - 0: 65535 - -16,8: - 0: 65297 - -16,9: - 0: 65535 - -16,10: - 0: 8157 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -14,9: - 0: 65535 - -14,10: - 0: 16383 - -13,8: - 0: 65518 - -13,9: - 0: 65535 - -13,10: - 0: 53247 - -12,8: - 0: 65535 - -12,9: - 0: 65535 - -12,10: - 0: 32767 - -11,9: - 0: 65535 - -11,10: - 0: 4095 - -10,9: - 0: 65535 - -10,10: - 0: 4095 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 4095 - -24,-10: - 0: 65535 - -27,-8: - 0: 65535 - -27,-7: - 0: 65535 - -27,-6: - 0: 65535 - -27,-5: - 0: 65535 - -26,-8: - 0: 65535 - -26,-7: - 0: 65535 - -26,-6: - 0: 65535 - -26,-5: - 0: 65535 - -24,5: - 0: 65535 - -23,5: - 0: 65535 - -22,5: - 0: 65535 - -21,5: - 0: 65535 + 0: 30578 -26,3: - 0: 52431 - -25,3: - 0: 65535 + 0: 34816 + -26,4: + 0: 34952 -32,0: - 0: 65535 + 0: 63238 + -33,0: + 0: 26222 -32,1: - 0: 65535 + 0: 30583 -32,2: - 0: 65535 + 0: 30503 -32,3: - 0: 36863 + 0: 127 + -32,-1: + 0: 28262 -31,0: - 0: 30583 + 0: 13107 -31,1: - 0: 65535 + 0: 30579 -31,2: - 0: 30591 + 0: 13107 -31,3: - 0: 65527 - -32,-2: - 0: 63628 - -32,-1: - 0: 65535 + 0: 30515 + -31,-1: + 0: 13107 + -31,4: + 0: 13111 + -30,0: + 0: 102 + -30,-1: + 0: 20198 + -30,1: + 0: 34952 + -30,2: + 0: 34952 + -30,3: + 0: 2184 + -33,-1: + 0: 61166 -32,-3: - 0: 52428 + 0: 34952 -31,-3: - 0: 65535 - -31,-2: 0: 32767 - -31,-1: - 0: 30583 + -31,-2: + 0: 13311 + -31,-5: + 0: 61166 -30,-3: - 0: 65535 + 0: 52701 -30,-2: - 0: 65535 - -30,-1: - 0: 65535 + 0: 24831 + -30,-5: + 0: 65527 + -30,-4: + 0: 52428 + -32,7: + 2: 4096 + -32,8: + 2: 17 + 0: 256 + -33,7: + 2: 65092 -32,4: - 0: 61166 + 0: 3264 -32,5: - 0: 52428 - -31,4: - 0: 63487 + 0: 2184 + -32,6: + 0: 34952 -31,5: - 0: 65535 + 0: 40891 + -31,6: + 0: 3003 + -31,7: + 2: 52292 + -31,8: + 2: 68 + 0: 1024 -30,5: 0: 65535 + -30,6: + 0: 4095 + -30,7: + 2: 61440 -29,5: 0: 65535 + -29,6: + 0: 4095 + -29,7: + 2: 61440 -28,5: 0: 65535 + -28,6: + 0: 4095 + -28,7: + 2: 65092 + -28,8: + 2: 17486 -27,5: 0: 65535 + -27,6: + 0: 4095 -26,5: - 0: 65535 - -26,4: - 0: 64716 - -25,4: - 0: 65535 - -25,5: - 0: 65535 - -24,8: - 0: 65535 - -24,9: - 0: 65535 - -24,10: - 0: 3855 - -23,8: - 0: 65535 - -23,9: - 0: 65535 - -23,10: - 0: 3855 - -22,8: - 0: 65535 + 0: 4078 + -26,7: + 0: 34816 + -25,6: + 0: 119 + 2: 4096 + -26,6: + 2: 32768 + -26,8: + 0: 34952 + -25,8: + 0: 13107 -22,9: - 0: 65535 + 0: 61422 -22,10: - 0: 65535 - -21,8: - 0: 65535 + 0: 26350 + -22,11: + 0: 26230 -21,9: 0: 65535 -21,10: - 0: 4095 - -25,8: - 0: 65535 + 0: 255 + -28,9: + 2: 17476 + -28,10: + 2: 17476 + -28,11: + 2: 17476 + -28,12: + 2: 12 + -26,9: + 0: 52416 + -26,11: + 0: 3276 + -26,10: + 0: 34952 -25,9: - 0: 65535 + 0: 14131 -25,10: - 0: 32639 - 0,8: - 0: 65535 + 0: 13107 + -25,11: + 0: 13171 0,9: - 0: 65535 - 1,8: - 0: 65535 + 0: 36591 + -1,9: + 0: 12287 + 0,11: + 2: 12834 + 0: 36040 + 0,12: + 0: 35225 + -1,11: + 2: 64176 + 0: 2 + 0,10: + 0: 34952 1,9: - 0: 65535 + 0: 8191 + 1,10: + 0: 4369 + 2: 12 + 1,11: + 0: 4913 + 2: 2184 + 1,12: + 0: 273 + 2,10: + 2: 207 + 2,11: + 2: 240 2,8: - 0: 65535 + 2: 57344 2,9: - 0: 65535 - 3,8: - 0: 65527 - -8,8: - 0: 65399 - -8,9: - 0: 65535 - -8,10: - 0: 4095 - -7,8: - 0: 65518 + 0: 14 + 2: 8416 + 3,12: + 2: 15 -7,9: - 0: 65535 + 0: 53759 -7,10: - 0: 4095 - -6,8: - 0: 65535 + 0: 221 -6,9: - 0: 65535 + 0: 61695 -6,10: - 0: 53247 - -5,8: - 0: 65535 + 0: 255 + 2: 49152 + -6,11: + 2: 196 -5,9: - 0: 65535 + 0: 58623 -5,10: - 0: 16383 - -4,8: - 0: 65535 + 2: 12288 + 0: 238 + -5,11: + 2: 241 -4,9: - 0: 65535 + 0: 3823 -4,10: - 0: 61439 - -3,8: - 0: 65535 + 0: 103 + 2: 57344 + -4,11: + 2: 244 -3,9: + 0: 3007 + -3,11: + 2: 116 + -2,9: + 0: 28671 + -2,10: 0: 65535 - -3,10: - 0: 39833 - -1,8: - 0: 65519 + -2,11: + 2: 63200 + -2,12: + 0: 36863 + 2: 12288 + -1,10: + 0: 26214 + -1,12: + 0: 16383 -20,8: - 0: 65297 + 0: 57344 -20,9: - 0: 65535 - -19,8: - 0: 65535 + 0: 3822 + -20,10: + 2: 3652 -19,9: - 0: 65535 + 0: 44799 -19,10: - 0: 65535 - -18,8: - 0: 65535 + 0: 60074 + -19,11: + 0: 174 -18,9: - 0: 65535 + 0: 3839 -18,10: - 0: 8021 - -17,8: - 0: 65535 - -17,9: - 0: 65535 - -17,10: - 0: 65535 - -27,-9: - 0: 65535 + 2: 3652 + -28,-12: + 0: 28659 + -29,-12: + 0: 4081 + -28,-11: + 0: 28910 + -29,-11: + 2: 8 + 0: 32768 + -28,-10: + 0: 63359 + -29,-10: + 0: 35003 + 2: 8192 + -29,-9: + 0: 65288 + 2: 2 + -28,-13: + 2: 33280 + 4: 128 + -27,-11: + 0: 13107 + -27,-10: + 0: 57591 + -27,-12: + 0: 3822 + -27,-13: + 0: 57344 + 4: 48 + 6: 136 + -26,-12: + 0: 4095 + -26,-11: + 4: 1911 -26,-10: - 0: 65535 - -26,-9: - 0: 65535 - -25,-10: - 0: 65535 - -25,-9: - 0: 65535 - -37,-4: - 0: 65220 + 0: 61168 + -26,-13: + 0: 61440 + 6: 17 + 7: 204 + -25,-13: + 0: 62702 + -40,-1: + 2: 17662 + -41,-1: + 2: 6135 + -40,-3: + 2: 17612 + -40,-2: + 2: 17476 + -40,0: + 2: 9188 + 0: 32768 + -39,-3: + 2: 19663 + -39,-1: + 2: 116 + -39,-4: + 2: 50244 + -39,-5: + 2: 19660 + -38,-3: + 2: 15 + -38,-2: + 0: 30583 + -38,-1: + 0: 7 -37,-3: - 0: 65535 + 2: 1 + 0: 65228 -37,-2: 0: 65535 -37,-1: - 0: 65535 + 0: 52991 + -37,-4: + 2: 5700 + -37,-5: + 2: 19711 -36,-4: - 0: 65520 + 0: 3840 -36,-3: - 0: 65535 + 0: 14335 -36,-2: - 0: 16183 + 0: 1 + 2: 3584 -36,-1: - 0: 65527 - -35,-4: - 0: 61713 + 0: 63281 + -37,0: + 0: 4104 + -36,0: + 0: 34959 -35,-3: - 0: 4095 - -34,-4: - 0: 65521 + 0: 255 + -35,-2: + 2: 2816 + 0: 1024 + -35,-1: + 0: 12288 + -35,-4: + 2: 1 + -35,-5: + 2: 7159 + -35,0: + 0: 30579 -34,-3: - 0: 61439 + 0: 36095 -34,-2: - 0: 61324 + 2: 256 + 0: 49152 + -34,-4: + 2: 1 + 0: 3584 + -34,-5: + 2: 5104 + -34,-1: + 0: 52428 + -34,0: + 0: 52428 + 2: 16 -33,-4: - 0: 65396 + 0: 256 + 2: 3140 -33,-3: - 0: 65535 + 0: 30583 -33,-2: - 0: 65535 - -33,-1: - 0: 65535 - -36,0: - 0: 65023 + 0: 26231 + -33,-5: + 2: 20208 -36,1: - 0: 65535 + 0: 60671 + -37,1: + 0: 4095 -36,2: - 0: 16383 - -36,3: - 0: 4369 - -33,0: - 0: 65535 + 0: 127 + -37,2: + 0: 511 + -37,3: + 0: 61713 + -35,1: + 0: 51 + 2: 2048 + -34,1: + 0: 52684 + -34,2: + 2: 256 + 0: 52428 + -34,3: + 0: 52428 + -34,4: + 0: 204 + 2: 256 -33,1: - 0: 65535 + 0: 26214 -33,2: - 0: 65535 + 0: 26214 -33,3: - 0: 65535 - -37,0: - 0: 65518 - -37,1: - 0: 65535 - -37,2: - 0: 65535 - -37,3: - 0: 65535 + 0: 26214 + -33,4: + 0: 30310 + -41,0: + 2: 16177 + -40,1: + 0: 43688 + -40,2: + 0: 43690 + -41,2: + 2: 16177 + -40,3: + 0: 43690 + -41,3: + 2: 62225 + -40,4: + 0: 43690 + -39,0: + 0: 61440 + -39,1: + 0: 32767 + -39,2: + 0: 13107 + -39,3: + 0: 13235 + 2: 34824 + -39,4: + 0: 63283 + 2: 8 + -38,0: + 0: 61440 + -38,1: + 0: 255 + -38,2: + 2: 1 + 0: 60544 + -38,3: + 0: 36590 + -38,4: + 2: 2050 + 0: 8 -37,4: - 0: 65535 + 0: 52975 + -40,5: + 0: 2186 + 2: 8960 + -41,5: + 2: 16177 + -40,7: + 2: 63624 + -41,7: + 2: 63281 + -40,6: + 2: 34956 + -39,5: + 0: 4095 + -39,6: + 2: 15 + -39,7: + 2: 63488 + -38,5: + 0: 4095 + -38,6: + 2: 4375 + -38,7: + 2: 62225 -37,5: - 0: 65535 + 0: 53247 + -37,7: + 2: 65092 -37,6: - 0: 52991 - -36,4: - 0: 16145 + 0: 12 + 2: 17920 -36,5: - 0: 65527 + 0: 63281 -36,6: - 0: 65535 + 0: 3855 + -36,7: + 2: 63488 + -36,4: + 2: 3584 + -35,4: + 2: 3840 + 0: 64 -35,5: - 0: 65280 + 0: 61440 -35,6: - 0: 4607 + 0: 15 + -35,7: + 2: 64273 -34,5: - 0: 65516 + 0: 64640 -34,6: - 0: 65535 - -34,4: - 0: 36846 - -33,4: - 0: 65535 + 0: 3599 + -34,7: + 2: 62225 -33,5: - 0: 65535 + 0: 30583 -33,6: - 0: 32767 - -12,-17: - 0: 65535 - -11,-17: - 0: 65535 - -10,-17: - 0: 65535 - -12,-16: - 0: 65535 - -11,-16: - 0: 65527 - -11,-15: - 0: 65535 - -11,-14: - 0: 65535 - -10,-16: - 0: 63356 - -10,-15: - 0: 65535 - -15,-17: - 0: 65535 - -14,-17: - 0: 65535 - -13,-17: - 0: 65534 - -12,6: - 0: 65520 - -13,6: - 0: 65520 - -20,6: - 0: 65535 - -20,7: - 0: 4351 - -24,4: - 0: 65520 - -24,7: - 0: 65535 - -23,7: - 0: 65535 - -23,6: - 0: 285 - -22,6: - 0: 34959 - -22,7: - 0: 65535 - -21,6: - 0: 65535 - -21,7: - 0: 61576 - -27,7: - 0: 61696 - -26,7: - 0: 64712 - -25,7: - 0: 65535 - -27,10: - 0: 3584 - -26,10: - 0: 61390 - -20,10: - 0: 3925 - -19,-16: - 0: 64921 - -18,-16: - 0: 16383 - -19,-17: - 0: 65535 - -18,-17: - 0: 65535 - -17,-18: - 0: 65535 - -16,-18: - 0: 65535 - -15,-18: - 0: 65535 - -14,-18: - 0: 65535 - -23,-12: - 0: 52428 - -22,-12: - 0: 65535 - -22,-11: - 0: 65518 - -21,-12: - 0: 65535 - -21,-11: - 0: 65297 - -32,-4: - 0: 49152 - -31,-4: - 0: 61455 - -30,-4: - 0: 65263 - -32,6: - 0: 52428 - -31,6: - 0: 65535 - -30,6: - 0: 65535 - -29,6: - 0: 65535 - -28,6: - 0: 65535 - -27,6: + 0: 263 + 2: 19456 + -24,-16: + 0: 48059 + -25,-16: 0: 65535 - -26,6: + -24,-15: + 0: 13247 + 2: 32768 + -25,-15: 0: 65535 + -24,-14: + 0: 819 + 2: 34952 + -25,-14: + 0: 20479 + -24,-17: + 0: 35771 + -23,-16: + 0: 12561 + -23,-15: + 0: 255 + 2: 61440 -23,-14: - 0: 52225 - -23,-13: - 0: 57341 + 2: 1 + 0: 32768 + -23,-17: + 0: 56785 + -22,-15: + 0: 255 + 2: 61440 -22,-14: - 0: 65391 - -22,-13: - 0: 65535 + 0: 61440 + 2: 111 + -22,-17: + 0: 56796 + -22,-16: + 0: 12 -21,-14: - 0: 65416 - -21,-13: - 0: 65535 - -1,-20: - 0: 65535 - 0,-20: - 0: 65534 - 0,-19: - 0: 65535 - 0,-18: - 0: 65535 - 1,-20: - 0: 65535 - 1,-19: + 0: 28672 + 8,-17: + 2: 52992 + 9,-16: + 0: 65348 + 9,-15: + 0: 63231 + 9,-14: + 0: 12287 + 9,-13: + 0: 4095 + 9,-17: + 0: 17408 + 2: 256 + 10,-16: + 0: 65297 + 2: 8 + 10,-15: + 0: 57599 + 10,-14: + 0: 61199 + 10,-13: + 0: 4080 + 10,-17: + 0: 4352 + 2: 35840 + 11,-16: + 0: 65092 + 11,-15: + 0: 58607 + 11,-14: + 0: 61166 + 11,-17: + 0: 17408 + 2: 256 + 12,-16: + 0: 64785 + 2: 8 + 12,-15: + 0: 57567 + 12,-14: + 0: 61182 + -8,-22: + 2: 4096 + -9,-22: + 2: 62788 + 12,-17: + 0: 4352 + 2: 35840 + 12,-13: + 0: 61152 + 12,-12: + 0: 60942 + 13,-16: + 2: 1 + 0: 30464 + 13,-15: + 0: 12407 + 13,-14: + 0: 14199 + 13,-13: + 0: 48056 + 13,-17: + 2: 7936 + 13,-12: + 0: 48011 + 14,-16: + 2: 3824 + 14,-15: + 2: 13056 + 0: 32768 + 14,-14: + 0: 16379 + 14,-13: 0: 65535 - 1,-18: + 14,-12: 0: 65535 - 2,-20: + 15,-16: + 2: 20208 + 15,-15: + 0: 47104 + 2: 12 + 15,-14: + 0: 35839 + 15,-13: + 0: 48059 + 15,-12: + 0: 48059 + 16,-16: + 2: 2288 + 16,-15: + 2: 15 + 0: 3840 + 16,-14: + 0: 30576 + 16,-13: + 0: 21853 + -10,-22: + 2: 11776 + -9,-24: + 2: 17408 + -9,-23: + 2: 17476 + -16,-21: + 2: 36736 + -17,-21: + 2: 3840 + -15,-22: + 2: 59528 + -15,-24: + 2: 34816 + -15,-23: + 2: 34952 + -14,-22: + 2: 15872 + -13,-22: + 2: 4352 + 13,-11: + 0: 61627 + 13,-10: + 0: 59 + 14,-11: + 0: 61951 + 14,-10: + 0: 15 + 15,-11: + 0: 63675 + 15,-10: + 0: 2187 + 15,-9: + 2: 3788 + 16,-12: + 0: 21853 + 16,-11: + 0: 30557 + 16,-10: + 0: 3840 + 16,-9: + 2: 3983 + 12,-7: + 0: 65504 + 11,-7: + 0: 64512 + 12,-6: 0: 65535 - 3,-20: + 11,-6: 0: 65535 - 4,-20: + 13,-7: 0: 65535 - 5,-20: + 13,-6: 0: 65535 - 5,-19: + 13,-8: + 0: 51200 + 14,-8: + 0: 63232 + 14,-7: 0: 65535 - 5,-18: - 0: 64863 - 6,-20: - 0: 63351 - 6,-19: + 14,-6: 0: 65535 - 6,-18: - 0: 61455 - 1,-21: + 15,-7: + 0: 65523 + 2: 12 + 15,-6: 0: 65535 - 2,-21: + 16,-7: + 0: 63248 + 16,-6: 0: 65535 - 3,-21: - 0: 65535 - 4,-21: - 0: 65535 - 5,-21: - 0: 65535 - 6,-21: - 0: 32631 - 6,-9: - 0: 65535 - 5,-14: - 0: 65399 - 5,-13: - 0: 65535 - 6,-14: - 0: 65535 - 6,-13: - 0: 65535 - 7,-14: - 0: 65535 - 7,-13: - 0: 65535 - 9,-12: - 0: 65532 - 9,-11: - 0: 65535 - 9,-10: - 0: 45055 - 10,-12: - 0: 65396 - 10,-11: - 0: 65535 - 11,-11: - 0: 65535 - 11,-10: - 0: 26623 - 8,-13: - 0: 65535 - 9,-13: - 0: 65535 - 9,-14: - 0: 65535 - 10,-14: - 0: 65535 - 10,-13: - 0: 65535 - 11,-13: - 0: 65535 - 4,9: - 0: 13311 - 0,11: - 0: 65263 - 0,10: - 0: 65535 - 1,11: - 0: 65535 - 1,10: - 0: 65535 - 2,11: - 0: 62718 - 2,10: - 0: 65535 - 3,9: - 0: 32767 - 3,11: - 0: 64502 - 3,10: - 0: 32639 - -1,9: - 0: 65535 - -1,11: - 0: 65535 - -1,10: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 57279 - 0,14: - 0: 65263 - 0,12: - 0: 65535 - 0,13: - 0: 20207 - 1,14: - 0: 65519 - 1,12: - 0: 65535 - 1,13: - 0: 20207 - 2,14: - 0: 65519 - 2,12: - 0: 61167 - 2,13: - 0: 20207 - 3,14: - 0: 32431 - 3,12: - 0: 61167 - 3,13: - 0: 61167 - -8,-19: - 0: 65535 - -6,-20: - 0: 6145 - -5,-20: - 0: 36847 - -12,-20: - 0: 65535 - -12,-18: - 0: 65534 - -11,-20: - 0: 65535 - -11,-18: - 0: 65535 - -10,-20: - 0: 63359 - -10,-19: - 0: 65535 - -10,-18: - 0: 62463 - -9,-19: - 0: 65535 - -15,-19: - 0: 65535 - -14,-19: - 0: 65535 - -14,-20: - 0: 64447 - -13,-20: - 0: 65535 - -13,-18: - 0: 61408 - -1,-24: - 0: 48059 - -1,-23: - 0: 48123 - -1,-22: - 0: 48059 - -1,-21: - 0: 65195 - -4,-25: - 0: 48127 - -3,-25: - 0: 48127 - -2,-25: - 0: 48127 - -1,-25: - 0: 48063 - -5,-24: - 0: 43690 - -5,-23: - 0: 41971 - -5,-22: - 0: 43690 - -5,-21: - 0: 64314 - -5,-25: - 0: 43759 - -12,-21: - 0: 61440 - -11,-21: - 0: 61440 - -10,-21: - 0: 65534 - -14,-21: - 0: 65534 - -13,-21: - 0: 61713 - -9,-20: - 0: 65535 - -15,-20: - 0: 65535 - -1,15: - 0: 8149 - -9,-21: - 0: 65521 - -15,-21: - 0: 65522 - 7,2: - 0: 49425 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 9,1: - 0: 48059 - 11,-9: - 0: 65535 - 11,-8: - 0: 65535 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 11,-5: - 0: 65535 - 12,0: - 0: 65535 - -24,6: - 0: 4095 - -25,6: - 0: 8191 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 12,-8: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: - 0: 65535 - 12,-5: - 0: 65535 - 12,-9: - 0: 65535 - -20,-18: - 0: 65535 - -20,-17: - 0: 65535 - -19,-18: - 0: 65535 - -19,-19: - 0: 65535 - -18,-19: - 0: 65535 - -18,-18: - 0: 65535 - -17,-19: - 0: 65535 - 7,-9: - 0: 65535 - 5,-16: - 0: 65535 - 5,-15: - 0: 32767 - 5,-17: - 0: 65373 - -20,-16: - 0: 65535 - -20,-19: - 0: 65535 - -17,-20: - 0: 34944 - -16,-20: - 0: 65520 - -16,-19: - 0: 65535 - -23,-11: - 0: 65296 - -21,-16: - 0: 64767 - 0,-23: - 0: 1011 - 3,15: - 0: 3956 - -4,-24: - 0: 48059 - -4,-23: - 0: 45553 - -4,-22: - 0: 48059 - -4,-21: - 0: 13067 - -3,-24: - 0: 48059 - -3,-23: - 0: 45553 - -3,-22: - 0: 48059 - -3,-21: - 0: 11 - -2,-24: - 0: 48059 - -2,-23: - 0: 45553 - -2,-22: - 0: 48059 - -2,-21: - 0: 32779 - -4,-26: - 0: 61680 - -3,-26: - 0: 61680 - -2,-26: - 0: 61680 - -1,-26: - 0: 64764 - -1,-28: - 0: 32768 - -1,-27: - 0: 34952 - -5,-26: - 0: 63462 - -5,-28: - 0: 8192 - -5,-27: - 0: 8738 - -21,-19: - 0: 65535 - -21,-18: - 0: 65535 - -21,-17: - 0: 65535 - 0,-26: - 0: 61696 - -8,-20: - 0: 13111 - -12,-19: - 0: 8191 - -11,-19: - 0: 4095 - -13,-19: - 0: 65535 - -8,-22: - 0: 4096 - -8,-21: - 0: 63281 - -12,-23: - 0: 4111 - -12,-22: - 0: 255 - -11,-23: - 0: 27791 - -11,-22: - 0: 255 - -10,-23: - 0: 8755 - -10,-22: - 0: 11827 - -9,-22: - 0: 62788 - -9,-24: - 0: 17408 - -9,-23: - 0: 17476 - -15,-22: - 0: 59528 - -15,-24: - 0: 34816 - -15,-23: - 0: 34952 - -14,-22: - 0: 15872 - -13,-23: - 0: 40319 - -13,-22: - 0: 4607 - -7,-19: - 0: 65535 - -6,-19: - 0: 65521 - -35,-2: - 0: 3840 - -35,1: - 0: 8063 - -34,1: - 0: 61422 - -34,0: - 0: 61182 - -34,2: - 0: 61422 - -35,4: - 0: 3904 - 0,-21: - 0: 60620 - 3,-22: - 0: 52364 - 4,-22: - 0: 65281 - 5,-22: - 0: 63310 - -24,-11: - 0: 65535 - -32,7: - 0: 12800 - -39,-4: - 0: 50244 - -39,-3: - 0: 52431 - -39,-2: - 0: 52428 - -39,-1: - 0: 19708 - -38,-3: - 0: 63503 - -38,-1: - 0: 2303 - -39,0: - 0: 65348 - -39,1: - 0: 65535 - -39,2: - 0: 30591 - -39,3: - 0: 65535 - -38,1: - 0: 40959 - -38,3: - 0: 65535 - -39,4: - 0: 65535 - -39,5: - 0: 65535 - -39,6: - 0: 17615 - -39,7: - 0: 64580 - -38,6: - 0: 4383 - -38,7: - 0: 62225 - -37,7: - 0: 65092 - -36,7: - 0: 63488 - -35,7: - 0: 64273 - -34,7: - 0: 62225 - -33,7: - 0: 65092 - -36,-5: - 0: 2303 - -35,-5: - 0: 7159 - -34,-5: - 0: 5104 - -33,-5: - 0: 20208 - -39,-5: - 0: 19660 - -38,-5: - 0: 255 - -37,-5: - 0: 19711 - -32,-5: - 0: 568 - -20,-20: - 0: 65224 - -19,-20: - 0: 13072 - -21,-15: - 0: 65535 - -21,-20: - 0: 63266 - 6,-15: - 0: 65535 - 7,-15: - 0: 65535 - 7,-16: - 0: 65526 - 13,0: - 0: 65535 - 4,10: - 0: 62271 - 4,11: - 0: 30719 - -7,-20: - 0: 51340 - 6,-17: - 0: 65280 - 7,-20: - 0: 30276 - 7,-18: - 0: 29799 - 7,-17: - 0: 32580 - 7,-19: - 0: 25670 - -24,-12: - 0: 65535 - -31,7: - 0: 64836 - -30,7: - 0: 61440 - -29,7: - 0: 61440 - -28,7: - 0: 65092 - -26,-12: - 0: 65535 - -26,-11: - 2: 1911 - 0: 63624 - -25,-11: - 0: 65535 - -25,-12: - 0: 65535 - -24,-16: - 0: 65535 - -24,-13: - 0: 65501 - 2: 34 - -24,-15: - 0: 65535 - -24,-14: - 0: 65535 - -23,-16: - 0: 63295 - -23,-15: - 0: 65535 - -22,-16: - 0: 61679 - 1,-23: - 0: 50934 - 1,-24: - 0: 50244 - 1,-22: - 0: 32776 - 2,-24: - 0: 28672 - 2,-23: - 0: 62837 - 2,-22: - 0: 12563 - 3,-23: - 0: 61440 - 4,-23: - 0: 61440 - 5,-23: - 0: 61440 - 6,-23: - 0: 61440 - 6,-22: - 0: 8 - 7,-23: - 0: 61440 - 7,-22: - 0: 4507 - 7,-21: - 0: 18193 - 8,-16: - 0: 65532 - 8,-15: - 0: 65535 - 8,-14: - 0: 65535 - 9,-15: - 0: 65535 - 10,-15: - 0: 65535 - 11,-15: - 0: 65535 - -7,-21: - 0: 64648 - -7,-24: - 0: 34952 - -7,-23: - 0: 34952 - -7,-22: - 0: 34952 - -6,-23: - 0: 2553 - -6,-21: - 0: 61696 - -7,-26: - 0: 34952 - -7,-25: - 0: 34952 - -6,-26: - 0: 61699 - -6,-25: - 0: 1 - -16,-21: - 0: 36736 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 13,-8: - 0: 65535 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 13,-9: - 0: 65535 - -24,-17: + 16,-5: 0: 65535 + 9,-6: + 0: 49152 + 10,-6: + 0: 60608 + -24,-20: + 0: 34959 + -24,-21: + 0: 63743 + -25,-20: + 0: 30543 + -24,-19: + 0: 48008 -24,-18: - 0: 65535 - -23,-18: - 0: 65535 - -23,-17: - 0: 65535 + 0: 48027 + -25,-18: + 0: 65287 + -25,-17: + 0: 40399 -23,-20: - 0: 65535 + 0: 30583 -23,-19: - 0: 65535 + 0: 21783 + -23,-18: + 0: 13105 + 2: 34944 + -23,-21: + 0: 4113 + 2: 3072 -22,-20: - 0: 61440 + 2: 61440 + -22,-19: + 0: 65280 -22,-18: - 0: 65263 - -22,-17: + 2: 4096 + 0: 36032 + -21,-20: + 2: 5922 + -21,-21: + 2: 32512 + -36,-5: + 2: 2303 + -35,-8: + 0: 238 + 2: 16384 + -35,-7: + 2: 4 + 0: 51200 + -35,-6: + 2: 17600 + -34,-8: + 0: 35071 + -34,-7: + 0: 65480 + -34,-9: + 0: 59249 + -34,-6: + 0: 12 + -33,-8: + 0: 56797 + -33,-7: + 0: 65309 + -33,-6: + 0: 3 + -33,-9: + 0: 6280 + -32,-8: 0: 65535 - 0,-25: + -32,-7: + 0: 65295 + -32,-5: + 2: 560 + -39,-8: + 2: 52416 + -39,-9: + 0: 52224 + 2: 4 + -39,-7: + 2: 12 + -39,-6: + 2: 50176 + -38,-8: + 2: 16 + 0: 8 + -38,-5: + 2: 255 + -38,-9: + 0: 65423 + -37,-8: 0: 1 - 1,-27: - 0: 28672 - 1,-26: - 0: 30276 - 1,-25: - 0: 17478 - 4,12: - 0: 13311 - 4,13: - 0: 62259 - 4,14: - 0: 13107 - -20,-21: - 0: 52992 + -37,-9: + 0: 4383 + -32,-6: + 0: 2184 + -31,-8: + 0: 56785 + -31,-7: + 0: 64973 + -31,-6: + 0: 65337 + -31,-9: + 0: 34952 + -30,-8: + 0: 65520 + -30,-7: + 0: 65535 + -30,-6: + 0: 30479 + -30,-9: + 0: 4369 -19,-21: - 0: 7936 + 2: 7936 -18,-21: - 0: 3840 - -17,-21: - 0: 3840 - -23,-21: - 0: 65331 + 2: 3840 + -24,-23: + 0: 62464 + -24,-22: + 0: 65535 + -25,-23: + 0: 32768 + 2: 802 + -25,-22: + 0: 35835 + -25,-21: + 0: 62399 + -23,-23: + 0: 4096 + 2: 1056 + -23,-22: + 0: 4401 -22,-21: - 0: 3840 - -21,-21: - 0: 32512 - -26,-13: - 3: 17 - 0: 65314 - 4: 204 + 2: 3840 + -28,-16: + 0: 15 + 4: 1792 + -28,-17: + 0: 65391 + -28,-15: + 5: 7 + 4: 1792 + -28,-14: + 4: 7 + 0: 34816 + -27,-16: + 0: 65535 + -27,-15: + 0: 65535 + -27,-14: + 0: 16383 + -27,-17: + 0: 65473 -26,-16: 0: 65535 -26,-15: 0: 65535 -26,-14: - 0: 65535 - -25,-16: - 0: 65535 - -25,-15: - 0: 65535 - -25,-13: - 0: 65535 + 0: 4095 -26,-17: + 0: 65392 + -28,-20: + 2: 15 + 0: 65280 + -28,-19: 0: 65535 - -25,-17: - 0: 65535 - 14,2: + -28,-18: 0: 65535 - 15,3: + -29,-19: + 0: 63335 + -29,-18: + 0: 56599 + -29,-17: + 0: 13 + 2: 26112 + -27,-20: + 2: 1 + 0: 4352 + 4: 52224 + -27,-19: + 0: 4371 + 4: 204 + 2: 49152 + -27,-18: + 0: 4369 + 2: 52428 + -26,-20: + 4: 30464 + -26,-19: + 4: 119 + 2: 28672 + -26,-18: + 2: 30583 + -25,-19: + 0: 28672 + 20,8: + 0: 13111 + 20,9: + 0: 55 + 19,9: + 0: 239 + 20,10: + 0: 37632 + 19,10: + 0: 48740 + 20,11: + 0: 39050 + 20,12: + 0: 23 + 19,11: 0: 63283 - 8,11: - 0: 12799 - 9,11: - 0: 61439 - 10,11: - 0: 5119 - 11,11: - 0: 53247 - 12,11: - 0: 65535 - 13,11: - 0: 375 - 15,10: - 0: 65535 - 16,4: - 0: 62225 - 16,5: - 0: 65535 - 17,5: - 0: 63487 - 12,12: - 0: 7 - 16,8: - 0: 65535 - 16,9: - 0: 65535 - 7,11: - 0: 33018 - -40,-1: - 0: 17662 - -40,-3: - 0: 17612 - -40,-2: - 0: 17476 - -38,-2: - 0: 65535 - -35,-1: - 0: 30464 - -34,-1: - 0: 61166 - -35,0: - 0: 65535 - -35,2: + 21,8: + 0: 1775 + 21,10: + 0: 12292 + 21,11: 0: 17 - -34,3: - 0: 61166 - -40,0: - 0: 61412 - -40,1: - 0: 65535 - -40,2: + 21,7: 0: 65535 - -40,3: + 21,9: + 0: 32896 + 22,8: + 0: 12388 + 22,9: + 0: 4223 + 22,7: + 0: 30521 + 23,8: + 0: 65260 + 23,9: + 0: 3 + 23,7: + 0: 25360 + 24,8: + 0: 4880 + 16,12: + 0: 3327 + 17,10: + 0: 65120 + 17,11: 0: 65535 - -38,0: - 0: 65280 - -38,2: - 0: 65517 - -40,4: + 17,12: 0: 65535 - -40,5: - 0: 61439 - -40,7: - 0: 63624 - -40,6: - 0: 34956 - -38,4: - 0: 63950 - -38,5: + 18,9: + 0: 55 + 18,10: + 0: 28928 + 18,11: + 0: 65527 + 18,12: 0: 65535 + 19,12: + 0: 14335 -41,-2: - 0: 5888 - -41,-1: - 0: 6135 + 2: 5888 -41,4: - 0: 4371 - -41,5: - 0: 16177 + 2: 4371 -41,6: - 0: 4369 - -41,7: - 0: 63281 - -41,0: - 0: 16177 + 2: 4369 -41,1: - 0: 4369 - -41,2: - 0: 16177 - -41,3: - 0: 62225 - -22,11: - 0: 65535 - -28,8: - 0: 17486 - -28,9: - 0: 17476 - -28,10: - 0: 17476 - -28,11: - 0: 17476 - -26,9: - 0: 61166 - -26,11: - 0: 61166 - -26,8: - 0: 52428 - -25,11: - 0: 30583 - -22,12: - 0: 34959 + 2: 4369 -22,13: - 0: 34952 + 0: 8 -22,14: - 0: 34952 - -22,15: - 0: 34952 - -28,12: - 0: 12 - -26,12: - 0: 34952 + 0: 2048 -26,13: - 0: 34952 + 0: 8 -26,14: - 0: 34952 - -26,15: - 0: 34952 - -25,12: - 0: 7 + 0: 2048 -26,16: - 0: 136 + 0: 128 -22,16: - 0: 136 - -28,-7: - 0: 65535 - -28,-6: - 0: 65535 - -28,-5: - 0: 65535 - -29,-6: - 0: 65535 - -29,-5: - 0: 65535 - -27,-10: - 0: 65535 - 7,1: - 0: 4369 - 5,10: - 0: 4495 - 5,11: - 0: 4593 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -2,9: - 0: 65535 - -28,-12: - 0: 65535 - -28,-11: - 0: 65535 - -27,-12: - 0: 65535 - -27,-11: - 0: 65535 - -2,12: - 0: 65535 - -2,13: - 0: 64443 - -2,14: - 0: 39321 - -2,15: - 0: 39417 - 0,15: - 0: 53236 - 1,15: - 0: 65524 - 2,15: - 0: 32756 - 4,15: - 0: 13299 - 5,12: - 0: 4383 - 5,13: - 0: 4369 - 5,14: - 0: 4369 - 5,15: - 0: 4369 - -28,-16: - 0: 63743 - 2: 1792 - -28,-15: - 5: 7 - 0: 63736 - 2: 1792 - -28,-14: - 2: 7 - 0: 61432 - -28,-13: - 0: 65135 - 2: 128 - -27,-16: - 0: 65535 - -27,-15: - 0: 65535 - -27,-14: - 0: 65535 - -27,-13: - 0: 65351 - 2: 48 - 3: 136 - -25,-14: - 0: 65535 + 0: 128 -32,-12: - 0: 65535 + 0: 4080 + -33,-12: + 0: 4080 -32,-11: - 0: 65365 - -31,-11: - 0: 65416 + 0: 4113 + -33,-11: + 0: 32904 + -32,-10: + 0: 511 + -33,-10: + 0: 2235 + -32,-9: + 0: 273 + -32,-13: + 0: 8739 -31,-12: - 0: 65535 + 0: 4088 + -31,-10: + 0: 36607 + -31,-11: + 0: 57480 + -31,-13: + 0: 34944 -30,-12: - 0: 65535 + 0: 4089 -30,-11: - 0: 65311 - -29,-12: + 0: 12305 + -30,-10: + 0: 5051 + -30,-13: + 0: 65528 + -29,-13: + 0: 4368 + 2: 19456 + -36,-12: + 2: 8739 + -37,-12: + 2: 34959 + -36,-11: + 2: 51 + -37,-11: + 2: 204 + 0: 4403 + -36,-10: + 0: 61422 + -37,-10: 0: 65535 - -29,-11: - 0: 65423 - -33,-11: - 0: 52360 + -36,-9: + 0: 14 + -36,-13: + 2: 8815 + -35,-10: + 0: 57309 + -35,-9: + 0: 2189 + -35,-11: + 0: 49152 + -35,-12: + 0: 2176 + -34,-12: + 0: 32767 + -34,-11: + 0: 30310 + -34,-10: + 0: 4375 + 2: 50176 -32,-16: - 0: 21887 + 2: 21887 + -33,-16: + 2: 4415 -32,-15: - 0: 21847 + 2: 21847 -32,-14: - 0: 65533 - -32,-13: - 0: 30591 + 2: 49 + 0: 47232 + -33,-14: + 0: 57344 + 2: 34 + -33,-13: + 0: 15 -31,-16: - 0: 60943 + 2: 8719 + 0: 49152 -31,-14: - 0: 65535 - -31,-13: - 0: 52975 + 0: 65336 -31,-15: - 0: 61166 + 2: 8738 + 0: 32972 -30,-16: - 0: 65535 + 0: 47854 -30,-15: - 0: 65535 + 0: 47291 -30,-14: - 0: 65535 - -30,-13: - 0: 65535 + 0: 49035 + -30,-17: + 0: 61166 -29,-16: - 0: 65535 + 0: 4368 + 2: 17472 -29,-15: - 0: 65535 - -29,-14: - 0: 65535 - -29,-13: - 0: 65535 - -33,-16: - 0: 4415 - 0,16: - 0: 65484 - 0,17: - 0: 3908 - 1,16: - 0: 65535 - 1,17: - 0: 3840 - 2,16: - 0: 65399 - 2,17: - 0: 3908 - 3,16: - 0: 65480 - 3,17: - 0: 3840 - 4,16: - 0: 62259 - 4,17: - 0: 3874 - 5,16: 0: 4369 - 5,17: - 0: 273 - -2,16: - 0: 63897 - -2,17: - 0: 3993 - -1,16: - 0: 65395 - -1,17: - 0: 3840 - -28,-9: - 0: 65535 - -9,6: - 0: 65535 - -3,11: - 0: 39421 - -2,8: - 0: 65311 - -3,12: - 0: 39321 - -28,-8: - 0: 65535 - -28,-10: - 0: 65535 - -34,-8: - 0: 53247 - -34,-7: - 0: 65534 - -34,-6: - 0: 239 - -33,-8: - 0: 65535 - -33,-7: - 0: 65535 - -33,-6: - 0: 127 - -32,-8: - 0: 65535 - -32,-7: - 0: 65535 - -32,-6: - 0: 52431 - -31,-8: - 0: 65535 - -31,-7: - 0: 65535 - -31,-6: - 0: 65535 - -31,-5: - 0: 65535 - -30,-8: - 0: 65535 - -30,-7: - 0: 65535 - -30,-6: - 0: 65535 - -30,-5: - 0: 65535 - -29,-8: - 0: 65535 - -29,-7: - 0: 65535 - -32,-10: - 0: 13311 - -32,-9: - 0: 61713 - -31,-10: - 0: 65535 - -31,-9: - 0: 47240 - -30,-10: - 0: 30719 - -30,-9: + 2: 17476 + -29,-14: 0: 4369 - -29,-10: - 0: 60671 - -29,-9: - 0: 65534 - -34,-12: - 0: 65535 - -34,-11: - 0: 65535 - -34,-10: - 0: 65535 - -34,-9: - 0: 65535 - -33,-12: - 0: 65535 - -33,-10: - 0: 52479 - -33,-9: - 0: 64392 - -35,-11: - 0: 65032 - -35,-10: - 0: 65535 - -35,-9: - 0: 61183 - -35,-12: - 0: 52428 - -35,-14: - 0: 51336 + 2: 16452 + -36,-16: + 2: 8815 + -37,-16: + 2: 35000 + 0: 771 + -36,-15: + 2: 28514 + -37,-15: + 2: 35000 + 0: 771 + -37,-13: + 2: 35000 + 0: 771 + -36,-17: + 2: 25122 + 0: 16 + -36,-14: + 2: 25122 + -35,-16: + 2: 15 + -35,-15: + 2: 18240 -35,-13: - 0: 35023 + 2: 71 + -35,-14: + 2: 16384 + -34,-16: + 2: 143 + -34,-15: + 0: 65280 + 2: 8 -34,-14: 0: 65535 -34,-13: - 0: 65535 - -33,-14: - 0: 65331 - -33,-13: - 0: 4607 - -24,-19: - 0: 65532 - -28,-20: - 0: 65535 - -28,-19: - 0: 65535 - -28,-18: - 0: 65535 - -28,-17: - 0: 65535 - -27,-20: - 0: 13299 - 2: 52224 - -27,-19: - 0: 65331 - 2: 204 - -27,-18: - 0: 65535 - -27,-17: - 0: 65535 - -26,-20: - 0: 35064 - 2: 30464 - -26,-19: - 2: 119 - 0: 65416 - -26,-18: - 0: 65535 - -25,-19: - 0: 65423 - -25,-18: - 0: 65535 - -35,-15: - 0: 53184 - -34,-15: - 0: 65528 + 0: 4095 + -34,-17: + 2: 32768 -33,-15: - 0: 13107 - -30,-18: - 0: 64716 - -30,-17: - 0: 65535 + 2: 8739 + -33,-17: + 2: 12561 + 2,12: + 2: 12 + -2,13: + 2: 819 + -32,-20: + 2: 61444 + 0: 10 + -33,-20: + 2: 49156 + 0: 12298 + -32,-21: + 0: 43690 + 2: 17476 + -31,-20: + 2: 61440 -30,-20: - 0: 65510 + 2: 4358 + 0: 52224 -30,-19: - 0: 52463 + 2: 1 + 0: 34828 + -30,-21: + 2: 26214 + -30,-18: + 0: 34952 -29,-20: - 0: 65535 - -29,-19: - 0: 65535 - -29,-18: - 0: 65535 - -29,-17: - 0: 65535 - -22,-15: - 0: 65535 - -24,-20: - 0: 52479 - -22,-19: - 0: 65520 - -24,-21: - 0: 65535 - -25,-20: - 0: 65535 + 0: 30566 + -29,-21: + 0: 28384 + -28,-23: + 0: 61440 -28,-22: - 0: 65535 + 0: 33791 + -29,-22: + 0: 30719 -28,-21: - 0: 65535 + 0: 4095 + -27,-23: + 0: 12288 -27,-22: - 0: 65535 + 0: 14779 -27,-21: - 0: 16383 + 0: 511 -26,-22: - 0: 65535 + 0: 4095 -26,-21: - 0: 36863 - -25,-22: - 0: 65535 - -25,-21: - 0: 65535 - -29,-21: - 0: 65535 - -29,-22: - 0: 65535 - 11,-14: - 0: 65535 - 12,-13: - 0: 65535 - 13,-13: - 0: 65535 - 13,-15: - 0: 65535 - 13,-14: - 0: 65535 - 6,-16: - 0: 65535 - 11,-12: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 15,-1: - 0: 65535 - 14,0: - 0: 65535 - 15,0: - 0: 65535 - 9,-16: - 0: 65534 - 10,-16: - 0: 65531 - 11,-16: - 0: 65534 - 12,-16: - 0: 65531 - 12,-15: - 0: 65535 - 12,-14: - 0: 65535 - 13,-16: - 0: 65521 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 57599 - 13,-10: - 0: 65535 - 14,-10: - 0: 65535 - 14,-9: - 0: 65535 - 15,-10: - 0: 65535 - 15,-9: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 15,-8: - 0: 65535 - 15,-7: - 0: 65535 - 15,-6: - 0: 65535 - 15,-5: - 0: 65535 - 16,-4: - 0: 65535 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 16,-1: - 0: 65535 + 0: 255 + -25,-24: + 2: 8738 + -25,-25: + 2: 12839 + -32,-22: + 2: 17652 + 0: 40960 + -33,-22: + 2: 17652 + 0: 40960 + -32,-24: + 0: 43520 + 2: 17408 + -32,-23: + 0: 43690 + 2: 17476 + -31,-22: + 2: 240 + -30,-22: + 2: 26128 + 0: 238 + -30,-24: + 0: 887 + 2: 52360 + -30,-25: + 0: 12288 + 2: 18215 + -30,-23: + 2: 25676 + -29,-23: + 0: 30464 17,-4: - 0: 65535 + 0: 62257 17,-3: 0: 65535 17,-2: - 0: 65535 + 0: 32767 17,-1: + 0: 65032 + 17,-5: 0: 65535 + 17,0: + 0: 511 18,-4: - 0: 65535 + 0: 2191 18,-3: - 0: 65535 + 0: 65395 18,-2: - 0: 65535 + 0: 32927 18,-1: - 0: 65535 + 0: 30304 + 18,-5: + 0: 65527 + 18,0: + 0: 6 19,-4: - 0: 65535 + 0: 281 19,-3: - 0: 65535 + 0: 65532 19,-2: - 0: 65535 + 0: 26239 + 19,-5: + 0: 37120 19,-1: - 0: 65535 + 0: 38 + 20,-4: + 0: 3 + 20,-3: + 0: 35224 16,-8: - 0: 65535 - 16,-7: - 0: 65535 - 16,-6: - 0: 65535 - 16,-5: - 0: 65535 + 0: 65472 17,-8: - 0: 65535 - 17,-7: - 0: 65535 + 0: 29456 17,-6: - 0: 65535 - 17,-5: - 0: 65535 - 18,-8: - 0: 65535 + 0: 65393 + 17,-7: + 0: 14 18,-7: - 0: 65535 + 0: 1 18,-6: - 0: 65535 - 18,-5: - 0: 65535 - 19,-8: - 0: 65535 - 19,-7: - 0: 65535 + 0: 29440 19,-6: - 0: 65535 - 19,-5: - 0: 65535 - 16,-10: - 0: 65535 - 16,-9: - 0: 65535 - 16,-11: - 0: 63359 - 17,-11: - 0: 4111 - 17,-10: - 0: 65523 - 17,-9: - 0: 65535 - 18,-10: - 0: 65534 - 18,-9: - 0: 65535 - 19,-10: - 0: 65535 - 19,-9: - 0: 65535 - 20,-9: - 0: 16179 - 20,-8: - 0: 65399 - 20,-7: - 0: 65535 + 0: 2204 + 19,-7: + 0: 59184 20,-6: - 0: 65535 + 0: 30513 20,-5: - 0: 65535 - 21,-8: - 0: 4096 - 21,-7: - 0: 4915 - 21,-6: - 0: 4352 + 0: 65420 21,-5: 0: 29456 - 20,-4: - 0: 65535 - 20,-3: - 0: 65535 - 20,-2: - 0: 65535 21,-4: - 0: 13111 - 16,0: - 0: 65535 - 8,-17: - 0: 52992 - 9,-17: - 0: 61184 - 10,-17: - 0: 48896 - 11,-17: - 0: 61184 - 12,-17: - 0: 48896 - 13,-17: - 0: 7936 - 8,1: - 0: 34952 - 12,1: - 0: 61183 - 13,1: - 0: 65535 - 14,1: - 0: 65535 - 15,1: - 0: 65535 - 15,2: - 0: 16383 + 0: 12819 20,-1: - 0: 32767 + 0: 27882 + 20,0: + 0: 311 21,-3: - 0: 29457 + 0: 25361 21,-2: - 0: 4983 + 0: 4966 21,-1: 0: 1 - 16,1: - 0: 65535 - 16,2: - 0: 511 - 17,0: - 0: 65535 - 17,1: - 0: 65535 17,2: - 0: 127 - 18,0: - 0: 65535 + 0: 119 18,1: - 0: 32767 + 0: 31880 18,2: 0: 1 19,0: - 0: 65535 + 0: 64640 19,1: 0: 311 - 20,0: - 0: 311 - 14,11: - 0: 136 - 15,11: - 0: 65535 - 17,6: - 0: 65535 - 17,7: - 0: 65535 - 18,5: - 0: 255 - 18,6: - 0: 63760 - 18,7: - 0: 65535 - 19,5: - 0: 255 - 19,6: - 0: 65456 - 19,7: - 0: 65535 - 14,-16: - 0: 3824 - 14,-15: - 0: 65280 - 14,-14: - 0: 65535 - 14,-13: - 0: 65535 - 15,-16: - 0: 20208 - 15,-15: - 0: 65484 - 15,-14: - 0: 65535 - 15,-13: - 0: 65535 - 13,-12: - 0: 65535 - 13,-11: - 0: 65535 - 14,-12: - 0: 65535 - 14,-11: - 0: 65535 - 15,-12: - 0: 65535 - 15,-11: - 0: 65535 - 20,8: - 0: 65535 - 20,9: - 0: 65535 - 20,10: - 0: 63487 - 20,11: - 0: 65535 - 21,8: - 0: 65535 - 21,9: - 0: 65535 - 21,10: - 0: 12295 - 21,11: - 0: 17 - 22,8: - 0: 65535 - 22,9: - 0: 4479 - 23,8: - 0: 65535 - 23,9: - 0: 3 - 16,10: - 0: 65535 - 16,11: - 0: 65535 - 17,8: - 0: 65535 - 17,9: - 0: 65535 - 17,10: - 0: 65535 - 17,11: - 0: 65535 - 18,8: - 0: 65535 - 18,9: - 0: 65535 - 18,10: - 0: 65535 - 18,11: - 0: 65535 - 19,8: - 0: 65535 - 19,9: - 0: 65535 - 19,10: - 0: 65535 - 19,11: - 0: 65535 - 16,-16: - 0: 2288 - 16,-15: - 0: 4095 - 16,-14: - 0: 30576 - 16,-13: - 0: 30591 17,-16: - 0: 5104 + 2: 5104 17,-15: - 0: 36851 + 2: 3 + 0: 36608 17,-13: - 0: 15 + 2: 15 18,-16: - 0: 20208 + 2: 20208 18,-15: - 0: 65534 + 0: 65280 + 2: 14 18,-13: - 0: 8751 + 2: 8749 + 0: 2 18,-14: - 0: 8750 + 0: 14 + 2: 8736 + 18,-12: + 0: 2 + 2: 8749 19,-16: - 0: 2288 + 2: 2288 19,-15: - 0: 65528 + 0: 65280 + 2: 8 19,-14: - 0: 8751 + 0: 15 + 2: 8736 19,-13: - 0: 8751 + 2: 8749 + 0: 2 + 19,-12: + 0: 2 + 2: 8749 20,-16: - 0: 5104 + 2: 5104 20,-15: - 0: 16371 + 2: 3 + 0: 16128 20,-14: - 0: 8739 + 0: 3 + 2: 8736 20,-13: - 0: 8751 + 2: 8749 + 0: 2 + 20,-12: + 0: 2 + 2: 8749 21,-16: - 0: 20208 + 2: 20208 21,-15: - 0: 36862 + 0: 36608 + 2: 14 21,-13: - 0: 52431 + 2: 1 + 0: 52430 21,-14: 0: 52360 + 21,-12: + 0: 52430 + 2: 1 22,-16: - 0: 2288 + 2: 2288 22,-15: - 0: 65532 + 0: 65280 + 2: 12 22,-13: - 0: 65535 + 0: 39321 + 2: 26214 + 22,-12: + 0: 39321 + 2: 26214 22,-14: 0: 35022 23,-16: - 0: 40944 + 2: 40944 23,-15: - 0: 49149 + 2: 44781 23,-14: - 0: 63897 + 2: 59528 23,-13: - 0: 63999 - 20,-12: - 0: 8751 + 2: 59630 + 23,-12: + 2: 59630 20,-11: - 0: 8751 + 2: 8749 + 0: 2 + 19,-11: + 2: 8749 + 0: 2 20,-10: - 0: 65331 - 21,-12: - 0: 52431 + 0: 3891 + 19,-10: + 0: 4095 + 20,-9: + 2: 3891 + 19,-9: + 2: 3976 21,-11: - 0: 36047 + 2: 1 + 0: 36046 21,-10: - 0: 65416 + 0: 3976 21,-9: - 0: 4078 - 22,-12: - 0: 65535 + 2: 4078 22,-11: - 0: 51343 + 0: 51337 + 2: 6 22,-10: - 0: 65534 + 0: 4094 22,-9: - 0: 3980 - 23,-12: - 0: 63999 + 2: 3980 + 23,-9: + 2: 4093 23,-11: - 0: 39423 + 2: 35054 23,-10: - 0: 65465 - 23,-9: - 0: 4093 - 16,-12: - 0: 30591 + 2: 61096 17,-12: - 0: 15 - 18,-12: - 0: 8751 + 2: 15 + 17,-11: + 2: 15 + 17,-10: + 0: 3968 + 17,-9: + 2: 3891 18,-11: - 0: 8751 - 19,-12: - 0: 8751 - 19,-11: - 0: 8751 - 24,8: - 0: 4880 - 20,5: - 0: 255 - 20,6: - 0: 65393 - 20,7: - 0: 65535 + 2: 8749 + 0: 2 + 18,-10: + 0: 4094 + 18,-9: + 2: 4078 + 21,4: + 2: 61440 21,5: - 0: 35071 + 2: 35071 21,6: - 0: 64904 - 21,7: - 0: 65535 + 0: 64896 + 2: 8 + 22,4: + 2: 12288 22,5: - 0: 13107 + 2: 13106 22,6: - 0: 29491 - 22,7: - 0: 65535 - 23,7: - 0: 29456 - 15,12: - 0: 140 - 16,12: - 0: 3327 - 17,12: - 0: 65535 + 2: 35 + 0: 4880 17,13: 0: 12 - 18,12: - 0: 65535 18,13: 0: 767 - 19,12: - 0: 14335 19,13: 0: 1 - 20,12: - 0: 23 - -35,-7: - 0: 52420 - -35,-6: - 0: 17612 - -39,-8: - 0: 52428 - -38,-8: - 0: 31 - -37,-8: - 0: 3 - -36,-12: - 0: 8739 - -36,-11: - 0: 61491 - -36,-10: - 0: 65535 - -36,-9: - 0: 255 - -36,-16: - 0: 8815 - -36,-15: - 0: 28514 - -36,-13: - 0: 8815 - -36,-14: - 0: 25122 -40,-12: - 0: 15 + 2: 15 + -41,-12: + 2: 782 -39,-12: - 0: 52431 + 2: 17479 + 0: 34952 + -39,-13: + 2: 17652 + 0: 257 -39,-11: - 0: 50380 + 2: 17612 -39,-10: - 0: 52428 - -39,-9: - 0: 52428 + 2: 17476 -38,-12: - 0: 49167 + 2: 15 -38,-11: - 0: 64767 + 2: 51 + 0: 35020 -38,-10: 0: 65535 - -38,-9: - 0: 65535 - -37,-12: - 0: 47247 - -37,-11: - 0: 62463 - -37,-10: - 0: 65535 - -37,-9: - 0: 13311 -40,-16: - 0: 4095 + 0: 3855 + 2: 240 + -41,-16: + 0: 2056 + 2: 8867 -40,-15: - 0: 4095 + 0: 3855 + 2: 240 + -41,-15: + 0: 2056 + 2: 9122 -40,-14: - 0: 4095 + 0: 3855 + 2: 240 + -41,-14: + 0: 2056 + 2: 8866 -40,-13: - 0: 4095 + 0: 3855 + 2: 240 + -41,-13: + 0: 2056 + 2: 8867 -39,-16: - 0: 17909 + 0: 257 + 2: 17652 -39,-15: - 0: 17909 + 0: 257 + 2: 17652 -39,-14: - 0: 17909 - -39,-13: - 0: 17909 + 0: 257 + 2: 17652 + -39,-17: + 2: 17424 + 0: 239 -38,-16: - 0: 4095 + 2: 240 + 0: 3855 -38,-15: - 0: 4095 + 2: 240 + 0: 3855 -38,-14: - 0: 4095 + 2: 240 + 0: 3855 -38,-13: - 0: 4095 - -37,-16: - 0: 35771 - -37,-15: - 0: 35771 + 2: 240 + 0: 3855 -37,-14: - 0: 35771 - -37,-13: - 0: 35771 + 0: 771 + 2: 35000 + -37,-17: + 2: 32784 + 0: 2272 -42,-16: - 0: 34952 + 2: 34952 + -42,-17: + 2: 34952 -42,-15: - 0: 34952 + 2: 34952 -42,-14: - 0: 34952 + 2: 34952 -42,-13: - 0: 34952 - -41,-16: - 0: 10923 - -41,-15: - 0: 11178 - -41,-13: - 0: 10923 - -41,-14: - 0: 10922 + 2: 34952 -42,-12: - 0: 2184 - -41,-12: - 0: 782 + 2: 2184 + -41,-17: + 2: 8320 + 0: 1636 -42,-19: - 0: 32768 + 2: 32768 -42,-18: - 0: 34952 - -42,-17: - 0: 34952 + 2: 34952 -41,-19: - 0: 61440 + 2: 61440 -41,-18: - 0: 248 - -41,-17: - 0: 9956 + 2: 248 -40,-19: - 0: 61440 + 2: 61440 -40,-18: - 0: 35064 + 2: 2296 + 0: 32768 -40,-17: - 0: 248 + 2: 240 + 0: 8 -39,-19: - 0: 65100 + 2: 65100 -39,-18: - 0: 62708 - -39,-17: - 0: 17663 + 2: 1268 + 0: 61440 + -39,-20: + 2: 52292 + -39,-21: + 2: 17476 + -38,-20: + 2: 63488 -38,-19: - 0: 61448 + 2: 61448 -38,-18: - 0: 13042 + 2: 754 + 0: 12288 -38,-17: - 0: 243 + 0: 3 + 2: 240 + -37,-20: + 2: 62259 -37,-19: - 0: 63989 + 2: 63989 -37,-18: - 0: 242 - -37,-17: - 0: 35056 + 2: 242 + -37,-21: + 2: 13107 + -36,-20: + 2: 61440 -36,-19: - 0: 12850 + 2: 12850 -36,-18: - 0: 8754 - -36,-17: - 0: 25138 - -35,-8: - 0: 20206 - -39,-7: - 0: 17484 - -39,-6: - 0: 50244 - -24,-23: - 0: 65280 - -24,-22: - 0: 65535 - -23,-23: - 0: 14112 - -23,-22: - 0: 13107 - -35,-16: - 0: 15 - -34,-16: - 0: 143 - -32,-20: - 0: 61454 - -31,-20: - 0: 61440 - -28,-23: - 0: 65280 - -27,-23: - 0: 63232 - -26,-23: - 0: 61440 - -25,-23: - 0: 65314 - -25,-24: - 0: 8738 - -32,-22: - 0: 58612 - -32,-24: - 0: 60928 - -32,-23: - 0: 61166 - -32,-21: - 0: 61166 - -31,-22: - 0: 240 - -30,-24: - 0: 53247 - -30,-22: - 0: 61182 - -30,-23: - 0: 60620 - -30,-21: - 0: 26222 - -29,-23: - 0: 65520 - -39,-20: - 0: 52292 - -38,-20: - 0: 63488 - -37,-20: - 0: 62259 - -36,-20: - 0: 61440 + 2: 8754 -35,-20: - 0: 61454 + 2: 61444 + 0: 10 + -35,-21: + 0: 43690 + 2: 17476 -34,-20: - 0: 61454 + 2: 28676 + 0: 32778 + -34,-21: + 0: 43690 + 2: 17476 -34,-19: - 0: 136 - -34,-17: - 0: 32768 - -33,-20: - 0: 61454 + 0: 8 + 2: 128 -33,-19: - 0: 4403 + 0: 3 + 2: 4400 -33,-18: - 0: 4369 - -33,-17: - 0: 12561 + 2: 4369 + -33,-21: + 0: 43690 + 2: 17476 -36,-22: - 0: 240 + 2: 240 -35,-22: - 0: 58612 + 2: 17652 + 0: 40960 -35,-24: - 0: 60928 + 0: 43520 + 2: 17408 -35,-23: - 0: 61166 - -35,-21: - 0: 61166 + 0: 43690 + 2: 17476 -34,-22: - 0: 58612 + 2: 17652 + 0: 40960 -34,-24: - 0: 60928 + 0: 43520 + 2: 17408 -34,-23: - 0: 61166 - -34,-21: - 0: 61166 - -33,-22: - 0: 58612 + 0: 43690 + 2: 17476 -33,-24: - 0: 60928 + 0: 43520 + 2: 17408 -33,-23: - 0: 61166 - -33,-21: - 0: 61166 + 0: 43690 + 2: 17476 -32,-26: - 0: 61440 + 2: 61440 + -33,-26: + 2: 61440 -32,-25: - 0: 61440 + 2: 61440 + -33,-25: + 2: 49201 + 0: 13056 -31,-26: - 0: 61440 + 2: 61440 -31,-25: - 0: 61440 + 2: 61440 -30,-26: - 0: 61440 - -30,-25: - 0: 30503 + 2: 61440 -29,-26: - 0: 61440 + 2: 61440 + -28,-26: + 2: 61440 -36,-26: - 0: 61440 + 2: 61440 + -37,-26: + 2: 61440 -36,-25: - 0: 61440 + 2: 61440 + -37,-25: + 2: 63271 -35,-26: - 0: 61440 + 2: 61440 -35,-25: - 0: 61440 + 2: 61440 -34,-26: - 0: 61440 + 2: 61440 -34,-25: - 0: 63616 - -33,-26: - 0: 61440 - -33,-25: - 0: 62257 + 2: 28800 + 0: 34816 -39,-26: - 0: 50252 + 2: 50252 -39,-25: - 0: 52300 + 2: 52300 + -39,-24: + 2: 17484 -38,-26: - 0: 61441 + 2: 61441 -38,-25: - 0: 63488 - -37,-26: - 0: 61440 - -37,-25: - 0: 63271 - -39,-24: - 0: 17484 + 2: 63488 + -38,-24: + 2: 8 + -37,-24: + 2: 13107 -39,-23: - 0: 17476 + 2: 17476 -39,-22: - 0: 19660 - -39,-21: - 0: 17476 + 2: 19660 -38,-22: - 0: 2296 - -38,-24: - 0: 8 - -37,-24: - 0: 13107 - -37,-23: - 0: 13107 + 2: 2296 -37,-22: 0: 13107 - -37,-21: - 0: 13107 - -28,-26: - 0: 61440 + -37,-23: + 2: 819 + 0: 12288 -27,-26: - 0: 61440 + 2: 61440 -26,-26: - 0: 61440 + 2: 61440 -26,-25: - 0: 35939 + 2: 35939 -25,-26: - 0: 30464 - -25,-25: - 0: 12839 - -32,8: - 0: 273 - -31,8: - 0: 1092 - -16,11: - 0: 241 - -13,11: - 0: 252 - -12,11: - 0: 119 - -6,11: - 0: 196 - -5,11: - 0: 241 - -4,11: - 0: 244 - -19,11: - 0: 255 - -18,11: - 0: 17 - -17,11: - 0: 255 - -3,13: - 0: 2184 - 6,11: - 0: 10228 - 11,1: - 0: 4096 - 8,12: - 0: 15 - 9,12: - 0: 15 - 10,12: - 0: 1 - 6,12: - 0: 15 - 7,12: - 0: 15 - -15,11: - 0: 255 - -14,11: - 0: 243 - 17,4: - 0: 61440 - 18,4: - 0: 61440 - 19,4: - 0: 61440 - 20,4: - 0: 61440 - 21,4: - 0: 61440 - 22,4: - 0: 12288 + 2: 30464 + 5,12: + 2: 15 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -17044,7 +16876,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -17058,11 +16890,26 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -17076,10 +16923,10 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -17092,8 +16939,20 @@ entities: temperature: 293.15 moles: - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 - 0 - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: - 6666.982 - 0 - 0 @@ -17103,6 +16962,9 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: RadiationGridResistance - type: GasTileOverlay @@ -17111,87322 +16973,89624 @@ entities: - type: SpreaderGrid - uid: 34785 components: - - type: MetaData + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AirAlarm + entities: + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + - type: DeviceList + devices: + - 29661 + - 29660 + - 27348 + - 213 + - 210 + - 29650 + - 27333 + - 27334 + - 27335 + - 27272 + - 28205 + - 27275 + - 28204 + - 27274 + - 28202 + - 28206 + - 28207 + - 27271 + - 28203 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 29649 + - 12067 + - 12068 + - 12069 + - 27346 + - 27345 + - 143 + - 212 + - 29654 + - 12075 + - 12074 + - 12073 + - 29651 + - 12078 + - 12077 + - 12076 + - 29655 + - 27335 + - 27334 + - 27333 + - 29657 + - 29656 + - 27060 + - 27992 + - 29653 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 29721 + - 29654 + - 27341 + - 28426 + - 27456 + - 28416 + - 27411 + - 63 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 29650 + - 27346 + - 27345 + - 27991 + - 27101 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 1 + - type: DeviceList + devices: + - 29642 + - 27331 + - 27330 + - 27329 + - 27325 + - 12064 + - 12065 + - 12066 + - 29649 + - 27323 + - 27324 + - 29662 + - 29650 + - 12078 + - 12077 + - 12076 + - 27262 + - 28157 + - 27321 + - 27993 + - 27983 + - 27149 + - uid: 1744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 22351 + - 22350 + - 22349 + - 22348 + - 29608 + - 30027 + - 30026 + - 29601 + - 14554 + - 30029 + - 24826 + - 23369 + - 24827 + - 23368 + - uid: 3209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,33.5 + parent: 1 + - type: DeviceList + devices: + - 33761 + - 15570 + - 11126 + - 11375 + - 29766 + - 29767 + - 29769 + - 28519 + - 29557 + - 29730 + - 25517 + - 26362 + - 24927 + - 24934 + - uid: 4412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-31.5 + parent: 1 + - type: DeviceList + devices: + - 29606 + - 30027 + - 30026 + - 29601 + - 30061 + - 29936 + - 29808 + - 29610 + - 14577 + - 24829 + - 23358 + - uid: 4486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-20.5 + parent: 1 + - type: DeviceList + devices: + - 29601 + - 30054 + - 23303 + - 24861 + - 22851 + - 16805 + - uid: 4941 + components: + - type: Transform + pos: -104.5,-44.5 + parent: 1 + - type: DeviceList + devices: + - 36733 + - uid: 7586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,-17.5 + parent: 1 + - type: DeviceList + devices: + - 41500 + - 41578 + - 29593 + - 22366 + - 22367 + - 41581 + - 41580 + - 29596 + - 29921 + - 41501 + - 19234 + - 23026 + - 24975 + - uid: 9855 + components: + - type: Transform + pos: -61.5,-43.5 + parent: 1 + - type: DeviceList + devices: + - 29697 + - 30239 + - 30241 + - 30242 + - 30243 + - 29614 + - 29616 + - 29615 + - 24348 + - 23279 + - 23278 + - 24337 + - 23265 + - 24338 + - uid: 13266 + components: + - type: Transform + pos: -73.5,-32.5 + parent: 1 + - type: DeviceList + devices: + - 29607 + - 14577 + - 29848 + - 29807 + - 29920 + - 29741 + - 29601 + - 29939 + - 4385 + - 13502 + - 24831 + - 22852 + - 9474 + - 30025 + - 23332 + - 24837 + - uid: 13956 + components: + - type: Transform + pos: -47.5,31.5 + parent: 1 + - type: DeviceList + devices: + - 29556 + - 30105 + - 27660 + - 26808 + - 26809 + - 27657 + - 26810 + - 27658 + - 26811 + - 27659 + - uid: 14556 + components: + - type: Transform + pos: -77.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 29610 + - 13502 + - 4385 + - 30057 + - 29939 + - 29600 + - 30056 + - 29599 + - 30055 + - 29602 + - 30054 + - 29606 + - 30029 + - 14554 + - 29608 + - 30061 + - 23356 + - 24830 + - 23291 + - 24836 + - 23336 + - 24833 + - 23335 + - 24835 + - uid: 14983 + components: + - type: Transform + pos: -58.5,-39.5 + parent: 1 + - type: DeviceList + devices: + - 29848 + - 41647 + - 29697 + - 41648 + - 37374 + - 37371 + - uid: 15065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 29650 + - 143 + - 212 + - 27990 + - 27100 + - uid: 16630 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 1 + - type: DeviceList + devices: + - 37953 + - 29709 + - 41678 + - 41529 + - 37478 + - 41524 + - 41677 + - 41676 + - 38169 + - 23512 + - uid: 16633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,-23.5 + parent: 1 + - type: DeviceList + devices: + - 29594 + - 29921 + - 29920 + - 41618 + - 41501 + - 41615 + - 41616 + - 25026 + - 6754 + - 41590 + - uid: 18597 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 1 + - type: DeviceList + devices: + - 16634 + - uid: 27563 + components: + - type: Transform + pos: -100.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 29575 + - 29793 + - 29738 + - 29737 + - 29579 + - 29881 + - 29792 + - 29563 + - 29803 + - 29574 + - uid: 29584 + components: + - type: Transform + pos: -82.5,20.5 + parent: 1 + - type: DeviceList + devices: + - 29803 + - 29858 + - 29881 + - 22363 + - 29571 + - 25060 + - 26205 + - 25062 + - 26206 + - 25061 + - 26207 + - 25064 + - 26208 + - uid: 29726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 29654 + - 27343 + - 27342 + - 29852 + - 29725 + - 28242 + - 27482 + - 28243 + - 27483 + - uid: 29780 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 29662 + - 27336 + - 27337 + - 29655 + - 27348 + - 213 + - 210 + - 41782 + - 27338 + - 27339 + - 27270 + - 28199 + - 28201 + - 27286 + - 28200 + - 27269 + - 27268 + - 28208 + - uid: 29783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 29561 + - 29731 + - 29563 + - 29785 + - 28519 + - 25528 + - 26364 + - 26363 + - 25432 + - 25431 + - 26274 + - 29859 + - uid: 29786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,27.5 + parent: 1 + - type: DeviceList + devices: + - 29559 + - 29560 + - 29561 + - 29731 + - 29765 + - 29730 + - 25613 + - 26443 + - 25612 + - 26442 + - uid: 29788 + components: + - type: Transform + pos: -68.5,24.5 + parent: 1 + - type: DeviceList + devices: + - 29790 + - 29558 + - 29557 + - 29765 + - 29791 + - 29768 + - 22324 + - 26444 + - 25615 + - 29556 + - 33509 + - uid: 29860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,19.5 + parent: 1 + - type: DeviceList + devices: + - 29858 + - 29792 + - 29859 + - 29562 + - 29769 + - 29785 + - 29564 + - 22360 + - 22359 + - 22358 + - 26398 + - 25825 + - 26270 + - 25428 + - 29569 + - 33509 + - uid: 29863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 22347 + - 22346 + - 22345 + - 29571 + - 22357 + - 22356 + - 29567 + - 29867 + - 29566 + - 29868 + - 29565 + - 29869 + - 29790 + - 29870 + - 29563 + - 22358 + - 22359 + - 22360 + - 25512 + - 26397 + - 26393 + - 25436 + - 25371 + - 26121 + - uid: 29871 + components: + - type: Transform + pos: -70.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 29564 + - 29569 + - 29869 + - 26396 + - 25511 + - uid: 29872 + components: + - type: Transform + pos: -69.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 29564 + - 29569 + - 29868 + - 26395 + - 25510 + - uid: 29873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 29564 + - 29569 + - 29867 + - 26394 + - 25509 + - uid: 29879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 29569 + - 29564 + - 22356 + - 22357 + - 29570 + - 29865 + - 29591 + - 29592 + - 29604 + - 29590 + - 22361 + - 22362 + - 29881 + - 29882 + - 29574 + - 22363 + - 29573 + - 29572 + - 29866 + - 25373 + - 26122 + - 25372 + - 26120 + - 26094 + - 25369 + - 25376 + - 26089 + - uid: 29883 + components: + - type: Transform + pos: -49.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 11375 + - 41540 + - 41541 + - 41492 + - 41542 + - 41543 + - 37488 + - 37694 + - uid: 29885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 29865 + - 29571 + - 26095 + - 25370 + - uid: 29889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,11.5 + parent: 1 + - type: DeviceList + devices: + - 29588 + - 29892 + - 26019 + - 25289 + - 25288 + - 26018 + - uid: 29894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -105.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 29590 + - 29893 + - 29802 + - 29881 + - 29891 + - 29589 + - 29585 + - 29908 + - 29586 + - 29892 + - 25287 + - 26021 + - 26020 + - 25350 + - uid: 29901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 29909 + - 29900 + - 29588 + - 29891 + - 29590 + - 29905 + - 25292 + - 26013 + - uid: 29902 + components: + - type: Transform + pos: -67.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 29731 + - 29766 + - 29767 + - 29556 + - 22302 + - 22303 + - 41491 + - 41540 + - 41541 + - 26298 + - 25606 + - 34984 + - 26281 + - uid: 29903 + components: + - type: Transform + pos: -89.5,-4.5 + parent: 1 + - type: DeviceList + devices: + - 29571 + - 29604 + - 29916 + - 10518 + - 25384 + - 26099 + - 25367 + - 26098 + - 26100 + - 25368 + - uid: 29906 + components: + - type: Transform + pos: -95.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 29571 + - 22361 + - 22362 + - 29905 + - 29893 + - 25284 + - 26012 + - 29588 + - uid: 29910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 29571 + - 29866 + - 26228 + - 25375 + - 25374 + - 26227 + - uid: 29913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-11.5 + parent: 1 + - type: DeviceList + devices: + - 29593 + - 22354 + - 22353 + - 22352 + - 29606 + - 22351 + - 22350 + - 22349 + - 22348 + - 29683 + - 22342 + - 22343 + - 22344 + - 29686 + - 22405 + - 22409 + - 29568 + - 20075 + - 29874 + - 29564 + - 22345 + - 22346 + - 22347 + - 24985 + - 23396 + - 24984 + - 23395 + - 24982 + - 23394 + - uid: 29917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 22354 + - 22353 + - 22352 + - 29916 + - 41582 + - 29594 + - 22366 + - 22367 + - 41581 + - 41580 + - 29920 + - 41583 + - 23397 + - 25014 + - uid: 29918 + components: + - type: Transform + pos: -121.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 29916 + - 29800 + - 29799 + - 29580 + - 33443 + - 29581 + - 29796 + - 29582 + - 29795 + - 29575 + - 29794 + - 37241 + - 37240 + - uid: 29926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 1 + - type: DeviceList + devices: + - 18595 + - 22322 + - 29556 + - 22323 + - 29676 + - 30073 + - 30093 + - 26570 + - 25767 + - 26577 + - 25782 + - 26578 + - 25768 + - uid: 29928 + components: + - type: Transform + pos: -29.5,27.5 + parent: 1 + - type: DeviceList + devices: + - 29553 + - 22321 + - 29634 + - 22320 + - 22319 + - 29778 + - 29843 + - 41493 + - 41555 + - 41554 + - 41553 + - 41552 + - 29556 + - 22316 + - 22317 + - 22318 + - 29675 + - 22322 + - 26786 + - 27639 + - 27700 + - 26792 + - 26793 + - 27699 + - uid: 29937 + components: + - type: Transform + pos: -79.5,-47.5 + parent: 1 + - type: DeviceList + devices: + - 29848 + - 29811 + - 29920 + - 23065 + - 24501 + - uid: 30036 + components: + - type: Transform + pos: -69.5,-66.5 + parent: 1 + - type: DeviceList + devices: + - 29816 + - 29618 + - 29815 + - 24378 + - 22955 + - 24395 + - 24374 + - 22922 + - 24373 + - 24375 + - 22941 + - 24376 + - 22942 + - 24377 + - 22943 + - uid: 30063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 22342 + - 22343 + - 22344 + - 29686 + - 29685 + - 29684 + - 30083 + - 22406 + - 22407 + - 29809 + - 29936 + - 22339 + - 22338 + - 29698 + - 29687 + - 22404 + - 22403 + - 22337 + - 22336 + - 29681 + - 29682 + - 23097 + - 24549 + - 23122 + - 24539 + - uid: 30065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 1 + - type: DeviceList + devices: + - 29684 + - 29685 + - 29686 + - 30083 + - 22408 + - 30086 + - 22410 + - 22411 + - 29677 + - 22341 + - 22340 + - 22337 + - 22336 + - 29683 + - 29698 + - 22332 + - 22331 + - 22330 + - 29676 + - 25772 + - 26493 + - 26489 + - 23103 + - uid: 30068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 29914 + - 30072 + - 30067 + - 29677 + - 29680 + - 29679 + - 26590 + - 25676 + - uid: 30071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 29678 + - 30067 + - 29915 + - 30083 + - 29684 + - 29685 + - 29686 + - 22410 + - 22411 + - 29681 + - 29682 + - 29676 + - 22326 + - 26591 + - 25689 + - 25688 + - 26594 + - 26589 + - 25677 + - 25686 + - 26597 + - 26596 + - 25678 + - 10306 + - uid: 30077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,-31.5 + parent: 1 + - type: DeviceList + devices: + - 29601 + - 30056 + - 24855 + - 23293 + - uid: 30079 + components: + - type: Transform + pos: -89.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 29601 + - 30055 + - 23296 + - 24842 + - 23294 + - 24846 + - 23295 + - 24847 + - uid: 30085 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 29874 + - 20075 + - 30084 + - 30083 + - 25654 + - 26392 + - uid: 30087 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 29862 + - 22409 + - 30084 + - 29761 + - 29762 + - 29914 + - 22405 + - 22406 + - 22407 + - 22408 + - 29683 + - 29681 + - 30086 + - 29915 + - 29677 + - 26478 + - 25662 + - 26477 + - 25661 + - 26476 + - 25660 + - uid: 30090 + components: + - type: Transform + pos: -43.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 29681 + - 29682 + - 22332 + - 22331 + - 22330 + - 29638 + - 22329 + - 22328 + - 22327 + - 29778 + - 29841 + - 22326 + - 29680 + - 29677 + - 29679 + - 30089 + - 30088 + - 30073 + - 29675 + - 29629 + - 25771 + - 26634 + - 25770 + - 26648 + - 26579 + - 25769 + - 30093 + - uid: 30092 + components: + - type: Transform + pos: -54.5,22.5 + parent: 1 + - type: DeviceList + devices: + - 18595 + - 22318 + - 22317 + - 22316 + - 29629 + - 22323 + - 29630 + - 29857 + - 29856 + - 29855 + - 29559 + - 22324 + - 29768 + - 29555 + - 30105 + - 11375 + - 22302 + - 22303 + - 27697 + - 26802 + - 26798 + - 26463 + - 27656 + - 26426 + - uid: 30094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -107.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 29916 + - 41579 + - 29594 + - 41578 + - 24930 + - 23029 + - 22275 + - 37121 + - 37123 + - 37110 + - 26280 + - 37122 + - 37124 + - 37111 + - uid: 30095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,31.5 + parent: 1 + - type: DeviceList + devices: + - 18595 + - 22321 + - 29779 + - 29844 + - 26966 + - 27634 + - 27633 + - 26950 + - uid: 30096 + components: + - type: Transform + pos: -24.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 18595 + - 22319 + - 22320 + - 29779 + - 30115 + - 27638 + - 26988 + - uid: 30099 + components: + - type: MetaData + name: hallway air alarm + - type: Transform + pos: -8.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 41788 + - 41786 + - 41785 + - 30170 + - 29849 + - 29654 + - 12072 + - 12071 + - 12070 + - 29650 + - 12069 + - 12068 + - 12067 + - 29651 + - 12064 + - 12065 + - 12066 + - 29636 + - 27326 + - 29779 + - 30169 + - 27997 + - 27058 + - 27061 + - 28247 + - 41806 + - 41805 + - 41804 + - 41803 + - 41802 + - 41801 + - uid: 30100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 41532 + - 41779 + - 41780 + - 41531 + - 41743 + - 41742 + - 29654 + - 29853 + - 37782 + - 37783 + - 18596 + - 29722 + - 27341 + - 41782 + - 27322 + - 29650 + - 12075 + - 12074 + - 12073 + - 29723 + - 27343 + - 27342 + - 29649 + - 12070 + - 12071 + - 12072 + - 28248 + - 27480 + - 28249 + - 27479 + - uid: 30101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1 + - type: DeviceList + devices: + - 41782 + - 27328 + - 27327 + - 12060 + - 29664 + - 60 + - 38 + - 29700 + - 22396 + - 22397 + - 30152 + - 29840 + - 29651 + - 27324 + - 27323 + - 29660 + - 27336 + - 27337 + - 27354 + - 28259 + - 28095 + - 27347 + - uid: 30102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 1 + - type: DeviceList + devices: + - 1703 + - 41769 + - 29667 + - 30199 + - 29700 + - 22391 + - 27186 + - 28106 + - uid: 30103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,14.5 + parent: 1 + - uid: 30109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 1 + - type: DeviceList + devices: + - 1703 + - 30191 + - 30207 + - 29834 + - 22019 + - 16376 + - uid: 30111 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 1 + - type: DeviceList + devices: + - 41657 + - 23613 + - 41652 + - 41653 + - 29700 + - 22390 + - 22389 + - 22388 + - 30263 + - 29627 + - 30264 + - 29626 + - 30266 + - 29625 + - 30267 + - 29622 + - 30269 + - 30270 + - 30288 + - 41661 + - 22763 + - 24078 + - 24082 + - 22753 + - 24108 + - 22773 + - 22726 + - 24077 + - 24076 + - 22727 + - uid: 30112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 1 + - type: DeviceList + devices: + - 29699 + - 22370 + - 22369 + - 22368 + - 29662 + - 22397 + - 22396 + - 29671 + - 22391 + - 29623 + - 22390 + - 22389 + - 22388 + - 30287 + - 41669 + - 41519 + - 30113 + - 41520 + - 41517 + - 22699 + - 23979 + - 23978 + - 22698 + - 38289 + - 38288 + - uid: 30114 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 1 + - type: DeviceList + devices: + - 41685 + - 41679 + - 41680 + - 41529 + - 37477 + - 29714 + - 41678 + - 29710 + - 22374 + - 30207 + - 29833 + - 41522 + - 41675 + - 41521 + - 41671 + - 41670 + - 29836 + - 30324 + - 41520 + - 41518 + - 38170 + - 34628 + - 22423 + - 23501 + - uid: 30116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,22.5 + parent: 1 + - type: DeviceList + devices: + - 29779 + - 29845 + - 26949 + - uid: 30118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 29639 + - 30140 + - 30141 + - 29676 + - 22327 + - 22328 + - 22329 + - 30136 + - 30137 + - 30138 + - 29637 + - 26757 + - 27783 + - 26758 + - 27784 + - 16351 + - uid: 30120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 16351 + - 27826 + - 26754 + - 27774 + - 26755 + - 30149 + - 30143 + - 30134 + - 29636 + - 30138 + - 30137 + - 30136 + - 29638 + - 30135 + - 29632 + - 29842 + - 29778 + - 30146 + - uid: 30122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + - type: DeviceList + devices: + - 29641 + - 30143 + - 30139 + - 29638 + - 30140 + - 30141 + - 29698 + - 22412 + - 30142 + - 29640 + - 27824 + - 26722 + - 26723 + - 27823 + - 27822 + - 26724 + - uid: 30124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 29639 + - 30142 + - 26721 + - 27806 + - 27807 + - 26720 + - 29839 + - 30152 + - uid: 30126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 29637 + - 30135 + - 27765 + - 26678 + - 27764 + - 26677 + - uid: 30128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 29637 + - 30134 + - 29642 + - 30130 + - 30131 + - 30132 + - 27326 + - 29649 + - 27962 + - 27147 + - uid: 30144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 29637 + - 30149 + - 30139 + - 29639 + - 27825 + - 26753 + - uid: 30165 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 29636 + - 30132 + - 30131 + - 30130 + - 27331 + - 27330 + - 29651 + - 27329 + - 27325 + - 27961 + - 27125 + - 27124 + - 27960 + - 27959 + - 27123 + - uid: 30168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1 + - type: DeviceList + devices: + - 41520 + - 41518 + - 30207 + - 29835 + - 41531 + - 29854 + - 41529 + - 37480 + - 41509 + - 41736 + - 41685 + - 41681 + - 41682 + - 41683 + - 41684 + - 29709 + - 22374 + - 23614 + - 22231 + - 22234 + - 23615 + - 33758 + - 35564 + - 22232 + - 30344 + - uid: 30171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,38.5 + parent: 1 + - type: DeviceList + devices: + - 29731 + - 11126 + - 15570 + - 33738 + - 12843 + - 12718 + - 41533 + - 41534 + - 33653 + - 33635 + - uid: 30173 + components: + - type: Transform + pos: -12.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 41496 + - 41566 + - 41495 + - 41565 + - 41499 + - 41563 + - 37649 + - 37594 + - uid: 30174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 1 + - type: DeviceList + devices: + - 29709 + - 41670 + - 41671 + - 41523 + - 41673 + - 41672 + - 38259 + - 38258 + - uid: 30184 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - type: DeviceList + devices: + - 29662 + - 27328 + - 27327 + - 12060 + - 29661 + - 29660 + - 27339 + - 27338 + - 29654 + - 27322 + - 27340 + - 29719 + - 29720 + - 28287 + - 27366 + - 28277 + - 27364 + - 28276 + - 27365 + - 28260 + - 27355 + - uid: 30186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + - type: DeviceList + devices: + - 27340 + - 28291 + - 27362 + - 27363 + - 28288 + - uid: 30188 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 1 + - type: DeviceList + devices: + - 29662 + - 38 + - 60 + - 29671 + - 29669 + - 30199 + - 28107 + - 27182 + - 28108 + - 27183 + - 27180 + - 28158 + - 28096 + - 28109 + - 27179 + - 28110 + - 27178 + - 30205 + - 30200 + - uid: 30194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 1 + - uid: 30208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 29683 + - 22404 + - 22403 + - 30210 + - 30211 + - 30212 + - 30213 + - 29688 + - 30214 + - 30215 + - 29690 + - 23145 + - 24175 + - uid: 30228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-20.5 + parent: 1 + - type: DeviceList + devices: + - 29688 + - 29690 + - 30216 + - 24224 + - 23141 + - 24223 + - 23137 + - 24222 + - 23134 + - uid: 30230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 1 + - type: DeviceList + devices: + - 29689 + - 30216 + - 29687 + - 30215 + - 30214 + - 30213 + - 30212 + - 30211 + - 30210 + - 22402 + - 22401 + - 29699 + - 30224 + - 30225 + - 30223 + - 30222 + - 30221 + - 29691 + - 29693 + - 30219 + - 30220 + - 29697 + - 30227 + - 30226 + - 30232 + - 23146 + - 24185 + - 24221 + - 23171 + - 23170 + - 24242 + - uid: 30234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 1 + - type: DeviceList + devices: + - 29690 + - 29688 + - 30220 + - 30219 + - 30221 + - 30222 + - 30223 + - 30224 + - 30225 + - 29821 + - 30023 + - 24193 + - 23177 + - 23176 + - 24200 + - 23181 + - 24201 + - 23180 + - 24202 + - 23179 + - 24203 + - uid: 30236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-35.5 + parent: 1 + - type: DeviceList + devices: + - 29848 + - 29810 + - 30227 + - 30226 + - 29688 + - 23125 + - 24248 + - 24249 + - 23124 + - uid: 30247 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 1 + - type: DeviceList + devices: + - 29697 + - 30240 + - 29819 + - 30022 + - 24287 + - 23211 + - 23230 + - 24285 + - 24274 + - 23208 + - 24273 + - 23207 + - uid: 30248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-50.5 + parent: 1 + - type: DeviceList + devices: + - 29697 + - 30238 + - 29613 + - 29612 + - 30241 + - 30242 + - 30243 + - 23232 + - 24318 + - 24300 + - 23236 + - 24320 + - 23235 + - uid: 30253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 22412 + - 29639 + - 29681 + - 29682 + - 22341 + - 22340 + - 22339 + - 22338 + - 29683 + - 22334 + - 22335 + - 22333 + - 29699 + - 29838 + - 30152 + - 23101 + - 24529 + - uid: 30255 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 1 + - type: DeviceList + devices: + - 29688 + - 29690 + - 22402 + - 22401 + - 29698 + - 22334 + - 22335 + - 22333 + - 29822 + - 30023 + - 29626 + - 22400 + - 29700 + - 22370 + - 22369 + - 22368 + - 22399 + - 22398 + - 30257 + - 30258 + - 30259 + - 30260 + - 29627 + - 23980 + - 22700 + - 22656 + - 23981 + - uid: 30261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 1 + - type: DeviceList + devices: + - 29699 + - 22398 + - 22399 + - 30263 + - 30264 + - 30265 + - 29628 + - 29623 + - 29624 + - 24156 + - 22707 + - 24157 + - 30288 + - uid: 30275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 1 + - type: DeviceList + devices: + - 29699 + - 22400 + - 30266 + - 29624 + - 29628 + - 29623 + - 22734 + - 24083 + - 30288 + - 21348 + - uid: 30279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 1 + - type: DeviceList + devices: + - 30268 + - 29623 + - 29624 + - 29628 + - 30267 + - 24109 + - 22762 + - 30288 + - 30023 + - 41791 + - uid: 30281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-49.5 + parent: 1 + - type: DeviceList + devices: + - 29624 + - 29623 + - 29628 + - 30288 + - 29621 + - 29620 + - 30022 + - 29820 + - 30273 + - 30272 + - 30271 + - 30269 + - 30270 + - 24131 + - 22803 + - uid: 30284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-54.5 + parent: 1 + - type: DeviceList + devices: + - 29622 + - 30273 + - 29619 + - 30274 + - 22794 + - 24136 + - uid: 30285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-65.5 + parent: 1 + - type: DeviceList + devices: + - 29620 + - 30274 + - 22786 + - 24141 + - uid: 36730 + components: + - type: MetaData + name: prisoner cells air alarm + - type: Transform + pos: 3.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 29649 + - 41806 + - 41805 + - 41804 + - 41803 + - 41802 + - 41801 + - 27053 + - 28005 + - 28004 + - 27054 + - 28006 + - 27055 + - 28007 + - 27056 + - 28008 + - 27057 + - 28009 + - 27059 + - uid: 41548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,37.5 + parent: 1 + - type: DeviceList + devices: + - 41491 + - 41542 + - 41543 + - 41493 + - 41545 + - 41544 + - 41546 + - 41547 + - 37514 + - 37695 + - 37499 + - 37684 + - 37498 + - 37683 + - 37682 + - 37497 + - uid: 41550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,34.5 + parent: 1 + - type: DeviceList + devices: + - 41499 + - 17149 + - 17146 + - 17145 + - 41492 + - 41545 + - 41544 + - 41546 + - 41547 + - 18595 + - 41555 + - 41554 + - 41553 + - 41552 + - 37685 + - 37519 + - 37696 + - 37520 + - uid: 41556 + components: + - type: Transform + pos: -20.5,38.5 + parent: 1 + - type: DeviceList + devices: + - 41493 + - 17149 + - 17146 + - 17145 + - 41494 + - 41562 + - 41498 + - 41563 + - 41495 + - 41564 + - 37527 + - 37689 + - 37528 + - 37686 + - uid: 41560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,41.5 + parent: 1 + - type: DeviceList + devices: + - 41499 + - 41562 + - 37526 + - 37688 + - 37525 + - 37687 + - uid: 41570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,34.5 + parent: 1 + - type: DeviceList + devices: + - 41498 + - 41566 + - 41497 + - 41573 + - 37648 + - 37578 + - uid: 41571 + components: + - type: Transform + pos: 5.5,39.5 + parent: 1 + - type: DeviceList + devices: + - 41496 + - 41573 + - 37579 + - 37646 + - 37647 + - 37580 + - 41574 + - 37608 + - 37609 + - uid: 41575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,28.5 + parent: 1 + - type: DeviceList + devices: + - 41498 + - 41565 + - 41499 + - 41564 + - 29779 + - 41567 + - 37623 + - 37624 + - 37650 + - 26928 + - uid: 41585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,-23.5 + parent: 1 + - type: DeviceList + devices: + - 29596 + - 41615 + - 41616 + - 29594 + - 19234 + - 19235 + - 41612 + - 41613 + - 41502 + - 41611 + - 41503 + - 41614 + - 24628 + - 36276 + - uid: 41587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,-34.5 + parent: 1 + - type: DeviceList + devices: + - 41501 + - 41611 + - 24666 + - 36285 + - 24700 + - 36286 + - uid: 41596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,-29.5 + parent: 1 + - type: DeviceList + devices: + - 19235 + - 41617 + - 41501 + - 41614 + - 41504 + - 41608 + - 41607 + - 41600 + - 41603 + - 41604 + - 41605 + - 41506 + - 41606 + - 24748 + - 41622 + - uid: 41599 + components: + - type: Transform + pos: -110.5,-34.5 + parent: 1 + - type: DeviceList + devices: + - 41503 + - 41609 + - 41505 + - 41610 + - 6014 + - 16848 + - uid: 41601 + components: + - type: Transform + pos: -123.5,-26.5 + parent: 1 + - type: DeviceList + devices: + - 41503 + - 41605 + - 41604 + - 41603 + - 16849 + - 23025 + - uid: 41619 + components: + - type: Transform + pos: -113.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 41501 + - 41613 + - 41612 + - 29221 + - 14676 + - uid: 41623 + components: + - type: Transform + pos: -98.5,-84.5 + parent: 1 + - type: DeviceList + devices: + - 41625 + - 41626 + - 37278 + - 36908 + - uid: 41636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-62.5 + parent: 1 + - type: DeviceList + devices: + - 41510 + - 41627 + - 41644 + - 41634 + - 41511 + - 41628 + - 41513 + - 41632 + - 41633 + - 37363 + - 34631 + - 37362 + - 34597 + - uid: 41638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-66.5 + parent: 1 + - type: DeviceList + devices: + - 41512 + - 41634 + - 34602 + - 34600 + - 34601 + - 34604 + - 34603 + - uid: 41640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,-71.5 + parent: 1 + - type: DeviceList + devices: + - 41512 + - 41633 + - 41632 + - 41508 + - 41635 + - 34596 + - 34595 + - uid: 41642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -112.5,-76.5 + parent: 1 + - type: DeviceList + devices: + - 41643 + - uid: 41645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-33.5 + parent: 1 + - type: DeviceList + devices: + - 41512 + - 41629 + - 29920 + - 41631 + - 41630 + - 34218 + - 34209 + - 23048 + - 34598 + - uid: 41650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-46.5 + parent: 1 + - type: DeviceList + devices: + - 41649 + - 41648 + - 29688 + - 30218 + - 30217 + - 29694 + - 30240 + - 29614 + - 30238 + - 29613 + - 30239 + - 23205 + - 24269 + - uid: 41655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-51.5 + parent: 1 + - type: DeviceList + devices: + - 30287 + - 41654 + - 29623 + - 23613 + - 41652 + - 41653 + - 37422 + - 37424 + - uid: 41659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-50.5 + parent: 1 + - type: DeviceList + devices: + - 29623 + - 41661 + - 30287 + - 41658 + - 37446 + - 37449 + - 22752 + - 37450 + - uid: 41662 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 1 + - type: DeviceList + devices: + - 30287 + - 41514 + - 41515 + - 30321 + - 29752 + - 29751 + - 37388 + - 37386 + - 22605 + - 23908 + - uid: 41665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-54.5 + parent: 1 + - type: DeviceList + devices: + - 29700 + - 30113 + - 41523 + - 16628 + - 41664 + - 38333 + - 38332 + - 38330 + - 38331 + - uid: 41668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-53.5 + parent: 1 + - type: DeviceList + devices: + - 29700 + - 41517 + - 29709 + - 41518 + - 38301 + - 38321 + - 38300 + - 38322 + - uid: 41737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 1 + - type: DeviceList + devices: + - 29710 + - 41736 + - 41705 + - 41704 + - 41706 + - 41703 + - uid: 41741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-40.5 + parent: 1 + - type: DeviceList + devices: + - 41688 + - 41722 + - 41734 + - 41687 + - 41679 + - 41680 + - 29709 + - 41684 + - 41683 + - 41682 + - 41681 + - 29710 + - uid: 41744 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - type: DeviceList + devices: + - 29710 + - 29854 + - 41530 + - 37481 + - 18596 + - 41742 + - 41743 + - 27413 + - 35510 + - uid: 41748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-53.5 + parent: 1 + - type: DeviceList + devices: + - 29709 + - 41675 + - 41523 + - 41674 + - 38227 + - 38215 + - 38228 + - 38214 + - uid: 41749 + components: + - type: Transform + pos: 38.5,-52.5 + parent: 1 + - type: DeviceList + devices: + - 41524 + - 41764 + - 41763 + - 41529 + - 37479 + - 37908 + - 37859 + - 37860 + - 37909 + - 37874 + - 37888 + - 37897 + - 37870 + - 37871 + - 37898 + - uid: 41751 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 1 + - type: DeviceList + devices: + - 41527 + - 41768 + - 41529 + - 37475 + - 37476 + - 37473 + - 37474 + - 37983 + - 37982 + - uid: 41753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-52.5 + parent: 1 + - type: DeviceList + devices: + - 41526 + - 41767 + - 41528 + - 41768 + - 38010 + - 38016 + - 38011 + - 38017 + - uid: 41756 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 1 + - type: DeviceList + devices: + - 41524 + - 41766 + - 41765 + - 41527 + - 41767 + - 38012 + - 38015 + - 38014 + - 38013 + - uid: 41757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 1 + - type: DeviceList + devices: + - 41523 + - 41761 + - 41762 + - 29714 + - 41676 + - 41677 + - 41525 + - 41763 + - 41764 + - 41526 + - 41766 + - 41765 + - 38148 + - 38180 + - 37953 + - 37952 + - uid: 41760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-62.5 + parent: 1 + - type: DeviceList + devices: + - 41521 + - 41672 + - 41673 + - 41519 + - 16628 + - 41664 + - 41522 + - 41674 + - 41524 + - 41761 + - 41762 + - 38229 + - 38179 + - 38257 + - 38260 + - uid: 41770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 1 + - type: DeviceList + devices: + - 29669 + - 41769 + - 29718 + - 30191 + - 27198 + - 27193 + - uid: 41772 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - type: DeviceList + devices: + - 41532 + - 41779 + - 41780 + - 41531 + - 41743 + - 41742 + - 29654 + - 29853 + - 37782 + - 37783 + - uid: 41775 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 1 + - type: DeviceList + devices: + - 41776 + - 41778 + - 41777 + - 41530 + - 41781 + - 18596 + - 41779 + - 41780 + - 27423 + - 26922 + - uid: 41784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 29725 + - 41787 + - 29723 + - 29852 + - 29649 + - 41786 + - 41785 + - 27025 + - 28377 + - 28378 + - 27013 + - uid: 42164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 29585 + - 29900 + - 29916 + - 29797 + - 25299 + - 26008 + - 25300 + - 26009 + - 26007 + - 13961 +- proto: AirAlarmAssembly + entities: + - uid: 30612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,-9.5 + parent: 1 +- proto: AirCanister + entities: + - uid: 9896 + components: + - type: Transform + pos: -31.542486,33.480453 + parent: 1 + - uid: 10227 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 1 + - uid: 10350 + components: + - type: Transform + pos: 54.5,-54.5 + parent: 1 + - uid: 11081 + components: + - type: Transform + pos: -125.5,18.5 + parent: 1 + - uid: 20281 + components: + - type: Transform + pos: -105.5,-45.5 + parent: 1 + - uid: 22305 + components: + - type: Transform + pos: -103.5,-42.5 + parent: 1 + - uid: 28175 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 1 + - uid: 28760 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 1 + - uid: 28761 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 1 + - uid: 30763 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 1 + - uid: 30931 + components: + - type: Transform + pos: -36.5,-73.5 + parent: 1 + - uid: 30932 + components: + - type: Transform + pos: -52.5,-73.5 + parent: 1 + - uid: 31008 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 31044 + components: + - type: Transform + pos: -48.5,12.5 + parent: 1 + - uid: 36653 + components: + - type: Transform + pos: -96.5,-82.5 + parent: 1 + - uid: 36720 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 1 + - uid: 36975 + components: + - type: Transform + pos: -110.5,-47.5 + parent: 1 +- proto: Airlock + entities: + - uid: 1453 + components: + - type: Transform + pos: -53.5,6.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 1 + - uid: 5750 + components: + - type: Transform + pos: -52.5,28.5 + parent: 1 + - uid: 5769 + components: + - type: Transform + pos: -48.5,28.5 + parent: 1 + - uid: 7273 + components: + - type: Transform + pos: -44.5,28.5 + parent: 1 + - uid: 9586 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 9587 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 10249 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41031 + - uid: 10251 + components: + - type: Transform + pos: 35.5,-55.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41032 + - uid: 23704 + components: + - type: Transform + pos: 40.5,-53.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41030 + - uid: 23705 + components: + - type: Transform + pos: 40.5,-55.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41029 + - uid: 23736 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 1 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 1298 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 4203 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 1 + - uid: 7155 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 1 +- proto: AirlockAssembly + entities: + - uid: 4369 + components: + - type: Transform + pos: -70.5,-57.5 + parent: 1 + - uid: 30592 + components: + - type: Transform + pos: -121.5,-8.5 + parent: 1 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 4951 + components: + - type: Transform + pos: -97.5,-38.5 + parent: 1 + - uid: 18893 + components: + - type: Transform + pos: -96.5,-38.5 + parent: 1 + - uid: 19258 + components: + - type: Transform + pos: -96.5,-31.5 + parent: 1 + - uid: 33934 + components: + - type: Transform + pos: -110.5,-66.5 + parent: 1 + - uid: 33935 + components: + - type: Transform + pos: -109.5,-66.5 + parent: 1 + - uid: 33944 + components: + - type: Transform + pos: -96.5,-64.5 + parent: 1 + - uid: 34075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,-52.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34080 + - type: DeviceLinkSource + linkedPorts: + 34080: + - DoorStatus: Close + - uid: 34080 + components: + - type: Transform + pos: -97.5,-49.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34075 + - type: DeviceLinkSource + linkedPorts: + 34075: + - DoorStatus: Close +- proto: AirlockAtmosphericsLocked + entities: + - uid: 3378 + components: + - type: MetaData + name: emergency air storage + - type: Transform + pos: -16.5,-67.5 + parent: 1 + - uid: 33980 + components: + - type: Transform + pos: -95.5,-70.5 + parent: 1 + - uid: 36704 + components: + - type: MetaData + name: emergency air storage + - type: Transform + pos: -16.5,-61.5 + parent: 1 +- proto: AirlockBarLocked + entities: + - uid: 1565 + components: + - type: Transform + pos: -54.5,1.5 + parent: 1 +- proto: AirlockBoxerLocked + entities: + - uid: 3602 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 +- proto: AirlockCaptainGlassLocked + entities: + - uid: 306 + components: + - type: Transform + pos: -102.5,8.5 + parent: 1 + - uid: 5194 + components: + - type: Transform + pos: -111.5,0.5 + parent: 1 +- proto: AirlockCargoGlassLocked + entities: + - uid: 2114 + components: + - type: Transform + pos: -39.5,27.5 + parent: 1 + - uid: 2131 + components: + - type: Transform + pos: -40.5,27.5 + parent: 1 + - uid: 5432 + components: + - type: Transform + pos: -36.5,35.5 + parent: 1 + - uid: 5433 + components: + - type: Transform + pos: -36.5,36.5 + parent: 1 + - uid: 6133 + components: + - type: Transform + pos: -17.5,34.5 + parent: 1 +- proto: AirlockCargoLocked + entities: + - uid: 6117 + components: + - type: Transform + pos: -10.5,31.5 + parent: 1 + - uid: 6132 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 7247 + components: + - type: Transform + pos: -39.5,41.5 + parent: 1 + - uid: 7251 + components: + - type: Transform + pos: -42.5,41.5 + parent: 1 + - uid: 11530 + components: + - type: Transform + pos: -40.5,39.5 + parent: 1 +- proto: AirlockChapelGlassLocked + entities: + - uid: 3329 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 1 + - uid: 6778 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 1 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 4625 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 1 +- proto: AirlockChemistryLocked + entities: + - uid: 4658 + components: + - type: Transform + pos: -68.5,-32.5 + parent: 1 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 3412 + components: + - type: Transform + pos: -111.5,-34.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17977 + - 17976 + - type: DeviceLinkSource + linkedPorts: + 17976: + - DoorStatus: DoorBolt + 17977: + - DoorStatus: DoorBolt + - uid: 13303 + components: + - type: Transform + pos: -105.5,-28.5 + parent: 1 + - uid: 17964 + components: + - type: Transform + pos: -119.5,-36.5 + parent: 1 + - uid: 17965 + components: + - type: Transform + pos: -120.5,-36.5 + parent: 1 + - uid: 17966 + components: + - type: Transform + pos: -123.5,-39.5 + parent: 1 + - uid: 17967 + components: + - type: Transform + pos: -123.5,-38.5 + parent: 1 + - uid: 17968 + components: + - type: Transform + pos: -126.5,-39.5 + parent: 1 + - uid: 17969 + components: + - type: Transform + pos: -126.5,-38.5 + parent: 1 + - uid: 17970 + components: + - type: Transform + pos: -113.5,-31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17977 + - 17976 + - type: DeviceLinkSource + linkedPorts: + 17977: + - DoorStatus: DoorBolt + 17976: + - DoorStatus: DoorBolt + - uid: 17971 + components: + - type: Transform + pos: -112.5,-31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 17977 + - 17976 + - type: DeviceLinkSource + linkedPorts: + 17977: + - DoorStatus: DoorBolt + 17976: + - DoorStatus: DoorBolt +- proto: AirlockChiefEngineerLocked + entities: + - uid: 9755 + components: + - type: Transform + pos: -105.5,-34.5 + parent: 1 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 4848 + components: + - type: Transform + pos: -83.5,-22.5 + parent: 1 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 8732 + components: + - type: Transform + pos: -86.5,-20.5 + parent: 1 +- proto: AirlockClownLocked + entities: + - uid: 5846 + components: + - type: Transform + pos: -71.5,3.5 + parent: 1 +- proto: AirlockCommandGlassLocked + entities: + - uid: 3788 + components: + - type: Transform + pos: -69.5,24.5 + parent: 1 + - uid: 5001 + components: + - type: Transform + pos: -92.5,2.5 + parent: 1 + - uid: 5002 + components: + - type: Transform + pos: -92.5,3.5 + parent: 1 + - uid: 5045 + components: + - type: Transform + pos: -96.5,6.5 + parent: 1 + - uid: 5046 + components: + - type: Transform + pos: -96.5,-0.5 + parent: 1 + - uid: 5221 + components: + - type: Transform + pos: -104.5,1.5 + parent: 1 + - uid: 5222 + components: + - type: Transform + pos: -102.5,3.5 + parent: 1 + - uid: 5692 + components: + - type: Transform + pos: -67.5,29.5 + parent: 1 + - uid: 5693 + components: + - type: Transform + pos: -71.5,31.5 + parent: 1 + - uid: 9886 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 1 + - uid: 10421 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 1 + - uid: 10498 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 1 + - uid: 10499 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 1 +- proto: AirlockCommandLocked + entities: + - uid: 5219 + components: + - type: Transform + pos: -105.5,5.5 + parent: 1 + - uid: 5830 + components: + - type: Transform + pos: -91.5,18.5 + parent: 1 + - uid: 7969 + components: + - type: Transform + pos: -97.5,18.5 + parent: 1 +- proto: AirlockCorpsmanGlassLocked + entities: + - uid: 1682 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 4245 + components: + - type: Transform + pos: -54.5,-41.5 + parent: 1 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 1847 + components: + - type: Transform + pos: -103.5,-25.5 + parent: 1 + - uid: 2077 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2294 + - type: DeviceLinkSource + linkedPorts: + 2294: + - DoorStatus: DoorBolt + - uid: 3185 + components: + - type: Transform + pos: -103.5,-26.5 + parent: 1 + - uid: 7062 + components: + - type: Transform + pos: -107.5,-26.5 + parent: 1 + - uid: 8909 + components: + - type: Transform + pos: -107.5,-12.5 + parent: 1 + - uid: 8917 + components: + - type: Transform + pos: -98.5,-17.5 + parent: 1 + - uid: 9206 + components: + - type: Transform + pos: -105.5,-19.5 + parent: 1 + - uid: 9250 + components: + - type: Transform + pos: -109.5,-23.5 + parent: 1 + - uid: 9532 + components: + - type: Transform + pos: -101.5,-19.5 + parent: 1 + - uid: 13190 + components: + - type: Transform + pos: -107.5,-20.5 + parent: 1 + - uid: 13191 + components: + - type: Transform + pos: -107.5,-21.5 + parent: 1 + - uid: 15601 + components: + - type: Transform + pos: -98.5,-16.5 + parent: 1 + - uid: 16195 + components: + - type: Transform + pos: -107.5,-11.5 + parent: 1 + - uid: 16207 + components: + - type: Transform + pos: -105.5,-14.5 + parent: 1 + - uid: 34167 + components: + - type: Transform + pos: -138.5,-37.5 + parent: 1 + - uid: 34168 + components: + - type: Transform + pos: -143.5,-37.5 + parent: 1 + - uid: 35602 + components: + - type: Transform + pos: -107.5,-85.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 1040 + components: + - type: Transform + pos: -20.5,14.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: -51.5,11.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 1 + - uid: 3331 + components: + - type: Transform + pos: -102.5,-28.5 + parent: 1 + - uid: 3445 + components: + - type: Transform + pos: -25.5,-71.5 + parent: 1 + - uid: 4409 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 1 + - uid: 5373 + components: + - type: Transform + pos: -106.5,-5.5 + parent: 1 + - uid: 6004 + components: + - type: Transform + pos: -91.5,-35.5 + parent: 1 + - uid: 6047 + components: + - type: Transform + pos: -19.5,20.5 + parent: 1 + - uid: 6081 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1 + - uid: 9863 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 1 + - uid: 15073 + components: + - type: Transform + pos: -98.5,23.5 + parent: 1 + - uid: 15483 + components: + - type: Transform + pos: -111.5,-14.5 + parent: 1 + - uid: 16649 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 16695 + components: + - type: Transform + pos: -28.5,-71.5 + parent: 1 + - uid: 36652 + components: + - type: Transform + pos: -97.5,-78.5 + parent: 1 + - uid: 40822 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 41899 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 10670 + components: + - type: Transform + pos: 56.5,-55.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10673 + - 10672 + - type: DeviceLinkSource + linkedPorts: + 10672: + - DoorStatus: DoorBolt + 10673: + - DoorStatus: DoorBolt + - uid: 10671 + components: + - type: Transform + pos: 57.5,-55.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10673 + - 10672 + - type: DeviceLinkSource + linkedPorts: + 10673: + - DoorStatus: DoorBolt + 10672: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 539 + components: + - type: Transform + pos: -74.5,39.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: -72.5,39.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: -134.5,-24.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: -134.5,-25.5 + parent: 1 + - uid: 2303 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 1 + - uid: 5429 + components: + - type: Transform + pos: -64.5,39.5 + parent: 1 + - uid: 5451 + components: + - type: Transform + pos: -66.5,39.5 + parent: 1 + - uid: 9890 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 1 + - uid: 10226 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10268 + - 10263 + - type: DeviceLinkSource + linkedPorts: + 10268: + - DoorStatus: DoorBolt + 10263: + - DoorStatus: DoorBolt + - uid: 10228 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10268 + - 10263 + - type: DeviceLinkSource + linkedPorts: + 10268: + - DoorStatus: DoorBolt + 10263: + - DoorStatus: DoorBolt + - uid: 10229 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10268 + - 10263 + - type: DeviceLinkSource + linkedPorts: + 10268: + - DoorStatus: DoorBolt + 10263: + - DoorStatus: DoorBolt + - uid: 10230 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10268 + - 10263 + - type: DeviceLinkSource + linkedPorts: + 10268: + - DoorStatus: DoorBolt + 10263: + - DoorStatus: DoorBolt + - uid: 10263 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10229 + - 10228 + - 10230 + - 10226 + - type: DeviceLinkSource + linkedPorts: + 10229: + - DoorStatus: DoorBolt + 10228: + - DoorStatus: DoorBolt + 10230: + - DoorStatus: DoorBolt + 10226: + - DoorStatus: DoorBolt + - uid: 10268 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10229 + - 10228 + - 10230 + - 10226 + - type: DeviceLinkSource + linkedPorts: + 10229: + - DoorStatus: DoorBolt + 10228: + - DoorStatus: DoorBolt + 10230: + - DoorStatus: DoorBolt + 10226: + - DoorStatus: DoorBolt + - uid: 23891 + components: + - type: Transform + pos: 48.5,-62.5 + parent: 1 + - uid: 23892 + components: + - type: Transform + pos: 46.5,-62.5 + parent: 1 + - uid: 23893 + components: + - type: Transform + pos: 40.5,-62.5 + parent: 1 + - uid: 23894 + components: + - type: Transform + pos: 38.5,-62.5 + parent: 1 + - uid: 23909 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 1 + - uid: 23910 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 1 + - uid: 23911 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 1 + - uid: 23912 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 1 + - uid: 23913 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 1 + - uid: 23914 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 1 + - uid: 36456 + components: + - type: Transform + pos: -123.5,23.5 + parent: 1 + - uid: 36642 + components: + - type: Transform + pos: -97.5,-83.5 + parent: 1 + - uid: 36643 + components: + - type: Transform + pos: -92.5,-81.5 + parent: 1 + - uid: 38513 + components: + - type: Transform + pos: -74.5,42.5 + parent: 1 + - uid: 38514 + components: + - type: Transform + pos: -72.5,42.5 + parent: 1 + - uid: 38515 + components: + - type: Transform + pos: -66.5,42.5 + parent: 1 + - uid: 38516 + components: + - type: Transform + pos: -64.5,42.5 + parent: 1 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 30734 + components: + - type: Transform + pos: -106.5,-75.5 + parent: 1 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 2197 + components: + - type: Transform + pos: 56.5,-41.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2198 + - 10676 + - type: DeviceLinkSource + linkedPorts: + 2198: + - DoorStatus: DoorBolt + 10676: + - DoorStatus: DoorBolt + - uid: 2198 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2197 + - type: DeviceLinkSource + linkedPorts: + 2197: + - DoorStatus: DoorBolt + - uid: 2294 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2077 + - type: DeviceLinkSource + linkedPorts: + 2077: + - DoorStatus: DoorBolt + - uid: 10672 + components: + - type: Transform + pos: 56.5,-52.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10670 + - 10671 + - 10675 + - 10674 + - type: DeviceLinkSource + linkedPorts: + 10675: + - DoorStatus: DoorBolt + 10674: + - DoorStatus: DoorBolt + 10671: + - DoorStatus: DoorBolt + 10670: + - DoorStatus: DoorBolt + - uid: 10673 + components: + - type: Transform + pos: 57.5,-52.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10670 + - 10671 + - 10675 + - 10674 + - type: DeviceLinkSource + linkedPorts: + 10675: + - DoorStatus: DoorBolt + 10674: + - DoorStatus: DoorBolt + 10671: + - DoorStatus: DoorBolt + 10670: + - DoorStatus: DoorBolt + - uid: 10674 + components: + - type: Transform + pos: 62.5,-55.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10673 + - 10672 + - type: DeviceLinkSource + linkedPorts: + 10673: + - DoorStatus: DoorBolt + 10672: + - DoorStatus: DoorBolt + - uid: 10675 + components: + - type: Transform + pos: 62.5,-54.5 + parent: 1 + - type: DeviceLinkSink + links: + - 10673 + - 10672 + - type: DeviceLinkSource + linkedPorts: + 10673: + - DoorStatus: DoorBolt + 10672: + - DoorStatus: DoorBolt + - uid: 10676 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 2197 + - type: DeviceLinkSource + linkedPorts: + 2197: + - DoorStatus: DoorBolt + - uid: 17976 + components: + - type: Transform + pos: -115.5,-33.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3412 + - 17970 + - 17971 + - type: DeviceLinkSource + linkedPorts: + 17970: + - DoorStatus: DoorBolt + 17971: + - DoorStatus: DoorBolt + 3412: + - DoorStatus: DoorBolt + - uid: 17977 + components: + - type: Transform + pos: -115.5,-32.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3412 + - 17970 + - 17971 + - type: DeviceLinkSource + linkedPorts: + 17970: + - DoorStatus: DoorBolt + 17971: + - DoorStatus: DoorBolt + 3412: + - DoorStatus: DoorBolt + - uid: 34118 + components: + - type: Transform + pos: -149.5,-42.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34169 + - 34172 + - type: DeviceLinkSource + linkedPorts: + 34169: + - DoorStatus: DoorBolt + 34172: + - DoorStatus: DoorBolt + - uid: 34119 + components: + - type: Transform + pos: -149.5,-43.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34169 + - 34172 + - type: DeviceLinkSource + linkedPorts: + 34169: + - DoorStatus: DoorBolt + 34172: + - DoorStatus: DoorBolt + - uid: 34130 + components: + - type: Transform + pos: -148.5,-31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34176 + - 34174 + - type: DeviceLinkSource + linkedPorts: + 34176: + - DoorStatus: DoorBolt + 34174: + - DoorStatus: DoorBolt + - uid: 34137 + components: + - type: Transform + pos: -147.5,-31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34176 + - 34174 + - type: DeviceLinkSource + linkedPorts: + 34176: + - DoorStatus: DoorBolt + 34174: + - DoorStatus: DoorBolt + - uid: 34151 + components: + - type: Transform + pos: -146.5,-43.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34169 + - 34172 + - type: DeviceLinkSource + linkedPorts: + 34172: + - DoorStatus: DoorBolt + 34169: + - DoorStatus: DoorBolt + - uid: 34152 + components: + - type: Transform + pos: -146.5,-42.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34169 + - 34172 + - type: DeviceLinkSource + linkedPorts: + 34172: + - DoorStatus: DoorBolt + 34169: + - DoorStatus: DoorBolt + - uid: 34169 + components: + - type: Transform + pos: -148.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34118 + - 34119 + - 34152 + - 34151 + - type: DeviceLinkSource + linkedPorts: + 34118: + - DoorStatus: DoorBolt + 34119: + - DoorStatus: DoorBolt + 34152: + - DoorStatus: DoorBolt + 34151: + - DoorStatus: DoorBolt + - uid: 34172 + components: + - type: Transform + pos: -147.5,-40.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34118 + - 34119 + - 34152 + - 34151 + - type: DeviceLinkSource + linkedPorts: + 34118: + - DoorStatus: DoorBolt + 34119: + - DoorStatus: DoorBolt + 34152: + - DoorStatus: DoorBolt + 34151: + - DoorStatus: DoorBolt + - uid: 34174 + components: + - type: Transform + pos: -147.5,-34.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34130 + - 34137 + - type: DeviceLinkSource + linkedPorts: + 34130: + - DoorStatus: DoorBolt + 34137: + - DoorStatus: DoorBolt + - uid: 34176 + components: + - type: Transform + pos: -148.5,-34.5 + parent: 1 + - type: DeviceLinkSink + links: + - 34130 + - 34137 + - type: DeviceLinkSource + linkedPorts: + 34130: + - DoorStatus: DoorBolt + 34137: + - DoorStatus: DoorBolt + - uid: 35630 + components: + - type: Transform + pos: -112.5,-87.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35633 + - 35632 + - type: DeviceLinkSource + linkedPorts: + 35633: + - DoorStatus: DoorBolt + 35632: + - DoorStatus: DoorBolt + - uid: 35631 + components: + - type: Transform + pos: -112.5,-86.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35633 + - 35632 + - type: DeviceLinkSource + linkedPorts: + 35633: + - DoorStatus: DoorBolt + 35632: + - DoorStatus: DoorBolt + - uid: 35632 + components: + - type: Transform + pos: -116.5,-87.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35631 + - 35630 + - type: DeviceLinkSource + linkedPorts: + 35631: + - DoorStatus: DoorBolt + 35630: + - DoorStatus: DoorBolt + - uid: 35633 + components: + - type: Transform + pos: -116.5,-86.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35631 + - 35630 + - type: DeviceLinkSource + linkedPorts: + 35631: + - DoorStatus: DoorBolt + 35630: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 2208 + components: - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids -- proto: AirAlarm - entities: - - uid: 35 + pos: 36.5,29.5 + parent: 1 + - uid: 8912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-12.5 + pos: 26.5,9.5 parent: 1 - - type: DeviceList - devices: - - 29661 - - 29660 - - 27348 - - 213 - - 210 - - 29650 - - 27333 - - 27334 - - 27335 - - 27272 - - 28205 - - 27275 - - 28204 - - 27274 - - 28202 - - 28206 - - 28207 - - 27271 - - 28203 - - type: AtmosDevice - joinedGrid: 1 - - uid: 121 + - uid: 9873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 38.5,1.5 parent: 1 - - type: DeviceList - devices: - - 29649 - - 12067 - - 12068 - - 12069 - - 27346 - - 27345 - - 143 - - 212 - - 29654 - - 12075 - - 12074 - - 12073 - - 29651 - - 12078 - - 12077 - - 12076 - - 29655 - - 27335 - - 27334 - - 27333 - - 29657 - - 29656 - - 27060 - - 27992 - - 29653 - - type: AtmosDevice - joinedGrid: 1 - - uid: 122 + - uid: 10107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-13.5 + pos: 42.5,-5.5 parent: 1 - - type: DeviceList - devices: - - 29721 - - 29654 - - 27341 - - 28426 - - 27456 - - 28416 - - 27411 - - 63 - - type: AtmosDevice - joinedGrid: 1 - - uid: 145 + - type: DeviceLinkSink + links: + - 32777 + - type: DeviceLinkSource + linkedPorts: + 32777: + - DoorStatus: DoorBolt + - uid: 24935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 + pos: 26.5,5.5 parent: 1 - - type: DeviceList - devices: - - 29650 - - 27346 - - 27345 - - 27991 - - 27101 - - type: AtmosDevice - joinedGrid: 1 - - uid: 209 + - uid: 32777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-9.5 + pos: 42.5,-8.5 parent: 1 - - type: DeviceList - devices: - - 29642 - - 27331 - - 27330 - - 27329 - - 27325 - - 12064 - - 12065 - - 12066 - - 29649 - - 27323 - - 27324 - - 29662 - - 29650 - - 12078 - - 12077 - - 12076 - - 27262 - - 28157 - - 27321 - - 27993 - - 27983 - - 27149 - - type: AtmosDevice - joinedGrid: 1 - - uid: 1744 + - type: DeviceLinkSink + links: + - 10107 + - type: DeviceLinkSource + linkedPorts: + 10107: + - DoorStatus: DoorBolt + - uid: 38981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-19.5 + pos: 42.5,38.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 22351 - - 22350 - - 22349 - - 22348 - - 29608 - - 30027 - - 30026 - - 29601 - - 14554 - - 30029 - - 24826 - - 23369 - - 24827 - - 23368 - - type: AtmosDevice - joinedGrid: 1 - - uid: 3209 +- proto: AirlockExternalGlassSalvageLocked + entities: + - uid: 5488 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,33.5 + pos: -2.5,44.5 parent: 1 - - type: DeviceList - devices: - - 33761 - - 15570 - - 11126 - - 11375 - - 29766 - - 29767 - - 29769 - - 28519 - - 29557 - - 29730 - - 25517 - - 26362 - - 24927 - - 24934 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4412 + - type: DeviceLinkSink + links: + - 11568 + - type: DeviceLinkSource + linkedPorts: + 11568: + - DoorStatus: DoorBolt + - uid: 5526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-31.5 + rot: -1.5707963267948966 rad + pos: -6.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29606 - - 30027 - - 30026 - - 29601 - - 30061 - - 29936 - - 29808 - - 29610 - - 14577 - - 24829 - - 23358 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4486 + - uid: 5550 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,-20.5 + pos: -5.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29601 - - 30054 - - 23303 - - 24861 - - 22851 - - 16805 - - type: AtmosDevice - joinedGrid: 1 - - uid: 4941 + - uid: 5655 components: - type: Transform - pos: -104.5,-44.5 + pos: 2.5,46.5 parent: 1 - - type: DeviceList - devices: - - 36733 - - type: AtmosDevice - joinedGrid: 1 - - uid: 7586 + - type: DeviceLinkSink + links: + - 11583 + - 11582 + - type: DeviceLinkSource + linkedPorts: + 11583: + - DoorStatus: DoorBolt + 11582: + - DoorStatus: DoorBolt + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-17.5 + pos: 2.5,29.5 parent: 1 - - type: DeviceList - devices: - - 41500 - - 41578 - - 29593 - - 22366 - - 22367 - - 41581 - - 41580 - - 29596 - - 29921 - - 41501 - - 19234 - - 23026 - - 24975 - - type: AtmosDevice - joinedGrid: 1 - - uid: 9855 + - uid: 11353 components: - type: Transform - pos: -61.5,-43.5 + pos: 2.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29697 - - 30239 - - 30241 - - 30242 - - 30243 - - 29614 - - 29616 - - 29615 - - 24348 - - 23279 - - 23278 - - 24337 - - 23265 - - 24338 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13266 + - type: DeviceLinkSink + links: + - 11583 + - 11582 + - type: DeviceLinkSource + linkedPorts: + 11583: + - DoorStatus: DoorBolt + 11582: + - DoorStatus: DoorBolt + - uid: 11463 components: - type: Transform - pos: -73.5,-32.5 + pos: 2.5,34.5 parent: 1 - - type: DeviceList - devices: - - 29607 - - 14577 - - 29848 - - 29807 - - 29920 - - 29741 - - 29601 - - 29939 - - 4385 - - 13502 - - 24831 - - 22852 - - 9474 - - 30025 - - 23332 - - 24837 - - type: AtmosDevice - joinedGrid: 1 - - uid: 13956 + - uid: 11568 components: - type: Transform - pos: -47.5,31.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29556 - - 30105 - - 27660 - - 26808 - - 26809 - - 27657 - - 26810 - - 27658 - - 26811 - - 27659 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14556 + - type: DeviceLinkSink + links: + - 5488 + - type: DeviceLinkSource + linkedPorts: + 5488: + - DoorStatus: DoorBolt + - uid: 11582 components: - type: Transform - pos: -77.5,-22.5 + pos: 3.5,44.5 parent: 1 - - type: DeviceList - devices: - - 29610 - - 13502 - - 4385 - - 30057 - - 29939 - - 29600 - - 30056 - - 29599 - - 30055 - - 29602 - - 30054 - - 29606 - - 30029 - - 14554 - - 29608 - - 30061 - - 23356 - - 24830 - - 23291 - - 24836 - - 23336 - - 24833 - - 23335 - - 24835 - - type: AtmosDevice - joinedGrid: 1 - - uid: 14983 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 5655 + - 11353 + - 11597 + - 13167 + - type: DeviceLinkSource + linkedPorts: + 5655: + - DoorStatus: DoorBolt + 11353: + - DoorStatus: DoorBolt + 13167: + - DoorStatus: DoorBolt + 11597: + - DoorStatus: DoorBolt + - uid: 11583 components: - type: Transform - pos: -58.5,-39.5 + pos: 4.5,44.5 parent: 1 - - type: DeviceList - devices: - - 29848 - - 41647 - - 29697 - - 41648 - - 37374 - - 37371 - - type: AtmosDevice - joinedGrid: 1 - - uid: 15065 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 5655 + - 11353 + - 11597 + - 13167 + - type: DeviceLinkSource + linkedPorts: + 5655: + - DoorStatus: DoorBolt + 11353: + - DoorStatus: DoorBolt + 13167: + - DoorStatus: DoorBolt + 11597: + - DoorStatus: DoorBolt + - uid: 11597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 4.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29650 - - 143 - - 212 - - 27990 - - 27100 - - type: AtmosDevice - joinedGrid: 1 - - uid: 16630 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 11582 + - 11583 + - type: DeviceLinkSource + linkedPorts: + 11583: + - DoorStatus: DoorBolt + 11582: + - DoorStatus: DoorBolt + - uid: 13167 components: - type: Transform - pos: 20.5,-47.5 + pos: 3.5,39.5 parent: 1 - - type: DeviceList - devices: - - 37953 - - 29709 - - 41678 - - 41529 - - 37478 - - 41524 - - 41677 - - 41676 - - 38169 - - 23512 - - type: AtmosDevice - joinedGrid: 1 - - uid: 16633 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 11582 + - 11583 + - type: DeviceLinkSource + linkedPorts: + 11583: + - DoorStatus: DoorBolt + 11582: + - DoorStatus: DoorBolt + - uid: 23523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,-23.5 + pos: 5.5,31.5 parent: 1 - - type: DeviceList - devices: - - 29594 - - 29921 - - 29920 - - 41618 - - 41501 - - 41615 - - 41616 - - 25026 - - 6754 - - 41590 - - type: AtmosDevice - joinedGrid: 1 - - uid: 18597 + - uid: 23524 components: - type: Transform - pos: -20.5,-61.5 + pos: 8.5,31.5 parent: 1 - - type: DeviceList - devices: - - 16634 - - type: AtmosDevice - joinedGrid: 1 - - uid: 27563 + - uid: 42054 components: - type: Transform - pos: -100.5,23.5 + pos: 0.5,29.5 parent: 1 - - type: DeviceList - devices: - - 29575 - - 29793 - - 29738 - - 29737 - - 29579 - - 29881 - - 29792 - - 29563 - - 29803 - - 29574 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29584 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42070 + - type: DeviceLinkSource + linkedPorts: + 42070: + - DoorStatus: DoorBolt + - uid: 42070 components: - type: Transform - pos: -82.5,20.5 + pos: 1.5,31.5 parent: 1 - - type: DeviceList - devices: - - 29803 - - 29858 - - 29881 - - 22363 - - 29571 - - 25060 - - 26205 - - 25062 - - 26206 - - 25061 - - 26207 - - 25064 - - 26208 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29726 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42054 + - type: DeviceLinkSource + linkedPorts: + 42054: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 7401 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-5.5 + pos: -87.5,38.5 parent: 1 - - type: DeviceList - devices: - - 29654 - - 27343 - - 27342 - - 29852 - - 29725 - - 28242 - - 27482 - - 28243 - - 27483 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29780 + - uid: 7405 components: - type: Transform - pos: -2.5,-16.5 + rot: 1.5707963267948966 rad + pos: -97.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29662 - - 27336 - - 27337 - - 29655 - - 27348 - - 213 - - 210 - - 41782 - - 27338 - - 27339 - - 27270 - - 28199 - - 28201 - - 27286 - - 28200 - - 27269 - - 27268 - - 28208 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29783 + - uid: 7408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,23.5 + rot: 1.5707963267948966 rad + pos: -97.5,38.5 parent: 1 - - type: DeviceList - devices: - - 29561 - - 29731 - - 29563 - - 29785 - - 28519 - - 25528 - - 26364 - - 26363 - - 25432 - - 25431 - - 26274 - - 29859 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29786 + - uid: 19937 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,27.5 + pos: -87.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29559 - - 29560 - - 29561 - - 29731 - - 29765 - - 29730 - - 25613 - - 26443 - - 25612 - - 26442 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29788 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 23879 components: - type: Transform - pos: -68.5,24.5 + pos: -5.5,-65.5 parent: 1 - - type: DeviceList - devices: - - 29790 - - 29558 - - 29557 - - 29765 - - 29791 - - 29768 - - 22324 - - 26444 - - 25615 - - 29556 - - 33509 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29860 + - uid: 23880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,19.5 + pos: -3.5,-65.5 parent: 1 - - type: DeviceList - devices: - - 29858 - - 29792 - - 29859 - - 29562 - - 29769 - - 29785 - - 29564 - - 22360 - - 22359 - - 22358 - - 26398 - - 25825 - - 26270 - - 25428 - - 29569 - - 33509 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29863 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 18556 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,4.5 + pos: -137.5,-24.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 22347 - - 22346 - - 22345 - - 29571 - - 22357 - - 22356 - - 29567 - - 29867 - - 29566 - - 29868 - - 29565 - - 29869 - - 29790 - - 29870 - - 29563 - - 22358 - - 22359 - - 22360 - - 25512 - - 26397 - - 26393 - - 25436 - - 25371 - - 26121 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29871 + - uid: 19247 components: - type: Transform - pos: -70.5,8.5 + pos: -41.5,-78.5 parent: 1 - - type: DeviceList - devices: - - 29564 - - 29569 - - 29869 - - 26396 - - 25511 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29872 + - uid: 23061 components: - type: Transform - pos: -69.5,4.5 + pos: -49.5,-78.5 parent: 1 - - type: DeviceList - devices: - - 29564 - - 29569 - - 29868 - - 26395 - - 25510 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29873 + - uid: 33859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-2.5 + pos: -90.5,-86.5 parent: 1 - - type: DeviceList - devices: - - 29564 - - 29569 - - 29867 - - 26394 - - 25509 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29879 + - uid: 33860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-1.5 + pos: -93.5,-89.5 parent: 1 - - type: DeviceList - devices: - - 29569 - - 29564 - - 22356 - - 22357 - - 29570 - - 29865 - - 29591 - - 29592 - - 29604 - - 29590 - - 22361 - - 22362 - - 29881 - - 29882 - - 29574 - - 22363 - - 29573 - - 29572 - - 29866 - - 25373 - - 26122 - - 25372 - - 26120 - - 26094 - - 25369 - - 25376 - - 26089 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29883 + - uid: 34787 components: - type: Transform - pos: -49.5,39.5 + rot: 1.5707963267948966 rad + pos: 28.5,5.5 parent: 1 - - type: DeviceList - devices: - - 11375 - - 41540 - - 41541 - - 41492 - - 41542 - - 41543 - - 37488 - - 37694 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29885 + - uid: 36454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,27.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 2369 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-7.5 + pos: 28.5,9.5 parent: 1 - - type: DeviceList - devices: - - 29865 - - 29571 - - 26095 - - 25370 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29889 + - uid: 5444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 1 + - uid: 5445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 1 + - uid: 5888 + components: + - type: Transform + pos: -45.5,-78.5 + parent: 1 + - uid: 23881 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 1 + - uid: 23882 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 1 + - uid: 23883 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 1 + - uid: 23884 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 1 + - uid: 23885 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 1 + - uid: 23886 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 1 + - uid: 23887 + components: + - type: Transform + pos: 38.5,-65.5 + parent: 1 + - uid: 23888 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 1 + - uid: 23889 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 1 + - uid: 23890 + components: + - type: Transform + pos: 48.5,-65.5 + parent: 1 + - uid: 34212 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,11.5 + pos: -153.5,-33.5 parent: 1 - - type: DeviceList - devices: - - 29588 - - 29892 - - 26019 - - 25289 - - 25288 - - 26018 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29894 + - uid: 34213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,4.5 + rot: -1.5707963267948966 rad + pos: -153.5,-32.5 parent: 1 - - type: DeviceList - devices: - - 29590 - - 29893 - - 29802 - - 29881 - - 29891 - - 29589 - - 29585 - - 29908 - - 29586 - - 29892 - - 25287 - - 26021 - - 26020 - - 25350 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29901 + - uid: 38494 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-2.5 + pos: -74.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29909 - - 29900 - - 29588 - - 29891 - - 29590 - - 29905 - - 25292 - - 26013 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29902 + - uid: 38495 components: - type: Transform - pos: -67.5,39.5 + rot: 3.141592653589793 rad + pos: -72.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29731 - - 29766 - - 29767 - - 29556 - - 22302 - - 22303 - - 41491 - - 41540 - - 41541 - - 26298 - - 25606 - - 34984 - - 26281 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29903 + - uid: 38496 components: - type: Transform - pos: -89.5,-4.5 + rot: 3.141592653589793 rad + pos: -66.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29571 - - 29604 - - 29916 - - 10518 - - 25384 - - 26099 - - 25367 - - 26098 - - 26100 - - 25368 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29906 + - uid: 38497 components: - type: Transform - pos: -95.5,8.5 + rot: 3.141592653589793 rad + pos: -64.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29571 - - 22361 - - 22362 - - 29905 - - 29893 - - 25284 - - 26012 - - 29588 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29910 + - uid: 38498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,8.5 + rot: 3.141592653589793 rad + pos: -48.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29571 - - 29866 - - 26228 - - 25375 - - 25374 - - 26227 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29913 + - uid: 38499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-11.5 + rot: 3.141592653589793 rad + pos: -46.5,45.5 parent: 1 - - type: DeviceList - devices: - - 29593 - - 22354 - - 22353 - - 22352 - - 29606 - - 22351 - - 22350 - - 22349 - - 22348 - - 29683 - - 22342 - - 22343 - - 22344 - - 29686 - - 22405 - - 22409 - - 29568 - - 20075 - - 29874 - - 29564 - - 22345 - - 22346 - - 22347 - - 24985 - - 23396 - - 24984 - - 23395 - - 24982 - - 23394 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29917 +- proto: AirlockExternalLocked + entities: + - uid: 1074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-19.5 + pos: -12.5,17.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 22354 - - 22353 - - 22352 - - 29916 - - 41582 - - 29594 - - 22366 - - 22367 - - 41581 - - 41580 - - 29920 - - 41583 - - 23397 - - 25014 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29918 + - type: DeviceLinkSink + links: + - 1077 + - 1076 + - type: DeviceLinkSource + linkedPorts: + 1077: + - DoorStatus: DoorBolt + 1076: + - DoorStatus: DoorBolt + - uid: 1075 components: - type: Transform - pos: -121.5,-5.5 + pos: -12.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29916 - - 29800 - - 29799 - - 29580 - - 33443 - - 29581 - - 29796 - - 29582 - - 29795 - - 29575 - - 29794 - - 37241 - - 37240 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29926 + - type: DeviceLinkSink + links: + - 1077 + - 1076 + - type: DeviceLinkSource + linkedPorts: + 1077: + - DoorStatus: DoorBolt + 1076: + - DoorStatus: DoorBolt + - uid: 1076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,11.5 + pos: -9.5,17.5 parent: 1 - - type: DeviceList - devices: - - 18595 - - 22322 - - 29556 - - 22323 - - 29676 - - 30073 - - 30093 - - 26570 - - 25767 - - 26577 - - 25782 - - 26578 - - 25768 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29928 + - type: DeviceLinkSink + links: + - 1075 + - 1074 + - type: DeviceLinkSource + linkedPorts: + 1075: + - DoorStatus: DoorBolt + 1074: + - DoorStatus: DoorBolt + - uid: 1077 components: - type: Transform - pos: -29.5,27.5 + pos: -9.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29553 - - 22321 - - 29634 - - 22320 - - 22319 - - 29778 - - 29843 - - 41493 - - 41555 - - 41554 - - 41553 - - 41552 - - 29556 - - 22316 - - 22317 - - 22318 - - 29675 - - 22322 - - 26786 - - 27639 - - 27700 - - 26792 - - 26793 - - 27699 - - type: AtmosDevice - joinedGrid: 1 - - uid: 29937 + - type: DeviceLinkSink + links: + - 1075 + - 1074 + - type: DeviceLinkSource + linkedPorts: + 1075: + - DoorStatus: DoorBolt + 1074: + - DoorStatus: DoorBolt + - uid: 1078 components: - type: Transform - pos: -79.5,-47.5 + pos: 11.5,17.5 parent: 1 - - type: DeviceList - devices: - - 29848 - - 29811 - - 29920 - - 23065 - - 24501 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30036 + - type: DeviceLinkSink + links: + - 1080 + - 1081 + - type: DeviceLinkSource + linkedPorts: + 1080: + - DoorStatus: DoorBolt + 1081: + - DoorStatus: DoorBolt + - uid: 1079 components: - type: Transform - pos: -69.5,-66.5 + pos: 11.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29816 - - 29618 - - 29815 - - 24378 - - 22955 - - 24395 - - 24374 - - 22922 - - 24373 - - 24375 - - 22941 - - 24376 - - 22942 - - 24377 - - 22943 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30063 + - type: DeviceLinkSink + links: + - 1080 + - 1081 + - type: DeviceLinkSource + linkedPorts: + 1080: + - DoorStatus: DoorBolt + 1081: + - DoorStatus: DoorBolt + - uid: 1080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-16.5 + pos: 8.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 22342 - - 22343 - - 22344 - - 29686 - - 29685 - - 29684 - - 30083 - - 22406 - - 22407 - - 29809 - - 29936 - - 22339 - - 22338 - - 29698 - - 29687 - - 22404 - - 22403 - - 22337 - - 22336 - - 29681 - - 29682 - - 23097 - - 24549 - - 23122 - - 24539 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30065 + - type: DeviceLinkSink + links: + - 1079 + - 1078 + - type: DeviceLinkSource + linkedPorts: + 1079: + - DoorStatus: DoorBolt + 1078: + - DoorStatus: DoorBolt + - uid: 1081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 + pos: 8.5,17.5 parent: 1 - - type: DeviceList - devices: - - 29684 - - 29685 - - 29686 - - 30083 - - 22408 - - 30086 - - 22410 - - 22411 - - 29677 - - 22341 - - 22340 - - 22337 - - 22336 - - 29683 - - 29698 - - 22332 - - 22331 - - 22330 - - 29676 - - 25772 - - 26493 - - 26489 - - 23103 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30068 + - type: DeviceLinkSink + links: + - 1079 + - 1078 + - type: DeviceLinkSource + linkedPorts: + 1079: + - DoorStatus: DoorBolt + 1078: + - DoorStatus: DoorBolt + - uid: 12362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,2.5 + pos: -32.5,-73.5 parent: 1 - - type: DeviceList - devices: - - 29914 - - 30072 - - 30067 - - 29677 - - 29680 - - 29679 - - 26590 - - 25676 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30071 + - type: DeviceLinkSink + links: + - 16148 + - 16170 + - type: DeviceLinkSource + linkedPorts: + 16148: + - DoorStatus: DoorBolt + 16170: + - DoorStatus: DoorBolt + - uid: 12369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,4.5 + pos: -31.5,-73.5 parent: 1 - - type: DeviceList - devices: - - 29678 - - 30067 - - 29915 - - 30083 - - 29684 - - 29685 - - 29686 - - 22410 - - 22411 - - 29681 - - 29682 - - 29676 - - 22326 - - 26591 - - 25689 - - 25688 - - 26594 - - 26589 - - 25677 - - 25686 - - 26597 - - 26596 - - 25678 - - 10306 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30077 + - type: DeviceLinkSink + links: + - 16148 + - 16170 + - type: DeviceLinkSource + linkedPorts: + 16148: + - DoorStatus: DoorBolt + 16170: + - DoorStatus: DoorBolt + - uid: 12384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-31.5 + pos: -57.5,-68.5 parent: 1 - - type: DeviceList - devices: - - 29601 - - 30056 - - 24855 - - 23293 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30079 + - type: DeviceLinkSink + links: + - 16103 + - 12712 + - type: DeviceLinkSource + linkedPorts: + 16103: + - DoorStatus: DoorBolt + 12712: + - DoorStatus: DoorBolt + - uid: 12385 components: - type: Transform - pos: -89.5,-22.5 + pos: -56.5,-68.5 parent: 1 - - type: DeviceList - devices: - - 29601 - - 30055 - - 23296 - - 24842 - - 23294 - - 24846 - - 23295 - - 24847 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30085 + - type: DeviceLinkSink + links: + - 16103 + - 12712 + - type: DeviceLinkSource + linkedPorts: + 16103: + - DoorStatus: DoorBolt + 12712: + - DoorStatus: DoorBolt + - uid: 12712 components: - type: Transform - pos: -69.5,-5.5 + pos: -54.5,-81.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 29874 - - 20075 - - 30084 - - 30083 - - 25654 - - 26392 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30087 + - type: DeviceLinkSink + links: + - 12385 + - 12384 + - type: DeviceLinkSource + linkedPorts: + 12385: + - DoorStatus: DoorBolt + 12384: + - DoorStatus: DoorBolt + - uid: 16103 components: - type: Transform - pos: -60.5,-6.5 + pos: -54.5,-80.5 parent: 1 - - type: DeviceList - devices: - - 29862 - - 22409 - - 30084 - - 29761 - - 29762 - - 29914 - - 22405 - - 22406 - - 22407 - - 22408 - - 29683 - - 29681 - - 30086 - - 29915 - - 29677 - - 26478 - - 25662 - - 26477 - - 25661 - - 26476 - - 25660 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30090 + - type: DeviceLinkSink + links: + - 12385 + - 12384 + - type: DeviceLinkSource + linkedPorts: + 12385: + - DoorStatus: DoorBolt + 12384: + - DoorStatus: DoorBolt + - uid: 16148 components: - type: Transform - pos: -43.5,8.5 + pos: -35.5,-80.5 parent: 1 - - type: DeviceList - devices: - - 29681 - - 29682 - - 22332 - - 22331 - - 22330 - - 29638 - - 22329 - - 22328 - - 22327 - - 29778 - - 29841 - - 22326 - - 29680 - - 29677 - - 29679 - - 30089 - - 30088 - - 30073 - - 29675 - - 29629 - - 25771 - - 26634 - - 25770 - - 26648 - - 26579 - - 25769 - - 30093 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30092 + - type: DeviceLinkSink + links: + - 12362 + - 12369 + - type: DeviceLinkSource + linkedPorts: + 12362: + - DoorStatus: DoorBolt + 12369: + - DoorStatus: DoorBolt + - uid: 16170 components: - type: Transform - pos: -54.5,22.5 + pos: -35.5,-81.5 parent: 1 - - type: DeviceList - devices: - - 18595 - - 22318 - - 22317 - - 22316 - - 29629 - - 22323 - - 29630 - - 29857 - - 29856 - - 29855 - - 29559 - - 22324 - - 29768 - - 29555 - - 30105 - - 11375 - - 22302 - - 22303 - - 27697 - - 26802 - - 26798 - - 26463 - - 27656 - - 26426 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30094 + - type: DeviceLinkSink + links: + - 12362 + - 12369 + - type: DeviceLinkSource + linkedPorts: + 12362: + - DoorStatus: DoorBolt + 12369: + - DoorStatus: DoorBolt + - uid: 29214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-10.5 + pos: -135.5,-31.5 parent: 1 - - type: DeviceList - devices: - - 29916 - - 41579 - - 29594 - - 41578 - - 24930 - - 23029 - - 22275 - - 37121 - - 37123 - - 37110 - - 26280 - - 37122 - - 37124 - - 37111 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30095 + - type: DeviceLinkSink + links: + - 36305 + - 36304 + - type: DeviceLinkSource + linkedPorts: + 36305: + - DoorStatus: DoorBolt + 36304: + - DoorStatus: DoorBolt + - uid: 29216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,31.5 + pos: -135.5,-30.5 parent: 1 - - type: DeviceList - devices: - - 18595 - - 22321 - - 29779 - - 29844 - - 26966 - - 27634 - - 27633 - - 26950 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30096 + - type: DeviceLinkSink + links: + - 36305 + - 36304 + - type: DeviceLinkSource + linkedPorts: + 36305: + - DoorStatus: DoorBolt + 36304: + - DoorStatus: DoorBolt + - uid: 36304 components: - type: Transform - pos: -24.5,23.5 + pos: -138.5,-31.5 parent: 1 - - type: DeviceList - devices: - - 18595 - - 22319 - - 22320 - - 29779 - - 30115 - - 27638 - - 26988 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30099 + - type: DeviceLinkSink + links: + - 29216 + - 29214 + - type: DeviceLinkSource + linkedPorts: + 29216: + - DoorStatus: DoorBolt + 29214: + - DoorStatus: DoorBolt + - uid: 36305 components: - - type: MetaData - name: hallway air alarm - type: Transform - pos: -8.5,7.5 + pos: -138.5,-30.5 parent: 1 - - type: DeviceList - devices: - - 41788 - - 41786 - - 41785 - - 30170 - - 29849 - - 29654 - - 12072 - - 12071 - - 12070 - - 29650 - - 12069 - - 12068 - - 12067 - - 29651 - - 12064 - - 12065 - - 12066 - - 29636 - - 27326 - - 29779 - - 30169 - - 27997 - - 27058 - - 27061 - - 28247 - - 41806 - - 41805 - - 41804 - - 41803 - - 41802 - - 41801 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30100 + - type: DeviceLinkSink + links: + - 29216 + - 29214 + - type: DeviceLinkSource + linkedPorts: + 29216: + - DoorStatus: DoorBolt + 29214: + - DoorStatus: DoorBolt +- proto: AirlockExternalShuttleLocked + entities: + - uid: 11618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 + rot: 3.141592653589793 rad + pos: 3.5,51.5 parent: 1 - - type: DeviceList - devices: - - 41532 - - 41779 - - 41780 - - 41531 - - 41743 - - 41742 - - 29654 - - 29853 - - 37782 - - 37783 - - 18596 - - 29722 - - 27341 - - 41782 - - 27322 - - 29650 - - 12075 - - 12074 - - 12073 - - 29723 - - 27343 - - 27342 - - 29649 - - 12070 - - 12071 - - 12072 - - 28248 - - 27480 - - 28249 - - 27479 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30101 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 + pos: -25.5,10.5 parent: 1 - - type: DeviceList - devices: - - 41782 - - 27328 - - 27327 - - 12060 - - 29664 - - 60 - - 38 - - 29700 - - 22396 - - 22397 - - 30152 - - 29840 - - 29651 - - 27324 - - 27323 - - 29660 - - 27336 - - 27337 - - 27354 - - 28259 - - 28095 - - 27347 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30102 + - uid: 523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 + pos: 22.5,-41.5 parent: 1 - - type: DeviceList - devices: - - 1703 - - 41769 - - 29667 - - 30199 - - 29700 - - 22391 - - 27186 - - 28106 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30103 +- proto: AirlockGlass + entities: + - uid: 1030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,14.5 + pos: 0.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30109 + - uid: 1323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-32.5 + pos: 14.5,-40.5 parent: 1 - - type: DeviceList - devices: - - 1703 - - 30191 - - 30207 - - 29834 - - 22019 - - 16376 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30111 + - uid: 1411 components: - type: Transform - pos: -27.5,-42.5 + pos: -44.5,3.5 parent: 1 - - type: DeviceList - devices: - - 41657 - - 23613 - - 41652 - - 41653 - - 29700 - - 22390 - - 22389 - - 22388 - - 30263 - - 29627 - - 30264 - - 29626 - - 30266 - - 29625 - - 30267 - - 29622 - - 30269 - - 30270 - - 30288 - - 41661 - - 22763 - - 24078 - - 24082 - - 22753 - - 24108 - - 22773 - - 22726 - - 24077 - - 24076 - - 22727 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30112 + - uid: 1412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 + pos: -46.5,-6.5 parent: 1 - - type: DeviceList - devices: - - 29699 - - 22370 - - 22369 - - 22368 - - 29662 - - 22397 - - 22396 - - 29671 - - 22391 - - 29623 - - 22390 - - 22389 - - 22388 - - 30287 - - 41669 - - 41519 - - 30113 - - 41520 - - 41517 - - 22699 - - 23979 - - 23978 - - 22698 - - 38289 - - 38288 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30114 + - uid: 1413 components: - type: Transform - pos: 8.5,-44.5 + pos: -48.5,-6.5 parent: 1 - - type: DeviceList - devices: - - 41685 - - 41679 - - 41680 - - 41529 - - 37477 - - 29714 - - 41678 - - 29710 - - 22374 - - 30207 - - 29833 - - 41522 - - 41675 - - 41521 - - 41671 - - 41670 - - 29836 - - 30324 - - 41520 - - 41518 - - 38170 - - 34628 - - 22423 - - 23501 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30116 + - uid: 1687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,22.5 + pos: -74.5,-7.5 parent: 1 - - type: DeviceList - devices: - - 29779 - - 29845 - - 26949 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30118 + - uid: 2516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-0.5 + pos: 1.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 29639 - - 30140 - - 30141 - - 29676 - - 22327 - - 22328 - - 22329 - - 30136 - - 30137 - - 30138 - - 29637 - - 26757 - - 27783 - - 26758 - - 27784 - - 16351 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30120 + - uid: 2626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,8.5 + pos: 11.5,-48.5 parent: 1 - - type: DeviceList - devices: - - 29633 - - 30146 - - 29778 - - 29842 - - 29632 - - 30135 - - 29638 - - 30136 - - 30137 - - 30138 - - 29636 - - 30134 - - 30143 - - 30149 - - 26755 - - 27774 - - 26754 - - 27826 - - 16351 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30122 + - uid: 2627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-14.5 + pos: 10.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 29641 - - 30143 - - 30139 - - 29638 - - 30140 - - 30141 - - 29698 - - 22412 - - 30142 - - 29640 - - 27824 - - 26722 - - 26723 - - 27823 - - 27822 - - 26724 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30124 + - uid: 2917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-18.5 + pos: 23.5,-60.5 parent: 1 - - type: DeviceList - devices: - - 29639 - - 30142 - - 26721 - - 27806 - - 27807 - - 26720 - - 29839 - - 30152 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30126 + - uid: 2918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,8.5 + pos: 23.5,-59.5 parent: 1 - - type: DeviceList - devices: - - 29637 - - 30135 - - 27765 - - 26678 - - 27764 - - 26677 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30128 + - uid: 3730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 + pos: -61.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29637 - - 30134 - - 29642 - - 30130 - - 30131 - - 30132 - - 27326 - - 29649 - - 27962 - - 27147 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30144 + - uid: 4482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 + pos: -72.5,-16.5 parent: 1 - - type: DeviceList - devices: - - 29637 - - 30149 - - 30139 - - 29639 - - 27825 - - 26753 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30147 + - uid: 4538 components: - type: Transform - pos: -22.5,12.5 + pos: -71.5,-16.5 parent: 1 - - type: DeviceList - devices: - - 29637 - - 30146 - - 26675 - - 27762 - - 27763 - - 26674 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30165 + - uid: 4546 components: - type: Transform - pos: -18.5,4.5 + pos: -63.5,-16.5 parent: 1 - - type: DeviceList - devices: - - 29636 - - 30132 - - 30131 - - 30130 - - 27331 - - 27330 - - 29651 - - 27329 - - 27325 - - 27961 - - 27125 - - 27124 - - 27960 - - 27959 - - 27123 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30168 + - uid: 4553 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 1 + - uid: 5076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 + pos: -87.5,-4.5 parent: 1 - - type: DeviceList - devices: - - 41520 - - 41518 - - 30207 - - 29835 - - 41531 - - 29854 - - 41529 - - 37480 - - 41509 - - 41736 - - 41685 - - 41681 - - 41682 - - 41683 - - 41684 - - 29709 - - 22374 - - 23614 - - 22231 - - 22234 - - 23615 - - 33758 - - 35564 - - 22232 - - 30344 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30171 + - uid: 5544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,38.5 + pos: -72.5,34.5 parent: 1 - - type: DeviceList - devices: - - 29731 - - 11126 - - 15570 - - 33738 - - 12843 - - 12718 - - 41533 - - 41534 - - 33653 - - 33635 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30173 + - uid: 5545 components: - type: Transform - pos: -12.5,39.5 + pos: -74.5,34.5 parent: 1 - - type: DeviceList - devices: - - 41496 - - 41566 - - 41495 - - 41565 - - 41499 - - 41563 - - 37649 - - 37594 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30174 + - uid: 5667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 + pos: -57.5,34.5 parent: 1 - - type: DeviceList - devices: - - 29709 - - 41670 - - 41671 - - 41523 - - 41673 - - 41672 - - 38259 - - 38258 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30184 + - uid: 5668 components: - type: Transform - pos: 6.5,-20.5 + pos: -56.5,34.5 parent: 1 - - type: DeviceList - devices: - - 29662 - - 27328 - - 27327 - - 12060 - - 29661 - - 29660 - - 27339 - - 27338 - - 29654 - - 27322 - - 27340 - - 29719 - - 29720 - - 28287 - - 27366 - - 28277 - - 27364 - - 28276 - - 27365 - - 28260 - - 27355 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30186 + - uid: 5755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 + pos: -54.5,29.5 parent: 1 - - type: DeviceList - devices: - - 27340 - - 28291 - - 27362 - - 27363 - - 28288 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30188 + - uid: 5844 components: - type: Transform - pos: -5.5,-28.5 + pos: -80.5,6.5 parent: 1 - - type: DeviceList - devices: - - 29662 - - 38 - - 60 - - 29671 - - 29669 - - 30199 - - 28107 - - 27182 - - 28108 - - 27183 - - 27180 - - 28158 - - 28096 - - 28109 - - 27179 - - 28110 - - 27178 - - 30205 - - 30200 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30194 + - uid: 6543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-36.5 + pos: -126.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30208 + - uid: 7879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-22.5 + pos: -85.5,10.5 parent: 1 - - type: DeviceList - devices: - - 29683 - - 22404 - - 22403 - - 30210 - - 30211 - - 30212 - - 30213 - - 29688 - - 30214 - - 30215 - - 29690 - - 23145 - - 24175 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30228 + - uid: 8025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-20.5 + pos: -78.5,1.5 parent: 1 - - type: DeviceList - devices: - - 29688 - - 29690 - - 30216 - - 24224 - - 23141 - - 24223 - - 23137 - - 24222 - - 23134 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30230 + - uid: 8026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-29.5 + pos: -77.5,1.5 parent: 1 - - type: DeviceList - devices: - - 29689 - - 30216 - - 29687 - - 30215 - - 30214 - - 30213 - - 30212 - - 30211 - - 30210 - - 22402 - - 22401 - - 29699 - - 30224 - - 30225 - - 30223 - - 30222 - - 30221 - - 29691 - - 29693 - - 30219 - - 30220 - - 29697 - - 30227 - - 30226 - - 30232 - - 23146 - - 24185 - - 24221 - - 23171 - - 23170 - - 24242 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30234 + - uid: 8028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-33.5 + pos: -75.5,-4.5 parent: 1 - - type: DeviceList - devices: - - 29690 - - 29688 - - 30220 - - 30219 - - 30221 - - 30222 - - 30223 - - 30224 - - 30225 - - 29821 - - 30023 - - 24193 - - 23177 - - 23176 - - 24200 - - 23181 - - 24201 - - 23180 - - 24202 - - 23179 - - 24203 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30236 + - uid: 8030 components: + - type: MetaData + name: barber shop - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-35.5 + pos: -84.5,-4.5 parent: 1 - - type: DeviceList - devices: - - 29848 - - 29810 - - 30227 - - 30226 - - 29688 - - 23125 - - 24248 - - 24249 - - 23124 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30247 + - uid: 8156 components: - type: Transform - pos: -48.5,-46.5 + pos: -67.5,-9.5 parent: 1 - - type: DeviceList - devices: - - 29697 - - 30240 - - 29819 - - 30022 - - 24287 - - 23211 - - 23230 - - 24285 - - 24274 - - 23208 - - 24273 - - 23207 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30248 + - uid: 8157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-50.5 + pos: -66.5,-9.5 parent: 1 - - type: DeviceList - devices: - - 29697 - - 30238 - - 29613 - - 29612 - - 30241 - - 30242 - - 30243 - - 23232 - - 24318 - - 24300 - - 23236 - - 24320 - - 23235 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30253 + - uid: 8330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 + pos: -75.5,17.5 parent: 1 - - type: DeviceList - devices: - - 22412 - - 29639 - - 29681 - - 29682 - - 22341 - - 22340 - - 22339 - - 22338 - - 29683 - - 22334 - - 22335 - - 22333 - - 29699 - - 29838 - - 30152 - - 23101 - - 24529 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30255 + - uid: 9394 components: - type: Transform - pos: -34.5,-24.5 + pos: -57.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29688 - - 29690 - - 22402 - - 22401 - - 29698 - - 22334 - - 22335 - - 22333 - - 29822 - - 30023 - - 29626 - - 22400 - - 29700 - - 22370 - - 22369 - - 22368 - - 22399 - - 22398 - - 30257 - - 30258 - - 30259 - - 30260 - - 29627 - - 23980 - - 22700 - - 22656 - - 23981 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30261 + - uid: 9596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 + pos: -35.5,5.5 parent: 1 - - type: DeviceList - devices: - - 29699 - - 22398 - - 22399 - - 30263 - - 30264 - - 30265 - - 29628 - - 29623 - - 29624 - - 24156 - - 22707 - - 24157 - - 30288 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30275 + - uid: 9597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-33.5 + pos: -35.5,4.5 parent: 1 - - type: DeviceList - devices: - - 29699 - - 22400 - - 30266 - - 29624 - - 29628 - - 29623 - - 22734 - - 24083 - - 30288 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30279 + - uid: 9598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-42.5 + pos: -35.5,3.5 parent: 1 - - type: DeviceList - devices: - - 30268 - - 29623 - - 29624 - - 29628 - - 30267 - - 24109 - - 22762 - - 30288 - - 30023 - - 41791 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30281 + - uid: 10511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-49.5 + pos: 0.5,-48.5 parent: 1 - - type: DeviceList - devices: - - 29624 - - 29623 - - 29628 - - 30288 - - 29621 - - 29620 - - 30022 - - 29820 - - 30273 - - 30272 - - 30271 - - 30269 - - 30270 - - 24131 - - 22803 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30284 + - uid: 10512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-54.5 + pos: 1.5,-48.5 parent: 1 - - type: DeviceList - devices: - - 29622 - - 30273 - - 29619 - - 30274 - - 22794 - - 24136 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30285 + - uid: 15368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-65.5 + pos: -56.5,39.5 parent: 1 - - type: DeviceList - devices: - - 29620 - - 30274 - - 22786 - - 24141 - - type: AtmosDevice - joinedGrid: 1 - - uid: 36730 + - uid: 22416 components: - - type: MetaData - name: prisoner cells air alarm - type: Transform - pos: 3.5,7.5 + pos: -75.5,-0.5 parent: 1 - - type: DeviceList - devices: - - 29649 - - 41806 - - 41805 - - 41804 - - 41803 - - 41802 - - 41801 - - 27053 - - 28005 - - 28004 - - 27054 - - 28006 - - 27055 - - 28007 - - 27056 - - 28008 - - 27057 - - 28009 - - 27059 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41548 + - uid: 22417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,37.5 + pos: -75.5,0.5 parent: 1 - - type: DeviceList - devices: - - 41491 - - 41542 - - 41543 - - 41493 - - 41545 - - 41544 - - 41546 - - 41547 - - 37514 - - 37695 - - 37499 - - 37684 - - 37498 - - 37683 - - 37682 - - 37497 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41550 + - uid: 22418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,34.5 + pos: -86.5,-15.5 parent: 1 - - type: DeviceList - devices: - - 41499 - - 17149 - - 17146 - - 17145 - - 41492 - - 41545 - - 41544 - - 41546 - - 41547 - - 18595 - - 41555 - - 41554 - - 41553 - - 41552 - - 37685 - - 37519 - - 37696 - - 37520 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41556 + - uid: 22419 components: - type: Transform - pos: -20.5,38.5 + pos: -86.5,-14.5 parent: 1 - - type: DeviceList - devices: - - 41493 - - 17149 - - 17146 - - 17145 - - 41494 - - 41562 - - 41498 - - 41563 - - 41495 - - 41564 - - 37527 - - 37689 - - 37528 - - 37686 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41560 + - uid: 22420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,41.5 + pos: -86.5,-13.5 parent: 1 - - type: DeviceList - devices: - - 41499 - - 41562 - - 37526 - - 37688 - - 37525 - - 37687 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41570 + - uid: 22425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 + pos: -41.5,-6.5 parent: 1 - - type: DeviceList - devices: - - 41498 - - 41566 - - 41497 - - 41573 - - 37648 - - 37578 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41571 + - uid: 22426 components: - type: Transform - pos: 5.5,39.5 + pos: -40.5,-6.5 parent: 1 - - type: DeviceList - devices: - - 41496 - - 41573 - - 37579 - - 37646 - - 37647 - - 37580 - - 41574 - - 37608 - - 37609 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41575 + - uid: 22427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,28.5 + pos: -39.5,-6.5 parent: 1 - - type: DeviceList - devices: - - 41498 - - 41565 - - 41499 - - 41564 - - 29779 - - 41567 - - 37623 - - 37624 - - 37650 - - 26928 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41585 + - uid: 22428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-23.5 + pos: -42.5,19.5 parent: 1 - - type: DeviceList - devices: - - 29596 - - 41615 - - 41616 - - 29594 - - 19234 - - 19235 - - 41612 - - 41613 - - 41502 - - 41611 - - 41503 - - 41614 - - 24628 - - 36276 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41587 + - uid: 22429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-34.5 + pos: -42.5,20.5 parent: 1 - - type: DeviceList - devices: - - 41501 - - 41611 - - 24666 - - 36285 - - 24700 - - 36286 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41596 + - uid: 22430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-29.5 + pos: -42.5,21.5 parent: 1 - - type: DeviceList - devices: - - 19235 - - 41617 - - 41501 - - 41614 - - 41504 - - 41608 - - 41607 - - 41600 - - 41603 - - 41604 - - 41605 - - 41506 - - 41606 - - 24748 - - 41622 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41599 + - uid: 22434 components: - type: Transform - pos: -110.5,-34.5 + pos: -41.5,-22.5 parent: 1 - - type: DeviceList - devices: - - 41503 - - 41609 - - 41505 - - 41610 - - 6014 - - 16848 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41601 + - uid: 22435 components: - type: Transform - pos: -123.5,-26.5 + pos: -40.5,-22.5 parent: 1 - - type: DeviceList - devices: - - 41503 - - 41605 - - 41604 - - 41603 - - 16849 - - 23025 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41619 + - uid: 22436 components: - type: Transform - pos: -113.5,-18.5 + pos: -39.5,-22.5 parent: 1 - - type: DeviceList - devices: - - 41501 - - 41613 - - 41612 - - 29221 - - 14676 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41623 + - uid: 22437 components: - type: Transform - pos: -98.5,-84.5 + pos: -20.5,-27.5 parent: 1 - - type: DeviceList - devices: - - 41625 - - 41626 - - 37278 - - 36908 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41636 + - uid: 22438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-62.5 + pos: -20.5,-26.5 parent: 1 - - type: DeviceList - devices: - - 41510 - - 41627 - - 41644 - - 41634 - - 41511 - - 41628 - - 41513 - - 41632 - - 41633 - - 37363 - - 34631 - - 37362 - - 34597 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41638 + - uid: 22439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-66.5 + pos: -20.5,-25.5 parent: 1 - - type: DeviceList - devices: - - 41512 - - 41634 - - 34602 - - 34600 - - 34601 - - 34604 - - 34603 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41640 + - uid: 23710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-71.5 + pos: 37.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 41512 - - 41633 - - 41632 - - 41508 - - 41635 - - 34596 - - 34595 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41642 + - uid: 23711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-76.5 + pos: 38.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 41643 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41645 + - uid: 23717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-33.5 + pos: 27.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 41512 - - 41629 - - 29920 - - 41631 - - 41630 - - 34218 - - 34209 - - 23048 - - 34598 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41650 + - uid: 23718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-46.5 + pos: 28.5,-57.5 parent: 1 - - type: DeviceList - devices: - - 41649 - - 41648 - - 29688 - - 30218 - - 30217 - - 29694 - - 30240 - - 29614 - - 30238 - - 29613 - - 30239 - - 23205 - - 24269 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41655 + - uid: 23731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-51.5 + pos: 24.5,-47.5 parent: 1 - - type: DeviceList - devices: - - 30287 - - 41654 - - 29623 - - 23613 - - 41652 - - 41653 - - 37422 - - 37424 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41659 + - uid: 28168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-50.5 + pos: -73.5,-7.5 parent: 1 - - type: DeviceList - devices: - - 29623 - - 41661 - - 30287 - - 41658 - - 37446 - - 37449 - - 22752 - - 37450 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41662 + - uid: 29733 components: - type: Transform - pos: -15.5,-61.5 + pos: -71.5,37.5 parent: 1 - - type: DeviceList - devices: - - 30287 - - 41514 - - 41515 - - 30321 - - 29752 - - 29751 - - 37388 - - 37386 - - 22605 - - 23908 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41665 + - uid: 29734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-54.5 + pos: -71.5,36.5 parent: 1 - - type: DeviceList - devices: - - 29700 - - 30113 - - 41523 - - 16628 - - 41664 - - 38333 - - 38332 - - 38330 - - 38331 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41668 + - uid: 32283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-53.5 + pos: -72.5,-7.5 parent: 1 - - type: DeviceList - devices: - - 29700 - - 41517 - - 29709 - - 41518 - - 38301 - - 38321 - - 38300 - - 38322 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41737 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 3754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-37.5 + pos: -63.5,19.5 parent: 1 - - type: DeviceList - devices: - - 29710 - - 41736 - - 41705 - - 41704 - - 41706 - - 41703 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41741 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 3806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-40.5 + pos: -67.5,18.5 parent: 1 - - type: DeviceList - devices: - - 29710 - - 41681 - - 41682 - - 41683 - - 41684 - - 29709 - - 41680 - - 41679 - - 41687 - - 41734 - - 41722 - - 41688 - - 41690 - - 41702 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41744 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 3586 components: - type: Transform - pos: 28.5,-15.5 + pos: -52.5,-25.5 parent: 1 - - type: DeviceList - devices: - - 29710 - - 29854 - - 41530 - - 37481 - - 18596 - - 41742 - - 41743 - - 27413 - - 35510 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41748 + - uid: 3819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-53.5 + pos: -52.5,-22.5 parent: 1 - - type: DeviceList - devices: - - 29709 - - 41675 - - 41523 - - 41674 - - 38227 - - 38215 - - 38228 - - 38214 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41749 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 3821 components: - type: Transform - pos: 38.5,-52.5 + pos: -55.5,-22.5 parent: 1 - - type: DeviceList - devices: - - 41524 - - 41764 - - 41763 - - 41529 - - 37479 - - 37908 - - 37859 - - 37860 - - 37909 - - 37874 - - 37888 - - 37897 - - 37870 - - 37871 - - 37898 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41751 +- proto: AirlockHydroGlassLocked + entities: + - uid: 621 components: - type: Transform - pos: 44.5,-42.5 + pos: -25.5,-9.5 parent: 1 - - type: DeviceList - devices: - - 41527 - - 41768 - - 41529 - - 37475 - - 37476 - - 37473 - - 37474 - - 37983 - - 37982 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41753 + - uid: 863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-52.5 + pos: -39.5,-13.5 parent: 1 - - type: DeviceList - devices: - - 41526 - - 41767 - - 41528 - - 41768 - - 38010 - - 38016 - - 38011 - - 38017 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41756 + - uid: 950 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 1 +- proto: AirlockHydroponicsLocked + entities: + - uid: 635 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 1 +- proto: AirlockJanitorLocked + entities: + - uid: 1783 components: - type: Transform - pos: 45.5,-57.5 + pos: -5.5,-44.5 parent: 1 - - type: DeviceList - devices: - - 41524 - - 41766 - - 41765 - - 41527 - - 41767 - - 38012 - - 38015 - - 38014 - - 38013 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41757 + - uid: 6660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-62.5 + pos: -26.5,25.5 parent: 1 - - type: DeviceList - devices: - - 41523 - - 41761 - - 41762 - - 29714 - - 41676 - - 41677 - - 41525 - - 41763 - - 41764 - - 41526 - - 41766 - - 41765 - - 38148 - - 38180 - - 37953 - - 37952 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41760 + - uid: 6669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-62.5 + pos: -20.5,32.5 parent: 1 - - type: DeviceList - devices: - - 41521 - - 41672 - - 41673 - - 41519 - - 16628 - - 41664 - - 41522 - - 41674 - - 41524 - - 41761 - - 41762 - - 38229 - - 38179 - - 38257 - - 38260 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41770 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 + pos: -25.5,-3.5 parent: 1 - - type: DeviceList - devices: - - 29669 - - 41769 - - 29718 - - 30191 - - 27198 - - 27193 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41772 + - uid: 9116 components: - type: Transform - pos: 22.5,-8.5 + pos: -31.5,2.5 parent: 1 - - type: DeviceList - devices: - - 41532 - - 41779 - - 41780 - - 41531 - - 41743 - - 41742 - - 29654 - - 29853 - - 37782 - - 37783 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41775 +- proto: AirlockKitchenLocked + entities: + - uid: 318 components: - type: Transform - pos: 40.5,-8.5 + pos: -28.5,10.5 parent: 1 - - type: DeviceList - devices: - - 41776 - - 41778 - - 41777 - - 41530 - - 41781 - - 18596 - - 41779 - - 41780 - - 27423 - - 26922 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41784 + - uid: 537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 + pos: -29.5,12.5 parent: 1 - - type: DeviceList - devices: - - 29725 - - 41787 - - 29723 - - 29852 - - 29649 - - 41786 - - 41785 - - 27025 - - 28377 - - 28378 - - 27013 - - type: AtmosDevice - joinedGrid: 1 - - uid: 42164 +- proto: AirlockLawyerGlassLocked + entities: + - uid: 5842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,1.5 + pos: -90.5,-7.5 parent: 1 - - type: DeviceList - devices: - - 29585 - - 29900 - - 29916 - - 29797 - - 25299 - - 26008 - - 25300 - - 26009 - - 26007 - - 13961 - - type: AtmosDevice - joinedGrid: 1 -- proto: AirAlarmAssembly + - uid: 5843 + components: + - type: Transform + pos: -92.5,-5.5 + parent: 1 +- proto: AirlockLibraryLocked entities: - - uid: 30612 + - uid: 2623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-9.5 + pos: 16.5,-54.5 parent: 1 -- proto: AirCanister +- proto: AirlockMailGlassLocked entities: - - uid: 9896 + - uid: 2041 components: - type: Transform - pos: -31.542486,33.480453 + pos: -42.5,36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10028 + - uid: 5649 components: - type: Transform - pos: 52.5,-12.5 + pos: -50.5,38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10227 + - uid: 7224 components: - type: Transform - pos: 48.5,-12.5 + pos: -42.5,37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 10350 +- proto: AirlockMaint + entities: + - uid: 1008 components: - type: Transform - pos: 54.5,-54.5 + pos: -36.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 20281 + - uid: 1017 components: - type: Transform - pos: -105.5,-45.5 + pos: -28.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 22305 + - uid: 1535 components: - type: Transform - pos: -103.5,-42.5 + pos: -52.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 28175 + - uid: 1804 components: - type: Transform - pos: 1.5,-32.5 + pos: 12.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 28760 + - uid: 2158 components: - type: Transform - pos: 3.5,-27.5 + pos: -2.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 28761 + - uid: 3379 components: - type: Transform - pos: 2.5,-27.5 + pos: -15.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30625 + - uid: 3460 components: - type: Transform - pos: -124.5,21.5 + pos: -33.5,-65.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30763 + - uid: 3680 components: - type: Transform - pos: -58.5,-30.5 + pos: -42.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30931 + - uid: 3711 components: - type: Transform - pos: -36.5,-73.5 + pos: -57.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30932 + - uid: 4089 components: - type: Transform - pos: -52.5,-73.5 + pos: -36.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 31008 + - uid: 4483 components: - type: Transform - pos: 15.5,-30.5 + pos: -58.5,-16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 31044 + - uid: 4973 components: - type: Transform - pos: -48.5,12.5 + pos: -76.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 36653 + - uid: 5052 components: - type: Transform - pos: -96.5,-82.5 + pos: -90.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 36720 + - uid: 5920 components: - type: Transform - pos: -15.5,-62.5 + pos: 37.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 36975 + - uid: 6043 components: - type: Transform - pos: -110.5,-47.5 + pos: -55.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Airlock - entities: - - uid: 1453 + - uid: 7525 components: - type: Transform - pos: -53.5,6.5 + pos: -75.5,21.5 parent: 1 - - uid: 1873 + - uid: 7929 components: - type: Transform - pos: 26.5,-36.5 + pos: -71.5,9.5 parent: 1 - - uid: 5750 + - uid: 7931 components: - type: Transform - pos: -52.5,28.5 + pos: -51.5,-8.5 parent: 1 - - uid: 5769 + - uid: 8164 components: - type: Transform - pos: -48.5,28.5 + pos: -63.5,-8.5 parent: 1 - - uid: 7273 + - uid: 9281 components: - type: Transform - pos: -44.5,28.5 + pos: -59.5,-68.5 parent: 1 - - uid: 9586 + - uid: 9318 components: - type: Transform - pos: -31.5,-0.5 + pos: -37.5,-21.5 parent: 1 - - uid: 9587 + - uid: 10361 components: - type: Transform - pos: -31.5,-2.5 + pos: 31.5,-32.5 parent: 1 - - uid: 10249 + - uid: 10413 components: - type: Transform - pos: 35.5,-53.5 + pos: 32.5,-49.5 parent: 1 - - type: DeviceLinkSink - links: - - 41031 - - uid: 10251 + - uid: 10414 components: - type: Transform - pos: 35.5,-55.5 + pos: 29.5,-45.5 parent: 1 - - type: DeviceLinkSink - links: - - 41032 - - uid: 23704 + - uid: 11445 components: - type: Transform - pos: 40.5,-53.5 + pos: 16.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 41030 - - uid: 23705 + - uid: 13071 components: - type: Transform - pos: 40.5,-55.5 + pos: -65.5,-65.5 parent: 1 - - type: DeviceLinkSink - links: - - 41029 - - uid: 23736 + - uid: 13239 components: - type: Transform - pos: 29.5,-52.5 + pos: -57.5,6.5 parent: 1 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 1298 + - uid: 16852 components: - type: Transform - pos: 17.5,-19.5 + pos: -96.5,-19.5 parent: 1 - - uid: 1328 + - uid: 28906 components: - type: Transform - pos: 17.5,-18.5 + pos: -97.5,-10.5 parent: 1 - - uid: 4203 + - uid: 30962 components: - type: Transform - pos: -59.5,-45.5 + pos: -21.5,-71.5 parent: 1 - - uid: 7155 + - uid: 33887 components: - type: Transform - pos: 12.5,-19.5 + pos: -97.5,-86.5 parent: 1 -- proto: AirlockAssembly - entities: - - uid: 4369 + - uid: 36021 components: - type: Transform - pos: -70.5,-57.5 + pos: -117.5,-53.5 parent: 1 - - uid: 30592 + - uid: 36796 components: - type: Transform - pos: -121.5,-8.5 + pos: 34.5,-33.5 parent: 1 -- proto: AirlockAtmosphericsGlassLocked +- proto: AirlockMaintAtmoLocked entities: - - uid: 4951 + - uid: 20360 components: - type: Transform - pos: -97.5,-38.5 + pos: -93.5,-35.5 parent: 1 - - uid: 18893 + - uid: 31997 components: - type: Transform - pos: -96.5,-38.5 + pos: -112.5,-72.5 parent: 1 - - uid: 19258 + - uid: 34006 components: - type: Transform - pos: -96.5,-31.5 + pos: -93.5,-59.5 parent: 1 - - uid: 33934 +- proto: AirlockMaintBarLocked + entities: + - uid: 1564 components: - type: Transform - pos: -110.5,-66.5 + pos: -58.5,3.5 parent: 1 - - uid: 33935 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 8770 components: - type: Transform - pos: -109.5,-66.5 + pos: -115.5,-3.5 parent: 1 - - uid: 33944 + - uid: 8775 components: - type: Transform - pos: -96.5,-64.5 + pos: -113.5,-5.5 parent: 1 - - uid: 34075 +- proto: AirlockMaintCargoLocked + entities: + - uid: 5841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-52.5 + pos: -17.5,28.5 parent: 1 - - type: DeviceLinkSink - links: - - 34080 - - type: DeviceLinkSource - linkedPorts: - 34080: - - DoorStatus: Close - - uid: 34080 +- proto: AirlockMaintChapelLocked + entities: + - uid: 39877 components: - type: Transform - pos: -97.5,-49.5 + pos: -28.5,-53.5 parent: 1 - - type: DeviceLinkSink - links: - - 34075 - - type: DeviceLinkSource - linkedPorts: - 34075: - - DoorStatus: Close -- proto: AirlockAtmosphericsLocked +- proto: AirlockMaintChemLocked entities: - - uid: 3378 + - uid: 4421 components: - - type: MetaData - name: emergency air storage - type: Transform - pos: -16.5,-67.5 + pos: -61.5,-27.5 parent: 1 - - uid: 33980 +- proto: AirlockMaintChiefEngineerLocked + entities: + - uid: 9818 components: - type: Transform - pos: -95.5,-70.5 + pos: -108.5,-39.5 parent: 1 - - uid: 36704 +- proto: AirlockMaintCommandLocked + entities: + - uid: 5225 components: - - type: MetaData - name: emergency air storage - type: Transform - pos: -16.5,-61.5 + pos: -98.5,8.5 parent: 1 -- proto: AirlockBarLocked - entities: - - uid: 1565 + - uid: 8231 components: - type: Transform - pos: -54.5,1.5 + pos: -98.5,11.5 parent: 1 -- proto: AirlockBoxerLocked +- proto: AirlockMaintDetectiveLocked entities: - - uid: 3602 + - uid: 4106 components: - type: Transform - pos: 19.5,-30.5 + pos: -59.5,-39.5 parent: 1 -- proto: AirlockCaptainGlassLocked +- proto: AirlockMaintEngiLocked entities: - - uid: 306 + - uid: 3514 components: - type: Transform - pos: -102.5,8.5 + pos: -122.5,-24.5 parent: 1 - - uid: 5194 + - uid: 3515 components: - type: Transform - pos: -111.5,0.5 + pos: -98.5,-26.5 parent: 1 -- proto: AirlockCargoGlassLocked + - uid: 17109 + components: + - type: Transform + pos: -111.5,-9.5 + parent: 1 +- proto: AirlockMaintGlass entities: - - uid: 2114 + - uid: 6508 components: - type: Transform - pos: -39.5,27.5 + pos: -124.5,12.5 parent: 1 - - uid: 2131 + - uid: 6514 components: - type: Transform - pos: -40.5,27.5 + pos: -124.5,-1.5 parent: 1 - - uid: 5432 + - uid: 6555 components: - type: Transform - pos: -36.5,35.5 + pos: -124.5,3.5 parent: 1 - - uid: 5433 + - uid: 12311 components: - type: Transform - pos: -36.5,36.5 + pos: -121.5,22.5 parent: 1 - - uid: 6133 + - uid: 12312 components: - type: Transform - pos: -17.5,34.5 + pos: -103.5,22.5 parent: 1 -- proto: AirlockCargoLocked - entities: - - uid: 6117 + - uid: 13095 components: - type: Transform - pos: -10.5,31.5 + pos: -85.5,-43.5 parent: 1 - - uid: 6132 + - uid: 13097 components: - type: Transform - pos: -10.5,29.5 + pos: -80.5,-49.5 parent: 1 - - uid: 7247 + - uid: 30060 components: - type: Transform - pos: -39.5,41.5 + pos: -83.5,-39.5 parent: 1 - - uid: 7251 + - uid: 30758 components: - type: Transform - pos: -42.5,41.5 + pos: -76.5,-39.5 parent: 1 - - uid: 11530 + - uid: 34575 components: - type: Transform - pos: -40.5,39.5 + pos: -117.5,-8.5 parent: 1 -- proto: AirlockChapelGlassLocked - entities: - - uid: 3329 + - uid: 34576 components: - type: Transform - pos: -27.5,-52.5 + pos: -116.5,-8.5 parent: 1 - - uid: 6778 + - uid: 36018 components: - type: Transform - pos: -28.5,-48.5 + pos: -116.5,-51.5 parent: 1 -- proto: AirlockChemistryGlassLocked +- proto: AirlockMaintGlassLocked entities: - - uid: 4625 + - uid: 41877 components: - type: Transform - pos: -67.5,-26.5 + pos: 23.5,13.5 parent: 1 -- proto: AirlockChemistryLocked + - uid: 41878 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 +- proto: AirlockMaintHOPLocked entities: - - uid: 4658 + - uid: 33512 components: - type: Transform - pos: -68.5,-32.5 + pos: -65.5,18.5 parent: 1 -- proto: AirlockChiefEngineerGlassLocked +- proto: AirlockMaintHydroLocked entities: - - uid: 3412 + - uid: 832 components: - type: Transform - pos: -111.5,-34.5 + pos: -32.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 17977 - - 17976 - - type: DeviceLinkSource - linkedPorts: - 17976: - - DoorStatus: DoorBolt - 17977: - - DoorStatus: DoorBolt - - uid: 13303 +- proto: AirlockMaintIntLocked + entities: + - uid: 36483 components: - type: Transform - pos: -105.5,-28.5 + pos: -118.5,-61.5 parent: 1 - - uid: 17964 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 4970 components: - type: Transform - pos: -119.5,-36.5 + pos: -88.5,-37.5 parent: 1 - - uid: 17965 + - uid: 6650 components: - type: Transform - pos: -120.5,-36.5 + pos: -19.5,25.5 parent: 1 - - uid: 17966 + - uid: 13893 components: - type: Transform - pos: -123.5,-39.5 + pos: -3.5,-42.5 parent: 1 - - uid: 17967 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 3488 components: - type: Transform - pos: -123.5,-38.5 + pos: -26.5,12.5 parent: 1 - - uid: 17968 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 24000 components: - type: Transform - pos: -126.5,-39.5 + pos: -96.5,-6.5 parent: 1 - - uid: 17969 +- proto: AirlockMaintLocked + entities: + - uid: 6648 components: - type: Transform - pos: -126.5,-38.5 + pos: -15.5,25.5 parent: 1 - - uid: 17970 + - uid: 12033 components: - type: Transform - pos: -113.5,-31.5 + pos: 25.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 17977 - - 17976 - - type: DeviceLinkSource - linkedPorts: - 17977: - - DoorStatus: DoorBolt - 17976: - - DoorStatus: DoorBolt - - uid: 17971 + - uid: 15769 components: - type: Transform - pos: -112.5,-31.5 + pos: -65.5,-74.5 parent: 1 - - type: DeviceLinkSink - links: - - 17977 - - 17976 - - type: DeviceLinkSource - linkedPorts: - 17977: - - DoorStatus: DoorBolt - 17976: - - DoorStatus: DoorBolt -- proto: AirlockChiefEngineerLocked +- proto: AirlockMaintMantisLocked entities: - - uid: 9755 + - uid: 41421 components: - type: Transform - pos: -105.5,-34.5 + pos: -35.5,-35.5 parent: 1 -- proto: AirlockChiefMedicalOfficerGlassLocked +- proto: AirlockMaintMedLocked entities: - - uid: 4848 + - uid: 1339 components: - type: Transform - pos: -83.5,-22.5 + pos: 9.5,-34.5 parent: 1 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 8732 + - uid: 4403 components: - type: Transform - pos: -86.5,-20.5 + pos: -68.5,-36.5 parent: 1 -- proto: AirlockClownLocked + - uid: 18950 + components: + - type: Transform + pos: -83.5,-36.5 + parent: 1 +- proto: AirlockMaintResearchDirectorLocked entities: - - uid: 5846 + - uid: 36731 components: - type: Transform - pos: -71.5,3.5 + pos: -39.5,-40.5 parent: 1 -- proto: AirlockCommandGlassLocked +- proto: AirlockMaintRnDLocked entities: - - uid: 3788 + - uid: 3358 components: - type: Transform - pos: -69.5,24.5 + pos: -18.5,-50.5 parent: 1 - - uid: 5001 + - uid: 6885 components: - type: Transform - pos: -92.5,2.5 + pos: -41.5,-51.5 parent: 1 - - uid: 5002 +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 9261 components: - type: Transform - pos: -92.5,3.5 + pos: -65.5,-68.5 parent: 1 - - uid: 5045 +- proto: AirlockMaintSecLocked + entities: + - uid: 1112 components: - type: Transform - pos: -96.5,6.5 + pos: 12.5,10.5 parent: 1 - - uid: 5046 + - uid: 1844 components: - type: Transform - pos: -96.5,-0.5 + pos: 28.5,-13.5 parent: 1 - - uid: 5221 + - uid: 3144 components: - type: Transform - pos: -104.5,1.5 + pos: -13.5,13.5 parent: 1 - - uid: 5222 + - uid: 3992 components: - type: Transform - pos: -102.5,3.5 + pos: -58.5,-37.5 parent: 1 - - uid: 5692 + - uid: 4452 components: - type: Transform - pos: -67.5,29.5 + pos: -46.5,-56.5 parent: 1 - - uid: 5693 + - uid: 7129 components: - type: Transform - pos: -71.5,31.5 + pos: 18.5,-13.5 parent: 1 - - uid: 9886 + - uid: 10352 components: - type: Transform - pos: -12.5,-57.5 + pos: 31.5,-23.5 parent: 1 - - uid: 10421 + - uid: 15419 components: - type: Transform - pos: -12.5,-49.5 + pos: -38.5,-31.5 parent: 1 - - uid: 10498 + - uid: 21130 components: - type: Transform - pos: -2.5,-60.5 + pos: -18.5,-22.5 parent: 1 - - uid: 10499 + - uid: 41897 components: - type: Transform - pos: -2.5,-59.5 + pos: 22.5,5.5 parent: 1 -- proto: AirlockCommandLocked +- proto: AirlockMaintTheatreLocked entities: - - uid: 5219 + - uid: 6023 components: + - type: MetaData + name: honk closet - type: Transform - pos: -105.5,5.5 + pos: -64.5,4.5 parent: 1 - - uid: 5830 +- proto: AirlockMantisLocked + entities: + - uid: 4107 components: - type: Transform - pos: -91.5,18.5 + pos: -32.5,-31.5 parent: 1 - - uid: 7969 + - uid: 4109 components: - type: Transform - pos: -97.5,18.5 + pos: -32.5,-37.5 parent: 1 -- proto: AirlockCorpsmanGlassLocked +- proto: AirlockMedicalGlass entities: - - uid: 1682 + - uid: 1845 components: - type: Transform - pos: -2.5,-30.5 + pos: -13.5,-39.5 parent: 1 -- proto: AirlockDetectiveGlassLocked +- proto: AirlockMedicalGlassLocked entities: - - uid: 4245 + - uid: 1657 components: - type: Transform - pos: -54.5,-41.5 + pos: -6.5,-31.5 parent: 1 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 1847 + - uid: 1658 components: - type: Transform - pos: -103.5,-25.5 + pos: -6.5,-30.5 parent: 1 - - uid: 2077 + - uid: 1749 components: - type: Transform - pos: 37.5,-40.5 + pos: -9.5,-39.5 parent: 1 - type: DeviceLinkSink links: - - 2294 - - type: DeviceLinkSource - linkedPorts: - 2294: - - DoorStatus: DoorBolt - - uid: 3185 + - 33548 + - uid: 4575 components: - type: Transform - pos: -103.5,-26.5 + pos: -75.5,-22.5 parent: 1 - - uid: 7062 + - uid: 4579 components: - type: Transform - pos: -107.5,-26.5 + pos: -72.5,-21.5 parent: 1 - - uid: 8909 + - type: DeviceLinkSink + links: + - 33549 + - uid: 4637 components: - type: Transform - pos: -107.5,-12.5 + pos: -78.5,-26.5 parent: 1 - - uid: 8917 + - uid: 4722 components: - type: Transform - pos: -98.5,-17.5 + pos: -70.5,-24.5 parent: 1 - - uid: 9206 + - uid: 4762 components: - type: Transform - pos: -105.5,-19.5 + pos: -76.5,-35.5 parent: 1 - - uid: 9250 + - uid: 4803 components: - type: Transform - pos: -109.5,-23.5 + pos: -78.5,-22.5 parent: 1 - - uid: 9532 + - uid: 4849 components: - type: Transform - pos: -101.5,-19.5 + pos: -83.5,-26.5 parent: 1 - - uid: 13190 + - uid: 9157 components: - type: Transform - pos: -107.5,-20.5 + pos: -4.5,-33.5 parent: 1 - - uid: 13191 + - uid: 27187 components: - type: Transform - pos: -107.5,-21.5 + pos: 0.5,-34.5 parent: 1 - - uid: 15601 +- proto: AirlockMedicalLocked + entities: + - uid: 1683 components: - type: Transform - pos: -98.5,-16.5 + pos: 5.5,-30.5 parent: 1 - - uid: 16195 + - uid: 3601 components: - type: Transform - pos: -107.5,-11.5 + pos: -74.5,-19.5 parent: 1 - - uid: 16207 + - type: DeviceLinkSink + links: + - 33550 + - uid: 4624 components: - type: Transform - pos: -105.5,-14.5 + pos: -79.5,-33.5 parent: 1 - - uid: 34167 + - uid: 4891 components: - type: Transform - pos: -138.5,-37.5 + pos: -86.5,-30.5 parent: 1 - - uid: 34168 + - uid: 9160 components: - type: Transform - pos: -143.5,-37.5 + pos: 5.5,-38.5 parent: 1 - - uid: 35602 + - uid: 23347 components: - type: Transform - pos: -107.5,-85.5 + pos: -71.5,-32.5 parent: 1 -- proto: AirlockEngineeringLocked + - uid: 27189 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 1 + - uid: 29806 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 1 +- proto: AirlockMedicalScienceGlassLocked entities: - - uid: 1040 + - uid: 13669 components: - type: Transform - pos: -20.5,14.5 + pos: -75.5,-68.5 parent: 1 - - uid: 1066 +- proto: AirlockMimeLocked + entities: + - uid: 5845 components: - type: Transform - pos: 16.5,15.5 + pos: -71.5,6.5 parent: 1 - - uid: 1399 +- proto: AirlockMiningGlassLocked + entities: + - uid: 3045 components: - type: Transform - pos: -51.5,11.5 + pos: 53.5,38.5 parent: 1 - - uid: 1713 + - uid: 3046 components: - type: Transform - pos: 9.5,-38.5 + pos: 52.5,38.5 parent: 1 - - uid: 3331 +- proto: AirlockMusicianLocked + entities: + - uid: 5847 components: - type: Transform - pos: -102.5,-28.5 + pos: -71.5,-4.5 parent: 1 - - uid: 3445 +- proto: AirlockPsychologistLocked + entities: + - uid: 1632 components: - type: Transform - pos: -25.5,-71.5 + pos: -10.5,-30.5 parent: 1 - - uid: 4409 + - uid: 1633 components: - type: Transform - pos: -65.5,-36.5 + pos: -11.5,-33.5 parent: 1 - - uid: 5373 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 6674 components: - type: Transform - pos: -106.5,-5.5 + pos: -17.5,38.5 parent: 1 - - uid: 6004 +- proto: AirlockQuartermasterLocked + entities: + - uid: 7236 components: - type: Transform - pos: -91.5,-35.5 + pos: -15.5,40.5 parent: 1 - - uid: 6047 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 6843 components: - type: Transform - pos: -19.5,20.5 + pos: -32.5,-41.5 parent: 1 - - uid: 6081 + - uid: 6853 components: - type: Transform - pos: -26.5,22.5 + pos: -34.5,-39.5 parent: 1 - - uid: 9863 + - uid: 6854 components: - type: Transform - pos: -63.5,-39.5 + pos: -36.5,-45.5 parent: 1 - - uid: 15073 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 3360 components: - type: Transform - pos: -98.5,23.5 + pos: 0.5,36.5 parent: 1 - - uid: 15483 + - uid: 5956 components: - type: Transform - pos: -111.5,-14.5 + pos: -13.5,34.5 parent: 1 - - uid: 16649 + - uid: 6138 components: - type: Transform - pos: 13.5,-27.5 + pos: -15.5,36.5 parent: 1 - - uid: 16695 + - uid: 11389 components: - type: Transform - pos: -28.5,-71.5 + pos: -9.5,36.5 parent: 1 - - uid: 36652 +- proto: AirlockScienceGlassLocked + entities: + - uid: 6792 components: - type: Transform - pos: -97.5,-78.5 + pos: -34.5,-53.5 parent: 1 - - uid: 40822 + - uid: 6803 components: - type: Transform - pos: 31.5,-11.5 + pos: -25.5,-38.5 parent: 1 - - uid: 41899 + - uid: 6804 components: - type: Transform - pos: 23.5,8.5 + pos: -24.5,-38.5 parent: 1 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 10670 + - uid: 6892 components: - type: Transform - pos: 56.5,-55.5 + pos: -25.5,-42.5 parent: 1 - - type: DeviceLinkSink - links: - - 10673 - - 10672 - - type: DeviceLinkSource - linkedPorts: - 10672: - - DoorStatus: DoorBolt - 10673: - - DoorStatus: DoorBolt - - uid: 10671 + - uid: 6893 components: - type: Transform - pos: 57.5,-55.5 + pos: -24.5,-42.5 parent: 1 - - type: DeviceLinkSink - links: - - 10673 - - 10672 - - type: DeviceLinkSource - linkedPorts: - 10673: - - DoorStatus: DoorBolt - 10672: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlass + - uid: 6959 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 1 + - uid: 6982 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 1 + - uid: 6987 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 1 + - uid: 6990 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 1 + - uid: 7008 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 1 + - uid: 7059 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 1 + - uid: 12219 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 1 +- proto: AirlockSecurity entities: - - uid: 539 + - uid: 4034 components: - type: Transform - pos: -74.5,39.5 + pos: -45.5,-46.5 parent: 1 - - uid: 540 +- proto: AirlockSecurityGlass + entities: + - uid: 3534 components: - type: Transform - pos: -72.5,39.5 + pos: -48.5,-19.5 parent: 1 - - uid: 672 + - uid: 3535 components: - type: Transform - pos: -134.5,-24.5 + pos: -47.5,-19.5 parent: 1 - - uid: 1101 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 253 components: - type: Transform - pos: -134.5,-25.5 + pos: -10.5,7.5 parent: 1 - - uid: 2303 + - uid: 455 components: - type: Transform - pos: -3.5,-62.5 + pos: -15.5,-6.5 parent: 1 - - uid: 5429 + - uid: 456 components: - type: Transform - pos: -64.5,39.5 + pos: -15.5,-5.5 parent: 1 - - uid: 5451 + - uid: 457 components: - type: Transform - pos: -66.5,39.5 + pos: -15.5,3.5 parent: 1 - - uid: 9890 + - uid: 458 components: - type: Transform - pos: -5.5,-62.5 + pos: -15.5,2.5 parent: 1 - - uid: 10226 + - uid: 685 components: - type: Transform - pos: 53.5,-14.5 + pos: -1.5,-8.5 parent: 1 - - type: DeviceLinkSink - links: - - 10268 - - 10263 - - type: DeviceLinkSource - linkedPorts: - 10268: - - DoorStatus: DoorBolt - 10263: - - DoorStatus: DoorBolt - - uid: 10228 + - uid: 686 components: - type: Transform - pos: 47.5,-14.5 + pos: -0.5,-8.5 parent: 1 - - type: DeviceLinkSink - links: - - 10268 - - 10263 - - type: DeviceLinkSource - linkedPorts: - 10268: - - DoorStatus: DoorBolt - 10263: - - DoorStatus: DoorBolt - - uid: 10229 + - uid: 687 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 688 components: - type: Transform - pos: 47.5,-13.5 + pos: -2.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 10268 - - 10263 - - type: DeviceLinkSource - linkedPorts: - 10268: - - DoorStatus: DoorBolt - 10263: - - DoorStatus: DoorBolt - - uid: 10230 + - uid: 690 components: - type: Transform - pos: 53.5,-13.5 + pos: 1.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 10268 - - 10263 - - type: DeviceLinkSource - linkedPorts: - 10268: - - DoorStatus: DoorBolt - 10263: - - DoorStatus: DoorBolt - - uid: 10263 + - uid: 692 components: - type: Transform - pos: 51.5,-11.5 + pos: -1.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 10229 - - 10228 - - 10230 - - 10226 - - type: DeviceLinkSource - linkedPorts: - 10229: - - DoorStatus: DoorBolt - 10228: - - DoorStatus: DoorBolt - 10230: - - DoorStatus: DoorBolt - 10226: - - DoorStatus: DoorBolt - - uid: 10268 + - uid: 693 components: - type: Transform - pos: 49.5,-11.5 + pos: -0.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 10229 - - 10228 - - 10230 - - 10226 - - type: DeviceLinkSource - linkedPorts: - 10229: - - DoorStatus: DoorBolt - 10228: - - DoorStatus: DoorBolt - 10230: - - DoorStatus: DoorBolt - 10226: - - DoorStatus: DoorBolt - - uid: 23891 + - uid: 694 components: - type: Transform - pos: 48.5,-62.5 + pos: 0.5,-16.5 parent: 1 - - uid: 23892 + - uid: 696 components: - type: Transform - pos: 46.5,-62.5 + pos: -2.5,-11.5 parent: 1 - - uid: 23893 + - uid: 700 components: - type: Transform - pos: 40.5,-62.5 + pos: 1.5,-11.5 parent: 1 - - uid: 23894 + - uid: 703 components: - type: Transform - pos: 38.5,-62.5 + pos: -7.5,-19.5 parent: 1 - - uid: 23909 + - uid: 704 components: - type: Transform - pos: 26.5,-62.5 + pos: -3.5,-19.5 parent: 1 - - uid: 23910 + - uid: 717 components: - type: Transform - pos: 24.5,-62.5 + pos: -7.5,-18.5 parent: 1 - - uid: 23911 + - uid: 718 components: - type: Transform - pos: 18.5,-62.5 + pos: 6.5,-19.5 parent: 1 - - uid: 23912 + - uid: 719 components: - type: Transform - pos: 16.5,-62.5 + pos: 6.5,-18.5 parent: 1 - - uid: 23913 + - uid: 727 components: - type: Transform - pos: 4.5,-62.5 + pos: -3.5,-18.5 parent: 1 - - uid: 23914 + - uid: 728 components: - type: Transform - pos: 2.5,-62.5 + pos: 2.5,-19.5 parent: 1 - - uid: 36456 + - uid: 729 components: - type: Transform - pos: -123.5,23.5 + pos: 2.5,-18.5 parent: 1 - - uid: 36642 + - uid: 848 components: - type: Transform - pos: -97.5,-83.5 + pos: -13.5,-11.5 parent: 1 - - uid: 36643 + - uid: 1059 components: - type: Transform - pos: -92.5,-81.5 + pos: 14.5,-6.5 parent: 1 - - uid: 38513 + - uid: 1155 components: - type: Transform - pos: -74.5,42.5 + pos: -6.5,7.5 parent: 1 - - uid: 38514 + - uid: 1156 components: - type: Transform - pos: -72.5,42.5 + pos: -2.5,7.5 parent: 1 - - uid: 38515 + - uid: 1157 components: - type: Transform - pos: -66.5,42.5 + pos: 1.5,7.5 parent: 1 - - uid: 38516 + - uid: 1158 components: - type: Transform - pos: -64.5,42.5 + pos: 5.5,7.5 parent: 1 -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 30734 + - uid: 1159 components: - type: Transform - pos: -106.5,-75.5 + pos: 9.5,7.5 parent: 1 -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 2197 + - uid: 1161 components: - type: Transform - pos: 56.5,-41.5 + pos: 17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 2198 - - 10676 - - type: DeviceLinkSource - linkedPorts: - 2198: - - DoorStatus: DoorBolt - 10676: - - DoorStatus: DoorBolt - - uid: 2198 + - uid: 1198 components: - type: Transform - pos: 54.5,-40.5 + pos: 14.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 2197 - - type: DeviceLinkSource - linkedPorts: - 2197: - - DoorStatus: DoorBolt - - uid: 2294 + - uid: 1576 components: - type: Transform - pos: 44.5,-40.5 + pos: 8.5,-24.5 parent: 1 - type: DeviceLinkSink links: - - 2077 - - type: DeviceLinkSource - linkedPorts: - 2077: - - DoorStatus: DoorBolt - - uid: 10672 + - 30185 + - uid: 1577 components: - type: Transform - pos: 56.5,-52.5 + pos: 10.5,-24.5 parent: 1 - type: DeviceLinkSink links: - - 10670 - - 10671 - - 10675 - - 10674 - - type: DeviceLinkSource - linkedPorts: - 10675: - - DoorStatus: DoorBolt - 10674: - - DoorStatus: DoorBolt - 10671: - - DoorStatus: DoorBolt - 10670: - - DoorStatus: DoorBolt - - uid: 10673 + - 33644 + - uid: 1607 components: - type: Transform - pos: 57.5,-52.5 + pos: -9.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 10670 - - 10671 - - 10675 - - 10674 - - type: DeviceLinkSource - linkedPorts: - 10675: - - DoorStatus: DoorBolt - 10674: - - DoorStatus: DoorBolt - 10671: - - DoorStatus: DoorBolt - 10670: - - DoorStatus: DoorBolt - - uid: 10674 + - uid: 1627 components: - type: Transform - pos: 62.5,-55.5 + pos: -8.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 10673 - - 10672 - - type: DeviceLinkSource - linkedPorts: - 10673: - - DoorStatus: DoorBolt - 10672: - - DoorStatus: DoorBolt - - uid: 10675 + - uid: 1846 components: - type: Transform - pos: 62.5,-54.5 + pos: 44.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 10673 - - 10672 - - type: DeviceLinkSource - linkedPorts: - 10673: - - DoorStatus: DoorBolt - 10672: - - DoorStatus: DoorBolt - - uid: 10676 + - uid: 2010 components: - type: Transform - pos: 62.5,-40.5 + pos: 54.5,-11.5 parent: 1 - type: DeviceLinkSink links: - - 2197 + - 10081 - type: DeviceLinkSource linkedPorts: - 2197: + 10081: - DoorStatus: DoorBolt - - uid: 17976 + - uid: 2329 components: - type: Transform - pos: -115.5,-33.5 + pos: 44.5,-59.5 parent: 1 - - type: DeviceLinkSink - links: - - 3412 - - 17970 - - 17971 - - type: DeviceLinkSource - linkedPorts: - 17970: - - DoorStatus: DoorBolt - 17971: - - DoorStatus: DoorBolt - 3412: - - DoorStatus: DoorBolt - - uid: 17977 + - uid: 3146 components: - type: Transform - pos: -115.5,-32.5 + pos: -13.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 3412 - - 17970 - - 17971 - - type: DeviceLinkSource - linkedPorts: - 17970: - - DoorStatus: DoorBolt - 17971: - - DoorStatus: DoorBolt - 3412: - - DoorStatus: DoorBolt - - uid: 34118 + - uid: 3547 components: - type: Transform - pos: -149.5,-42.5 + pos: -44.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 34169 - - 34172 - - type: DeviceLinkSource - linkedPorts: - 34169: - - DoorStatus: DoorBolt - 34172: - - DoorStatus: DoorBolt - - uid: 34119 + - uid: 3908 components: - type: Transform - pos: -149.5,-43.5 + pos: -49.5,-46.5 parent: 1 - - type: DeviceLinkSink - links: - - 34169 - - 34172 - - type: DeviceLinkSource - linkedPorts: - 34169: - - DoorStatus: DoorBolt - 34172: - - DoorStatus: DoorBolt - - uid: 34130 + - uid: 3922 components: - type: Transform - pos: -148.5,-31.5 + pos: -50.5,-37.5 parent: 1 - type: DeviceLinkSink links: - - 34176 - - 34174 - - type: DeviceLinkSource - linkedPorts: - 34176: - - DoorStatus: DoorBolt - 34174: - - DoorStatus: DoorBolt - - uid: 34137 + - 16025 + - uid: 3923 components: - type: Transform - pos: -147.5,-31.5 + pos: -47.5,-37.5 parent: 1 - type: DeviceLinkSink links: - - 34176 - - 34174 - - type: DeviceLinkSource - linkedPorts: - 34176: - - DoorStatus: DoorBolt - 34174: - - DoorStatus: DoorBolt - - uid: 34151 + - 33641 + - uid: 3924 components: - type: Transform - pos: -146.5,-43.5 + pos: -44.5,-37.5 parent: 1 - type: DeviceLinkSink links: - - 34169 - - 34172 - - type: DeviceLinkSource - linkedPorts: - 34172: - - DoorStatus: DoorBolt - 34169: - - DoorStatus: DoorBolt - - uid: 34152 + - 33642 + - uid: 3930 components: - type: Transform - pos: -146.5,-42.5 + pos: -45.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 34169 - - 34172 - - type: DeviceLinkSource - linkedPorts: - 34172: - - DoorStatus: DoorBolt - 34169: - - DoorStatus: DoorBolt - - uid: 34169 + - uid: 3931 components: - type: Transform - pos: -148.5,-40.5 + pos: -50.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 34118 - - 34119 - - 34152 - - 34151 - - type: DeviceLinkSource - linkedPorts: - 34118: - - DoorStatus: DoorBolt - 34119: - - DoorStatus: DoorBolt - 34152: - - DoorStatus: DoorBolt - 34151: - - DoorStatus: DoorBolt - - uid: 34172 + - uid: 4033 components: - type: Transform - pos: -147.5,-40.5 + pos: -51.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 34118 - - 34119 - - 34152 - - 34151 - - type: DeviceLinkSource - linkedPorts: - 34118: - - DoorStatus: DoorBolt - 34119: - - DoorStatus: DoorBolt - 34152: - - DoorStatus: DoorBolt - 34151: - - DoorStatus: DoorBolt - - uid: 34174 + - uid: 4058 components: - type: Transform - pos: -147.5,-34.5 + pos: -53.5,-47.5 parent: 1 - - type: DeviceLinkSink - links: - - 34130 - - 34137 - - type: DeviceLinkSource - linkedPorts: - 34130: - - DoorStatus: DoorBolt - 34137: - - DoorStatus: DoorBolt - - uid: 34176 + - uid: 4221 components: - type: Transform - pos: -148.5,-34.5 + pos: -55.5,-45.5 parent: 1 - - type: DeviceLinkSink - links: - - 34130 - - 34137 - - type: DeviceLinkSource - linkedPorts: - 34130: - - DoorStatus: DoorBolt - 34137: - - DoorStatus: DoorBolt - - uid: 35630 + - uid: 4469 components: - type: Transform - pos: -112.5,-87.5 + pos: -49.5,-52.5 parent: 1 - - type: DeviceLinkSink - links: - - 35633 - - 35632 - - type: DeviceLinkSource - linkedPorts: - 35633: - - DoorStatus: DoorBolt - 35632: - - DoorStatus: DoorBolt - - uid: 35631 + - uid: 5675 components: - type: Transform - pos: -112.5,-86.5 + pos: -75.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 35633 - - 35632 - - type: DeviceLinkSource - linkedPorts: - 35633: - - DoorStatus: DoorBolt - 35632: - - DoorStatus: DoorBolt - - uid: 35632 + - uid: 7483 components: - type: Transform - pos: -116.5,-87.5 + pos: -42.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 35631 - - 35630 - - type: DeviceLinkSource - linkedPorts: - 35631: - - DoorStatus: DoorBolt - 35630: - - DoorStatus: DoorBolt - - uid: 35633 + - uid: 9382 components: - type: Transform - pos: -116.5,-86.5 + pos: 56.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 35631 - - 35630 - - type: DeviceLinkSource - linkedPorts: - 35631: - - DoorStatus: DoorBolt - 35630: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 2208 + - uid: 9421 components: + - type: MetaData + name: 'visitation ' - type: Transform - pos: 36.5,29.5 + pos: -12.5,-16.5 parent: 1 - - uid: 8912 + - uid: 9423 components: - type: Transform - pos: 26.5,9.5 + pos: -10.5,-16.5 parent: 1 - - uid: 9873 + - uid: 9925 components: - type: Transform - pos: 38.5,1.5 + pos: 46.5,-51.5 parent: 1 - - uid: 10107 + - uid: 10072 components: - type: Transform - pos: 42.5,-5.5 + pos: 28.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 32777 - - type: DeviceLinkSource - linkedPorts: - 32777: - - DoorStatus: DoorBolt - - uid: 24935 + - uid: 10073 components: - type: Transform - pos: 26.5,5.5 + pos: 28.5,-10.5 parent: 1 - - uid: 32777 + - uid: 10081 components: - type: Transform - pos: 42.5,-8.5 + pos: 52.5,-9.5 parent: 1 - type: DeviceLinkSink links: - - 10107 + - 2010 - type: DeviceLinkSource linkedPorts: - 10107: + 2010: - DoorStatus: DoorBolt - - uid: 38981 + - uid: 10372 components: - type: Transform - pos: 42.5,38.5 + pos: 48.5,-54.5 parent: 1 -- proto: AirlockExternalGlassSalvageLocked - entities: - - uid: 5488 + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,44.5 + pos: 46.5,-57.5 parent: 1 - - type: DeviceLinkSink - links: - - 11568 - - type: DeviceLinkSource - linkedPorts: - 11568: - - DoorStatus: DoorBolt - - uid: 5526 + - uid: 10490 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,39.5 + pos: 49.5,-60.5 parent: 1 - - uid: 5550 + - uid: 10491 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,39.5 + pos: 49.5,-59.5 parent: 1 - - uid: 5655 + - uid: 13010 components: - type: Transform - pos: 2.5,46.5 + pos: 16.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11583 - - 11582 - - type: DeviceLinkSource - linkedPorts: - 11583: - - DoorStatus: DoorBolt - 11582: - - DoorStatus: DoorBolt - - uid: 6139 + - uid: 13011 components: - type: Transform - pos: 2.5,29.5 + pos: 17.5,7.5 parent: 1 - - uid: 11353 + - uid: 13062 components: - type: Transform - pos: 2.5,45.5 + pos: 10.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 11583 - - 11582 - - type: DeviceLinkSource - linkedPorts: - 11583: - - DoorStatus: DoorBolt - 11582: - - DoorStatus: DoorBolt - - uid: 11463 + - uid: 13065 components: - type: Transform - pos: 2.5,34.5 + pos: -9.5,-24.5 parent: 1 - - uid: 11568 + - uid: 13066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,39.5 + pos: -8.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 5488 - - type: DeviceLinkSource - linkedPorts: - 5488: - - DoorStatus: DoorBolt - - uid: 11582 + - uid: 13772 components: - type: Transform - pos: 3.5,44.5 + pos: 27.5,-24.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 5655 - - 11353 - - 11597 - - 13167 - - type: DeviceLinkSource - linkedPorts: - 5655: - - DoorStatus: DoorBolt - 11353: - - DoorStatus: DoorBolt - 13167: - - DoorStatus: DoorBolt - 11597: - - DoorStatus: DoorBolt - - uid: 11583 + - uid: 37780 components: - type: Transform - pos: 4.5,44.5 + pos: 26.5,-15.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 5655 - - 11353 - - 11597 - - 13167 - - type: DeviceLinkSource - linkedPorts: - 5655: - - DoorStatus: DoorBolt - 11353: - - DoorStatus: DoorBolt - 13167: - - DoorStatus: DoorBolt - 11597: - - DoorStatus: DoorBolt - - uid: 11597 + - uid: 37781 components: - type: Transform - pos: 4.5,39.5 + pos: 27.5,-15.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 11582 - - 11583 - - type: DeviceLinkSource - linkedPorts: - 11583: - - DoorStatus: DoorBolt - 11582: - - DoorStatus: DoorBolt - - uid: 13167 + - uid: 40853 components: - type: Transform - pos: 3.5,39.5 + pos: 47.5,-10.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 11582 - - 11583 - - type: DeviceLinkSource - linkedPorts: - 11583: - - DoorStatus: DoorBolt - 11582: - - DoorStatus: DoorBolt - - uid: 23523 + - uid: 40854 components: - type: Transform - pos: 5.5,31.5 + pos: 47.5,-9.5 parent: 1 - - uid: 23524 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 3587 components: - type: Transform - pos: 8.5,31.5 + pos: -48.5,-25.5 parent: 1 - - uid: 42054 + - uid: 3588 components: - type: Transform - pos: 0.5,29.5 + pos: -47.5,-25.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 42070 - - type: DeviceLinkSource - linkedPorts: - 42070: - - DoorStatus: DoorBolt - - uid: 42070 + - uid: 3926 components: - type: Transform - pos: 1.5,31.5 + pos: -51.5,-35.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 42054 - - type: DeviceLinkSource - linkedPorts: - 42054: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 7401 + - uid: 3927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,38.5 + pos: -51.5,-36.5 parent: 1 - - uid: 7405 + - uid: 4060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,45.5 + pos: -43.5,-29.5 parent: 1 - - uid: 7408 + - uid: 4062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,38.5 + pos: -44.5,-29.5 parent: 1 - - uid: 19937 + - uid: 9470 components: + - type: MetaData + name: 'visitation ' - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,45.5 + pos: -12.5,-21.5 parent: 1 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 23879 + - uid: 16435 components: - type: Transform - pos: -5.5,-65.5 + pos: -14.5,-22.5 parent: 1 - - uid: 23880 + - uid: 16436 components: - type: Transform - pos: -3.5,-65.5 + pos: -14.5,-23.5 parent: 1 -- proto: AirlockExternalGlassShuttleEscape + - uid: 16437 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 1 + - uid: 16438 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 1 +- proto: AirlockSecurityLawyerLocked entities: - - uid: 18556 + - uid: 3911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -137.5,-24.5 + pos: -54.5,-33.5 parent: 1 - - uid: 19247 +- proto: AirlockSecurityLocked + entities: + - uid: 350 components: - type: Transform - pos: -41.5,-78.5 + pos: -15.5,5.5 parent: 1 - - uid: 23061 + - uid: 352 components: - type: Transform - pos: -49.5,-78.5 + pos: -21.5,5.5 parent: 1 - - uid: 33859 + - uid: 931 components: + - type: MetaData + name: garden tools - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-86.5 + pos: -15.5,-16.5 parent: 1 - - uid: 33860 + - uid: 1113 components: - type: Transform - pos: -93.5,-89.5 + pos: 19.5,5.5 parent: 1 - - uid: 34787 + - uid: 1123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 12.5,7.5 parent: 1 - - uid: 36454 + - uid: 1601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,27.5 + pos: 12.5,-12.5 parent: 1 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 2369 + - uid: 1606 components: + - type: MetaData + name: rubber room - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,9.5 + pos: -10.5,-26.5 parent: 1 - - uid: 5444 + - uid: 1775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,42.5 + pos: 14.5,-9.5 parent: 1 - - uid: 5445 + - uid: 3201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,42.5 + pos: 44.5,-50.5 parent: 1 - - uid: 5888 + - uid: 3479 components: - type: Transform - pos: -45.5,-78.5 + pos: -24.5,0.5 parent: 1 - - uid: 23881 + - uid: 3536 components: - type: Transform - pos: 2.5,-65.5 + pos: -45.5,-24.5 parent: 1 - - uid: 23882 + - uid: 3537 components: - type: Transform - pos: 4.5,-65.5 + pos: -45.5,-23.5 parent: 1 - - uid: 23883 + - uid: 3554 components: - type: Transform - pos: 16.5,-65.5 + pos: -42.5,-24.5 parent: 1 - - uid: 23884 + - uid: 3555 components: - type: Transform - pos: 18.5,-65.5 + pos: -42.5,-23.5 parent: 1 - - uid: 23885 + - uid: 3598 components: - type: Transform - pos: 24.5,-65.5 + pos: -42.5,-31.5 parent: 1 - - uid: 23886 + - uid: 3985 components: - type: Transform - pos: 26.5,-65.5 + pos: -54.5,-37.5 parent: 1 - - uid: 23887 + - uid: 9383 components: - type: Transform - pos: 38.5,-65.5 + pos: 56.5,10.5 parent: 1 - - uid: 23888 + - uid: 9384 components: - type: Transform - pos: 40.5,-65.5 + pos: 57.5,10.5 parent: 1 - - uid: 23889 + - uid: 9983 components: - type: Transform - pos: 46.5,-65.5 + pos: 37.5,-44.5 parent: 1 - - uid: 23890 + - uid: 9988 components: - type: Transform - pos: 48.5,-65.5 + pos: 37.5,-43.5 parent: 1 - - uid: 34212 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-33.5 + pos: 44.5,-49.5 parent: 1 - - uid: 34213 + - uid: 12155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,-32.5 + pos: -58.5,-58.5 parent: 1 - - uid: 38494 + - uid: 42166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,45.5 + pos: -13.5,10.5 parent: 1 - - uid: 38495 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 18445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,45.5 + pos: -117.5,-0.5 parent: 1 - - uid: 38496 +- proto: AirlockServiceGlassLocked + entities: + - uid: 2937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,45.5 + pos: 18.5,-43.5 parent: 1 - - uid: 38497 + - uid: 2963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,45.5 + pos: 20.5,-38.5 parent: 1 - - uid: 38498 + - uid: 3670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,45.5 + pos: -54.5,18.5 parent: 1 - - uid: 38499 + - uid: 3672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,45.5 + pos: -53.5,18.5 parent: 1 -- proto: AirlockExternalLocked + - uid: 3685 + components: + - type: Transform + pos: -56.5,17.5 + parent: 1 +- proto: AirlockServiceLocked entities: - - uid: 1074 + - uid: 1548 components: - type: Transform - pos: -12.5,17.5 + pos: -61.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 1077 - - 1076 - - type: DeviceLinkSource - linkedPorts: - 1077: - - DoorStatus: DoorBolt - 1076: - - DoorStatus: DoorBolt - - uid: 1075 + - uid: 4494 components: - type: Transform - pos: -12.5,18.5 + pos: -62.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1077 - - 1076 - - type: DeviceLinkSource - linkedPorts: - 1077: - - DoorStatus: DoorBolt - 1076: - - DoorStatus: DoorBolt - - uid: 1076 + - uid: 4495 components: - type: Transform - pos: -9.5,17.5 + pos: -54.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1075 - - 1074 - - type: DeviceLinkSource - linkedPorts: - 1075: - - DoorStatus: DoorBolt - 1074: - - DoorStatus: DoorBolt - - uid: 1077 + - uid: 4508 components: - type: Transform - pos: -9.5,18.5 + pos: -58.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1075 - - 1074 - - type: DeviceLinkSource - linkedPorts: - 1075: - - DoorStatus: DoorBolt - 1074: - - DoorStatus: DoorBolt - - uid: 1078 + - uid: 4519 components: - type: Transform - pos: 11.5,17.5 + pos: -51.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1080 - - 1081 - - type: DeviceLinkSource - linkedPorts: - 1080: - - DoorStatus: DoorBolt - 1081: - - DoorStatus: DoorBolt - - uid: 1079 + - uid: 11074 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 1 + - uid: 12748 + components: + - type: MetaData + name: 'trinket & souvenirs shop ' + - type: Transform + pos: -83.5,32.5 + parent: 1 +- proto: AirlockTheatreLocked + entities: + - uid: 1515 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 1 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 4850 + components: + - type: Transform + pos: -85.5,-24.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 1703 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14572 + - 30109 + - 1585 + - 30102 + - uid: 4668 + components: + - type: Transform + pos: -79.5,-36.5 + parent: 1 + - uid: 11375 components: - type: Transform - pos: 11.5,18.5 + pos: -63.5,37.5 parent: 1 - - type: DeviceLinkSink - links: - - 1080 - - 1081 - - type: DeviceLinkSource - linkedPorts: - 1080: - - DoorStatus: DoorBolt - 1081: - - DoorStatus: DoorBolt - - uid: 1080 + - type: DeviceNetwork + deviceLists: + - 29884 + - 3209 + - 96 + - 29883 + - 13960 + - 30092 + - uid: 16634 components: - type: Transform - pos: 8.5,18.5 + pos: -24.5,-62.5 parent: 1 - - type: DeviceLinkSink - links: - - 1079 - - 1078 - - type: DeviceLinkSource - linkedPorts: - 1079: - - DoorStatus: DoorBolt - 1078: - - DoorStatus: DoorBolt - - uid: 1081 + - type: DeviceNetwork + deviceLists: + - 18597 + - uid: 18595 components: - type: Transform - pos: 8.5,17.5 + pos: -34.5,23.5 parent: 1 - - type: DeviceLinkSink - links: - - 1079 - - 1078 - - type: DeviceLinkSource - linkedPorts: - 1079: - - DoorStatus: DoorBolt - 1078: - - DoorStatus: DoorBolt - - uid: 12362 + - type: DeviceNetwork + deviceLists: + - 41551 + - 41550 + - 13997 + - 30096 + - 13988 + - 30095 + - 13960 + - 30092 + - 8313 + - 29926 + - uid: 18596 components: - type: Transform - pos: -32.5,-73.5 + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 16148 - - 16170 - - type: DeviceLinkSource - linkedPorts: - 16148: - - DoorStatus: DoorBolt - 16170: - - DoorStatus: DoorBolt - - uid: 12369 + - type: DeviceNetwork + deviceLists: + - 41745 + - 41744 + - 41774 + - 41775 + - 14068 + - 30100 + - uid: 19235 components: - type: Transform - pos: -31.5,-73.5 + pos: -108.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 16148 - - 16170 - - type: DeviceLinkSource - linkedPorts: - 16148: - - DoorStatus: DoorBolt - 16170: - - DoorStatus: DoorBolt - - uid: 12384 + - type: DeviceNetwork + deviceLists: + - 41586 + - 41585 + - 41597 + - 41596 + - uid: 29526 components: - type: Transform - pos: -57.5,-68.5 + pos: -143.5,-8.5 parent: 1 - - type: DeviceLinkSink - links: - - 16103 - - 12712 - - type: DeviceLinkSource - linkedPorts: - 16103: - - DoorStatus: DoorBolt - 12712: - - DoorStatus: DoorBolt - - uid: 12385 + - uid: 29553 components: - type: Transform - pos: -56.5,-68.5 + pos: -23.5,29.5 parent: 1 - - type: DeviceLinkSink - links: - - 16103 - - 12712 - - type: DeviceLinkSource - linkedPorts: - 16103: - - DoorStatus: DoorBolt - 12712: - - DoorStatus: DoorBolt - - uid: 12712 + - type: DeviceNetwork + deviceLists: + - 12232 + - 29928 + - uid: 29555 components: - type: Transform - pos: -54.5,-81.5 + pos: -48.5,30.5 parent: 1 - - type: DeviceLinkSink - links: - - 12385 - - 12384 - - type: DeviceLinkSource - linkedPorts: - 12385: - - DoorStatus: DoorBolt - 12384: - - DoorStatus: DoorBolt - - uid: 16103 + - type: DeviceNetwork + deviceLists: + - 13960 + - 30092 + - uid: 29556 components: - type: Transform - pos: -54.5,-80.5 + pos: -56.5,21.5 parent: 1 - - type: DeviceLinkSink - links: - - 12385 - - 12384 - - type: DeviceLinkSource - linkedPorts: - 12385: - - DoorStatus: DoorBolt - 12384: - - DoorStatus: DoorBolt - - uid: 16148 + - type: DeviceNetwork + deviceLists: + - 4090 + - 29902 + - 12232 + - 29928 + - 29929 + - 13956 + - 8313 + - 29926 + - uid: 29557 components: - type: Transform - pos: -35.5,-80.5 + pos: -68.5,31.5 parent: 1 - - type: DeviceLinkSink - links: - - 12362 - - 12369 - - type: DeviceLinkSource - linkedPorts: - 12362: - - DoorStatus: DoorBolt - 12369: - - DoorStatus: DoorBolt - - uid: 16170 + - type: DeviceNetwork + deviceLists: + - 29884 + - 3209 + - uid: 29558 components: - type: Transform - pos: -35.5,-81.5 + pos: -67.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 12362 - - 12369 - - type: DeviceLinkSource - linkedPorts: - 12362: - - DoorStatus: DoorBolt - 12369: - - DoorStatus: DoorBolt - - uid: 29214 + - uid: 29559 components: - type: Transform - pos: -135.5,-31.5 + pos: -66.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 36305 - - 36304 - - type: DeviceLinkSource - linkedPorts: - 36305: - - DoorStatus: DoorBolt - 36304: - - DoorStatus: DoorBolt - - uid: 29216 + - type: DeviceNetwork + deviceLists: + - 13960 + - 30092 + - uid: 29560 components: - type: Transform - pos: -135.5,-30.5 + pos: -68.5,16.5 parent: 1 - - type: DeviceLinkSink - links: - - 36305 - - 36304 - - type: DeviceLinkSource - linkedPorts: - 36305: - - DoorStatus: DoorBolt - 36304: - - DoorStatus: DoorBolt - - uid: 36304 + - uid: 29561 components: - type: Transform - pos: -138.5,-31.5 + pos: -73.5,31.5 parent: 1 - - type: DeviceLinkSink - links: - - 29216 - - 29214 - - type: DeviceLinkSource - linkedPorts: - 29216: - - DoorStatus: DoorBolt - 29214: - - DoorStatus: DoorBolt - - uid: 36305 + - uid: 29562 components: - type: Transform - pos: -138.5,-30.5 + pos: -78.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 29216 - - 29214 - - type: DeviceLinkSource - linkedPorts: - 29216: - - DoorStatus: DoorBolt - 29214: - - DoorStatus: DoorBolt -- proto: AirlockExternalShuttleLocked - entities: - - uid: 11618 + - uid: 29563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,51.5 + pos: -72.5,20.5 parent: 1 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 332 + - uid: 29564 components: - type: Transform - pos: -25.5,10.5 + pos: -72.5,7.5 parent: 1 - - uid: 523 + - type: DeviceNetwork + deviceLists: + - 6118 + - 29913 + - uid: 29565 components: - type: Transform - pos: 22.5,-41.5 + pos: -68.5,6.5 parent: 1 -- proto: AirlockGlass - entities: - - uid: 1030 + - uid: 29566 components: - type: Transform - pos: 0.5,-57.5 + pos: -67.5,3.5 parent: 1 - - uid: 1323 + - uid: 29567 components: - type: Transform - pos: 14.5,-40.5 + pos: -67.5,-2.5 parent: 1 - - uid: 1411 + - uid: 29568 components: - type: Transform - pos: -44.5,3.5 + pos: -66.5,-7.5 parent: 1 - - uid: 1412 + - type: DeviceNetwork + deviceLists: + - 6118 + - 29913 + - uid: 29569 components: - type: Transform - pos: -46.5,-6.5 + pos: -77.5,-4.5 parent: 1 - - uid: 1413 + - uid: 29570 components: - type: Transform - pos: -48.5,-6.5 + pos: -80.5,-5.5 parent: 1 - - uid: 1687 + - uid: 29571 components: - type: Transform - pos: -74.5,-7.5 + pos: -82.5,2.5 parent: 1 - - uid: 2516 + - type: DeviceNetwork + deviceLists: + - 5124 + - 29903 + - uid: 29572 components: - type: Transform - pos: 1.5,-57.5 + pos: -77.5,8.5 parent: 1 - - uid: 2626 + - uid: 29573 components: - type: Transform - pos: 11.5,-48.5 + pos: -77.5,13.5 parent: 1 - - uid: 2627 + - uid: 29574 components: - type: Transform - pos: 10.5,-57.5 + pos: -85.5,16.5 parent: 1 - - uid: 2917 + - uid: 29575 components: - type: Transform - pos: 23.5,-60.5 + pos: -112.5,21.5 parent: 1 - - uid: 2918 + - type: DeviceNetwork + deviceLists: + - 8102 + - 29918 + - uid: 29576 components: - type: Transform - pos: 23.5,-59.5 + pos: -131.5,21.5 parent: 1 - - uid: 3730 + - uid: 29577 components: - type: Transform - pos: -61.5,18.5 + pos: -142.5,22.5 parent: 1 - - uid: 4482 + - uid: 29578 components: - type: Transform - pos: -72.5,-16.5 + pos: -132.5,-9.5 parent: 1 - - uid: 4538 + - uid: 29580 components: - type: Transform - pos: -71.5,-16.5 + pos: -126.5,-1.5 parent: 1 - - uid: 4546 + - type: DeviceNetwork + deviceLists: + - 8102 + - 29918 + - uid: 29581 components: - type: Transform - pos: -63.5,-16.5 + pos: -126.5,4.5 parent: 1 - - uid: 4553 + - type: DeviceNetwork + deviceLists: + - 8102 + - 29918 + - uid: 29582 components: - type: Transform - pos: -64.5,-16.5 + pos: -126.5,11.5 parent: 1 - - uid: 5076 + - type: DeviceNetwork + deviceLists: + - 8102 + - 29918 + - uid: 29585 components: - type: Transform - pos: -87.5,-4.5 + pos: -106.5,1.5 parent: 1 - - uid: 5544 + - type: DeviceNetwork + deviceLists: + - 42164 + - 5456 + - uid: 29586 components: - type: Transform - pos: -72.5,34.5 + pos: -111.5,13.5 parent: 1 - - uid: 5545 + - uid: 29588 components: - type: Transform - pos: -74.5,34.5 + pos: -101.5,6.5 parent: 1 - - uid: 5667 + - uid: 29589 components: - type: Transform - pos: -57.5,34.5 + pos: -103.5,0.5 parent: 1 - - uid: 5668 + - uid: 29590 components: - type: Transform - pos: -56.5,34.5 + pos: -93.5,1.5 parent: 1 - - uid: 5755 + - uid: 29591 components: - type: Transform - pos: -54.5,29.5 + pos: -90.5,-8.5 parent: 1 - - uid: 5844 + - uid: 29592 components: - type: Transform - pos: -80.5,6.5 + pos: -93.5,-6.5 parent: 1 - - uid: 6543 + - uid: 29593 components: - type: Transform - pos: -126.5,9.5 + pos: -93.5,-13.5 parent: 1 - - uid: 7879 + - type: DeviceNetwork + deviceLists: + - 41584 + - 7586 + - 6118 + - 29913 + - uid: 29594 components: - type: Transform - pos: -85.5,10.5 + pos: -101.5,-12.5 parent: 1 - - uid: 8025 + - type: DeviceNetwork + deviceLists: + - 41577 + - 30094 + - 30172 + - 16633 + - 41586 + - 41585 + - 6689 + - 29917 + - uid: 29595 components: - type: Transform - pos: -78.5,1.5 + pos: -112.5,-12.5 parent: 1 - - uid: 8026 + - uid: 29596 components: - type: Transform - pos: -77.5,1.5 + pos: -101.5,-23.5 parent: 1 - - uid: 8028 + - type: DeviceNetwork + deviceLists: + - 41584 + - 7586 + - 41586 + - 41585 + - uid: 29599 components: - type: Transform - pos: -75.5,-4.5 + pos: -88.5,-25.5 parent: 1 - - uid: 8030 + - type: DeviceNetwork + deviceLists: + - 520 + - 14556 + - uid: 29600 components: - - type: MetaData - name: barber shop - type: Transform - pos: -84.5,-4.5 + pos: -84.5,-30.5 parent: 1 - - uid: 8156 + - type: DeviceNetwork + deviceLists: + - 520 + - 14556 + - uid: 29601 components: - type: Transform - pos: -67.5,-9.5 + pos: -80.5,-24.5 parent: 1 - - uid: 8157 + - type: DeviceNetwork + deviceLists: + - 12147 + - 1744 + - 4740 + - 4412 + - 14555 + - 13266 + - 14568 + - 4486 + - uid: 29602 components: - type: Transform - pos: -66.5,-9.5 + pos: -84.5,-19.5 parent: 1 - - uid: 8330 + - type: DeviceNetwork + deviceLists: + - 520 + - 14556 + - uid: 29605 components: - type: Transform - pos: -75.5,17.5 + pos: -78.5,-19.5 parent: 1 - - uid: 9394 + - uid: 29606 components: - type: Transform - pos: -57.5,39.5 + pos: -65.5,-18.5 parent: 1 - - uid: 9596 + - type: DeviceNetwork + deviceLists: + - 6118 + - 29913 + - 520 + - 14556 + - 4740 + - 4412 + - uid: 29607 components: - type: Transform - pos: -35.5,5.5 + pos: -63.5,-27.5 parent: 1 - - uid: 9597 + - type: DeviceNetwork + deviceLists: + - 14555 + - 13266 + - uid: 29608 components: - type: Transform - pos: -35.5,4.5 + pos: -68.5,-24.5 parent: 1 - - uid: 9598 + - type: DeviceNetwork + deviceLists: + - 12147 + - 1744 + - 520 + - 14556 + - uid: 29610 components: - type: Transform - pos: -35.5,3.5 + pos: -73.5,-34.5 parent: 1 - - uid: 10511 + - type: DeviceNetwork + deviceLists: + - 4740 + - 4412 + - 520 + - 14556 + - uid: 29612 components: - type: Transform - pos: 0.5,-48.5 + pos: -66.5,-47.5 parent: 1 - - uid: 10512 + - uid: 29613 components: - type: Transform - pos: 1.5,-48.5 + pos: -61.5,-47.5 parent: 1 - - uid: 15368 + - type: DeviceNetwork + deviceLists: + - 41651 + - 41650 + - uid: 29614 components: - type: Transform - pos: -56.5,39.5 + pos: -57.5,-54.5 parent: 1 - - uid: 22416 + - type: DeviceNetwork + deviceLists: + - 41651 + - 41650 + - uid: 29615 components: - type: Transform - pos: -75.5,-0.5 + pos: -58.5,-60.5 parent: 1 - - uid: 22417 + - uid: 29616 components: - type: Transform - pos: -75.5,0.5 + pos: -52.5,-59.5 parent: 1 - - uid: 22418 + - uid: 29618 components: - type: Transform - pos: -86.5,-15.5 + pos: -62.5,-64.5 parent: 1 - - uid: 22419 + - uid: 29619 components: - type: Transform - pos: -86.5,-14.5 + pos: -43.5,-69.5 parent: 1 - - uid: 22420 + - uid: 29620 components: - type: Transform - pos: -86.5,-13.5 + pos: -39.5,-56.5 parent: 1 - - uid: 22425 + - uid: 29621 components: - type: Transform - pos: -41.5,-6.5 + pos: -35.5,-54.5 parent: 1 - - uid: 22426 + - uid: 29622 components: - type: Transform - pos: -40.5,-6.5 + pos: -32.5,-50.5 parent: 1 - - uid: 22427 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 29623 components: - type: Transform - pos: -39.5,-6.5 + pos: -27.5,-44.5 parent: 1 - - uid: 22428 + - type: DeviceNetwork + deviceLists: + - 41656 + - 41655 + - 41660 + - 41659 + - 16627 + - 30112 + - uid: 29624 components: - type: Transform - pos: -42.5,19.5 + pos: -32.5,-44.5 parent: 1 - - uid: 22429 + - uid: 29625 components: - type: Transform - pos: -42.5,20.5 + pos: -36.5,-43.5 parent: 1 - - uid: 22430 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 29626 components: - type: Transform - pos: -42.5,21.5 + pos: -32.5,-33.5 parent: 1 - - uid: 22434 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 29627 components: - type: Transform - pos: -41.5,-22.5 + pos: -23.5,-33.5 parent: 1 - - uid: 22435 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 29628 components: - type: Transform - pos: -40.5,-22.5 + pos: -22.5,-40.5 parent: 1 - - uid: 22436 + - uid: 29629 components: - type: Transform - pos: -39.5,-22.5 + pos: -47.5,15.5 parent: 1 - - uid: 22437 + - type: DeviceNetwork + deviceLists: + - 13960 + - 30092 + - uid: 29630 components: - type: Transform - pos: -20.5,-27.5 + pos: -54.5,17.5 parent: 1 - - uid: 22438 + - type: DeviceNetwork + deviceLists: + - 13960 + - 30092 + - uid: 29631 components: - type: Transform - pos: -20.5,-26.5 + pos: -61.5,14.5 parent: 1 - - uid: 22439 + - uid: 29632 components: - type: Transform - pos: -20.5,-25.5 + pos: -31.5,10.5 parent: 1 - - uid: 23710 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 + - uid: 29634 components: - type: Transform - pos: 37.5,-57.5 + pos: -22.5,21.5 parent: 1 - - uid: 23711 + - type: DeviceNetwork + deviceLists: + - 12232 + - 29928 + - uid: 29636 components: - type: Transform - pos: 38.5,-57.5 + pos: -23.5,4.5 parent: 1 - - uid: 23717 + - type: DeviceNetwork + deviceLists: + - 14067 + - 30099 + - 30121 + - 30120 + - uid: 29637 components: - type: Transform - pos: 27.5,-57.5 + pos: -27.5,4.5 parent: 1 - - uid: 23718 + - uid: 29638 components: - type: Transform - pos: 28.5,-57.5 + pos: -33.5,2.5 parent: 1 - - uid: 23731 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 + - uid: 29639 components: - type: Transform - pos: 24.5,-47.5 + pos: -30.5,-12.5 parent: 1 - - uid: 28168 + - uid: 29640 components: - type: Transform - pos: -73.5,-7.5 + pos: -29.5,-19.5 parent: 1 - - uid: 29733 + - uid: 29641 components: - type: Transform - pos: -71.5,37.5 + pos: -17.5,-12.5 parent: 1 - - uid: 29734 + - uid: 29642 components: - type: Transform - pos: -71.5,36.5 + pos: -19.5,-3.5 parent: 1 - - uid: 32283 + - uid: 29649 components: - type: Transform - pos: -72.5,-7.5 + pos: -0.5,5.5 parent: 1 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 3754 + - type: DeviceNetwork + deviceLists: + - 14068 + - 30100 + - 41783 + - 41784 + - 41795 + - 36730 + - uid: 29650 components: - type: Transform - pos: -63.5,19.5 + pos: -0.5,-0.5 parent: 1 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 3806 + - type: DeviceNetwork + deviceLists: + - 14068 + - 30100 + - 14067 + - 30099 + - uid: 29651 components: - type: Transform - pos: -67.5,18.5 + pos: -14.5,-0.5 parent: 1 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 3586 + - type: DeviceNetwork + deviceLists: + - 14067 + - 30099 + - 14069 + - 30101 + - uid: 29652 components: - type: Transform - pos: -52.5,-25.5 + pos: -7.5,0.5 parent: 1 - - uid: 3819 + - uid: 29653 components: - type: Transform - pos: -52.5,-22.5 + pos: 6.5,0.5 parent: 1 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 3821 + - uid: 29654 components: - type: Transform - pos: -55.5,-22.5 + pos: 12.5,-0.5 parent: 1 -- proto: AirlockHydroGlassLocked - entities: - - uid: 621 + - type: DeviceNetwork + deviceLists: + - 41773 + - 41772 + - 14068 + - 30100 + - 14067 + - 30099 + - uid: 29655 components: - type: Transform - pos: -25.5,-9.5 + pos: -0.5,-11.5 parent: 1 - - uid: 863 + - type: DeviceNetwork + deviceLists: + - 61 + - 29780 + - uid: 29656 components: - type: Transform - pos: -39.5,-13.5 + pos: -6.5,-10.5 parent: 1 - - uid: 950 + - uid: 29657 components: - type: Transform - pos: -35.5,-13.5 + pos: 5.5,-10.5 parent: 1 -- proto: AirlockHydroponicsLocked - entities: - - uid: 635 + - uid: 29658 components: - type: Transform - pos: -29.5,-16.5 + pos: 5.5,-14.5 parent: 1 - - uid: 824 + - uid: 29659 components: - type: Transform - pos: -34.5,-18.5 + pos: -6.5,-14.5 parent: 1 -- proto: AirlockJanitorLocked - entities: - - uid: 1783 + - uid: 29660 components: - type: Transform - pos: -5.5,-44.5 + pos: -0.5,-19.5 parent: 1 - - uid: 6660 + - type: DeviceNetwork + deviceLists: + - 14069 + - 30101 + - uid: 29661 components: - type: Transform - pos: -26.5,25.5 + pos: -0.5,-22.5 parent: 1 - - uid: 6669 + - uid: 29662 components: - type: Transform - pos: -20.5,32.5 + pos: -8.5,-22.5 parent: 1 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 620 + - type: DeviceNetwork + deviceLists: + - 16627 + - 30112 + - 61 + - 29780 + - uid: 29664 components: - type: Transform - pos: -25.5,-3.5 + pos: -8.5,-26.5 parent: 1 - - uid: 9116 + - type: DeviceNetwork + deviceLists: + - 14069 + - 30101 + - uid: 29665 components: - type: Transform - pos: -31.5,2.5 + pos: -11.5,-32.5 parent: 1 -- proto: AirlockKitchenLocked - entities: - - uid: 318 + - uid: 29666 components: - type: Transform - pos: -28.5,10.5 + pos: -8.5,-30.5 parent: 1 - - uid: 537 + - uid: 29667 components: - type: Transform - pos: -29.5,12.5 + pos: -4.5,-31.5 parent: 1 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 5842 + - type: DeviceNetwork + deviceLists: + - 1585 + - 30102 + - uid: 29669 components: - type: Transform - pos: -90.5,-7.5 + pos: -5.5,-36.5 parent: 1 - - uid: 5843 + - type: DeviceNetwork + deviceLists: + - 41771 + - 41770 + - uid: 29671 components: - type: Transform - pos: -92.5,-5.5 + pos: -11.5,-39.5 parent: 1 -- proto: AirlockLibraryLocked - entities: - - uid: 2623 + - type: DeviceNetwork + deviceLists: + - 16627 + - 30112 + - uid: 29675 components: - type: Transform - pos: 16.5,-54.5 + pos: -39.5,14.5 parent: 1 -- proto: AirlockMailGlassLocked - entities: - - uid: 2041 + - type: DeviceNetwork + deviceLists: + - 12232 + - 29928 + - uid: 29676 components: - type: Transform - pos: -42.5,36.5 + pos: -41.5,4.5 parent: 1 - - uid: 5649 + - type: DeviceNetwork + deviceLists: + - 8313 + - 29926 + - uid: 29677 components: - type: Transform - pos: -50.5,38.5 + pos: -47.5,1.5 parent: 1 - - uid: 7224 + - uid: 29678 components: - type: Transform - pos: -42.5,37.5 + pos: -58.5,1.5 parent: 1 -- proto: AirlockMaint - entities: - - uid: 1008 + - uid: 29679 components: - type: Transform - pos: -36.5,8.5 + pos: -57.5,-4.5 parent: 1 - - uid: 1017 + - uid: 29680 components: - type: Transform - pos: -28.5,18.5 + pos: -55.5,6.5 parent: 1 - - uid: 1535 + - uid: 29681 components: - type: Transform - pos: -52.5,-6.5 + pos: -43.5,-9.5 parent: 1 - - uid: 1804 + - uid: 29682 components: - type: Transform - pos: 12.5,-42.5 + pos: -45.5,-14.5 parent: 1 - - uid: 2158 + - uid: 29683 components: - type: Transform - pos: -2.5,-44.5 + pos: -51.5,-14.5 parent: 1 - - uid: 3379 + - type: DeviceNetwork + deviceLists: + - 6118 + - 29913 + - uid: 29684 components: - type: Transform - pos: -15.5,-49.5 + pos: -53.5,-10.5 parent: 1 - - uid: 3460 + - uid: 29685 components: - type: Transform - pos: -33.5,-65.5 + pos: -57.5,-10.5 parent: 1 - - uid: 3680 + - uid: 29686 components: - type: Transform - pos: -42.5,9.5 + pos: -60.5,-10.5 parent: 1 - - uid: 3711 + - type: DeviceNetwork + deviceLists: + - 6118 + - 29913 + - uid: 29687 components: - type: Transform - pos: -57.5,13.5 + pos: -48.5,-22.5 parent: 1 - - uid: 4089 + - uid: 29688 components: - type: Transform - pos: -36.5,-30.5 + pos: -47.5,-27.5 parent: 1 - - uid: 4483 + - type: DeviceNetwork + deviceLists: + - 41651 + - 41650 + - uid: 29689 components: - type: Transform - pos: -58.5,-16.5 + pos: -54.5,-20.5 parent: 1 - - uid: 4973 + - uid: 29690 components: - type: Transform - pos: -76.5,-49.5 + pos: -56.5,-29.5 parent: 1 - - uid: 5052 + - uid: 29691 components: - type: Transform - pos: -90.5,8.5 + pos: -47.5,-31.5 parent: 1 - - uid: 5920 + - uid: 29692 components: - type: Transform - pos: 37.5,-52.5 + pos: -57.5,-34.5 parent: 1 - - uid: 6043 + - uid: 29693 components: - type: Transform - pos: -55.5,11.5 + pos: -44.5,-35.5 parent: 1 - - uid: 7525 + - uid: 29694 components: - type: Transform - pos: -75.5,21.5 + pos: -45.5,-44.5 parent: 1 - - uid: 7929 + - type: DeviceNetwork + deviceLists: + - 41651 + - 41650 + - uid: 29695 components: - type: Transform - pos: -71.5,9.5 + pos: -49.5,-49.5 parent: 1 - - uid: 7931 + - uid: 29696 components: - type: Transform - pos: -51.5,-8.5 + pos: -49.5,-55.5 parent: 1 - - uid: 8164 + - uid: 29697 components: - type: Transform - pos: -63.5,-8.5 + pos: -52.5,-43.5 parent: 1 - - uid: 9281 + - type: DeviceNetwork + deviceLists: + - 30110 + - 14983 + - uid: 29698 components: - type: Transform - pos: -59.5,-68.5 + pos: -40.5,-18.5 parent: 1 - - uid: 9318 + - uid: 29699 components: - type: Transform - pos: -37.5,-21.5 + pos: -33.5,-26.5 parent: 1 - - uid: 10361 + - type: DeviceNetwork + deviceLists: + - 16627 + - 30112 + - uid: 29700 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - 41666 + - 41665 + - 41667 + - 41668 + - 1585 + - 30102 + - 14069 + - 30101 + - uid: 29709 components: - type: Transform - pos: 31.5,-32.5 + pos: 9.5,-46.5 parent: 1 - - uid: 10413 + - type: DeviceNetwork + deviceLists: + - 41667 + - 41668 + - 16631 + - 30168 + - 41740 + - 41741 + - 30167 + - 16630 + - 41747 + - 41748 + - 41746 + - 30174 + - uid: 29710 components: - type: Transform - pos: 32.5,-49.5 + pos: 17.5,-34.5 parent: 1 - - uid: 10414 + - type: DeviceNetwork + deviceLists: + - 41745 + - 41744 + - 41738 + - 41737 + - 41740 + - 41741 + - 16629 + - 30114 + - uid: 29714 components: - type: Transform - pos: 29.5,-45.5 + pos: 27.5,-50.5 parent: 1 - - uid: 11445 + - type: DeviceNetwork + deviceLists: + - 16629 + - 30114 + - 41758 + - 41757 + - uid: 29718 components: - type: Transform - pos: 16.5,-28.5 + pos: 7.5,-31.5 parent: 1 - - uid: 13071 + - type: DeviceNetwork + deviceLists: + - 41771 + - 41770 + - uid: 29719 components: - type: Transform - pos: -65.5,-65.5 + pos: 15.5,-20.5 parent: 1 - - uid: 13239 + - uid: 29720 components: - type: Transform - pos: -57.5,6.5 + pos: 20.5,-18.5 parent: 1 - - uid: 16852 + - uid: 29721 components: - type: Transform - pos: -96.5,-19.5 + pos: 21.5,-13.5 parent: 1 - - uid: 28906 + - uid: 29722 components: - type: Transform - pos: -97.5,-10.5 + pos: 14.5,-13.5 parent: 1 - - uid: 30962 + - type: DeviceNetwork + deviceLists: + - 14068 + - 30100 + - uid: 29723 components: - type: Transform - pos: -21.5,-71.5 + pos: 17.5,-1.5 parent: 1 - - uid: 33887 + - type: DeviceNetwork + deviceLists: + - 14068 + - 30100 + - 41783 + - 41784 + - uid: 29725 components: - type: Transform - pos: -97.5,-86.5 + pos: 24.5,6.5 parent: 1 - - uid: 36021 + - type: DeviceNetwork + deviceLists: + - 41783 + - 41784 + - uid: 29731 components: - type: Transform - pos: -117.5,-53.5 + pos: -73.5,38.5 parent: 1 - - uid: 36796 + - type: DeviceNetwork + deviceLists: + - 16632 + - 30171 + - 4090 + - 29902 + - uid: 29769 components: - type: Transform - pos: 34.5,-33.5 + pos: -72.5,27.5 parent: 1 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 20360 + - type: DeviceNetwork + deviceLists: + - 29884 + - 3209 + - uid: 29778 components: - type: Transform - pos: -93.5,-35.5 + pos: -36.5,16.5 parent: 1 - - uid: 31997 + - type: DeviceNetwork + deviceLists: + - 12232 + - 29928 + - 30121 + - 30120 + - uid: 29779 components: - type: Transform - pos: -112.5,-72.5 + pos: -18.5,22.5 parent: 1 - - uid: 34006 + - type: DeviceNetwork + deviceLists: + - 41576 + - 41575 + - 13997 + - 30096 + - 13988 + - 30095 + - 14067 + - 30099 + - uid: 29790 components: - type: Transform - pos: -93.5,-59.5 + pos: -65.5,9.5 parent: 1 -- proto: AirlockMaintBarLocked - entities: - - uid: 1564 + - uid: 29848 components: - type: Transform - pos: -58.5,3.5 + rot: 3.141592653589793 rad + pos: -75.5,-46.5 parent: 1 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 8770 + - type: DeviceNetwork + deviceLists: + - 30110 + - 14983 + - 14555 + - 13266 + - uid: 29858 components: - type: Transform - pos: -115.5,-3.5 + pos: -92.5,23.5 parent: 1 - - uid: 8775 + - uid: 29862 components: - type: Transform - pos: -113.5,-5.5 + pos: -73.5,-13.5 parent: 1 -- proto: AirlockMaintCargoLocked - entities: - - uid: 5841 + - type: DeviceNetwork + deviceLists: + - 6689 + - 29917 + - 12147 + - 1744 + - uid: 29881 components: - type: Transform - pos: -17.5,28.5 + pos: -97.5,12.5 parent: 1 -- proto: AirlockMaintChapelLocked - entities: - - uid: 39877 + - uid: 29908 components: - type: Transform - pos: -28.5,-53.5 + pos: -109.5,-2.5 parent: 1 -- proto: AirlockMaintChemLocked - entities: - - uid: 4421 + - uid: 29909 components: - type: Transform - pos: -61.5,-27.5 + pos: -115.5,-0.5 parent: 1 -- proto: AirlockMaintChiefEngineerLocked - entities: - - uid: 9818 + - uid: 29914 components: - type: Transform - pos: -108.5,-39.5 + pos: -63.5,2.5 parent: 1 -- proto: AirlockMaintCommandLocked - entities: - - uid: 5225 + - uid: 29916 components: - type: Transform - pos: -98.5,8.5 + pos: -110.5,-8.5 parent: 1 - - uid: 8231 + - type: DeviceNetwork + deviceLists: + - 5124 + - 29903 + - 8102 + - 29918 + - 41577 + - 30094 + - 6689 + - 29917 + - 42164 + - 5456 + - uid: 29920 components: - type: Transform - pos: -98.5,11.5 + pos: -97.5,-29.5 parent: 1 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 4106 + - type: DeviceNetwork + deviceLists: + - 30172 + - 16633 + - 41646 + - 41645 + - 6689 + - 29917 + - 14555 + - 13266 + - uid: 29936 components: - type: Transform - pos: -59.5,-39.5 + rot: 3.141592653589793 rad + pos: -59.5,-31.5 parent: 1 -- proto: AirlockMaintEngiLocked - entities: - - uid: 3514 + - type: DeviceNetwork + deviceLists: + - 4740 + - 4412 + - uid: 30022 components: - type: Transform - pos: -122.5,-24.5 + pos: -44.5,-52.5 parent: 1 - - uid: 3515 + - uid: 30023 components: - type: Transform - pos: -98.5,-26.5 + pos: -40.5,-38.5 parent: 1 - - uid: 17109 + - type: DeviceNetwork + deviceLists: + - 30279 + - 30280 + - uid: 30057 components: - type: Transform - pos: -111.5,-9.5 + pos: -79.5,-30.5 parent: 1 -- proto: AirlockMaintGlass - entities: - - uid: 6508 + - type: DeviceNetwork + deviceLists: + - 520 + - 14556 + - uid: 30083 components: - type: Transform - pos: -124.5,12.5 + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 parent: 1 - - uid: 6514 + - uid: 30088 components: - type: Transform - pos: -124.5,-1.5 + pos: -50.5,10.5 parent: 1 - - uid: 6555 + - uid: 30143 components: - type: Transform - pos: -124.5,3.5 + pos: -25.5,-6.5 parent: 1 - - uid: 12311 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 + - uid: 30152 components: - type: Transform - pos: -121.5,22.5 + pos: -27.5,-20.5 parent: 1 - - uid: 12312 + - type: DeviceNetwork + deviceLists: + - 14069 + - 30101 + - uid: 30170 components: - type: Transform - pos: -103.5,22.5 + pos: 12.5,15.5 parent: 1 - - uid: 13095 + - type: DeviceNetwork + deviceLists: + - 14067 + - 30099 + - uid: 30207 components: - type: Transform - pos: -85.5,-43.5 + pos: 8.5,-41.5 parent: 1 - - uid: 13097 + - type: DeviceNetwork + deviceLists: + - 16631 + - 30168 + - 16629 + - 30114 + - 14572 + - 30109 + - uid: 30232 components: - type: Transform - pos: -80.5,-49.5 + pos: -56.5,-37.5 parent: 1 - - uid: 30060 + - uid: 30287 components: - type: Transform - pos: -83.5,-39.5 + rot: 1.5707963267948966 rad + pos: -28.5,-55.5 parent: 1 - - uid: 30758 + - type: DeviceNetwork + deviceLists: + - 41656 + - 41655 + - 41660 + - 41659 + - 41663 + - 41662 + - 16627 + - 30112 + - uid: 30288 components: - type: Transform - pos: -76.5,-39.5 + pos: -28.5,-50.5 parent: 1 - - uid: 34575 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 30321 components: - type: Transform - pos: -117.5,-8.5 + pos: -44.5,-74.5 parent: 1 - - uid: 34576 + - type: DeviceNetwork + deviceLists: + - 41663 + - 41662 + - uid: 33442 components: - type: Transform - pos: -116.5,-8.5 + pos: -153.5,6.5 parent: 1 - - uid: 36018 + - uid: 33738 components: - type: Transform - pos: -116.5,-51.5 + pos: -100.5,31.5 parent: 1 -- proto: AirlockMaintGlassLocked - entities: - - uid: 41877 + - type: DeviceNetwork + deviceLists: + - 16632 + - 30171 + - uid: 33761 components: - type: Transform - pos: 23.5,13.5 + pos: -81.5,38.5 parent: 1 - - uid: 41878 + - type: DeviceNetwork + deviceLists: + - 29884 + - 3209 + - uid: 36733 components: - type: Transform - pos: 23.5,14.5 + pos: -102.5,-43.5 parent: 1 -- proto: AirlockMaintHOPLocked - entities: - - uid: 33512 + - type: DeviceNetwork + deviceLists: + - 4941 + - uid: 41388 components: - type: Transform - pos: -65.5,18.5 + pos: -109.5,-81.5 parent: 1 -- proto: AirlockMaintHydroLocked - entities: - - uid: 832 + - uid: 41491 components: - type: Transform - pos: -32.5,-21.5 + pos: -46.5,34.5 parent: 1 -- proto: AirlockMaintIntLocked - entities: - - uid: 36483 + - type: DeviceNetwork + deviceLists: + - 4090 + - 29902 + - 41549 + - 41548 + - uid: 41492 components: - type: Transform - pos: -118.5,-61.5 + pos: -39.5,34.5 parent: 1 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 4970 + - type: DeviceNetwork + deviceLists: + - 96 + - 29883 + - 41550 + - 41551 + - uid: 41493 components: - type: Transform - pos: -88.5,-37.5 + pos: -33.5,33.5 parent: 1 - - uid: 6650 + - type: DeviceNetwork + deviceLists: + - 41549 + - 41548 + - 41557 + - 41556 + - 12232 + - 29928 + - uid: 41494 components: - type: Transform - pos: -19.5,25.5 + pos: -17.5,40.5 parent: 1 - - uid: 13893 + - type: DeviceNetwork + deviceLists: + - 41557 + - 41556 + - uid: 41495 components: - type: Transform - pos: -3.5,-42.5 + pos: -12.5,29.5 parent: 1 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 3488 + - type: DeviceNetwork + deviceLists: + - 41557 + - 41556 + - 41568 + - 30173 + - uid: 41496 components: - type: Transform - pos: -26.5,12.5 + pos: -5.5,37.5 parent: 1 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 24000 + - type: DeviceNetwork + deviceLists: + - 41568 + - 30173 + - 41572 + - 41571 + - uid: 41497 components: - type: Transform - pos: -96.5,-6.5 + pos: 4.5,36.5 parent: 1 -- proto: AirlockMaintLocked - entities: - - uid: 6648 + - type: DeviceNetwork + deviceLists: + - 41569 + - 41570 + - uid: 41498 components: - type: Transform - pos: -15.5,25.5 + pos: -12.5,36.5 parent: 1 - - uid: 12033 + - type: DeviceNetwork + deviceLists: + - 41557 + - 41556 + - 41569 + - 41570 + - 41576 + - 41575 + - uid: 41499 components: - type: Transform - pos: 25.5,-13.5 + pos: -23.5,36.5 parent: 1 - - uid: 15769 + - type: DeviceNetwork + deviceLists: + - 41550 + - 41551 + - 41561 + - 41560 + - 41568 + - 30173 + - 41576 + - 41575 + - uid: 41500 components: - type: Transform - pos: -65.5,-74.5 + pos: -111.5,-12.5 parent: 1 -- proto: AirlockMaintMedLocked - entities: - - uid: 1339 + - type: DeviceNetwork + deviceLists: + - 41584 + - 7586 + - uid: 41501 components: - type: Transform - pos: 9.5,-34.5 + pos: -104.5,-23.5 parent: 1 - - uid: 4403 + - type: DeviceNetwork + deviceLists: + - 41584 + - 7586 + - 30172 + - 16633 + - 41588 + - 41587 + - 41620 + - 41619 + - 41597 + - 41596 + - uid: 41502 components: - type: Transform - pos: -68.5,-36.5 + pos: -106.5,-31.5 parent: 1 - - uid: 18950 + - type: DeviceNetwork + deviceLists: + - 41586 + - 41585 + - uid: 41503 components: - type: Transform - pos: -83.5,-36.5 + pos: -113.5,-28.5 parent: 1 -- proto: AirlockMaintResearchDirectorLocked - entities: - - uid: 36731 + - type: DeviceNetwork + deviceLists: + - 41586 + - 41585 + - 41602 + - 41601 + - 41598 + - 41599 + - uid: 41504 components: - type: Transform - pos: -39.5,-40.5 + pos: -111.5,-39.5 parent: 1 -- proto: AirlockMaintRnDLocked - entities: - - uid: 3358 + - type: DeviceNetwork + deviceLists: + - 41597 + - 41596 + - uid: 41505 components: - type: Transform - pos: -18.5,-50.5 + pos: -118.5,-46.5 parent: 1 - - uid: 6885 + - type: DeviceNetwork + deviceLists: + - 41598 + - 41599 + - uid: 41506 components: - type: Transform - pos: -41.5,-51.5 + pos: -137.5,-35.5 parent: 1 -- proto: AirlockMaintRnDMedLocked - entities: - - uid: 9261 + - type: DeviceNetwork + deviceLists: + - 41597 + - 41596 + - uid: 41507 components: - type: Transform - pos: -65.5,-68.5 + pos: -119.5,-19.5 parent: 1 -- proto: AirlockMaintSecLocked - entities: - - uid: 1112 + - uid: 41508 components: - type: Transform - pos: 12.5,10.5 + pos: -118.5,-65.5 parent: 1 - - uid: 1844 + - type: DeviceNetwork + deviceLists: + - 41641 + - 41640 + - uid: 41509 components: - type: Transform - pos: 28.5,-13.5 + pos: 27.5,-38.5 parent: 1 - - uid: 3144 + - type: DeviceNetwork + deviceLists: + - 16631 + - 30168 + - uid: 41510 components: - type: Transform - pos: -13.5,13.5 + pos: -90.5,-69.5 parent: 1 - - uid: 3992 + - type: DeviceNetwork + deviceLists: + - 41637 + - 41636 + - uid: 41511 components: - type: Transform - pos: -58.5,-37.5 + pos: -97.5,-44.5 parent: 1 - - uid: 4452 + - type: DeviceNetwork + deviceLists: + - 41637 + - 41636 + - uid: 41512 components: - type: Transform - pos: -46.5,-56.5 + pos: -98.5,-61.5 parent: 1 - - uid: 7129 + - type: DeviceNetwork + deviceLists: + - 41639 + - 41638 + - 41641 + - 41640 + - 41646 + - 41645 + - uid: 41513 components: - type: Transform - pos: 18.5,-13.5 + pos: -111.5,-69.5 parent: 1 - - uid: 10352 + - type: DeviceNetwork + deviceLists: + - 41637 + - 41636 + - uid: 41516 components: - type: Transform - pos: 31.5,-23.5 + pos: -16.5,-70.5 parent: 1 - - uid: 15419 + - uid: 41519 components: - type: Transform - pos: -38.5,-31.5 + rot: 1.5707963267948966 rad + pos: -11.5,-58.5 parent: 1 - - uid: 21130 + - type: DeviceNetwork + deviceLists: + - 16627 + - 30112 + - 41759 + - 41760 + - uid: 41520 components: - type: Transform - pos: -18.5,-22.5 + rot: 1.5707963267948966 rad + pos: -6.5,-51.5 parent: 1 - - uid: 41897 + - type: DeviceNetwork + deviceLists: + - 16627 + - 30112 + - 16631 + - 30168 + - 16629 + - 30114 + - uid: 41521 components: - type: Transform - pos: 22.5,5.5 + rot: 1.5707963267948966 rad + pos: 1.5,-52.5 parent: 1 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 6023 + - type: DeviceNetwork + deviceLists: + - 16629 + - 30114 + - 41759 + - 41760 + - uid: 41522 components: - - type: MetaData - name: honk closet - type: Transform - pos: -64.5,4.5 + rot: 1.5707963267948966 rad + pos: 12.5,-52.5 parent: 1 -- proto: AirlockMantisLocked - entities: - - uid: 4107 + - type: DeviceNetwork + deviceLists: + - 16629 + - 30114 + - 41759 + - 41760 + - uid: 41523 components: - type: Transform - pos: -32.5,-31.5 + rot: 1.5707963267948966 rad + pos: 10.5,-59.5 parent: 1 - - uid: 4109 + - type: DeviceNetwork + deviceLists: + - 41666 + - 41665 + - 41747 + - 41748 + - 41746 + - 30174 + - 41758 + - 41757 + - uid: 41524 components: - type: Transform - pos: -32.5,-37.5 + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 parent: 1 -- proto: AirlockMedicalGlass - entities: - - uid: 1845 + - type: DeviceNetwork + deviceLists: + - 30167 + - 16630 + - 41759 + - 41760 + - 41750 + - 41749 + - 41755 + - 41756 + - uid: 41525 components: - type: Transform - pos: -13.5,-39.5 + rot: 1.5707963267948966 rad + pos: 36.5,-56.5 parent: 1 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1657 + - type: DeviceNetwork + deviceLists: + - 41758 + - 41757 + - uid: 41526 components: - type: Transform - pos: -6.5,-31.5 + rot: 1.5707963267948966 rad + pos: 48.5,-58.5 parent: 1 - - uid: 1658 + - type: DeviceNetwork + deviceLists: + - 41758 + - 41757 + - 41754 + - 41753 + - uid: 41527 components: - type: Transform - pos: -6.5,-30.5 + rot: 1.5707963267948966 rad + pos: 47.5,-53.5 parent: 1 - - uid: 1749 + - type: DeviceNetwork + deviceLists: + - 41755 + - 41756 + - 41752 + - 41751 + - uid: 41528 components: - type: Transform - pos: -9.5,-39.5 + rot: 1.5707963267948966 rad + pos: 45.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 33548 - - uid: 4575 + - type: DeviceNetwork + deviceLists: + - 41754 + - 41753 + - uid: 41529 components: - type: Transform - pos: -75.5,-22.5 + rot: 1.5707963267948966 rad + pos: 34.5,-45.5 parent: 1 - - uid: 4579 + - type: DeviceNetwork + deviceLists: + - 16631 + - 30168 + - 16629 + - 30114 + - 30167 + - 16630 + - 41750 + - 41749 + - 41752 + - 41751 + - uid: 41530 components: - type: Transform - pos: -72.5,-21.5 + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 33549 - - uid: 4637 + - type: DeviceNetwork + deviceLists: + - 41745 + - 41744 + - 41774 + - 41775 + - uid: 41531 components: - type: Transform - pos: -78.5,-26.5 + rot: 1.5707963267948966 rad + pos: 27.5,-19.5 parent: 1 - - uid: 4722 + - type: DeviceNetwork + deviceLists: + - 16631 + - 30168 + - 41773 + - 41772 + - 14068 + - 30100 + - uid: 41532 components: - type: Transform - pos: -70.5,-24.5 + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 parent: 1 - - uid: 4762 + - type: DeviceNetwork + deviceLists: + - 41773 + - 41772 + - 14068 + - 30100 + - uid: 41574 components: - type: Transform - pos: -76.5,-35.5 + pos: 3.5,42.5 parent: 1 - - uid: 4803 + - type: DeviceNetwork + deviceLists: + - 41572 + - 41571 + - uid: 41600 components: - type: Transform - pos: -78.5,-22.5 + rot: -1.5707963267948966 rad + pos: -124.5,-28.5 parent: 1 - - uid: 4849 + - type: DeviceNetwork + deviceLists: + - 41597 + - 41596 + - uid: 41625 components: - type: Transform - pos: -83.5,-26.5 + rot: 3.141592653589793 rad + pos: -93.5,-82.5 parent: 1 - - uid: 9157 + - type: DeviceNetwork + deviceLists: + - 41624 + - 41623 + - uid: 41643 components: - type: Transform - pos: -4.5,-33.5 + pos: -103.5,-76.5 parent: 1 - - uid: 27187 + - type: DeviceNetwork + deviceLists: + - 41642 + - uid: 41644 components: - type: Transform - pos: 0.5,-34.5 + pos: -95.5,-68.5 parent: 1 -- proto: AirlockMedicalLocked - entities: - - uid: 1683 + - type: DeviceNetwork + deviceLists: + - 41637 + - 41636 + - uid: 41649 components: - type: Transform - pos: 5.5,-30.5 + pos: -57.5,-42.5 parent: 1 - - uid: 3601 + - type: DeviceNetwork + deviceLists: + - 41651 + - 41650 + - uid: 41657 components: - type: Transform - pos: -74.5,-19.5 + rot: 3.141592653589793 rad + pos: -19.5,-48.5 parent: 1 - - type: DeviceLinkSink - links: - - 33550 - - uid: 4624 + - type: DeviceNetwork + deviceLists: + - 16488 + - 30111 + - uid: 41685 components: - type: Transform - pos: -79.5,-33.5 + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 parent: 1 - - uid: 4891 + - type: DeviceNetwork + deviceLists: + - 16631 + - 30168 + - 16629 + - 30114 + - uid: 41735 components: - type: Transform - pos: -86.5,-30.5 + rot: -1.5707963267948966 rad + pos: 22.5,-37.5 parent: 1 - - uid: 9160 + - uid: 41776 components: - type: Transform - pos: 5.5,-38.5 + pos: 49.5,-9.5 parent: 1 - - uid: 23347 + - type: DeviceNetwork + deviceLists: + - 41774 + - 41775 + - uid: 41782 components: - type: Transform - pos: -71.5,-32.5 + rot: -1.5707963267948966 rad + pos: 6.5,-22.5 parent: 1 - - uid: 27189 + - type: DeviceNetwork + deviceLists: + - 14068 + - 30100 + - 14069 + - 30101 + - 61 + - 29780 + - uid: 41788 components: - type: Transform - pos: 5.5,-34.5 + pos: 17.5,6.5 parent: 1 - - uid: 29806 + - type: DeviceNetwork + deviceLists: + - 14067 + - 30099 +- proto: AirSensorAssembly + entities: + - uid: 30611 components: - type: Transform - pos: -74.5,-32.5 + pos: -120.976,-10.982209 parent: 1 -- proto: AirlockMedicalScienceGlassLocked +- proto: AirTank entities: - - uid: 13669 + - uid: 32156 components: - type: Transform - pos: -75.5,-68.5 + pos: -111.61989,-77.355354 parent: 1 -- proto: AirlockMimeLocked - entities: - - uid: 5845 + - uid: 32157 components: - type: Transform - pos: -71.5,6.5 + pos: -111.3178,-77.470024 parent: 1 -- proto: AirlockMiningGlassLocked - entities: - - uid: 3045 + - uid: 36723 components: - type: Transform - pos: 53.5,38.5 + pos: -15.667404,-63.27983 parent: 1 - - uid: 3046 + - uid: 36724 components: - type: Transform - pos: 52.5,38.5 + pos: -15.467403,-63.46746 parent: 1 -- proto: AirlockMusicianLocked +- proto: AirTankFilled entities: - - uid: 5847 + - uid: 12707 components: - type: Transform - pos: -71.5,-4.5 + pos: -88.5214,-30.403326 parent: 1 -- proto: AirlockPsychologistLocked +- proto: AltarSpawner entities: - - uid: 1632 + - uid: 6937 components: - type: Transform - pos: -10.5,-30.5 + pos: -27.5,-33.5 parent: 1 - - uid: 1633 + - uid: 8753 components: - type: Transform - pos: -11.5,-33.5 + pos: -64.5,7.5 parent: 1 -- proto: AirlockQuartermasterGlassLocked +- proto: AmeController entities: - - uid: 6674 + - uid: 3221 components: - type: Transform - pos: -17.5,38.5 + pos: -116.5,-23.5 parent: 1 -- proto: AirlockQuartermasterLocked - entities: - - uid: 7236 + - uid: 10232 components: + - type: MetaData + name: Prison AME controller - type: Transform - pos: -15.5,40.5 + pos: 16.5,20.5 parent: 1 -- proto: AirlockResearchDirectorGlassLocked + - type: ContainerContainer + containers: + AMEController-fuelJarContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11376 + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: AmeJar entities: - - uid: 6843 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 1 - - uid: 6853 + - uid: 4967 components: - type: Transform - pos: -34.5,-39.5 + pos: 18.664925,19.617306 parent: 1 - - uid: 6854 + - uid: 6186 components: - type: Transform - pos: -36.5,-45.5 + pos: 18.39409,19.62773 parent: 1 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 3360 + - uid: 9348 components: - type: Transform - pos: 0.5,36.5 + pos: -41.664303,29.800814 parent: 1 - - uid: 5956 + - uid: 11376 components: - type: Transform - pos: -13.5,34.5 - parent: 1 - - uid: 6138 + parent: 10232 + - type: Physics + canCollide: False +- proto: AmeShielding + entities: + - uid: 11383 components: - type: Transform - pos: -15.5,36.5 + pos: 17.5,21.5 parent: 1 - - uid: 11389 + - uid: 11384 components: - type: Transform - pos: -9.5,36.5 + pos: 15.5,21.5 parent: 1 -- proto: AirlockScienceGlassLocked - entities: - - uid: 6792 + - uid: 11393 components: - type: Transform - pos: -34.5,-53.5 + pos: 16.5,21.5 parent: 1 - - uid: 6803 + - uid: 11409 components: - type: Transform - pos: -25.5,-38.5 + pos: 15.5,22.5 parent: 1 - - uid: 6804 + - uid: 11411 components: - type: Transform - pos: -24.5,-38.5 + pos: 16.5,22.5 parent: 1 - - uid: 6892 + - uid: 11426 components: - type: Transform - pos: -25.5,-42.5 + pos: 17.5,22.5 parent: 1 - - uid: 6893 + - uid: 11429 components: - type: Transform - pos: -24.5,-42.5 + pos: 17.5,23.5 parent: 1 - - uid: 6959 + - uid: 11458 components: - type: Transform - pos: -35.5,-53.5 + pos: 16.5,23.5 parent: 1 - - uid: 6982 + - uid: 11459 components: - type: Transform - pos: -33.5,-48.5 + pos: 15.5,23.5 parent: 1 - - uid: 6987 +- proto: Amphora + entities: + - uid: 9041 components: - type: Transform - pos: -32.5,-48.5 + pos: -30.5,-32.5 parent: 1 - - uid: 6990 + - type: SolutionContainerManager + solutions: + jar: + temperature: 293.15 + canReact: True + maxVol: 120 + name: null + reagents: + - data: null + ReagentId: Silicon + Quantity: 40 + - uid: 9047 components: - type: Transform - pos: -38.5,-53.5 + pos: -34.5,-32.5 parent: 1 - - uid: 7008 + - type: SolutionContainerManager + solutions: + jar: + temperature: 293.15 + canReact: True + maxVol: 120 + name: null + reagents: + - data: null + ReagentId: Hydrogen + Quantity: 100 + - uid: 18981 components: - type: Transform - pos: -35.5,-56.5 + pos: -35.5,-40.5 parent: 1 - - uid: 7059 + - type: SolutionContainerManager + solutions: + jar: + temperature: 293.15 + canReact: True + maxVol: 120 + name: null + reagents: + - data: null + ReagentId: Goldschlager + Quantity: 35 + - uid: 33163 components: - type: Transform - pos: -44.5,-61.5 + pos: -26.45357,-31.073204 parent: 1 - - uid: 12219 + - type: SolutionContainerManager + solutions: + jar: + temperature: 293.15 + canReact: True + maxVol: 120 + name: null + reagents: + - data: null + ReagentId: DemonsBlood + Quantity: 15 + - uid: 33164 components: - type: Transform - pos: -34.5,-56.5 + pos: -22.589075,-37.54056 parent: 1 -- proto: AirlockSecurity - entities: - - uid: 4034 + - uid: 33165 components: - type: Transform - pos: -45.5,-46.5 + pos: -20.464073,-37.571835 parent: 1 -- proto: AirlockSecurityGlass + - type: SolutionContainerManager + solutions: + jar: + temperature: 293.15 + canReact: True + maxVol: 120 + name: null + reagents: + - data: null + ReagentId: HolyWater + Quantity: 60 +- proto: AnomalyScanner entities: - - uid: 3534 + - uid: 20881 components: - type: Transform - pos: -48.5,-19.5 + pos: -39.430927,-68.88715 parent: 1 - - uid: 3535 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 20880 components: - type: Transform - pos: -47.5,-19.5 + pos: -35.4169,-41.366516 parent: 1 -- proto: AirlockSecurityGlassLocked +- proto: AntiAnomalyZone entities: - - uid: 253 + - uid: 42382 components: - type: Transform - pos: -10.5,7.5 + pos: 68.5,-30.5 parent: 1 - - uid: 455 + - uid: 42384 components: - type: Transform - pos: -15.5,-6.5 + pos: 97.5,34.5 parent: 1 - - uid: 456 + - uid: 42385 components: - type: Transform - pos: -15.5,-5.5 + pos: 78.5,2.5 parent: 1 - - uid: 457 + - uid: 42386 components: - type: Transform - pos: -15.5,3.5 + pos: 41.5,4.5 parent: 1 - - uid: 458 + - uid: 42387 components: - type: Transform - pos: -15.5,2.5 + pos: 58.5,2.5 parent: 1 - - uid: 685 + - uid: 42388 components: - type: Transform - pos: -1.5,-8.5 + pos: 78.5,-17.5 parent: 1 - - uid: 686 + - uid: 42389 components: - type: Transform - pos: -0.5,-8.5 + pos: -98.5,38.5 parent: 1 - - uid: 687 + - uid: 42390 components: - type: Transform - pos: 0.5,-8.5 + pos: 55.5,-29.5 parent: 1 - - uid: 688 + - uid: 42391 components: - type: Transform - pos: -2.5,-14.5 + pos: -61.5,45.5 parent: 1 - - uid: 690 + - uid: 42392 components: - type: Transform - pos: 1.5,-14.5 + pos: -86.5,38.5 parent: 1 - - uid: 692 + - uid: 42397 components: - type: Transform - pos: -1.5,-16.5 + pos: 6.5,-65.5 parent: 1 - - uid: 693 + - uid: 42398 components: - type: Transform - pos: -0.5,-16.5 + pos: -99.5,-49.5 parent: 1 - - uid: 694 + - uid: 42399 components: - type: Transform - pos: 0.5,-16.5 + pos: -105.5,-56.5 parent: 1 - - uid: 696 + - uid: 42400 components: - type: Transform - pos: -2.5,-11.5 + pos: 26.5,-65.5 parent: 1 - - uid: 700 + - uid: 42401 components: - type: Transform - pos: 1.5,-11.5 + pos: 46.5,-65.5 parent: 1 - - uid: 703 + - uid: 42402 components: - type: Transform - pos: -7.5,-19.5 + pos: -3.5,-65.5 parent: 1 - - uid: 704 + - uid: 42403 components: - type: Transform - pos: -3.5,-19.5 + pos: -21.5,-63.5 parent: 1 - - uid: 717 +- proto: AntiAnomalyZone20 + entities: + - uid: 42381 components: - type: Transform - pos: -7.5,-18.5 + pos: 33.5,35.5 parent: 1 - - uid: 718 + - uid: 42383 components: - type: Transform - pos: 6.5,-19.5 + pos: 73.5,34.5 parent: 1 - - uid: 719 + - uid: 42393 components: - type: Transform - pos: 6.5,-18.5 + pos: -146.5,13.5 parent: 1 - - uid: 727 + - uid: 42394 components: - type: Transform - pos: -3.5,-18.5 + pos: -151.5,-59.5 parent: 1 - - uid: 728 + - uid: 42395 components: - type: Transform - pos: 2.5,-19.5 + pos: -146.5,-6.5 parent: 1 - - uid: 729 + - uid: 42396 components: - type: Transform - pos: 2.5,-18.5 + pos: -136.5,-81.5 parent: 1 - - uid: 848 +- proto: AntiPoisonMedipen + entities: + - uid: 9702 components: - type: Transform - pos: -13.5,-11.5 + rot: 1.5707963267948966 rad + pos: -81.38498,-19.392637 parent: 1 - - uid: 1059 +- proto: APCBasic + entities: + - uid: 2472 components: + - type: MetaData + name: CE's APC - type: Transform - pos: 14.5,-6.5 + rot: -1.5707963267948966 rad + pos: -103.5,-29.5 parent: 1 - - uid: 1155 + - uid: 5988 components: + - type: MetaData + name: outer starboard maints APC - type: Transform - pos: -6.5,7.5 + rot: 1.5707963267948966 rad + pos: 19.5,8.5 parent: 1 - - uid: 1156 + - uid: 5989 components: + - type: MetaData + name: main hall APC - type: Transform - pos: -2.5,7.5 + pos: -96.5,-10.5 parent: 1 - - uid: 1157 + - uid: 8457 components: + - type: MetaData + name: upper portside maints APC - type: Transform - pos: 1.5,7.5 + rot: 3.141592653589793 rad + pos: -105.5,-5.5 parent: 1 - - uid: 1158 + - uid: 8458 components: + - type: MetaData + name: race track APC - type: Transform - pos: 5.5,7.5 + rot: -1.5707963267948966 rad + pos: -124.5,-0.5 parent: 1 - - uid: 1159 + - uid: 14986 components: + - type: MetaData + name: prison yard securtity grille APC - type: Transform - pos: 9.5,7.5 + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 parent: 1 - - uid: 1161 + - uid: 18084 components: + - type: MetaData + name: mystagogue's office APC - type: Transform - pos: 17.5,4.5 + rot: 1.5707963267948966 rad + pos: -39.5,-39.5 parent: 1 - - uid: 1198 + - uid: 18085 components: + - type: MetaData + name: psionic mantis office/epistemics hall APC - type: Transform - pos: 14.5,-7.5 + pos: -31.5,-37.5 parent: 1 - - uid: 1576 + - uid: 18478 components: + - type: MetaData + name: security lobby/holding cells APC - type: Transform - pos: 8.5,-24.5 + rot: -1.5707963267948966 rad + pos: -42.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 30185 - - uid: 1577 + - uid: 18851 components: + - type: MetaData + name: arcade APC - type: Transform - pos: 10.5,-24.5 + rot: 1.5707963267948966 rad + pos: -70.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 33644 - - uid: 1607 + - uid: 18871 components: + - type: MetaData + name: lower portside APC - type: Transform - pos: -9.5,-28.5 + rot: -1.5707963267948966 rad + pos: -96.5,-77.5 parent: 1 - - uid: 1627 + - uid: 19428 components: + - type: MetaData + name: port-forward maints APC - type: Transform - pos: -8.5,-28.5 + rot: 3.141592653589793 rad + pos: -97.5,23.5 parent: 1 - - uid: 1846 + - uid: 19437 components: + - type: MetaData + name: captain's office/vault APC - type: Transform - pos: 44.5,-60.5 + rot: 3.141592653589793 rad + pos: -106.5,0.5 parent: 1 - - uid: 2010 + - uid: 19613 components: + - type: MetaData + name: court room APC - type: Transform - pos: 54.5,-11.5 + rot: 1.5707963267948966 rad + pos: -89.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 10081 - - type: DeviceLinkSource - linkedPorts: - 10081: - - DoorStatus: DoorBolt - - uid: 2329 + - uid: 19615 components: + - type: MetaData + name: lawyer's office/barber shop/clothing store APC - type: Transform - pos: 44.5,-59.5 + rot: 3.141592653589793 rad + pos: -88.5,-7.5 parent: 1 - - uid: 3146 + - uid: 19865 components: + - type: MetaData + name: arrivals sec point APC - type: Transform - pos: -13.5,7.5 + pos: -77.5,29.5 parent: 1 - - uid: 3547 + - uid: 19949 components: + - type: MetaData + name: EVA APC - type: Transform - pos: -44.5,-22.5 + pos: -66.5,29.5 parent: 1 - - uid: 3908 + - uid: 20018 components: + - type: MetaData + name: service room APC - type: Transform - pos: -49.5,-46.5 + pos: -59.5,18.5 parent: 1 - - uid: 3922 + - uid: 20101 components: - type: Transform - pos: -50.5,-37.5 + rot: 3.141592653589793 rad + pos: -50.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 16025 - - uid: 3923 + - uid: 20464 components: + - type: MetaData + name: upper dorms APC - type: Transform - pos: -47.5,-37.5 + pos: -50.5,31.5 parent: 1 - - type: DeviceLinkSink - links: - - 33641 - - uid: 3924 + - uid: 20635 components: + - type: MetaData + name: lower midstation maints APC - type: Transform - pos: -44.5,-37.5 + rot: 3.141592653589793 rad + pos: 14.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 33642 - - uid: 3930 + - uid: 20845 components: - type: Transform - pos: -45.5,-31.5 + pos: -25.5,-22.5 parent: 1 - - uid: 3931 + - uid: 20846 components: + - type: MetaData + name: janitorial APC - type: Transform - pos: -50.5,-31.5 + rot: 1.5707963267948966 rad + pos: -26.5,27.5 parent: 1 - - uid: 4033 + - uid: 20947 components: + - type: MetaData + name: foreward starboard maints APC - type: Transform - pos: -51.5,-44.5 + pos: -24.5,15.5 parent: 1 - - uid: 4058 + - uid: 20950 components: + - type: MetaData + name: dining room APC - type: Transform - pos: -53.5,-47.5 + rot: -1.5707963267948966 rad + pos: -31.5,0.5 parent: 1 - - uid: 4221 + - uid: 21015 components: + - type: MetaData + name: kitchen breakroom APC - type: Transform - pos: -55.5,-45.5 + rot: 1.5707963267948966 rad + pos: -28.5,11.5 parent: 1 - - uid: 4469 + - uid: 21016 components: + - type: MetaData + name: freezer APC - type: Transform - pos: -49.5,-52.5 + rot: -1.5707963267948966 rad + pos: -25.5,11.5 parent: 1 - - uid: 5675 + - uid: 21218 components: + - type: MetaData + name: recycling room APC - type: Transform - pos: -75.5,24.5 + pos: -12.5,28.5 parent: 1 - - uid: 7483 + - uid: 21322 components: + - type: MetaData + name: prison AME APC - type: Transform - pos: -42.5,12.5 + rot: 3.141592653589793 rad + pos: 17.5,15.5 parent: 1 - - uid: 9382 + - uid: 21399 components: + - type: MetaData + name: prison lower hall/entrance APC - type: Transform - pos: 56.5,6.5 + pos: -11.5,-21.5 parent: 1 - - uid: 9421 + - uid: 21647 components: - type: MetaData - name: 'visitation ' + name: prison custodial APC - type: Transform - pos: -12.5,-16.5 + pos: 13.5,-11.5 parent: 1 - - uid: 9423 + - uid: 21673 components: + - type: MetaData + name: prison guard main post APC - type: Transform - pos: -10.5,-16.5 + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 parent: 1 - - uid: 9925 + - uid: 31543 components: - type: Transform - pos: 46.5,-51.5 + rot: -1.5707963267948966 rad + pos: -75.5,6.5 parent: 1 - - uid: 10072 + - uid: 32431 components: + - type: MetaData + name: particle accelerator APC - type: Transform - pos: 28.5,-9.5 + pos: 58.5,-38.5 parent: 1 - - uid: 10073 + - uid: 38554 components: + - type: MetaData + name: mailroom APC - type: Transform - pos: 28.5,-10.5 + pos: -44.5,39.5 parent: 1 - - uid: 10081 + - uid: 38709 components: + - type: MetaData + name: logistics breakroom/salvage locker APC - type: Transform - pos: 52.5,-9.5 + pos: -11.5,34.5 parent: 1 - - type: DeviceLinkSink - links: - - 2010 - - type: DeviceLinkSource - linkedPorts: - 2010: - - DoorStatus: DoorBolt - - uid: 10372 + - uid: 39171 components: + - type: MetaData + name: portside maints/solars APC - type: Transform - pos: 48.5,-54.5 + rot: 3.141592653589793 rad + pos: -140.5,-40.5 parent: 1 - - uid: 10373 + - uid: 39648 components: + - type: MetaData + name: robotics APC - type: Transform - pos: 46.5,-57.5 + pos: -20.5,-46.5 parent: 1 - - uid: 10490 + - uid: 39731 components: + - type: MetaData + name: prison mining shaft APC - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-60.5 + pos: 30.5,-8.5 parent: 1 - - uid: 10491 + - uid: 40031 components: + - type: MetaData + name: command evac/evac sec-point APC - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-59.5 + pos: -10.5,-53.5 parent: 1 - - uid: 13010 + - uid: 40069 components: + - type: MetaData + name: civilian evac section APC - type: Transform - pos: 16.5,7.5 + pos: 3.5,-57.5 parent: 1 - - uid: 13011 + - uid: 40070 components: + - type: MetaData + name: lower dorms APC - type: Transform - pos: 17.5,7.5 + pos: 36.5,-52.5 parent: 1 - - uid: 13062 + - uid: 40071 components: + - type: MetaData + name: prison evac APC - type: Transform - pos: 10.5,-16.5 + rot: -1.5707963267948966 rad + pos: 48.5,-56.5 parent: 1 - - uid: 13065 +- proto: APCConstructed + entities: + - uid: 18602 components: - type: Transform - pos: -9.5,-24.5 + pos: 58.5,-52.5 parent: 1 - - uid: 13066 + - uid: 39816 components: - type: Transform - pos: -8.5,-24.5 + rot: 1.5707963267948966 rad + pos: 54.5,7.5 parent: 1 - - uid: 13772 +- proto: APCElectronics + entities: + - uid: 4761 components: - type: Transform - pos: 27.5,-24.5 + pos: -64.478836,-33.391758 parent: 1 - - uid: 37780 +- proto: APCHighCapacity + entities: + - uid: 18086 components: + - type: MetaData + name: epistemics front desk/lobby APC - type: Transform - pos: 26.5,-15.5 + rot: 3.141592653589793 rad + pos: -21.5,-42.5 parent: 1 - - uid: 37781 + - uid: 18194 components: + - type: MetaData + name: lower maints APC - type: Transform - pos: 27.5,-15.5 + rot: 3.141592653589793 rad + pos: -27.5,-75.5 parent: 1 - - uid: 40853 + - uid: 18195 components: + - type: MetaData + name: security main APC - type: Transform - pos: 47.5,-10.5 + rot: 1.5707963267948966 rad + pos: -54.5,-40.5 parent: 1 - - uid: 40854 + - uid: 18477 components: + - type: MetaData + name: Hos's office APC - type: Transform - pos: 47.5,-9.5 + rot: 3.141592653589793 rad + pos: -54.5,-22.5 parent: 1 -- proto: AirlockSecurityLawyerGlassLocked - entities: - - uid: 3587 + - uid: 18479 components: + - type: MetaData + name: armory APC - type: Transform - pos: -48.5,-25.5 + rot: 3.141592653589793 rad + pos: -60.5,-51.5 parent: 1 - - uid: 3588 + - uid: 18887 components: + - type: MetaData + name: engineering front APC - type: Transform - pos: -47.5,-25.5 + rot: 3.141592653589793 rad + pos: -103.5,-19.5 parent: 1 - - uid: 3926 + - uid: 19143 components: + - type: MetaData + name: lower midstation maints APC - type: Transform - pos: -51.5,-35.5 + pos: -60.5,-68.5 parent: 1 - - uid: 3927 + - uid: 19435 components: + - type: MetaData + name: conference room APC - type: Transform - pos: -51.5,-36.5 + rot: 1.5707963267948966 rad + pos: -104.5,0.5 parent: 1 - - uid: 4060 + - uid: 19436 components: + - type: MetaData + name: captain's quarters APC - type: Transform - pos: -43.5,-29.5 + rot: 1.5707963267948966 rad + pos: -111.5,1.5 parent: 1 - - uid: 4062 + - uid: 19504 components: + - type: MetaData + name: AI APC - type: Transform - pos: -44.5,-29.5 + rot: -1.5707963267948966 rad + pos: -105.5,9.5 parent: 1 - - uid: 9470 + - uid: 19950 components: - type: MetaData - name: 'visitation ' + name: HoP's APC - type: Transform - pos: -12.5,-21.5 + rot: 1.5707963267948966 rad + pos: -68.5,19.5 parent: 1 - - uid: 16435 + - uid: 20043 components: + - type: MetaData + name: clown/mime/musician dorms APC - type: Transform - pos: -14.5,-22.5 + pos: -70.5,4.5 parent: 1 - - uid: 16436 + - uid: 20948 components: + - type: MetaData + name: kitchen main APC - type: Transform - pos: -14.5,-23.5 + pos: -28.5,8.5 parent: 1 - - uid: 16437 + - uid: 21397 components: + - type: MetaData + name: prison kitchen APC - type: Transform - pos: -16.5,-24.5 + pos: -19.5,7.5 parent: 1 - - uid: 16438 + - uid: 21398 components: + - type: MetaData + name: prison hydronics APC - type: Transform - pos: -17.5,-24.5 + pos: -16.5,-16.5 parent: 1 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 3911 + - uid: 21400 components: + - type: MetaData + name: warden's office APC - type: Transform - pos: -54.5,-33.5 + pos: 15.5,-17.5 parent: 1 -- proto: AirlockSecurityLocked - entities: - - uid: 350 + - uid: 26348 components: + - type: MetaData + name: chemistry lab APC - type: Transform - pos: -15.5,5.5 + rot: -1.5707963267948966 rad + pos: -61.5,-28.5 parent: 1 - - uid: 352 + - uid: 32213 components: + - type: MetaData + name: mid-station sec-point APC - type: Transform - pos: -21.5,5.5 + rot: 1.5707963267948966 rad + pos: -45.5,13.5 parent: 1 - - uid: 931 + - uid: 38607 components: - type: MetaData - name: garden tools + name: logistics main APC - type: Transform - pos: -15.5,-16.5 + pos: -25.5,38.5 parent: 1 - - uid: 1113 + - uid: 39072 components: + - type: MetaData + name: main engineering APC - type: Transform - pos: 19.5,5.5 + pos: -114.5,-23.5 parent: 1 - - uid: 1123 + - uid: 40879 components: + - type: MetaData + name: prison security fence/conveyor belt APC - type: Transform - pos: 12.5,7.5 + rot: 3.141592653589793 rad + pos: 41.5,-8.5 parent: 1 - - uid: 1601 +- proto: APCHyperCapacity + entities: + - uid: 18087 components: + - type: MetaData + name: epistemics laboratory APC - type: Transform - pos: 12.5,-12.5 + rot: 1.5707963267948966 rad + pos: -43.5,-55.5 parent: 1 - - uid: 1606 + - uid: 19434 components: - type: MetaData - name: rubber room + name: bridge command room APC - type: Transform - pos: -10.5,-26.5 + pos: -103.5,8.5 parent: 1 - - uid: 1775 + - uid: 20260 components: + - type: MetaData + name: arrivals/upper hall APC - type: Transform - pos: 14.5,-9.5 + pos: -25.5,23.5 parent: 1 - - uid: 3201 + - uid: 20637 components: + - type: MetaData + name: lower starboard hall APC - type: Transform - pos: 44.5,-50.5 + pos: -3.5,-44.5 parent: 1 - - uid: 3479 + - uid: 21669 components: + - type: MetaData + name: prison main hall/cells/yard APC - type: Transform - pos: -24.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 parent: 1 - - uid: 3536 +- proto: APCSuperCapacity + entities: + - uid: 2107 components: + - type: MetaData + name: grav ge/comms APC - type: Transform - pos: -45.5,-24.5 + rot: 1.5707963267948966 rad + pos: -113.5,-37.5 parent: 1 - - uid: 3537 + - uid: 4950 components: - type: Transform - pos: -45.5,-23.5 + pos: -92.5,-34.5 parent: 1 - - uid: 3554 + - uid: 17707 components: + - type: MetaData + name: casino APC - type: Transform - pos: -42.5,-24.5 + rot: 1.5707963267948966 rad + pos: 16.5,-27.5 parent: 1 - - uid: 3555 + - uid: 18706 components: + - type: MetaData + name: CMO/Surgery/morgue/cloning APC - type: Transform - pos: -42.5,-23.5 + pos: -81.5,-22.5 parent: 1 - - uid: 3598 + - uid: 18707 components: + - type: MetaData + name: medical treatment room APC - type: Transform - pos: -42.5,-31.5 + rot: -1.5707963267948966 rad + pos: -71.5,-26.5 parent: 1 - - uid: 3985 + - uid: 18878 components: + - type: MetaData + name: atmospherics APC - type: Transform - pos: -54.5,-37.5 + rot: -1.5707963267948966 rad + pos: -93.5,-61.5 parent: 1 - - uid: 9383 + - uid: 18991 components: + - type: MetaData + name: prison medical wing APC - type: Transform - pos: 56.5,10.5 + pos: -1.5,-32.5 parent: 1 - - uid: 9384 + - uid: 19616 components: + - type: MetaData + name: command courtyard APC - type: Transform - pos: 57.5,10.5 + pos: -89.5,9.5 parent: 1 - - uid: 9983 + - uid: 20102 components: + - type: MetaData + name: bar APC - type: Transform - pos: 37.5,-44.5 + rot: 1.5707963267948966 rad + pos: -54.5,-3.5 parent: 1 - - uid: 9988 + - uid: 20567 components: + - type: MetaData + name: mid-station hall APC - type: Transform - pos: 37.5,-43.5 + rot: 3.141592653589793 rad + pos: -42.5,1.5 parent: 1 - - uid: 10371 + - uid: 20949 components: + - type: MetaData + name: hydroponics APC - type: Transform - pos: 44.5,-49.5 + rot: 3.141592653589793 rad + pos: -27.5,-16.5 parent: 1 - - uid: 12155 + - uid: 21648 components: + - type: MetaData + name: prison workshop APC - type: Transform - pos: -58.5,-58.5 + pos: 18.5,4.5 parent: 1 - - uid: 42166 + - uid: 38710 components: + - type: MetaData + name: salvage APC - type: Transform - pos: -13.5,10.5 + pos: 1.5,39.5 parent: 1 -- proto: AirlockServiceCaptainLocked +- proto: APECircuitboard entities: - - uid: 18445 + - uid: 20878 components: - type: Transform - pos: -117.5,-0.5 + pos: -39.65888,-69.37619 parent: 1 -- proto: AirlockServiceGlassLocked +- proto: AppraisalTool entities: - - uid: 2937 - components: - - type: Transform - pos: 18.5,-43.5 - parent: 1 - - uid: 2963 + - uid: 11614 components: - type: Transform - pos: 20.5,-38.5 + rot: 1.5707963267948966 rad + pos: -31.382385,-10.418118 parent: 1 - - uid: 3670 +- proto: ArrivalsShuttleTimer + entities: + - uid: 32517 components: - type: Transform - pos: -54.5,18.5 + pos: -97.5,46.5 parent: 1 - - uid: 3672 + - uid: 32518 components: - type: Transform - pos: -53.5,18.5 + pos: -87.5,46.5 parent: 1 - - uid: 3685 + - uid: 32520 components: - type: Transform - pos: -56.5,17.5 + pos: -79.5,39.5 parent: 1 -- proto: AirlockServiceLocked +- proto: Ash entities: - - uid: 1548 + - uid: 12416 components: - type: Transform - pos: -61.5,-9.5 + pos: 22.473688,-13.231509 parent: 1 - - uid: 4494 +- proto: Ashtray + entities: + - uid: 32519 components: - type: Transform - pos: -62.5,-10.5 + pos: -53.231686,27.549654 parent: 1 - - uid: 4495 + - uid: 32996 components: - type: Transform - pos: -54.5,-10.5 + pos: -52.27259,3.5293334 parent: 1 - - uid: 4508 + - uid: 32997 components: - type: Transform - pos: -58.5,-10.5 + pos: -49.59551,-1.2969353 parent: 1 - - uid: 4519 + - uid: 32998 components: - type: Transform - pos: -51.5,-10.5 + pos: -46.39759,7.6572003 parent: 1 - - uid: 11074 + - uid: 32999 components: - type: Transform - pos: -26.5,-23.5 + pos: -44.06426,0.4221565 parent: 1 - - uid: 12748 + - uid: 33000 components: - - type: MetaData - name: 'trinket & souvenirs shop ' - type: Transform - pos: -83.5,32.5 + pos: -59.267883,-4.274349 parent: 1 -- proto: AirlockTheatreLocked - entities: - - uid: 1515 + - uid: 33001 components: - type: Transform - pos: -54.5,-4.5 + pos: -80.558876,39.533493 parent: 1 -- proto: AirlockVirologyGlassLocked - entities: - - uid: 4850 + - uid: 33002 components: - type: Transform - pos: -85.5,-24.5 + pos: -66.57248,35.50421 parent: 1 -- proto: AirSensor - entities: - - uid: 1703 + - uid: 33004 components: - type: Transform - pos: 0.5,-37.5 + pos: -15.665407,29.458918 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14572 - - 30109 - - 1585 - - 30102 - - uid: 4668 + - uid: 33005 components: - type: Transform - pos: -79.5,-36.5 + pos: 14.665653,-21.585917 parent: 1 - - uid: 11375 + - uid: 33006 components: - type: Transform - pos: -63.5,37.5 + pos: -31.322895,17.42215 parent: 1 - - type: DeviceNetwork - deviceLists: - - 29884 - - 3209 - - 96 - - 29883 - - 13960 - - 30092 - - uid: 16634 + - uid: 33007 components: - type: Transform - pos: -24.5,-62.5 + pos: -55.499535,-36.266476 parent: 1 - - type: DeviceNetwork - deviceLists: - - 18597 - - uid: 18595 + - uid: 33008 components: - type: Transform - pos: -34.5,23.5 + pos: -104.60396,-31.560234 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41551 - - 41550 - - 13997 - - 30096 - - 13988 - - 30095 - - 13960 - - 30092 - - 8313 - - 29926 - - uid: 18596 + - uid: 33009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 + pos: -86.99369,-49.494698 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41745 - - 41744 - - 41774 - - 41775 - - 14068 - - 30100 - - uid: 19235 + - uid: 33010 components: - type: Transform - pos: -108.5,-21.5 + pos: -88.26453,-46.58643 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41586 - - 41585 - - 41597 - - 41596 - - uid: 29526 + - uid: 33011 components: - type: Transform - pos: -143.5,-8.5 + pos: -71.22065,-62.68286 parent: 1 - - uid: 29553 + - uid: 33012 components: - type: Transform - pos: -23.5,29.5 + pos: -58.3313,-80.37624 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12232 - - 29928 - - uid: 29555 + - uid: 33013 components: - type: Transform - pos: -48.5,30.5 + pos: 4.375538,-58.33389 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13960 - - 30092 - - uid: 29556 + - uid: 33014 components: - type: Transform - pos: -56.5,21.5 + pos: -12.264183,-61.36652 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4090 - - 29902 - - 12232 - - 29928 - - 29929 - - 13956 - - 8313 - - 29926 - - uid: 29557 + - uid: 33015 components: - type: Transform - pos: -68.5,31.5 + pos: 3.351296,-49.252316 parent: 1 - - type: DeviceNetwork - deviceLists: - - 29884 - - 3209 - - uid: 29558 + - uid: 33016 components: - type: Transform - pos: -67.5,26.5 + pos: 34.694817,-61.56961 parent: 1 - - uid: 29559 + - uid: 33017 components: - type: Transform - pos: -66.5,22.5 + pos: 20.234701,-24.471699 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13960 - - 30092 - - uid: 29560 + - uid: 33018 components: - type: Transform - pos: -68.5,16.5 + pos: 28.840578,-34.524048 parent: 1 - - uid: 29561 +- proto: AsteroidAltRock + entities: + - uid: 3127 components: - type: Transform - pos: -73.5,31.5 + pos: 78.5,43.5 parent: 1 - - uid: 29562 + - uid: 3128 components: - type: Transform - pos: -78.5,26.5 + pos: 81.5,47.5 parent: 1 - - uid: 29563 + - uid: 3129 components: - type: Transform - pos: -72.5,20.5 + pos: 81.5,45.5 parent: 1 - - uid: 29564 + - uid: 3193 components: - type: Transform - pos: -72.5,7.5 + pos: 78.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6118 - - 29913 - - uid: 29565 + - uid: 17303 components: - type: Transform - pos: -68.5,6.5 + pos: 67.5,-4.5 parent: 1 - - uid: 29566 + - uid: 17304 components: - type: Transform - pos: -67.5,3.5 + pos: 67.5,-5.5 parent: 1 - - uid: 29567 + - uid: 17305 components: - type: Transform - pos: -67.5,-2.5 + pos: 67.5,-6.5 parent: 1 - - uid: 29568 + - uid: 17306 components: - type: Transform - pos: -66.5,-7.5 + pos: 67.5,-7.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6118 - - 29913 - - uid: 29569 + - uid: 17307 components: - type: Transform - pos: -77.5,-4.5 + pos: 67.5,-8.5 parent: 1 - - uid: 29570 + - uid: 17308 components: - type: Transform - pos: -80.5,-5.5 + pos: 67.5,-9.5 parent: 1 - - uid: 29571 + - uid: 17309 components: - type: Transform - pos: -82.5,2.5 + pos: 67.5,-10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 5124 - - 29903 - - uid: 29572 + - uid: 17310 components: - type: Transform - pos: -77.5,8.5 + pos: 66.5,-10.5 parent: 1 - - uid: 29573 + - uid: 17311 components: - type: Transform - pos: -77.5,13.5 + pos: 65.5,-10.5 parent: 1 - - uid: 29574 + - uid: 17312 components: - type: Transform - pos: -85.5,16.5 + pos: 64.5,-10.5 parent: 1 - - uid: 29575 + - uid: 17313 components: - type: Transform - pos: -112.5,21.5 + pos: 63.5,-10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 8102 - - 29918 - - uid: 29576 + - uid: 17314 components: - type: Transform - pos: -131.5,21.5 + pos: 62.5,-10.5 parent: 1 - - uid: 29577 + - uid: 17315 components: - type: Transform - pos: -142.5,22.5 + pos: 61.5,-10.5 parent: 1 - - uid: 29578 + - uid: 17316 components: - type: Transform - pos: -132.5,-9.5 + pos: 60.5,-10.5 parent: 1 - - uid: 29580 + - uid: 17317 components: - type: Transform - pos: -126.5,-1.5 + pos: 59.5,-10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 8102 - - 29918 - - uid: 29581 + - uid: 22635 components: - type: Transform - pos: -126.5,4.5 + pos: 44.5,-17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 8102 - - 29918 - - uid: 29582 + - uid: 22636 components: - type: Transform - pos: -126.5,11.5 + pos: 45.5,-16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 8102 - - 29918 - - uid: 29585 + - uid: 22637 components: - type: Transform - pos: -106.5,1.5 + pos: 45.5,-16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 42164 - - 5456 - - uid: 29586 + - uid: 22638 components: - type: Transform - pos: -111.5,13.5 + pos: 45.5,-18.5 parent: 1 - - uid: 29588 + - uid: 22639 components: - type: Transform - pos: -101.5,6.5 + pos: 45.5,-17.5 parent: 1 - - uid: 29589 + - uid: 22640 components: - type: Transform - pos: -103.5,0.5 + pos: 44.5,-18.5 parent: 1 - - uid: 29590 + - uid: 22641 components: - type: Transform - pos: -93.5,1.5 + pos: 44.5,-12.5 parent: 1 - - uid: 29591 + - uid: 22642 components: - type: Transform - pos: -90.5,-8.5 + pos: 45.5,-12.5 parent: 1 - - uid: 29592 + - uid: 22643 components: - type: Transform - pos: -93.5,-6.5 + pos: 44.5,-13.5 parent: 1 - - uid: 29593 + - uid: 23466 components: - type: Transform - pos: -93.5,-13.5 + pos: 52.5,-16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41584 - - 7586 - - 6118 - - 29913 - - uid: 29594 + - uid: 23467 components: - type: Transform - pos: -101.5,-12.5 + pos: 53.5,-16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41577 - - 30094 - - 30172 - - 16633 - - 41586 - - 41585 - - 6689 - - 29917 - - uid: 29595 + - uid: 23468 components: - type: Transform - pos: -112.5,-12.5 + pos: 52.5,-17.5 parent: 1 - - uid: 29596 + - uid: 23469 components: - type: Transform - pos: -101.5,-23.5 + pos: 46.5,-18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41584 - - 7586 - - 41586 - - 41585 - - uid: 29599 +- proto: AsteroidAltRockMining + entities: + - uid: 3003 components: - type: Transform - pos: -88.5,-25.5 + pos: 82.5,47.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 520 - - 14556 - - uid: 29600 + - uid: 3004 components: - type: Transform - pos: -84.5,-30.5 + pos: 81.5,43.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 520 - - 14556 - - uid: 29601 + - uid: 3110 components: - type: Transform - pos: -80.5,-24.5 + pos: 82.5,46.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12147 - - 1744 - - 4740 - - 4412 - - 14555 - - 13266 - - 14568 - - 4486 - - uid: 29602 + - uid: 3111 components: - type: Transform - pos: -84.5,-19.5 + pos: 82.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 520 - - 14556 - - uid: 29605 + - uid: 3112 components: - type: Transform - pos: -78.5,-19.5 + pos: 84.5,40.5 parent: 1 - - uid: 29606 + - uid: 3113 components: - type: Transform - pos: -65.5,-18.5 + pos: 82.5,41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6118 - - 29913 - - 520 - - 14556 - - 4740 - - 4412 - - uid: 29607 + - uid: 3114 components: - type: Transform - pos: -63.5,-27.5 + pos: 82.5,44.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14555 - - 13266 - - uid: 29608 + - uid: 3115 components: - type: Transform - pos: -68.5,-24.5 + pos: 85.5,40.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12147 - - 1744 - - 520 - - 14556 - - uid: 29610 + - uid: 3116 components: - type: Transform - pos: -73.5,-34.5 + pos: 83.5,41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4740 - - 4412 - - 520 - - 14556 - - uid: 29612 + - uid: 3118 components: - type: Transform - pos: -66.5,-47.5 + pos: 82.5,43.5 parent: 1 - - uid: 29613 + - uid: 3119 components: - type: Transform - pos: -61.5,-47.5 + pos: 82.5,42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41651 - - 41650 - - uid: 29614 + - uid: 3124 components: - type: Transform - pos: -57.5,-54.5 + pos: 71.5,41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41651 - - 41650 - - uid: 29615 + - uid: 3125 components: - type: Transform - pos: -58.5,-60.5 + pos: 72.5,41.5 parent: 1 - - uid: 29616 + - uid: 3126 components: - type: Transform - pos: -52.5,-59.5 + pos: 73.5,42.5 parent: 1 - - uid: 29618 + - uid: 3186 components: - type: Transform - pos: -62.5,-64.5 + pos: 73.5,41.5 parent: 1 - - uid: 29619 + - uid: 29701 components: - type: Transform - pos: -43.5,-69.5 + pos: 68.5,37.5 parent: 1 - - uid: 29620 + - uid: 29702 components: - type: Transform - pos: -39.5,-56.5 + pos: 68.5,36.5 parent: 1 - - uid: 29621 + - uid: 29703 components: - type: Transform - pos: -35.5,-54.5 + pos: 69.5,36.5 parent: 1 - - uid: 29622 + - uid: 29704 components: - type: Transform - pos: -32.5,-50.5 + pos: 70.5,36.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 29623 + - uid: 29705 components: - type: Transform - pos: -27.5,-44.5 + pos: 71.5,36.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41656 - - 41655 - - 41660 - - 41659 - - 16627 - - 30112 - - uid: 29624 + - uid: 29706 components: - type: Transform - pos: -32.5,-44.5 + pos: 71.5,37.5 parent: 1 - - uid: 29625 + - uid: 29707 components: - type: Transform - pos: -36.5,-43.5 + pos: 84.5,36.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 29626 + - uid: 29708 components: - type: Transform - pos: -32.5,-33.5 + pos: 84.5,35.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 29627 + - uid: 29711 components: - type: Transform - pos: -23.5,-33.5 + pos: 83.5,35.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 29628 + - uid: 29713 components: - type: Transform - pos: -22.5,-40.5 + pos: 83.5,34.5 parent: 1 - - uid: 29629 + - uid: 29715 components: - type: Transform - pos: -47.5,15.5 + pos: 82.5,34.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13960 - - 30092 - - uid: 29630 + - uid: 29716 components: - type: Transform - pos: -54.5,17.5 + pos: 82.5,33.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 13960 - - 30092 - - uid: 29631 + - uid: 31807 components: - type: Transform - pos: -61.5,14.5 + pos: 73.5,4.5 parent: 1 - - uid: 29632 + - uid: 31808 components: - type: Transform - pos: -31.5,10.5 + pos: 73.5,5.5 parent: 1 - - uid: 29633 + - uid: 31809 components: - type: Transform - pos: -19.5,10.5 + pos: 74.5,4.5 parent: 1 - - uid: 29634 + - uid: 31810 components: - type: Transform - pos: -22.5,21.5 + pos: 74.5,5.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12232 - - 29928 - - uid: 29636 + - uid: 31812 components: - type: Transform - pos: -23.5,4.5 + pos: 81.5,-1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14067 - - 30099 - - uid: 29637 + - uid: 31813 components: - type: Transform - pos: -27.5,4.5 + pos: 82.5,-3.5 parent: 1 - - uid: 29638 + - uid: 31814 components: - type: Transform - pos: -33.5,2.5 + pos: 83.5,-4.5 parent: 1 - - uid: 29639 + - uid: 31815 components: - type: Transform - pos: -30.5,-12.5 + pos: 83.5,-14.5 parent: 1 - - uid: 29640 + - uid: 31816 components: - type: Transform - pos: -29.5,-19.5 + pos: 80.5,-18.5 parent: 1 - - uid: 29641 + - uid: 31818 components: - type: Transform - pos: -17.5,-12.5 + pos: 75.5,-23.5 parent: 1 - - uid: 29642 + - uid: 31819 components: - type: Transform - pos: -19.5,-3.5 + pos: 75.5,-24.5 parent: 1 - - uid: 29649 + - uid: 31822 components: - type: Transform - pos: -0.5,5.5 + pos: 76.5,-23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14068 - - 30100 - - 41783 - - 41784 - - 41795 - - 36730 - - uid: 29650 + - uid: 31823 components: - type: Transform - pos: -0.5,-0.5 + pos: 76.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14068 - - 30100 - - 14067 - - 30099 - - uid: 29651 + - uid: 31824 components: - type: Transform - pos: -14.5,-0.5 + pos: 73.5,-25.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14067 - - 30099 - - 14069 - - 30101 - - uid: 29652 + - uid: 31825 components: - type: Transform - pos: -7.5,0.5 + pos: 73.5,-26.5 parent: 1 - - uid: 29653 + - uid: 31826 components: - type: Transform - pos: 6.5,0.5 + pos: 72.5,-26.5 parent: 1 - - uid: 29654 + - uid: 31827 components: - type: Transform - pos: 12.5,-0.5 + pos: 71.5,-26.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41773 - - 41772 - - 14068 - - 30100 - - 14067 - - 30099 - - uid: 29655 + - uid: 32148 components: - type: Transform - pos: -0.5,-11.5 + pos: 43.5,-7.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 61 - - 29780 - - uid: 29656 + - uid: 32149 components: - type: Transform - pos: -6.5,-10.5 + pos: 44.5,-7.5 parent: 1 - - uid: 29657 + - uid: 32150 components: - type: Transform - pos: 5.5,-10.5 + pos: 44.5,-6.5 parent: 1 - - uid: 29658 +- proto: AtmosDeviceFanTiny + entities: + - uid: 541 components: - type: Transform - pos: 5.5,-14.5 + pos: -72.5,45.5 parent: 1 - - uid: 29659 + - uid: 548 components: - type: Transform - pos: -6.5,-14.5 + pos: -64.5,45.5 parent: 1 - - uid: 29660 + - uid: 550 components: - type: Transform - pos: -0.5,-19.5 + pos: -46.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14069 - - 30101 - - uid: 29661 + - uid: 2036 components: - type: Transform - pos: -0.5,-22.5 + pos: -30.5,42.5 parent: 1 - - uid: 29662 + - uid: 2179 components: - type: Transform - pos: -8.5,-22.5 + pos: -74.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16627 - - 30112 - - 61 - - 29780 - - uid: 29664 + - uid: 2214 components: - type: Transform - pos: -8.5,-26.5 + pos: -66.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14069 - - 30101 - - uid: 29665 + - uid: 2464 components: - type: Transform - pos: -11.5,-32.5 + pos: -48.5,45.5 parent: 1 - - uid: 29666 + - uid: 5442 components: - type: Transform - pos: -8.5,-30.5 + pos: -31.5,42.5 parent: 1 - - uid: 29667 + - uid: 5579 components: - type: Transform - pos: -4.5,-31.5 + pos: 3.5,51.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 1585 - - 30102 - - uid: 29669 + - uid: 5587 components: - type: Transform - pos: -5.5,-36.5 + pos: -34.5,42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41771 - - 41770 - - uid: 29671 + - uid: 5661 components: - type: Transform - pos: -11.5,-39.5 + pos: -33.5,42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16627 - - 30112 - - uid: 29675 + - uid: 5991 components: - type: Transform - pos: -39.5,14.5 + pos: 28.5,5.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12232 - - 29928 - - uid: 29676 + - uid: 5992 components: - type: Transform - pos: -41.5,4.5 + pos: 28.5,9.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 8313 - - 29926 - - uid: 29677 + - uid: 9647 components: - type: Transform - pos: -47.5,1.5 + pos: -25.5,10.5 parent: 1 - - uid: 29678 + - uid: 10515 components: - type: Transform - pos: -58.5,1.5 + pos: 22.5,-41.5 parent: 1 - - uid: 29679 + - uid: 11108 components: - type: Transform - pos: -57.5,-4.5 + pos: -26.5,-23.5 parent: 1 - - uid: 29680 + - uid: 12719 components: - type: Transform - pos: -55.5,6.5 + pos: -97.5,38.5 parent: 1 - - uid: 29681 + - uid: 12720 components: - type: Transform - pos: -43.5,-9.5 + pos: -87.5,45.5 parent: 1 - - uid: 29682 + - uid: 12721 components: - type: Transform - pos: -45.5,-14.5 + pos: -87.5,38.5 parent: 1 - - uid: 29683 + - uid: 12788 components: - type: Transform - pos: -51.5,-14.5 + pos: -97.5,45.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6118 - - 29913 - - uid: 29684 + - uid: 16635 components: - type: Transform - pos: -53.5,-10.5 + pos: -137.5,-24.5 parent: 1 - - uid: 29685 + - uid: 19249 components: - type: Transform - pos: -57.5,-10.5 + pos: -45.5,-78.5 parent: 1 - - uid: 29686 + - uid: 24591 components: - type: Transform - pos: -60.5,-10.5 + pos: -5.5,-65.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6118 - - 29913 - - uid: 29687 + - uid: 24592 components: - type: Transform - pos: -48.5,-22.5 + pos: -3.5,-65.5 parent: 1 - - uid: 29688 + - uid: 24593 components: - type: Transform - pos: -47.5,-27.5 + pos: 2.5,-65.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41651 - - 41650 - - uid: 29689 + - uid: 24594 components: - type: Transform - pos: -54.5,-20.5 + pos: 4.5,-65.5 parent: 1 - - uid: 29690 + - uid: 24595 components: - type: Transform - pos: -56.5,-29.5 + pos: 16.5,-65.5 parent: 1 - - uid: 29691 + - uid: 24596 components: - type: Transform - pos: -47.5,-31.5 + pos: 18.5,-65.5 parent: 1 - - uid: 29692 + - uid: 24597 components: - type: Transform - pos: -57.5,-34.5 + pos: 24.5,-65.5 parent: 1 - - uid: 29693 + - uid: 24598 components: - type: Transform - pos: -44.5,-35.5 + pos: 26.5,-65.5 parent: 1 - - uid: 29694 + - uid: 24599 components: - type: Transform - pos: -45.5,-44.5 + pos: 38.5,-65.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41651 - - 41650 - - uid: 29695 + - uid: 24600 components: - type: Transform - pos: -49.5,-49.5 + pos: 40.5,-65.5 parent: 1 - - uid: 29696 + - uid: 24601 components: - type: Transform - pos: -49.5,-55.5 + pos: 46.5,-65.5 parent: 1 - - uid: 29697 + - uid: 24602 components: - type: Transform - pos: -52.5,-43.5 + pos: 48.5,-65.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 30110 - - 14983 - - uid: 29698 + - uid: 24931 components: - type: Transform - pos: -40.5,-18.5 + pos: -41.5,-78.5 parent: 1 - - uid: 29699 + - uid: 24947 components: - type: Transform - pos: -33.5,-26.5 + pos: -49.5,-78.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16627 - - 30112 - - uid: 29700 + - uid: 36459 components: - type: Transform - pos: -15.5,-37.5 + pos: -124.5,27.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - 41666 - - 41665 - - 41667 - - 41668 - - 1585 - - 30102 - - 14069 - - 30101 - - uid: 29709 + - uid: 36464 components: - type: Transform - pos: 9.5,-46.5 + pos: -153.5,-32.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41667 - - 41668 - - 16631 - - 30168 - - 41740 - - 41741 - - 30167 - - 16630 - - 41747 - - 41748 - - 41746 - - 30174 - - uid: 29710 + - uid: 36465 components: - type: Transform - pos: 17.5,-34.5 + pos: -153.5,-33.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41745 - - 41744 - - 41738 - - 41737 - - 41740 - - 41741 - - 16629 - - 30114 - - uid: 29714 + - uid: 41739 components: - type: Transform - pos: 27.5,-50.5 + pos: -93.5,-89.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16629 - - 30114 - - 41758 - - 41757 - - uid: 29718 + - uid: 41810 components: - type: Transform - pos: 7.5,-31.5 + pos: -90.5,-86.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41771 - - 41770 - - uid: 29719 + - uid: 42960 components: - type: Transform - pos: 15.5,-20.5 + pos: -25.5,-24.5 parent: 1 - - uid: 29720 + - uid: 42961 components: - type: Transform - pos: 20.5,-18.5 + pos: -24.5,-24.5 parent: 1 - - uid: 29721 + - uid: 42962 components: - type: Transform - pos: 21.5,-13.5 + pos: -23.5,-24.5 parent: 1 - - uid: 29722 + - uid: 42963 components: - type: Transform - pos: 14.5,-13.5 + pos: -22.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14068 - - 30100 - - uid: 29723 +- proto: AtmosFixBlockerMarker + entities: + - uid: 22173 components: - type: Transform - pos: 17.5,-1.5 + pos: -103.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14068 - - 30100 - - 41783 - - 41784 - - uid: 29725 + - uid: 22174 components: - type: Transform - pos: 24.5,6.5 + pos: -103.5,-42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41783 - - 41784 - - uid: 29731 + - uid: 22175 components: - type: Transform - pos: -73.5,38.5 + pos: -103.5,-43.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16632 - - 30171 - - 4090 - - 29902 - - uid: 29769 + - uid: 22176 components: - type: Transform - pos: -72.5,27.5 + pos: -102.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 29884 - - 3209 - - uid: 29778 + - uid: 22177 components: - type: Transform - pos: -36.5,16.5 + pos: -102.5,-42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 12232 - - 29928 - - uid: 29779 + - uid: 22178 components: - type: Transform - pos: -18.5,22.5 + pos: -102.5,-43.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41576 - - 41575 - - 13997 - - 30096 - - 13988 - - 30095 - - 14067 - - 30099 - - uid: 29790 + - uid: 22179 components: - type: Transform - pos: -65.5,9.5 + pos: -101.5,-41.5 parent: 1 - - uid: 29848 + - uid: 22180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-46.5 + pos: -101.5,-42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 30110 - - 14983 - - 14555 - - 13266 - - uid: 29858 + - uid: 22304 components: - type: Transform - pos: -92.5,23.5 + pos: -101.5,-43.5 parent: 1 - - uid: 29862 + - uid: 40755 components: - type: Transform - pos: -73.5,-13.5 + pos: -26.5,-61.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 6689 - - 29917 - - 12147 - - 1744 - - uid: 29881 + - uid: 40756 components: - type: Transform - pos: -97.5,12.5 + pos: -26.5,-62.5 parent: 1 - - uid: 29908 + - uid: 40757 components: - type: Transform - pos: -109.5,-2.5 + pos: -26.5,-63.5 parent: 1 - - uid: 29909 + - uid: 40758 components: - type: Transform - pos: -115.5,-0.5 + pos: -26.5,-64.5 parent: 1 - - uid: 29914 + - uid: 40759 components: - type: Transform - pos: -63.5,2.5 + pos: -25.5,-61.5 parent: 1 - - uid: 29916 + - uid: 40760 components: - type: Transform - pos: -110.5,-8.5 + pos: -25.5,-62.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 5124 - - 29903 - - 8102 - - 29918 - - 41577 - - 30094 - - 6689 - - 29917 - - 42164 - - 5456 - - uid: 29920 + - uid: 40761 components: - type: Transform - pos: -97.5,-29.5 + pos: -25.5,-63.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 30172 - - 16633 - - 41646 - - 41645 - - 6689 - - 29917 - - 14555 - - 13266 - - uid: 29936 + - uid: 40762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-31.5 + pos: -25.5,-64.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4740 - - 4412 - - uid: 30022 + - uid: 40763 components: - type: Transform - pos: -44.5,-52.5 + pos: -24.5,-61.5 parent: 1 - - uid: 30023 + - uid: 40764 components: - type: Transform - pos: -40.5,-38.5 + pos: -24.5,-62.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 30279 - - 30280 - - uid: 30057 + - uid: 40765 components: - type: Transform - pos: -79.5,-30.5 + pos: -24.5,-63.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 520 - - 14556 - - uid: 30083 + - uid: 40766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-7.5 + pos: -24.5,-64.5 parent: 1 - - uid: 30088 + - uid: 40767 components: - type: Transform - pos: -50.5,10.5 + pos: -23.5,-61.5 parent: 1 - - uid: 30143 + - uid: 40768 components: - type: Transform - pos: -25.5,-6.5 + pos: -23.5,-62.5 parent: 1 - - uid: 30152 + - uid: 40769 components: - type: Transform - pos: -27.5,-20.5 + pos: -23.5,-63.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14069 - - 30101 - - uid: 30170 + - uid: 40770 components: - type: Transform - pos: 12.5,15.5 + pos: -23.5,-64.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14067 - - 30099 - - uid: 30207 + - uid: 40771 components: - type: Transform - pos: 8.5,-41.5 + pos: -22.5,-61.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16631 - - 30168 - - 16629 - - 30114 - - 14572 - - 30109 - - uid: 30232 + - uid: 40772 components: - type: Transform - pos: -56.5,-37.5 + pos: -22.5,-62.5 parent: 1 - - uid: 30287 + - uid: 40773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-55.5 + pos: -22.5,-63.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41656 - - 41655 - - 41660 - - 41659 - - 41663 - - 41662 - - 16627 - - 30112 - - uid: 30288 + - uid: 40774 components: - type: Transform - pos: -28.5,-50.5 + pos: -22.5,-64.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 30321 + - uid: 40778 components: - type: Transform - pos: -44.5,-74.5 + pos: -108.5,-50.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41663 - - 41662 - - uid: 33442 + - uid: 40779 components: - type: Transform - pos: -153.5,6.5 + pos: -107.5,-50.5 parent: 1 - - uid: 33738 + - uid: 40780 components: - type: Transform - pos: -100.5,31.5 + pos: -106.5,-50.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16632 - - 30171 - - uid: 33761 + - uid: 40781 components: - type: Transform - pos: -81.5,38.5 + pos: -111.5,-55.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 29884 - - 3209 - - uid: 36733 + - uid: 40782 components: - type: Transform - pos: -102.5,-43.5 + pos: -110.5,-55.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4941 - - uid: 41388 + - uid: 40783 components: - type: Transform - pos: -109.5,-81.5 + pos: -109.5,-55.5 parent: 1 - - uid: 41491 + - uid: 40784 components: - type: Transform - pos: -46.5,34.5 + pos: -111.5,-57.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 4090 - - 29902 - - 41549 - - 41548 - - uid: 41492 + - uid: 40785 components: - type: Transform - pos: -39.5,34.5 + pos: -110.5,-57.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 96 - - 29883 - - 41550 - - 41551 - - uid: 41493 + - uid: 40786 components: - type: Transform - pos: -33.5,33.5 + pos: -109.5,-57.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41549 - - 41548 - - 41557 - - 41556 - - 12232 - - 29928 - - uid: 41494 + - uid: 40787 components: - type: Transform - pos: -17.5,40.5 + pos: -111.5,-61.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41557 - - 41556 - - uid: 41495 + - uid: 40788 components: - type: Transform - pos: -12.5,29.5 + pos: -110.5,-61.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41557 - - 41556 - - 41568 - - 30173 - - uid: 41496 + - uid: 40789 components: - type: Transform - pos: -5.5,37.5 + pos: -109.5,-61.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41568 - - 30173 - - 41572 - - 41571 - - uid: 41497 + - uid: 40790 components: - type: Transform - pos: 4.5,36.5 + pos: -105.5,-74.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41569 - - 41570 - - uid: 41498 + - uid: 40791 components: - type: Transform - pos: -12.5,36.5 + pos: -105.5,-75.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41557 - - 41556 - - 41569 - - 41570 - - 41576 - - 41575 - - uid: 41499 + - uid: 40792 components: - type: Transform - pos: -23.5,36.5 + pos: -105.5,-76.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41550 - - 41551 - - 41561 - - 41560 - - 41568 - - 30173 - - 41576 - - 41575 - - uid: 41500 + - uid: 40793 components: - type: Transform - pos: -111.5,-12.5 + pos: -105.5,-77.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41584 - - 7586 - - uid: 41501 + - uid: 40794 components: - type: Transform - pos: -104.5,-23.5 + pos: -104.5,-74.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41584 - - 7586 - - 30172 - - 16633 - - 41588 - - 41587 - - 41620 - - 41619 - - 41597 - - 41596 - - uid: 41502 + - uid: 40795 components: - type: Transform - pos: -106.5,-31.5 + pos: -104.5,-75.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41586 - - 41585 - - uid: 41503 + - uid: 40796 components: - type: Transform - pos: -113.5,-28.5 + pos: -104.5,-76.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41586 - - 41585 - - 41602 - - 41601 - - 41598 - - 41599 - - uid: 41504 + - uid: 40797 components: - type: Transform - pos: -111.5,-39.5 + pos: -104.5,-77.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41597 - - 41596 - - uid: 41505 + - uid: 40798 components: - type: Transform - pos: -118.5,-46.5 + pos: -103.5,-74.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41598 - - 41599 - - uid: 41506 + - uid: 40799 components: - type: Transform - pos: -137.5,-35.5 + pos: -103.5,-75.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41597 - - 41596 - - uid: 41507 + - uid: 40800 components: - type: Transform - pos: -119.5,-19.5 + pos: -103.5,-76.5 parent: 1 - - uid: 41508 + - uid: 40801 components: - type: Transform - pos: -118.5,-65.5 + pos: -103.5,-77.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41641 - - 41640 - - uid: 41509 + - uid: 40802 components: - type: Transform - pos: 27.5,-38.5 + pos: -102.5,-74.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16631 - - 30168 - - uid: 41510 + - uid: 40803 components: - type: Transform - pos: -90.5,-69.5 + pos: -102.5,-75.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41637 - - 41636 - - type: AtmosDevice - joinedGrid: 1 - - uid: 41511 + - uid: 40804 components: - type: Transform - pos: -97.5,-44.5 + pos: -102.5,-76.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41637 - - 41636 - - uid: 41512 + - uid: 40805 components: - type: Transform - pos: -98.5,-61.5 + pos: -102.5,-77.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41639 - - 41638 - - 41641 - - 41640 - - 41646 - - 41645 - - uid: 41513 + - uid: 40806 components: - type: Transform - pos: -111.5,-69.5 + pos: -101.5,-74.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41637 - - 41636 - - uid: 41516 + - uid: 40807 components: - type: Transform - pos: -16.5,-70.5 + pos: -101.5,-75.5 parent: 1 - - uid: 41519 + - uid: 40808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-58.5 + pos: -101.5,-76.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16627 - - 30112 - - 41759 - - 41760 - - uid: 41520 + - uid: 40809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 + pos: -101.5,-77.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16627 - - 30112 - - 16631 - - 30168 - - 16629 - - 30114 - - uid: 41521 + - uid: 40810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-52.5 + pos: -94.5,-50.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16629 - - 30114 - - 41759 - - 41760 - - uid: 41522 + - uid: 40811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-52.5 + pos: -94.5,-51.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16629 - - 30114 - - 41759 - - 41760 - - uid: 41523 +- proto: AtmosFixFreezerMarker + entities: + - uid: 11128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-59.5 + pos: -25.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41666 - - 41665 - - 41747 - - 41748 - - 41746 - - 30174 - - 41758 - - 41757 - - uid: 41524 + - uid: 11129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-59.5 + pos: -25.5,-23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 30167 - - 16630 - - 41759 - - 41760 - - 41750 - - 41749 - - 41755 - - 41756 - - uid: 41525 + - uid: 11130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-56.5 + pos: -24.5,-22.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41758 - - 41757 - - uid: 41526 + - uid: 11131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-58.5 + pos: -24.5,-23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41758 - - 41757 - - 41754 - - 41753 - - uid: 41527 + - uid: 11132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-53.5 + pos: -24.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41755 - - 41756 - - 41752 - - 41751 - - uid: 41528 + - uid: 11133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-44.5 + pos: -23.5,-23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41754 - - 41753 - - uid: 41529 + - uid: 11134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-45.5 + pos: -23.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16631 - - 30168 - - 16629 - - 30114 - - 30167 - - 16630 - - 41750 - - 41749 - - 41752 - - 41751 - - uid: 41530 + - uid: 11135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 + pos: -22.5,-24.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41745 - - 41744 - - 41774 - - 41775 - - uid: 41531 + - uid: 11136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-19.5 + pos: -22.5,-23.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16631 - - 30168 - - 41773 - - 41772 - - 14068 - - 30100 - - uid: 41532 + - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 + pos: -23.5,-22.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41773 - - 41772 - - 14068 - - 30100 - - uid: 41574 + - uid: 33589 components: - type: Transform - pos: 3.5,42.5 + pos: 23.5,-40.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41572 - - 41571 - - uid: 41600 + - uid: 33590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-28.5 + pos: 23.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41597 - - 41596 - - uid: 41625 + - uid: 33594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-82.5 + pos: 23.5,-42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41624 - - 41623 - - uid: 41643 + - uid: 33595 components: - type: Transform - pos: -103.5,-76.5 + pos: 24.5,-40.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41642 - - uid: 41644 + - uid: 33596 components: - type: Transform - pos: -95.5,-68.5 + pos: 24.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41637 - - 41636 - - uid: 41649 + - uid: 33600 components: - type: Transform - pos: -57.5,-42.5 + pos: 24.5,-42.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41651 - - 41650 - - uid: 41657 + - uid: 34823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-48.5 + pos: -24.5,11.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16488 - - 30111 - - uid: 41685 + - uid: 34824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 + pos: -24.5,10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 16631 - - 30168 - - 16629 - - 30114 - - uid: 41735 + - uid: 34825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 + pos: -24.5,9.5 parent: 1 - - uid: 41776 + - uid: 34826 components: - type: Transform - pos: 49.5,-9.5 + pos: -23.5,11.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41774 - - 41775 - - uid: 41782 + - uid: 34827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 + pos: -23.5,10.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14068 - - 30100 - - 14069 - - 30101 - - 61 - - 29780 - - uid: 41788 + - uid: 34828 components: - type: Transform - pos: 17.5,6.5 + pos: -23.5,9.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 14067 - - 30099 -- proto: AirSensorAssembly - entities: - - uid: 30611 + - uid: 34829 components: - type: Transform - pos: -120.976,-10.982209 + pos: -22.5,11.5 parent: 1 -- proto: AirTank - entities: - - uid: 32156 + - uid: 34830 components: - type: Transform - pos: -111.61989,-77.355354 + pos: -22.5,10.5 parent: 1 - - uid: 32157 + - uid: 34831 components: - type: Transform - pos: -111.3178,-77.470024 + pos: -22.5,9.5 parent: 1 - - uid: 36723 + - uid: 34832 components: - type: Transform - pos: -15.667404,-63.27983 + pos: -21.5,11.5 parent: 1 - - uid: 36724 + - uid: 34833 components: - type: Transform - pos: -15.467403,-63.46746 + pos: -21.5,10.5 parent: 1 -- proto: AirTankFilled - entities: - - uid: 12707 + - uid: 34834 components: - type: Transform - pos: -88.5214,-30.403326 + pos: -21.5,9.5 parent: 1 -- proto: AltarSpawner - entities: - - uid: 6937 + - uid: 34835 components: - type: Transform - pos: -27.5,-33.5 + pos: -20.5,11.5 parent: 1 - - uid: 8753 + - uid: 34836 components: - type: Transform - pos: -64.5,7.5 + pos: -20.5,10.5 parent: 1 -- proto: AmeController - entities: - - uid: 3221 + - uid: 34837 components: - type: Transform - pos: -116.5,-23.5 + pos: -20.5,9.5 parent: 1 - - uid: 10232 + - uid: 34838 components: - - type: MetaData - name: Prison AME controller - type: Transform - pos: 16.5,20.5 + pos: -19.5,11.5 parent: 1 - - type: ContainerContainer - containers: - AMEController-fuelJarContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: 11376 - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - fuelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: AmeJar - entities: - - uid: 4967 + - uid: 34839 components: - type: Transform - pos: 18.664925,19.617306 + pos: -19.5,10.5 parent: 1 - - uid: 6186 + - uid: 34840 components: - type: Transform - pos: 18.39409,19.62773 + pos: -19.5,9.5 parent: 1 - - uid: 9348 + - uid: 34841 components: - type: Transform - pos: -41.664303,29.800814 + pos: -18.5,11.5 parent: 1 - - uid: 11376 + - uid: 34842 components: - type: Transform - parent: 10232 - - type: Physics - canCollide: False -- proto: AmeShielding - entities: - - uid: 11383 + pos: -18.5,10.5 + parent: 1 + - uid: 34843 components: - type: Transform - pos: 17.5,21.5 + pos: -18.5,9.5 parent: 1 - - uid: 11384 + - uid: 34844 components: - type: Transform - pos: 15.5,21.5 + pos: -17.5,11.5 parent: 1 - - uid: 11393 + - uid: 34845 components: - type: Transform - pos: 16.5,21.5 + pos: -17.5,10.5 parent: 1 - - uid: 11409 + - uid: 34846 components: - type: Transform - pos: 15.5,22.5 + pos: -17.5,9.5 parent: 1 - - uid: 11411 + - uid: 34847 components: - type: Transform - pos: 16.5,22.5 + pos: -20.5,8.5 parent: 1 - - uid: 11426 + - uid: 34848 components: - type: Transform - pos: 17.5,22.5 + pos: -19.5,8.5 parent: 1 - - uid: 11429 + - uid: 34849 components: - type: Transform - pos: 17.5,23.5 + pos: -18.5,8.5 parent: 1 - - uid: 11458 + - uid: 34850 components: - type: Transform - pos: 16.5,23.5 + pos: -17.5,8.5 parent: 1 - - uid: 11459 + - uid: 34851 components: - type: Transform - pos: 15.5,23.5 + pos: -19.5,12.5 parent: 1 -- proto: Amphora - entities: - - uid: 9041 + - uid: 34852 components: - type: Transform - pos: -30.5,-32.5 + pos: -18.5,12.5 parent: 1 - - type: SolutionContainerManager - solutions: - jar: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 120 - name: null - reagents: - - data: null - ReagentId: Silicon - Quantity: 40 - - uid: 9047 + - uid: 34853 components: - type: Transform - pos: -34.5,-32.5 + pos: -17.5,12.5 parent: 1 - - type: SolutionContainerManager - solutions: - jar: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 120 - name: null - reagents: - - data: null - ReagentId: Hydrogen - Quantity: 100 - - uid: 18981 + - uid: 34854 components: - type: Transform - pos: -35.5,-40.5 + pos: -16.5,12.5 parent: 1 - - type: SolutionContainerManager - solutions: - jar: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 120 - name: null - reagents: - - data: null - ReagentId: Goldschlager - Quantity: 35 - - uid: 33163 + - uid: 34855 components: - type: Transform - pos: -26.45357,-31.073204 + pos: -16.5,11.5 parent: 1 - - type: SolutionContainerManager - solutions: - jar: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 120 - name: null - reagents: - - data: null - ReagentId: DemonsBlood - Quantity: 15 - - uid: 33164 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 22169 components: - type: Transform - pos: -22.589075,-37.54056 + pos: -104.5,-50.5 parent: 1 - - uid: 33165 + - uid: 22170 components: - type: Transform - pos: -20.464073,-37.571835 + pos: -104.5,-51.5 parent: 1 - - type: SolutionContainerManager - solutions: - jar: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 120 - name: null - reagents: - - data: null - ReagentId: HolyWater - Quantity: 60 -- proto: AnomalyScanner - entities: - - uid: 20881 + - uid: 22171 components: - type: Transform - pos: -39.430927,-68.88715 + pos: -103.5,-50.5 parent: 1 -- proto: AnomalyVesselCircuitboard - entities: - - uid: 20880 + - uid: 22172 components: - type: Transform - pos: -35.4169,-41.366516 + pos: -103.5,-51.5 parent: 1 -- proto: AntiAnomalyZone +- proto: AtmosFixOxygenMarker entities: - - uid: 42382 + - uid: 22165 components: - type: Transform - pos: 68.5,-30.5 + pos: -101.5,-50.5 parent: 1 - - uid: 42384 + - uid: 22166 components: - type: Transform - pos: 97.5,34.5 + pos: -101.5,-51.5 parent: 1 - - uid: 42385 + - uid: 22167 components: - type: Transform - pos: 78.5,2.5 + pos: -100.5,-50.5 parent: 1 - - uid: 42386 + - uid: 22168 components: - type: Transform - pos: 41.5,4.5 + pos: -100.5,-51.5 parent: 1 - - uid: 42387 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 40775 components: - type: Transform - pos: 58.5,2.5 + pos: -109.5,-59.5 parent: 1 - - uid: 42388 + - uid: 40776 components: - type: Transform - pos: 78.5,-17.5 + pos: -110.5,-59.5 parent: 1 - - uid: 42389 + - uid: 40777 components: - type: Transform - pos: -98.5,38.5 + pos: -111.5,-59.5 parent: 1 - - uid: 42390 +- proto: Autolathe + entities: + - uid: 5047 components: - type: Transform - pos: 55.5,-29.5 + pos: -52.5,16.5 parent: 1 - - uid: 42391 + - uid: 5434 components: - type: Transform - pos: -61.5,45.5 + pos: -41.5,30.5 parent: 1 - - uid: 42392 + - uid: 7461 components: - type: Transform - pos: -86.5,38.5 + pos: -23.5,19.5 parent: 1 - - uid: 42397 + - uid: 8852 components: - type: Transform - pos: 6.5,-65.5 + pos: -102.5,-14.5 parent: 1 - - uid: 42398 + - uid: 9791 components: - type: Transform - pos: -99.5,-49.5 + pos: -104.5,7.5 parent: 1 - - uid: 42399 + - uid: 32166 components: - type: Transform - pos: -105.5,-56.5 + pos: -77.5,18.5 parent: 1 - - uid: 42400 +- proto: BackgammonBoard + entities: + - uid: 15091 components: - type: Transform - pos: 26.5,-65.5 + rot: -1.5707963267948966 rad + pos: -94.069756,24.58025 parent: 1 - - uid: 42401 +- proto: BagpipeInstrument + entities: + - uid: 36971 components: - type: Transform - pos: 46.5,-65.5 + rot: -1.5707963267948966 rad + pos: -108.467255,-46.383945 parent: 1 - - uid: 42402 +- proto: BalloonCorgi + entities: + - uid: 13526 components: - type: Transform - pos: -3.5,-65.5 + pos: -93.12421,25.546886 parent: 1 - - uid: 42403 + - uid: 41230 components: - type: Transform - pos: -21.5,-63.5 + pos: 27.763897,22.591543 parent: 1 -- proto: AntiAnomalyZone20 +- proto: BananaPhoneInstrument entities: - - uid: 42381 + - uid: 31066 components: - type: Transform - pos: 33.5,35.5 + pos: -66.29403,3.7992694 parent: 1 - - uid: 42383 +- proto: BannerBlue + entities: + - uid: 6523 components: - type: Transform - pos: 73.5,34.5 + pos: -128.5,0.5 parent: 1 - - uid: 42393 + - uid: 6524 components: - type: Transform - pos: -146.5,13.5 + pos: -128.5,-3.5 parent: 1 - - uid: 42394 +- proto: BannerCargo + entities: + - uid: 7544 components: - type: Transform - pos: -151.5,-59.5 + pos: -41.5,26.5 parent: 1 - - uid: 42395 + - uid: 7545 components: - type: Transform - pos: -146.5,-6.5 + pos: -30.5,26.5 parent: 1 - - uid: 42396 +- proto: BannerEngineering + entities: + - uid: 9838 components: - type: Transform - pos: -136.5,-81.5 + pos: -97.5,-15.5 parent: 1 -- proto: AntiPoisonMedipen + - uid: 32284 + components: + - type: Transform + pos: -97.5,-18.5 + parent: 1 +- proto: BannerMedical entities: - - uid: 9702 + - uid: 9110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.38498,-19.392637 + pos: -73.5,-15.5 parent: 1 -- proto: APCBasic + - uid: 9111 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 1 +- proto: BannerNanotrasen entities: - - uid: 2472 + - uid: 5141 components: - - type: MetaData - name: CE's APC - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-29.5 + pos: -101.5,2.5 parent: 1 - - uid: 5988 + - uid: 5142 components: - - type: MetaData - name: outer starboard maints APC - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,8.5 + pos: -99.5,2.5 parent: 1 - - uid: 5989 + - uid: 31107 components: - - type: MetaData - name: main hall APC - type: Transform - pos: -96.5,-10.5 + pos: -58.5,19.5 parent: 1 - - uid: 8457 + - uid: 31108 components: - - type: MetaData - name: upper portside maints APC - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-5.5 + pos: -58.5,23.5 parent: 1 - - uid: 8458 +- proto: BannerScience + entities: + - uid: 11958 components: - - type: MetaData - name: race track APC - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-0.5 + pos: -21.5,-27.5 parent: 1 - - uid: 14986 + - uid: 11959 components: - - type: MetaData - name: prison yard securtity grille APC - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 + pos: -29.5,-27.5 parent: 1 - - uid: 18084 +- proto: BannerSecurity + entities: + - uid: 3994 components: - - type: MetaData - name: mystagogue's office APC - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-39.5 + pos: -50.5,-18.5 parent: 1 - - uid: 18085 + - uid: 3995 components: - - type: MetaData - name: psionic mantis office/epistemics hall APC - type: Transform - pos: -31.5,-37.5 + pos: -45.5,-18.5 parent: 1 - - uid: 18478 +- proto: BarberScissors + entities: + - uid: 13261 components: - - type: MetaData - name: security lobby/holding cells APC - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-32.5 + pos: -85.43389,-6.36954 parent: 1 - - uid: 18851 + - uid: 14692 components: - - type: MetaData - name: arcade APC - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-7.5 + pos: -85.663055,-6.3382688 parent: 1 - - uid: 18871 +- proto: Barricade + entities: + - uid: 4348 components: - - type: MetaData - name: lower portside APC - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-77.5 + pos: -75.5,-48.5 parent: 1 - - uid: 19428 + - uid: 10469 components: - - type: MetaData - name: port-forward maints APC - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,23.5 + pos: 0.5,-42.5 parent: 1 - - uid: 19437 + - uid: 12450 components: - - type: MetaData - name: captain's office/vault APC - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,0.5 + pos: -72.5,-57.5 parent: 1 - - uid: 19613 + - uid: 12452 components: - - type: MetaData - name: court room APC - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,12.5 + pos: -72.5,-58.5 parent: 1 - - uid: 19615 + - uid: 13692 components: - - type: MetaData - name: lawyer's office/barber shop/clothing store APC - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-7.5 + rot: 1.5707963267948966 rad + pos: -64.5,-68.5 parent: 1 - - uid: 19865 + - uid: 13693 components: - - type: MetaData - name: arrivals sec point APC - type: Transform - pos: -77.5,29.5 + rot: 1.5707963267948966 rad + pos: -64.5,-69.5 parent: 1 - - uid: 19949 + - uid: 13694 components: - - type: MetaData - name: EVA APC - type: Transform - pos: -66.5,29.5 + rot: 1.5707963267948966 rad + pos: -64.5,-67.5 parent: 1 - - uid: 20018 + - uid: 15785 components: - - type: MetaData - name: service room APC - type: Transform - pos: -59.5,18.5 + pos: -78.5,-71.5 parent: 1 - - uid: 20101 + - uid: 15786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,11.5 + pos: -77.5,-71.5 parent: 1 - - uid: 20464 + - uid: 16333 components: - - type: MetaData - name: upper dorms APC - type: Transform - pos: -50.5,31.5 + pos: -121.5,15.5 parent: 1 - - uid: 20635 + - uid: 29611 components: - - type: MetaData - name: lower midstation maints APC - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-27.5 + pos: -84.5,-49.5 parent: 1 - - uid: 20845 + - uid: 30684 components: - type: Transform - pos: -25.5,-22.5 + pos: 10.5,-43.5 parent: 1 - - uid: 20846 + - uid: 30947 components: - - type: MetaData - name: janitorial APC - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,27.5 + pos: -48.5,-58.5 parent: 1 - - uid: 20947 + - uid: 30948 components: - - type: MetaData - name: foreward starboard maints APC - type: Transform - pos: -24.5,15.5 + pos: -47.5,-58.5 parent: 1 - - uid: 20950 + - uid: 31206 components: - - type: MetaData - name: dining room APC - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,0.5 + pos: -80.5,-63.5 parent: 1 - - uid: 21015 + - uid: 31223 components: - - type: MetaData - name: kitchen breakroom APC - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,11.5 + pos: -82.5,-69.5 parent: 1 - - uid: 21016 + - uid: 31224 components: - - type: MetaData - name: freezer APC - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,11.5 + pos: -81.5,-73.5 parent: 1 - - uid: 21218 + - uid: 31238 components: - - type: MetaData - name: recycling room APC - type: Transform - pos: -12.5,28.5 + pos: -78.5,-75.5 parent: 1 - - uid: 21322 + - uid: 33897 components: - - type: MetaData - name: prison AME APC - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,15.5 + pos: -76.5,-60.5 parent: 1 - - uid: 21399 + - uid: 33921 components: - - type: MetaData - name: prison lower hall/entrance APC - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: -84.5,-68.5 parent: 1 - - uid: 21647 + - uid: 34170 components: - - type: MetaData - name: prison custodial APC - type: Transform - pos: 13.5,-11.5 + pos: -100.5,-32.5 parent: 1 - - uid: 21673 + - uid: 34171 components: - - type: MetaData - name: prison guard main post APC - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 + pos: -99.5,-31.5 parent: 1 - - uid: 31543 + - uid: 36364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,6.5 + pos: -131.5,-51.5 parent: 1 - - uid: 32431 + - uid: 36365 components: - - type: MetaData - name: particle accelerator APC - type: Transform - pos: 58.5,-38.5 + pos: -128.5,-52.5 parent: 1 - - uid: 38554 + - uid: 36366 components: - - type: MetaData - name: mailroom APC - type: Transform - pos: -44.5,39.5 + pos: -127.5,-52.5 parent: 1 - - uid: 38709 + - uid: 36367 components: - - type: MetaData - name: logistics breakroom/salvage locker APC - type: Transform - pos: -11.5,34.5 + pos: -127.5,-51.5 parent: 1 - - uid: 39171 + - uid: 36670 components: - - type: MetaData - name: portside maints/solars APC - type: Transform - rot: 3.141592653589793 rad - pos: -140.5,-40.5 + pos: -90.5,-79.5 parent: 1 - - uid: 39648 + - uid: 36671 components: - - type: MetaData - name: robotics APC - type: Transform - pos: -20.5,-46.5 + pos: -89.5,-78.5 parent: 1 - - uid: 39731 + - uid: 40812 components: - - type: MetaData - name: prison mining shaft APC - type: Transform - pos: 30.5,-8.5 + pos: -24.5,-55.5 parent: 1 - - uid: 40031 +- proto: BarricadeDirectional + entities: + - uid: 36327 components: - - type: MetaData - name: command evac/evac sec-point APC - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-53.5 + pos: -136.5,-56.5 parent: 1 - - uid: 40069 + - uid: 36328 components: - - type: MetaData - name: civilian evac section APC - type: Transform - pos: 3.5,-57.5 + rot: -1.5707963267948966 rad + pos: -136.5,-55.5 parent: 1 - - uid: 40070 + - uid: 36329 components: - - type: MetaData - name: lower dorms APC - type: Transform - pos: 36.5,-52.5 + rot: -1.5707963267948966 rad + pos: -136.5,-54.5 parent: 1 - - uid: 40071 + - uid: 36330 components: - - type: MetaData - name: prison evac APC - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-56.5 + rot: 1.5707963267948966 rad + pos: -136.5,-54.5 parent: 1 -- proto: APCConstructed - entities: - - uid: 18602 + - uid: 36331 components: - type: Transform - pos: 58.5,-52.5 + rot: 1.5707963267948966 rad + pos: -136.5,-55.5 parent: 1 - - uid: 39816 + - uid: 36332 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,7.5 + pos: -136.5,-56.5 parent: 1 -- proto: APCElectronics - entities: - - uid: 4761 + - uid: 36333 components: - type: Transform - pos: -64.478836,-33.391758 + rot: -1.5707963267948966 rad + pos: -136.5,-52.5 parent: 1 -- proto: APCHighCapacity - entities: - - uid: 18086 + - uid: 36334 components: - - type: MetaData - name: epistemics front desk/lobby APC - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-42.5 + rot: -1.5707963267948966 rad + pos: -136.5,-51.5 parent: 1 - - uid: 18194 + - uid: 36335 components: - - type: MetaData - name: lower maints APC - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-75.5 + rot: -1.5707963267948966 rad + pos: -136.5,-50.5 parent: 1 - - uid: 18195 + - uid: 36336 components: - - type: MetaData - name: security main APC - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-40.5 + pos: -136.5,-50.5 parent: 1 - - uid: 18477 + - uid: 36337 components: - - type: MetaData - name: Hos's office APC - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-22.5 + rot: 1.5707963267948966 rad + pos: -136.5,-51.5 parent: 1 - - uid: 18479 + - uid: 36338 components: - - type: MetaData - name: armory APC - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-51.5 + rot: 1.5707963267948966 rad + pos: -136.5,-52.5 parent: 1 - - uid: 18887 + - uid: 36339 components: - - type: MetaData - name: engineering front APC - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-19.5 + rot: 1.5707963267948966 rad + pos: -131.5,-54.5 parent: 1 - - uid: 19143 + - uid: 36340 components: - - type: MetaData - name: lower midstation maints APC - type: Transform - pos: -60.5,-68.5 + rot: -1.5707963267948966 rad + pos: -131.5,-55.5 parent: 1 - - uid: 19435 + - uid: 36341 components: - - type: MetaData - name: conference room APC - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,0.5 + pos: -131.5,-56.5 parent: 1 - - uid: 19436 + - uid: 36342 components: - - type: MetaData - name: captain's quarters APC - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,1.5 + rot: -1.5707963267948966 rad + pos: -131.5,-56.5 parent: 1 - - uid: 19504 + - uid: 36343 components: - - type: MetaData - name: AI APC - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,9.5 + pos: -131.5,-54.5 parent: 1 - - uid: 19950 + - uid: 36344 components: - - type: MetaData - name: HoP's APC - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,19.5 + pos: -131.5,-55.5 parent: 1 - - uid: 20043 +- proto: BarSign + entities: + - uid: 1480 components: - - type: MetaData - name: clown/mime/musician dorms APC - type: Transform - pos: -70.5,4.5 + rot: 1.5707963267948966 rad + pos: -44.5,6.5 parent: 1 - - uid: 20948 + - uid: 12706 components: - - type: MetaData - name: kitchen main APC - type: Transform - pos: -28.5,8.5 + pos: -87.5,-44.5 parent: 1 - - uid: 21397 + - uid: 17559 components: - - type: MetaData - name: prison kitchen APC - type: Transform - pos: -19.5,7.5 + pos: 19.5,-21.5 parent: 1 - - uid: 21398 +- proto: BaseChemistryEmptyVial + entities: + - uid: 32306 components: - - type: MetaData - name: prison hydronics APC - type: Transform - pos: -16.5,-16.5 + rot: -1.5707963267948966 rad + pos: -63.138084,-21.609352 parent: 1 - - uid: 21400 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: DemonsBlood + Quantity: 1 + - uid: 32307 components: - - type: MetaData - name: warden's office APC - type: Transform - pos: 15.5,-17.5 + pos: -63.988083,-21.371687 parent: 1 - - uid: 26348 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Mold + Quantity: 18 +- proto: BaseComputer + entities: + - uid: 23784 components: - - type: MetaData - name: chemistry lab APC - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-28.5 + rot: 1.5707963267948966 rad + pos: 32.5,-53.5 parent: 1 - - uid: 32213 +- proto: BaseGasCondenser + entities: + - uid: 1743 components: - - type: MetaData - name: mid-station sec-point APC - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,13.5 + rot: -1.5707963267948966 rad + pos: 3.5,-37.5 parent: 1 - - uid: 38607 + - uid: 30039 components: - - type: MetaData - name: logistics main APC - type: Transform - pos: -25.5,38.5 + rot: 3.141592653589793 rad + pos: -65.5,-31.5 parent: 1 - - uid: 39072 +- proto: Basketball + entities: + - uid: 11162 components: - - type: MetaData - name: main engineering APC - type: Transform - pos: -114.5,-23.5 + rot: 3.141592653589793 rad + pos: -5.987872,-2.6871533 parent: 1 - - uid: 40879 + - uid: 16273 components: - - type: MetaData - name: prison security fence/conveyor belt APC - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-8.5 + pos: -47.64365,-77.24409 parent: 1 -- proto: APCHyperCapacity +- proto: Beaker entities: - - uid: 18087 + - uid: 32231 components: - - type: MetaData - name: epistemics laboratory APC - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-55.5 + pos: -36.658237,-49.28672 parent: 1 - - uid: 19434 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: RootBeer + Quantity: 34 + - uid: 32232 components: - - type: MetaData - name: bridge command room APC - type: Transform - pos: -103.5,8.5 + pos: -35.29365,-49.109512 parent: 1 - - uid: 20260 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Starkist + Quantity: 27 + - uid: 32233 components: - - type: MetaData - name: arrivals/upper hall APC - type: Transform - pos: -25.5,23.5 + pos: -35.29365,-49.38053 parent: 1 - - uid: 20637 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Cola + Quantity: 15 +- proto: Bed + entities: + - uid: 229 components: - - type: MetaData - name: lower starboard hall APC - type: Transform - pos: -3.5,-44.5 + pos: -11.5,10.5 parent: 1 - - uid: 21669 + - uid: 231 components: - - type: MetaData - name: prison main hall/cells/yard APC - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + pos: -9.5,10.5 parent: 1 -- proto: APCSuperCapacity - entities: - - uid: 2107 + - uid: 582 components: - - type: MetaData - name: grav ge/comms APC - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-37.5 + pos: -34.5,14.5 parent: 1 - - uid: 4950 + - uid: 811 components: - type: Transform - pos: -92.5,-34.5 + pos: -35.5,-19.5 parent: 1 - - uid: 17707 + - uid: 1258 components: - - type: MetaData - name: casino APC - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 + pos: -7.5,10.5 parent: 1 - - uid: 18706 + - uid: 1259 components: - - type: MetaData - name: CMO/Surgery/morgue/cloning APC - type: Transform - pos: -81.5,-22.5 + pos: -5.5,10.5 parent: 1 - - uid: 18707 + - uid: 1260 components: - - type: MetaData - name: medical treatment room APC - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-26.5 + pos: -3.5,10.5 parent: 1 - - uid: 18878 + - uid: 1261 components: - - type: MetaData - name: atmospherics APC - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-61.5 + pos: -1.5,10.5 parent: 1 - - uid: 18991 + - uid: 1262 components: - - type: MetaData - name: prison medical wing APC - type: Transform - pos: -1.5,-32.5 + pos: 0.5,10.5 parent: 1 - - uid: 19616 + - uid: 1263 components: - - type: MetaData - name: command courtyard APC - type: Transform - pos: -89.5,9.5 + pos: 2.5,10.5 parent: 1 - - uid: 20102 + - uid: 1264 components: - - type: MetaData - name: bar APC - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-3.5 + pos: 4.5,10.5 parent: 1 - - uid: 20567 + - uid: 1265 components: - - type: MetaData - name: mid-station hall APC - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,1.5 + pos: 6.5,10.5 parent: 1 - - uid: 20949 + - uid: 1266 components: - - type: MetaData - name: hydroponics APC - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-16.5 + pos: 8.5,10.5 parent: 1 - - uid: 21648 + - uid: 1267 components: - - type: MetaData - name: prison workshop APC - type: Transform - pos: 18.5,4.5 + pos: 10.5,10.5 parent: 1 - - uid: 38710 + - uid: 1580 components: - - type: MetaData - name: salvage APC - type: Transform - pos: 1.5,39.5 + pos: 7.5,-26.5 parent: 1 -- proto: APECircuitboard - entities: - - uid: 20878 + - uid: 1581 components: - type: Transform - pos: -39.65888,-69.37619 + pos: 11.5,-26.5 parent: 1 -- proto: AppraisalTool - entities: - - uid: 11614 + - uid: 1678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.382385,-10.418118 + pos: -0.5,-29.5 parent: 1 -- proto: ArrivalsShuttleTimer - entities: - - uid: 32517 + - uid: 2638 components: - type: Transform - pos: -97.5,46.5 + pos: 20.5,-54.5 parent: 1 - - uid: 32518 + - uid: 3172 components: - type: Transform - pos: -87.5,46.5 + pos: -102.5,-30.5 parent: 1 - - uid: 32520 + - uid: 3355 components: - type: Transform - pos: -79.5,39.5 + pos: -27.5,-50.5 parent: 1 -- proto: Ash - entities: - - uid: 12416 + - uid: 3517 components: - type: Transform - pos: 22.473688,-13.231509 + pos: -101.5,-29.5 parent: 1 -- proto: Ashtray - entities: - - uid: 32519 + - uid: 3948 components: - type: Transform - pos: -53.231686,27.549654 + pos: -49.5,-38.5 parent: 1 - - uid: 32996 + - uid: 3949 components: - type: Transform - pos: -52.27259,3.5293334 + pos: -46.5,-38.5 parent: 1 - - uid: 32997 + - uid: 3950 components: - type: Transform - pos: -49.59551,-1.2969353 + pos: -43.5,-38.5 parent: 1 - - uid: 32998 + - uid: 4856 components: - type: Transform - pos: -46.39759,7.6572003 + pos: -90.5,-23.5 parent: 1 - - uid: 32999 + - uid: 4857 components: - type: Transform - pos: -44.06426,0.4221565 + pos: -90.5,-25.5 parent: 1 - - uid: 33000 + - uid: 7327 components: - type: Transform - pos: -59.267883,-4.274349 + pos: -51.5,27.5 parent: 1 - - uid: 33001 + - uid: 7330 components: - type: Transform - pos: -80.558876,39.533493 + pos: -47.5,27.5 parent: 1 - - uid: 33002 + - uid: 7335 components: - type: Transform - pos: -66.57248,35.50421 + pos: -43.5,27.5 parent: 1 - - uid: 33004 + - uid: 7592 components: - type: Transform - pos: -15.665407,29.458918 + pos: -69.5,15.5 parent: 1 - - uid: 33005 + - uid: 8340 components: - type: Transform - pos: 14.665653,-21.585917 + pos: -67.5,7.5 parent: 1 - - uid: 33006 + - uid: 8349 components: - type: Transform - pos: -31.322895,17.42215 + pos: -67.5,1.5 parent: 1 - - uid: 33007 + - uid: 8550 components: - type: Transform - pos: -55.499535,-36.266476 + pos: -67.5,-0.5 parent: 1 - - uid: 33008 + - uid: 8558 components: - type: Transform - pos: -104.60396,-31.560234 + pos: -64.5,-0.5 parent: 1 - - uid: 33009 + - uid: 8787 components: - type: Transform - pos: -86.99369,-49.494698 + pos: -117.5,-3.5 parent: 1 - - uid: 33010 + - uid: 9477 components: - type: Transform - pos: -88.26453,-46.58643 + pos: -57.5,-23.5 parent: 1 - - uid: 33011 + - uid: 9513 components: - type: Transform - pos: -71.22065,-62.68286 + pos: -58.5,-1.5 parent: 1 - - uid: 33012 + - uid: 9521 components: - type: Transform - pos: -58.3313,-80.37624 + pos: -56.5,-1.5 parent: 1 - - uid: 33013 + - uid: 9684 components: - type: Transform - pos: 4.375538,-58.33389 + pos: -87.5,-21.5 parent: 1 - - uid: 33014 + - uid: 9792 components: - type: Transform - pos: -12.264183,-61.36652 + pos: -104.5,-35.5 parent: 1 - - uid: 33015 + - uid: 11390 components: - type: Transform - pos: 3.351296,-49.252316 + pos: -13.5,40.5 parent: 1 - - uid: 33016 + - uid: 11486 components: - type: Transform - pos: 34.694817,-61.56961 + pos: -43.5,40.5 parent: 1 - - uid: 33017 + - uid: 11487 components: - type: Transform - pos: 20.234701,-24.471699 + pos: -38.5,40.5 parent: 1 - - uid: 33018 + - uid: 11978 components: - type: Transform - pos: 28.840578,-34.524048 + pos: -8.5,-15.5 parent: 1 -- proto: AsteroidAltRock - entities: - - uid: 3127 + - uid: 11979 components: - type: Transform - pos: 78.5,43.5 + pos: -8.5,-14.5 parent: 1 - - uid: 3128 + - uid: 12000 components: - type: Transform - pos: 81.5,47.5 + pos: -8.5,-13.5 parent: 1 - - uid: 3129 + - uid: 23770 components: - type: Transform - pos: 81.5,45.5 + pos: 32.5,-52.5 parent: 1 - - uid: 3193 + - uid: 23771 components: - type: Transform - pos: 78.5,45.5 + pos: 32.5,-55.5 parent: 1 - - uid: 17303 + - uid: 23772 components: - type: Transform - pos: 67.5,-4.5 + pos: 43.5,-55.5 parent: 1 - - uid: 17304 + - uid: 23773 components: - type: Transform - pos: 67.5,-5.5 + pos: 43.5,-52.5 parent: 1 - - uid: 17305 + - uid: 28495 components: - type: Transform - pos: 67.5,-6.5 + pos: -10.5,-34.5 parent: 1 - - uid: 17306 + - uid: 30740 components: - type: Transform - pos: 67.5,-7.5 + pos: -92.5,-40.5 parent: 1 - - uid: 17307 + - uid: 32286 components: - type: Transform - pos: 67.5,-8.5 + pos: -120.5,-55.5 parent: 1 - - uid: 17308 + - uid: 33937 components: - type: Transform - pos: 67.5,-9.5 + pos: -99.5,-71.5 parent: 1 - - uid: 17309 + - uid: 33938 components: - type: Transform - pos: 67.5,-10.5 + pos: -99.5,-72.5 parent: 1 - - uid: 17310 +- proto: BedsheetBrigmedic + entities: + - uid: 1640 components: - type: Transform - pos: 66.5,-10.5 + pos: -0.5,-29.5 parent: 1 - - uid: 17311 +- proto: BedsheetCaptain + entities: + - uid: 8769 components: - type: Transform - pos: 65.5,-10.5 + pos: -117.5,-3.5 parent: 1 - - uid: 17312 +- proto: BedsheetCE + entities: + - uid: 9793 components: - type: Transform - pos: 64.5,-10.5 + pos: -104.5,-35.5 parent: 1 - - uid: 17313 +- proto: BedsheetClown + entities: + - uid: 8353 components: - type: Transform - pos: 63.5,-10.5 + pos: -67.5,1.5 parent: 1 - - uid: 17314 +- proto: BedsheetCMO + entities: + - uid: 9685 components: - type: Transform - pos: 62.5,-10.5 + pos: -87.5,-21.5 parent: 1 - - uid: 17315 +- proto: BedsheetCult + entities: + - uid: 5636 components: - type: Transform - pos: 61.5,-10.5 + pos: -27.5,-50.5 parent: 1 - - uid: 17316 +- proto: BedsheetGreen + entities: + - uid: 4858 components: - type: Transform - pos: 60.5,-10.5 + rot: 3.141592653589793 rad + pos: -90.5,-23.5 parent: 1 - - uid: 17317 + - uid: 4860 components: - type: Transform - pos: 59.5,-10.5 + rot: 3.141592653589793 rad + pos: -90.5,-25.5 parent: 1 - - uid: 22635 +- proto: BedsheetHOS + entities: + - uid: 9476 components: - type: Transform - pos: 44.5,-17.5 + rot: 1.5707963267948966 rad + pos: -57.5,-23.5 parent: 1 - - uid: 22636 +- proto: BedsheetIan + entities: + - uid: 7593 components: - type: Transform - pos: 45.5,-16.5 + rot: 1.5707963267948966 rad + pos: -69.5,15.5 parent: 1 - - uid: 22637 +- proto: BedsheetMedical + entities: + - uid: 9064 components: - type: Transform - pos: 45.5,-16.5 + pos: -75.5,-27.5 parent: 1 - - uid: 22638 + - uid: 9065 components: - type: Transform - pos: 45.5,-18.5 + pos: -75.5,-28.5 parent: 1 - - uid: 22639 + - uid: 9066 components: - type: Transform - pos: 45.5,-17.5 + pos: -75.5,-30.5 parent: 1 - - uid: 22640 + - uid: 9067 components: - type: Transform - pos: 44.5,-18.5 + pos: -75.5,-31.5 parent: 1 - - uid: 22641 + - uid: 9068 components: - type: Transform - pos: 44.5,-12.5 + pos: -70.5,-31.5 parent: 1 - - uid: 22642 + - uid: 9144 components: - type: Transform - pos: 45.5,-12.5 + pos: -6.5,-39.5 parent: 1 - - uid: 22643 + - uid: 9145 components: - type: Transform - pos: 44.5,-13.5 + pos: -4.5,-39.5 parent: 1 - - uid: 23466 + - uid: 9146 components: - type: Transform - pos: 52.5,-16.5 + pos: -2.5,-39.5 parent: 1 - - uid: 23467 + - uid: 30044 components: - type: Transform - pos: 53.5,-16.5 + pos: -70.5,-29.5 parent: 1 - - uid: 23468 + - uid: 30045 components: - type: Transform - pos: 52.5,-17.5 + rot: 3.141592653589793 rad + pos: -70.5,-30.5 parent: 1 - - uid: 23469 +- proto: BedsheetMime + entities: + - uid: 8341 components: - type: Transform - pos: 46.5,-18.5 + pos: -67.5,7.5 parent: 1 -- proto: AsteroidAltRockMining +- proto: BedsheetOrange entities: - - uid: 3003 + - uid: 254 components: - type: Transform - pos: 82.5,47.5 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 parent: 1 - - uid: 3004 + - uid: 255 components: - type: Transform - pos: 81.5,43.5 + rot: 1.5707963267948966 rad + pos: -11.5,10.5 parent: 1 - - uid: 3110 + - uid: 1268 components: - type: Transform - pos: 82.5,46.5 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 parent: 1 - - uid: 3111 + - uid: 1269 components: - type: Transform - pos: 82.5,45.5 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 1 - - uid: 3112 + - uid: 1270 components: - type: Transform - pos: 84.5,40.5 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 parent: 1 - - uid: 3113 + - uid: 1271 components: - type: Transform - pos: 82.5,41.5 + rot: 1.5707963267948966 rad + pos: -1.5,10.5 parent: 1 - - uid: 3114 + - uid: 1272 components: - type: Transform - pos: 82.5,44.5 + rot: 1.5707963267948966 rad + pos: 0.5,10.5 parent: 1 - - uid: 3115 + - uid: 1274 components: - type: Transform - pos: 85.5,40.5 + rot: 1.5707963267948966 rad + pos: 2.5,10.5 parent: 1 - - uid: 3116 + - uid: 1275 components: - type: Transform - pos: 83.5,41.5 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 parent: 1 - - uid: 3118 + - uid: 1276 components: - type: Transform - pos: 82.5,43.5 + rot: 1.5707963267948966 rad + pos: 6.5,10.5 parent: 1 - - uid: 3119 + - uid: 1277 components: - type: Transform - pos: 82.5,42.5 + rot: 1.5707963267948966 rad + pos: 8.5,10.5 parent: 1 - - uid: 3124 + - uid: 1278 components: - type: Transform - pos: 71.5,41.5 + rot: 1.5707963267948966 rad + pos: 10.5,10.5 parent: 1 - - uid: 3125 + - uid: 1582 components: - type: Transform - pos: 72.5,41.5 + rot: -1.5707963267948966 rad + pos: 7.5,-26.5 parent: 1 - - uid: 3126 + - uid: 1583 components: - type: Transform - pos: 73.5,42.5 + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 parent: 1 - - uid: 3186 + - uid: 3951 components: - type: Transform - pos: 73.5,41.5 + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 parent: 1 - - uid: 29701 + - uid: 3952 components: - type: Transform - pos: 68.5,37.5 + rot: 1.5707963267948966 rad + pos: -46.5,-38.5 parent: 1 - - uid: 29702 + - uid: 3953 components: - type: Transform - pos: 68.5,36.5 + rot: 1.5707963267948966 rad + pos: -43.5,-38.5 parent: 1 - - uid: 29703 +- proto: BedsheetQM + entities: + - uid: 11602 components: - type: Transform - pos: 69.5,36.5 + rot: 1.5707963267948966 rad + pos: -13.5,40.5 parent: 1 - - uid: 29704 +- proto: BedsheetSpawner + entities: + - uid: 594 components: - type: Transform - pos: 70.5,36.5 + pos: -34.5,14.5 parent: 1 - - uid: 29705 + - uid: 2140 components: - type: Transform - pos: 71.5,36.5 + pos: -101.5,-29.5 parent: 1 - - uid: 29706 + - uid: 2141 components: - type: Transform - pos: 71.5,37.5 + pos: -102.5,-30.5 parent: 1 - - uid: 29707 + - uid: 2639 components: - type: Transform - pos: 84.5,36.5 + pos: 20.5,-54.5 parent: 1 - - uid: 29708 + - uid: 7331 components: - type: Transform - pos: 84.5,35.5 + pos: -51.5,27.5 parent: 1 - - uid: 29711 + - uid: 7332 components: - type: Transform - pos: 83.5,35.5 + pos: -43.5,27.5 parent: 1 - - uid: 29713 + - uid: 7337 components: - type: Transform - pos: 83.5,34.5 + pos: -47.5,27.5 parent: 1 - - uid: 29715 + - uid: 8566 components: - type: Transform - pos: 82.5,34.5 + pos: -67.5,-0.5 parent: 1 - - uid: 29716 + - uid: 8567 components: - type: Transform - pos: 82.5,33.5 + pos: -64.5,-0.5 parent: 1 - - uid: 31807 + - uid: 9517 components: - type: Transform - pos: 73.5,4.5 + pos: -56.5,-1.5 parent: 1 - - uid: 31808 + - uid: 9531 components: - type: Transform - pos: 73.5,5.5 + pos: -58.5,-1.5 parent: 1 - - uid: 31809 + - uid: 10999 components: - type: Transform - pos: 74.5,4.5 + pos: -35.5,-19.5 parent: 1 - - uid: 31810 + - uid: 11488 components: - type: Transform - pos: 74.5,5.5 + pos: -43.5,40.5 parent: 1 - - uid: 31812 + - uid: 11491 components: - type: Transform - pos: 81.5,-1.5 + pos: -38.5,40.5 parent: 1 - - uid: 31813 + - uid: 11980 components: - type: Transform - pos: 82.5,-3.5 + pos: -8.5,-15.5 parent: 1 - - uid: 31814 + - uid: 11981 components: - type: Transform - pos: 83.5,-4.5 + pos: -8.5,-14.5 parent: 1 - - uid: 31815 + - uid: 12001 components: - type: Transform - pos: 83.5,-14.5 + pos: -8.5,-13.5 parent: 1 - - uid: 31816 + - uid: 23778 components: - type: Transform - pos: 80.5,-18.5 + pos: 32.5,-52.5 parent: 1 - - uid: 31818 + - uid: 23779 components: - type: Transform - pos: 75.5,-23.5 + pos: 32.5,-55.5 parent: 1 - - uid: 31819 + - uid: 23780 components: - type: Transform - pos: 75.5,-24.5 + pos: 43.5,-55.5 parent: 1 - - uid: 31822 + - uid: 23781 components: - type: Transform - pos: 76.5,-23.5 + pos: 43.5,-52.5 parent: 1 - - uid: 31823 + - uid: 28496 components: - type: Transform - pos: 76.5,-24.5 + pos: -10.5,-34.5 parent: 1 - - uid: 31824 + - uid: 30741 components: - type: Transform - pos: 73.5,-25.5 + pos: -92.5,-40.5 parent: 1 - - uid: 31825 + - uid: 33986 components: - type: Transform - pos: 73.5,-26.5 + pos: -99.5,-71.5 parent: 1 - - uid: 31826 + - uid: 33989 components: - type: Transform - pos: 72.5,-26.5 + pos: -99.5,-72.5 parent: 1 - - uid: 31827 + - uid: 36485 components: - type: Transform - pos: 71.5,-26.5 + pos: -120.5,-55.5 parent: 1 - - uid: 32148 +- proto: BenchParkBambooMiddle + entities: + - uid: 39536 components: - type: Transform - pos: 43.5,-7.5 + rot: 3.141592653589793 rad + pos: -102.5,-87.5 parent: 1 - - uid: 32149 +- proto: BenchSofaCorner + entities: + - uid: 2142 components: - type: Transform - pos: 44.5,-7.5 + rot: 1.5707963267948966 rad + pos: -101.5,-25.5 parent: 1 - - uid: 32150 + - uid: 12349 components: - type: Transform - pos: 44.5,-6.5 + pos: -11.5,33.5 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: BenchSofaCorpLeft entities: - - uid: 541 + - uid: 8923 components: - type: Transform - pos: -72.5,45.5 + rot: 3.141592653589793 rad + pos: -37.5,-8.5 parent: 1 - - uid: 548 + - uid: 8924 components: - type: Transform - pos: -64.5,45.5 + pos: -36.5,-3.5 parent: 1 - - uid: 550 + - uid: 8927 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 1 + - uid: 8928 components: - type: Transform - pos: -46.5,45.5 + rot: 3.141592653589793 rad + pos: -37.5,-2.5 parent: 1 - - uid: 2036 + - uid: 8930 components: - type: Transform - pos: -30.5,42.5 + rot: 3.141592653589793 rad + pos: -37.5,-5.5 parent: 1 - - uid: 2179 + - uid: 8932 components: - type: Transform - pos: -74.5,45.5 + pos: -36.5,-6.5 parent: 1 - - uid: 2214 + - uid: 9177 components: - type: Transform - pos: -66.5,45.5 + rot: 1.5707963267948966 rad + pos: -70.5,17.5 parent: 1 - - uid: 2464 +- proto: BenchSofaCorpRight + entities: + - uid: 8919 components: - type: Transform - pos: -48.5,45.5 + pos: -37.5,-0.5 parent: 1 - - uid: 5442 + - uid: 8925 components: - type: Transform - pos: -31.5,42.5 + rot: 3.141592653589793 rad + pos: -36.5,-5.5 parent: 1 - - uid: 5579 + - uid: 8926 components: - type: Transform - pos: 3.5,51.5 + pos: -37.5,-3.5 parent: 1 - - uid: 5587 + - uid: 8929 components: - type: Transform - pos: -34.5,42.5 + rot: 3.141592653589793 rad + pos: -36.5,-2.5 parent: 1 - - uid: 5661 + - uid: 8931 components: - type: Transform - pos: -33.5,42.5 + pos: -37.5,-6.5 parent: 1 - - uid: 5991 + - uid: 9167 components: - type: Transform - pos: 28.5,5.5 + rot: 1.5707963267948966 rad + pos: -70.5,16.5 parent: 1 - - uid: 5992 + - uid: 15607 components: - type: Transform - pos: 28.5,9.5 + rot: 3.141592653589793 rad + pos: -36.5,-8.5 parent: 1 - - uid: 10515 +- proto: BenchSofaLeft + entities: + - uid: 9168 components: - type: Transform - pos: 22.5,-41.5 + rot: -1.5707963267948966 rad + pos: -11.5,32.5 parent: 1 - - uid: 12719 + - uid: 9534 components: - type: Transform - pos: -97.5,38.5 + pos: -100.5,-25.5 parent: 1 - - uid: 12720 + - uid: 33985 components: - type: Transform - pos: -87.5,45.5 + rot: 3.141592653589793 rad + pos: -99.5,-68.5 parent: 1 - - uid: 12721 + - uid: 36490 components: - type: Transform - pos: -87.5,38.5 + rot: 3.141592653589793 rad + pos: -120.5,-60.5 parent: 1 - - uid: 12788 +- proto: BenchSofaMiddle + entities: + - uid: 9537 components: - type: Transform - pos: -97.5,45.5 + rot: 1.5707963267948966 rad + pos: -101.5,-26.5 parent: 1 - - uid: 16635 +- proto: BenchSofaRight + entities: + - uid: 9536 components: - type: Transform - pos: -137.5,-24.5 + rot: 1.5707963267948966 rad + pos: -101.5,-27.5 parent: 1 - - uid: 19249 + - uid: 29598 components: - type: Transform - pos: -45.5,-78.5 + pos: -12.5,33.5 parent: 1 - - uid: 24591 + - uid: 33959 components: - type: Transform - pos: -5.5,-65.5 + rot: 3.141592653589793 rad + pos: -98.5,-68.5 parent: 1 - - uid: 24592 + - uid: 36489 components: - type: Transform - pos: -3.5,-65.5 + rot: 3.141592653589793 rad + pos: -119.5,-60.5 parent: 1 - - uid: 24593 +- proto: BenchSteelLeft + entities: + - uid: 2921 components: - type: Transform - pos: 2.5,-65.5 + rot: 1.5707963267948966 rad + pos: -7.5,-55.5 parent: 1 - - uid: 24594 + - uid: 2922 components: - type: Transform - pos: 4.5,-65.5 + rot: -1.5707963267948966 rad + pos: -5.5,-54.5 parent: 1 - - uid: 24595 + - uid: 7748 components: - type: Transform - pos: 16.5,-65.5 + pos: -83.5,26.5 parent: 1 - - uid: 24596 + - uid: 7751 components: - type: Transform - pos: 18.5,-65.5 + rot: 3.141592653589793 rad + pos: -82.5,24.5 parent: 1 - - uid: 24597 +- proto: BenchSteelRight + entities: + - uid: 7225 components: - type: Transform - pos: 24.5,-65.5 + rot: -1.5707963267948966 rad + pos: -5.5,-55.5 parent: 1 - - uid: 24598 + - uid: 7591 components: - type: Transform - pos: 26.5,-65.5 + rot: 1.5707963267948966 rad + pos: -7.5,-54.5 parent: 1 - - uid: 24599 + - uid: 7749 components: - type: Transform - pos: 38.5,-65.5 + pos: -82.5,26.5 parent: 1 - - uid: 24600 + - uid: 7750 components: - type: Transform - pos: 40.5,-65.5 + rot: 3.141592653589793 rad + pos: -83.5,24.5 parent: 1 - - uid: 24601 +- proto: BigBox + entities: + - uid: 8201 components: - type: Transform - pos: 46.5,-65.5 + pos: -45.49905,38.670017 parent: 1 - - uid: 24602 +- proto: BikeHornInstrument + entities: + - uid: 8454 components: - type: Transform - pos: 48.5,-65.5 + rot: 3.141592653589793 rad + pos: -65.50091,6.665364 parent: 1 - - uid: 24931 +- proto: BiomassReclaimer + entities: + - uid: 1731 components: - type: Transform - pos: -41.5,-78.5 + pos: 7.5,-28.5 parent: 1 - - uid: 24947 + - uid: 4654 components: - type: Transform - pos: -49.5,-78.5 + pos: -78.5,-32.5 parent: 1 - - uid: 36459 +- proto: BlastDoor + entities: + - uid: 970 components: - type: Transform - pos: -124.5,27.5 + pos: -23.5,-46.5 parent: 1 - - uid: 36464 + - type: DeviceLinkSink + links: + - 1818 + - 32205 + - uid: 2144 components: - type: Transform - pos: -153.5,-32.5 + pos: -17.5,-43.5 parent: 1 - - uid: 36465 + - type: DeviceLinkSink + links: + - 12258 + - uid: 3142 components: - type: Transform - pos: -153.5,-33.5 + pos: -24.5,-46.5 parent: 1 - - uid: 41739 + - type: DeviceLinkSink + links: + - 1818 + - 32205 + - uid: 3161 components: - type: Transform - pos: -93.5,-89.5 + pos: -22.5,-46.5 parent: 1 - - uid: 41810 + - type: DeviceLinkSink + links: + - 1818 + - 32205 + - uid: 3469 components: - type: Transform - pos: -90.5,-86.5 + pos: -17.5,-44.5 parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 22173 + - type: DeviceLinkSink + links: + - 12258 + - uid: 3470 components: - type: Transform - pos: -103.5,-41.5 + pos: -17.5,-45.5 parent: 1 - - uid: 22174 + - type: DeviceLinkSink + links: + - 12258 + - uid: 5440 components: - type: Transform - pos: -103.5,-42.5 + pos: -30.5,42.5 parent: 1 - - uid: 22175 + - type: DeviceLinkSink + links: + - 6093 + - uid: 5441 components: - type: Transform - pos: -103.5,-43.5 + pos: -34.5,42.5 parent: 1 - - uid: 22176 + - type: DeviceLinkSink + links: + - 6093 + - uid: 6091 components: - type: Transform - pos: -102.5,-41.5 + pos: -5.5,44.5 parent: 1 - - uid: 22177 + - type: DeviceLinkSink + links: + - 11595 + - 5438 + - uid: 6096 components: - type: Transform - pos: -102.5,-42.5 + pos: -6.5,44.5 parent: 1 - - uid: 22178 + - type: DeviceLinkSink + links: + - 11595 + - 5438 + - uid: 6794 components: - type: Transform - pos: -102.5,-43.5 + pos: -21.5,-43.5 parent: 1 - - uid: 22179 + - type: DeviceLinkSink + links: + - 12259 + - uid: 6795 components: - type: Transform - pos: -101.5,-41.5 + pos: -21.5,-44.5 parent: 1 - - uid: 22180 + - type: DeviceLinkSink + links: + - 12259 + - uid: 6796 components: - type: Transform - pos: -101.5,-42.5 + pos: -21.5,-45.5 parent: 1 - - uid: 22304 + - type: DeviceLinkSink + links: + - 12259 + - uid: 6965 components: - type: Transform - pos: -101.5,-43.5 + pos: -35.5,-60.5 parent: 1 - - uid: 40755 + - type: DeviceLinkSink + links: + - 29504 + - uid: 11534 components: - type: Transform - pos: -26.5,-61.5 + pos: 4.5,51.5 parent: 1 - - uid: 40756 + - type: DeviceLinkSink + links: + - 11333 + - uid: 30107 components: - type: Transform - pos: -26.5,-62.5 + pos: -104.5,-78.5 parent: 1 - - uid: 40757 + - type: DeviceLinkSink + links: + - 31370 + - uid: 30108 components: - type: Transform - pos: -26.5,-63.5 + pos: -103.5,-78.5 parent: 1 - - uid: 40758 + - type: DeviceLinkSink + links: + - 31370 + - uid: 30667 components: - type: Transform - pos: -26.5,-64.5 + pos: -102.5,-78.5 parent: 1 - - uid: 40759 + - type: DeviceLinkSink + links: + - 31370 +- proto: BlastDoorOpen + entities: + - uid: 5119 components: - type: Transform - pos: -25.5,-61.5 + pos: -44.5,-25.5 parent: 1 - - uid: 40760 + - type: DeviceLinkSink + links: + - 3603 + - uid: 7455 components: - type: Transform - pos: -25.5,-62.5 + pos: -43.5,-25.5 parent: 1 - - uid: 40761 + - type: DeviceLinkSink + links: + - 3603 + - uid: 8260 components: - type: Transform - pos: -25.5,-63.5 + pos: -98.5,10.5 parent: 1 - - uid: 40762 + - type: DeviceLinkSink + links: + - 29492 + - uid: 8261 components: - type: Transform - pos: -25.5,-64.5 + pos: -90.5,-0.5 parent: 1 - - uid: 40763 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8262 components: - type: Transform - pos: -24.5,-61.5 + pos: -90.5,0.5 parent: 1 - - uid: 40764 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8263 components: - type: Transform - pos: -24.5,-62.5 + pos: -90.5,1.5 parent: 1 - - uid: 40765 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8264 components: - type: Transform - pos: -24.5,-63.5 + pos: -90.5,2.5 parent: 1 - - uid: 40766 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8265 components: - type: Transform - pos: -24.5,-64.5 + pos: -90.5,3.5 parent: 1 - - uid: 40767 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8266 components: - type: Transform - pos: -23.5,-61.5 + pos: -90.5,4.5 parent: 1 - - uid: 40768 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8267 components: - type: Transform - pos: -23.5,-62.5 + pos: -90.5,5.5 parent: 1 - - uid: 40769 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8268 components: - type: Transform - pos: -23.5,-63.5 + pos: -90.5,6.5 parent: 1 - - uid: 40770 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 6517 + - uid: 8800 components: - type: Transform - pos: -23.5,-64.5 + pos: -114.5,-4.5 parent: 1 - - uid: 40771 + - type: DeviceLinkSink + links: + - 29490 + - uid: 11867 components: - type: Transform - pos: -22.5,-61.5 + pos: -52.5,-25.5 parent: 1 - - uid: 40772 + - type: DeviceLinkSink + links: + - 3603 + - uid: 13782 components: - type: Transform - pos: -22.5,-62.5 + pos: -47.5,-25.5 parent: 1 - - uid: 40773 + - type: DeviceLinkSink + links: + - 3603 + - uid: 13979 components: - type: Transform - pos: -22.5,-63.5 + pos: -48.5,-25.5 parent: 1 - - uid: 40774 + - type: DeviceLinkSink + links: + - 3603 + - uid: 24603 components: - type: Transform - pos: -22.5,-64.5 + pos: -6.5,-48.5 parent: 1 - - uid: 40778 + - type: DeviceLinkSink + links: + - 24606 + - uid: 24604 components: - type: Transform - pos: -108.5,-50.5 + pos: -6.5,-47.5 parent: 1 - - uid: 40779 + - type: DeviceLinkSink + links: + - 24606 + - uid: 24605 components: - type: Transform - pos: -107.5,-50.5 + pos: -6.5,-46.5 parent: 1 - - uid: 40780 + - type: DeviceLinkSink + links: + - 24606 + - uid: 29482 components: - type: Transform - pos: -106.5,-50.5 + pos: -41.5,13.5 parent: 1 - - uid: 40781 + - type: DeviceLinkSink + links: + - 29489 + - uid: 29483 components: - type: Transform - pos: -111.5,-55.5 + pos: -40.5,13.5 parent: 1 - - uid: 40782 + - type: DeviceLinkSink + links: + - 29489 + - uid: 29484 components: - type: Transform - pos: -110.5,-55.5 + pos: -39.5,13.5 parent: 1 - - uid: 40783 + - type: DeviceLinkSink + links: + - 29489 + - uid: 29485 components: - type: Transform - pos: -109.5,-55.5 + pos: -74.5,25.5 parent: 1 - - uid: 40784 + - type: DeviceLinkSink + links: + - 29488 + - uid: 29486 components: - type: Transform - pos: -111.5,-57.5 + pos: -73.5,25.5 parent: 1 - - uid: 40785 + - type: DeviceLinkSink + links: + - 29488 + - uid: 29487 components: - type: Transform - pos: -110.5,-57.5 + pos: -72.5,25.5 parent: 1 - - uid: 40786 + - type: DeviceLinkSink + links: + - 29488 +- proto: BlockGameArcade + entities: + - uid: 1929 components: - type: Transform - pos: -109.5,-57.5 + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 parent: 1 - - uid: 40787 + - type: SpamEmitSound + enabled: False +- proto: BoardGameSpawner + entities: + - uid: 2973 components: - type: Transform - pos: -111.5,-61.5 + pos: -84.5,0.5 parent: 1 - - uid: 40788 + - uid: 9385 components: - type: Transform - pos: -110.5,-61.5 + pos: -86.5,0.5 parent: 1 - - uid: 40789 + - uid: 9386 components: - type: Transform - pos: -109.5,-61.5 + pos: -84.5,5.5 parent: 1 - - uid: 40790 + - uid: 9388 components: - type: Transform - pos: -105.5,-74.5 + pos: -86.5,5.5 parent: 1 - - uid: 40791 + - uid: 12341 components: - type: Transform - pos: -105.5,-75.5 + pos: -114.5,20.5 parent: 1 - - uid: 40792 + - uid: 12353 components: - type: Transform - pos: -105.5,-76.5 + pos: -109.5,26.5 parent: 1 - - uid: 40793 + - uid: 23020 components: - type: Transform - pos: -105.5,-77.5 + pos: -87.5,-49.5 parent: 1 - - uid: 40794 + - uid: 37382 components: - type: Transform - pos: -104.5,-74.5 + pos: -17.5,-71.5 parent: 1 - - uid: 40795 +- proto: Bonfire + entities: + - uid: 23679 components: - type: Transform - pos: -104.5,-75.5 + pos: 68.5,0.5 parent: 1 - - uid: 40796 +- proto: BookAtmosAirAlarms + entities: + - uid: 15400 components: - type: Transform - pos: -104.5,-76.5 + pos: -94.90623,-39.386993 parent: 1 - - uid: 40797 +- proto: BookBartendersManual + entities: + - uid: 9646 components: - type: Transform - pos: -104.5,-77.5 + pos: -52.461086,2.7009819 parent: 1 - - uid: 40798 + - uid: 32023 components: - type: Transform - pos: -103.5,-74.5 + parent: 13800 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 32052 + components: + - type: Transform + pos: -85.54477,-50.276264 parent: 1 - - uid: 40799 +- proto: BookChefGaming + entities: + - uid: 9645 components: - type: Transform - pos: -103.5,-75.5 + pos: -32.475998,10.675412 parent: 1 - - uid: 40800 + - uid: 32054 components: - type: Transform - pos: -103.5,-76.5 + pos: -22.474867,7.6008115 parent: 1 - - uid: 40801 +- proto: BookChemicalCompendium + entities: + - uid: 4671 components: - type: Transform - pos: -103.5,-77.5 + rot: 1.5707963267948966 rad + pos: -68.51425,-29.406227 parent: 1 - - uid: 40802 + - uid: 32315 components: - type: Transform - pos: -102.5,-74.5 + rot: 1.5707963267948966 rad + pos: -0.52896166,-39.458164 parent: 1 - - uid: 40803 +- proto: BookEngineersHandbook + entities: + - uid: 8883 components: - type: Transform - pos: -102.5,-75.5 + rot: 1.5707963267948966 rad + pos: -99.50173,-11.930775 parent: 1 - - uid: 40804 + - uid: 32051 components: - type: Transform - pos: -102.5,-76.5 + pos: -34.523594,-64.49235 parent: 1 - - uid: 40805 +- proto: BookHowToSurvive + entities: + - uid: 11845 components: - type: Transform - pos: -102.5,-77.5 + rot: 3.141592653589793 rad + pos: -95.35571,-7.445701 parent: 1 - - uid: 40806 +- proto: BookLeafLoversSecret + entities: + - uid: 904 components: - type: Transform - pos: -101.5,-74.5 + rot: 1.5707963267948966 rad + pos: -34.50293,-11.364823 parent: 1 - - uid: 40807 + - uid: 11025 components: - type: Transform - pos: -101.5,-75.5 + rot: 1.5707963267948966 rad + pos: -23.3566,-10.526518 parent: 1 - - uid: 40808 +- proto: BookMedicalReferenceBook + entities: + - uid: 4474 components: - type: Transform - pos: -101.5,-76.5 + rot: 1.5707963267948966 rad + pos: -69.61171,-22.726242 parent: 1 - - uid: 40809 +- proto: BookRandom + entities: + - uid: 2886 components: - type: Transform - pos: -101.5,-77.5 + rot: 3.141592653589793 rad + pos: 17.991606,-56.394897 parent: 1 - - uid: 40810 + - uid: 3766 components: - type: Transform - pos: -94.5,-50.5 + pos: -61.479443,23.57373 parent: 1 - - uid: 40811 + - uid: 8843 components: - type: Transform - pos: -94.5,-51.5 + pos: -101.03304,-0.48043472 parent: 1 -- proto: AtmosFixFreezerMarker - entities: - - uid: 11128 + - uid: 11236 components: - type: Transform - pos: -25.5,-24.5 + rot: -1.5707963267948966 rad + pos: -9.484922,-2.3575933 parent: 1 - - uid: 11129 + - uid: 11921 components: - type: Transform - pos: -25.5,-23.5 + rot: 1.5707963267948966 rad + pos: -21.463581,-32.9859 parent: 1 - - uid: 11130 + - uid: 11947 components: - type: Transform - pos: -24.5,-22.5 + rot: 1.5707963267948966 rad + pos: -21.45056,-32.855602 parent: 1 - - uid: 11131 + - uid: 12780 components: - type: Transform - pos: -24.5,-23.5 + rot: -1.5707963267948966 rad + pos: -80.4304,32.685825 parent: 1 - - uid: 11132 + - uid: 12835 components: - type: Transform - pos: -24.5,-24.5 + rot: -1.5707963267948966 rad + pos: -80.44081,32.539894 parent: 1 - - uid: 11133 + - uid: 32030 components: - type: Transform - pos: -23.5,-23.5 + rot: 3.141592653589793 rad + pos: -57.99947,-81.416466 parent: 1 - - uid: 11134 + - uid: 32050 components: - type: Transform - pos: -23.5,-24.5 + pos: -69.510765,38.599113 parent: 1 - - uid: 11135 +- proto: BookRandomStory + entities: + - uid: 11233 components: - type: Transform - pos: -22.5,-24.5 + rot: -1.5707963267948966 rad + pos: -9.462261,1.7426231 parent: 1 - - uid: 11136 + - uid: 11234 components: - type: Transform - pos: -22.5,-23.5 + rot: 3.141592653589793 rad + pos: 3.7671967,2.5765367 parent: 1 - - uid: 11137 +- proto: BookSalvageEpistemicsRandom + entities: + - uid: 2630 components: - type: Transform - pos: -23.5,-22.5 + pos: 14.27593,-53.43313 parent: 1 - - uid: 33589 + - uid: 2631 components: - type: Transform - pos: 23.5,-40.5 + pos: 14.442596,-53.44355 parent: 1 - - uid: 33590 + - uid: 2632 components: - type: Transform - pos: 23.5,-41.5 + pos: 14.598846,-53.43313 parent: 1 - - uid: 33594 +- proto: BookScientistsGuidebook + entities: + - uid: 16059 components: - type: Transform - pos: 23.5,-42.5 + rot: 1.5707963267948966 rad + pos: -38.446167,-49.578117 parent: 1 - - uid: 33595 +- proto: BookSecurity + entities: + - uid: 11844 components: - type: Transform - pos: 24.5,-40.5 + rot: -1.5707963267948966 rad + pos: -87.452065,-10.260155 parent: 1 - - uid: 33596 +- proto: BookshelfFilled + entities: + - uid: 2602 components: - type: Transform - pos: 24.5,-41.5 + pos: 12.5,-49.5 parent: 1 - - uid: 33600 + - uid: 2603 components: - type: Transform - pos: 24.5,-42.5 + pos: 13.5,-49.5 parent: 1 - - uid: 34823 + - uid: 2604 components: - type: Transform - pos: -24.5,11.5 + pos: 14.5,-49.5 parent: 1 - - uid: 34824 + - uid: 2606 components: - type: Transform - pos: -24.5,10.5 + pos: 15.5,-51.5 parent: 1 - - uid: 34825 + - uid: 2607 components: - type: Transform - pos: -24.5,9.5 + pos: 14.5,-51.5 parent: 1 - - uid: 34826 + - uid: 2608 components: - type: Transform - pos: -23.5,11.5 + pos: 13.5,-51.5 parent: 1 - - uid: 34827 + - uid: 2609 components: - type: Transform - pos: -23.5,10.5 + pos: 12.5,-51.5 parent: 1 - - uid: 34828 + - uid: 2610 components: - type: Transform - pos: -23.5,9.5 + pos: 9.5,-52.5 parent: 1 - - uid: 34829 + - uid: 2611 components: - type: Transform - pos: -22.5,11.5 + pos: 9.5,-54.5 parent: 1 - - uid: 34830 + - uid: 2615 components: - type: Transform - pos: -22.5,10.5 + pos: 9.5,-53.5 parent: 1 - - uid: 34831 + - uid: 2619 components: - type: Transform - pos: -22.5,9.5 + pos: 9.5,-55.5 parent: 1 - - uid: 34832 + - uid: 3706 components: - type: Transform - pos: -21.5,11.5 + pos: -28.5,-30.5 parent: 1 - - uid: 34833 + - uid: 3736 components: - type: Transform - pos: -21.5,10.5 + pos: -19.5,-36.5 parent: 1 - - uid: 34834 + - uid: 4419 components: - type: Transform - pos: -21.5,9.5 + pos: -19.5,-37.5 parent: 1 - - uid: 34835 + - uid: 4757 components: - type: Transform - pos: -20.5,11.5 + pos: -19.5,-31.5 parent: 1 - - uid: 34836 + - uid: 6024 components: - type: Transform - pos: -20.5,10.5 + pos: -22.5,-30.5 parent: 1 - - uid: 34837 + - uid: 6758 components: - type: Transform - pos: -20.5,9.5 + pos: -27.5,-30.5 parent: 1 - - uid: 34838 + - uid: 6764 components: - type: Transform - pos: -19.5,11.5 + pos: -26.5,-30.5 parent: 1 - - uid: 34839 + - uid: 6941 components: - type: Transform - pos: -19.5,10.5 + pos: -23.5,-37.5 parent: 1 - - uid: 34840 + - uid: 9898 components: - type: Transform - pos: -19.5,9.5 + pos: -28.5,-37.5 parent: 1 - - uid: 34841 + - uid: 9899 components: - type: Transform - pos: -18.5,11.5 + pos: -26.5,-37.5 parent: 1 - - uid: 34842 + - uid: 18629 components: - type: Transform - pos: -18.5,10.5 + pos: -100.5,2.5 parent: 1 - - uid: 34843 + - uid: 18988 components: - type: Transform - pos: -18.5,9.5 + pos: -21.5,-30.5 parent: 1 - - uid: 34844 + - uid: 18995 components: - type: Transform - pos: -17.5,11.5 + pos: -28.5,-36.5 parent: 1 - - uid: 34845 + - uid: 19590 components: - type: Transform - pos: -17.5,10.5 + pos: -70.5,18.5 parent: 1 - - uid: 34846 + - uid: 19592 components: - type: Transform - pos: -17.5,9.5 + pos: -93.5,-7.5 parent: 1 - - uid: 34847 + - uid: 19596 components: - type: Transform - pos: -20.5,8.5 + pos: -6.5,-13.5 parent: 1 - - uid: 34848 + - uid: 21123 components: - type: Transform - pos: -19.5,8.5 + pos: 9.5,-0.5 parent: 1 - - uid: 34849 + - uid: 21143 components: - type: Transform - pos: -18.5,8.5 + pos: 9.5,-3.5 parent: 1 - - uid: 34850 + - uid: 21572 components: - type: Transform - pos: -17.5,8.5 + pos: 6.5,-3.5 parent: 1 - - uid: 34851 + - uid: 21575 components: - type: Transform - pos: -19.5,12.5 + pos: 6.5,-0.5 parent: 1 - - uid: 34852 + - uid: 21576 components: - type: Transform - pos: -18.5,12.5 + pos: 7.5,-0.5 parent: 1 - - uid: 34853 + - uid: 21577 components: - type: Transform - pos: -17.5,12.5 + pos: -89.5,-19.5 parent: 1 - - uid: 34854 + - uid: 33963 components: - type: Transform - pos: -16.5,12.5 + pos: -99.5,-69.5 parent: 1 - - uid: 34855 + - uid: 33965 components: - type: Transform - pos: -16.5,11.5 + pos: -98.5,-69.5 parent: 1 -- proto: AtmosFixNitrogenMarker +- proto: BoozeDispenser entities: - - uid: 22169 + - uid: 1530 components: - type: Transform - pos: -104.5,-50.5 + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 parent: 1 - - uid: 22170 + - uid: 12668 components: - type: Transform - pos: -104.5,-51.5 + rot: 1.5707963267948966 rad + pos: -88.5,-51.5 parent: 1 - - uid: 22171 + - uid: 13805 components: - type: Transform - pos: -103.5,-50.5 + pos: 18.5,-22.5 parent: 1 - - uid: 22172 + - uid: 17533 components: - type: Transform - pos: -103.5,-51.5 + rot: 1.5707963267948966 rad + pos: -104.5,-0.5 parent: 1 -- proto: AtmosFixOxygenMarker - entities: - - uid: 22165 + - uid: 23845 components: - type: Transform - pos: -101.5,-50.5 + pos: -7.5,-57.5 parent: 1 - - uid: 22166 +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 34233 components: - type: Transform - pos: -101.5,-51.5 + pos: -99.294075,-32.747967 parent: 1 - - uid: 22167 +- proto: BorgCharger + entities: + - uid: 12862 components: - type: Transform - pos: -100.5,-50.5 + pos: -85.5,47.5 parent: 1 - - uid: 22168 + - uid: 29668 components: - type: Transform - pos: -100.5,-51.5 + pos: -95.5,-9.5 parent: 1 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 40775 + - uid: 31681 components: - type: Transform - pos: -109.5,-59.5 + pos: -22.5,-51.5 parent: 1 - - uid: 40776 + - uid: 32280 components: - type: Transform - pos: -110.5,-59.5 + pos: -93.5,-9.5 parent: 1 - - uid: 40777 + - uid: 32287 components: - type: Transform - pos: -111.5,-59.5 + pos: 15.5,19.5 parent: 1 -- proto: Autolathe +- proto: BoxBeaker entities: - - uid: 5047 + - uid: 9083 components: - type: Transform - pos: -52.5,16.5 + pos: -62.54828,-24.667576 parent: 1 - - uid: 5434 + - uid: 12248 components: - type: Transform - pos: -41.5,30.5 + pos: -26.604498,-40.19401 parent: 1 - - uid: 7461 + - uid: 16434 components: - type: Transform - pos: -23.5,19.5 + pos: 6.5053406,-37.179287 parent: 1 - - uid: 8852 +- proto: BoxBeanbag + entities: + - uid: 15533 components: - type: Transform - pos: -102.5,-14.5 + pos: 23.508007,-19.265778 parent: 1 - - uid: 9791 + - uid: 28743 components: - type: Transform - pos: -104.5,7.5 + pos: 23.518984,-19.390024 parent: 1 - - uid: 32166 +- proto: BoxBodyBag + entities: + - uid: 9058 components: - type: Transform - pos: -77.5,18.5 + pos: -80.51019,-27.374659 parent: 1 -- proto: BackgammonBoard - entities: - - uid: 15091 + - uid: 9132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.069756,24.58025 + pos: 6.9590178,-35.351105 parent: 1 -- proto: BagpipeInstrument +- proto: BoxBottle entities: - - uid: 36971 + - uid: 12249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.467255,-46.383945 + pos: -26.437832,-40.3191 parent: 1 -- proto: BalloonCorgi +- proto: BoxCardboard entities: - - uid: 13526 + - uid: 5647 components: - type: Transform - pos: -93.12421,25.546886 + pos: -49.551132,32.999413 parent: 1 - - uid: 41230 + - uid: 7293 components: - type: Transform - pos: 27.763897,22.591543 + pos: -49.37405,34.70893 parent: 1 -- proto: BananaPhoneInstrument - entities: - - uid: 31066 + - uid: 7294 components: - type: Transform - pos: -66.29403,3.7992694 + pos: -43.426132,34.67766 parent: 1 -- proto: BannerBlue - entities: - - uid: 6523 + - uid: 7295 components: - type: Transform - pos: -128.5,0.5 + pos: -43.5303,34.635963 parent: 1 - - uid: 6524 + - uid: 7303 components: - type: Transform - pos: -128.5,-3.5 + pos: -49.644882,34.667236 parent: 1 -- proto: BannerCargo - entities: - - uid: 7544 + - uid: 13682 components: - type: Transform - pos: -41.5,26.5 + rot: -1.5707963267948966 rad + pos: -66.52693,-67.32834 parent: 1 - - uid: 7545 + - uid: 13683 components: - type: Transform - pos: -30.5,26.5 + rot: -1.5707963267948966 rad + pos: -66.818596,-67.964195 parent: 1 -- proto: BannerEngineering - entities: - - uid: 9838 + - uid: 40612 components: - type: Transform - pos: -97.5,-15.5 + rot: -1.5707963267948966 rad + pos: 12.607631,22.33284 parent: 1 - - uid: 32284 + - uid: 40613 components: - type: Transform - pos: -97.5,-18.5 + rot: 1.5707963267948966 rad + pos: 12.420131,21.08197 parent: 1 -- proto: BannerMedical - entities: - - uid: 9110 + - uid: 40617 components: - type: Transform - pos: -73.5,-15.5 + pos: 13.555548,22.645557 parent: 1 - - uid: 9111 +- proto: BoxCartridgeCap + entities: + - uid: 8345 components: - type: Transform - pos: -62.5,-15.5 + pos: -69.42907,7.6555877 parent: 1 -- proto: BannerNanotrasen - entities: - - uid: 5141 + - uid: 32106 components: - type: Transform - pos: -101.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.568935,14.576718 parent: 1 - - uid: 5142 +- proto: BoxColoredLighttube + entities: + - uid: 30742 components: - type: Transform - pos: -99.5,2.5 + pos: -87.50396,-39.25258 parent: 1 - - uid: 31107 +- proto: BoxDonkSoftBox + entities: + - uid: 14488 components: - type: Transform - pos: -58.5,19.5 + pos: -119.48909,26.165625 parent: 1 - - uid: 31108 +- proto: BoxEncryptionKeyPrisoner + entities: + - uid: 42450 components: - type: Transform - pos: -58.5,23.5 + pos: -7.970074,38.58155 parent: 1 -- proto: BannerScience +- proto: BoxFlashbang entities: - - uid: 11958 + - uid: 12144 components: - type: Transform - pos: -21.5,-27.5 + pos: 14.418488,-18.29686 parent: 1 - - uid: 11959 + - uid: 12145 components: - type: Transform - pos: -29.5,-27.5 + pos: 14.5955715,-18.276012 parent: 1 -- proto: BannerSecurity +- proto: BoxFolderBlack entities: - - uid: 3994 + - uid: 3998 components: - type: Transform - pos: -50.5,-18.5 - parent: 1 - - uid: 3995 + parent: 20883 + - type: Physics + canCollide: False + - uid: 23861 components: - type: Transform - pos: -45.5,-18.5 + rot: 1.5707963267948966 rad + pos: -10.416724,-56.06218 parent: 1 -- proto: BarberScissors +- proto: BoxFolderBlue entities: - - uid: 13261 + - uid: 9713 components: - type: Transform - pos: -85.43389,-6.36954 + rot: 3.141592653589793 rad + pos: -82.57248,-19.470816 parent: 1 - - uid: 14692 + - uid: 23860 components: - type: Transform - pos: -85.663055,-6.3382688 + rot: 1.5707963267948966 rad + pos: -10.61464,-56.06218 parent: 1 -- proto: Barricade +- proto: BoxFolderClipboard entities: - - uid: 4348 + - uid: 23862 components: - type: Transform - pos: -75.5,-48.5 + rot: 1.5707963267948966 rad + pos: -10.416724,-55.415897 parent: 1 - - uid: 10469 +- proto: BoxFolderGreen + entities: + - uid: 4391 components: - type: Transform - pos: 0.5,-42.5 - parent: 1 - - uid: 12450 + parent: 20883 + - type: Physics + canCollide: False +- proto: BoxFolderRed + entities: + - uid: 3997 components: - type: Transform - pos: -72.5,-57.5 - parent: 1 - - uid: 12452 + parent: 20883 + - type: Physics + canCollide: False + - uid: 30927 components: - type: Transform - pos: -72.5,-58.5 + rot: 3.141592653589793 rad + pos: -53.477264,-19.33748 parent: 1 - - uid: 13692 +- proto: BoxForensicPad + entities: + - uid: 29508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-68.5 + pos: -56.320763,-40.27422 parent: 1 - - uid: 13693 +- proto: BoxInflatable + entities: + - uid: 8150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-69.5 + pos: -106.458725,-18.385973 parent: 1 - - uid: 13694 + - uid: 11299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-67.5 + pos: -20.443964,21.969835 parent: 1 - - uid: 15785 +- proto: BoxLatexGloves + entities: + - uid: 9059 components: - type: Transform - pos: -78.5,-71.5 + pos: -77.46853,-31.37744 parent: 1 - - uid: 15786 + - uid: 9131 components: - type: Transform - pos: -77.5,-71.5 + pos: 8.104851,-35.351105 parent: 1 - - uid: 16333 + - uid: 28507 components: - type: Transform - pos: -121.5,15.5 + pos: -68.51415,-28.287876 parent: 1 - - uid: 29611 +- proto: BoxLightbulb + entities: + - uid: 7196 components: - type: Transform - pos: -84.5,-49.5 + pos: -20.481083,27.717798 parent: 1 - - uid: 30684 +- proto: BoxLightMixed + entities: + - uid: 30416 components: - type: Transform - pos: 10.5,-43.5 + pos: -63.501144,-35.27278 parent: 1 - - uid: 30947 +- proto: BoxLighttube + entities: + - uid: 7195 components: - type: Transform - pos: -48.5,-58.5 + pos: -20.491499,28.697645 parent: 1 - - uid: 30948 + - uid: 13908 components: - type: Transform - pos: -47.5,-58.5 + pos: -6.4903593,-41.275818 parent: 1 - - uid: 31206 +- proto: BoxMagazineLightRiflePractice + entities: + - uid: 4443 components: - type: Transform - pos: -80.5,-63.5 + pos: -55.5491,-48.302628 parent: 1 - - uid: 31223 +- proto: BoxMagazineMagnumSubMachineGunPractice + entities: + - uid: 4442 components: - type: Transform - pos: -82.5,-69.5 + pos: -56.158474,-48.318264 parent: 1 - - uid: 31224 +- proto: BoxMagazinePistolPractice + entities: + - uid: 4441 components: - type: Transform - pos: -81.5,-73.5 + pos: -56.7366,-48.302628 parent: 1 - - uid: 31238 + - uid: 12587 components: - type: Transform - pos: -78.5,-75.5 + pos: -59.432156,-48.563755 parent: 1 - - uid: 33897 +- proto: BoxMagazineShotgunBeanbag + entities: + - uid: 12161 components: - type: Transform - pos: -76.5,-60.5 + pos: -1.536452,-23.315777 parent: 1 - - uid: 33921 +- proto: BoxMaintenanceLightbulb + entities: + - uid: 15398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-68.5 + rot: 3.141592653589793 rad + pos: -119.483955,-10.801642 parent: 1 - - uid: 34170 + - uid: 36665 components: - type: Transform - pos: -100.5,-32.5 + pos: -90.28692,-68.9993 parent: 1 - - uid: 34171 +- proto: BoxMesonScanners + entities: + - uid: 30760 components: - type: Transform - pos: -99.5,-31.5 + pos: -62.49649,-35.249317 parent: 1 - - uid: 36364 +- proto: BoxMousetrap + entities: + - uid: 7194 components: - type: Transform - pos: -131.5,-51.5 + pos: -20.512333,29.72961 parent: 1 - - uid: 36365 + - uid: 9643 components: - type: Transform - pos: -128.5,-52.5 + pos: -28.507246,-2.2867155 parent: 1 - - uid: 36366 + - uid: 13907 components: - type: Transform - pos: -127.5,-52.5 + pos: -7.4903593,-41.29667 parent: 1 - - uid: 36367 +- proto: BoxMouthSwab + entities: + - uid: 4917 components: - type: Transform - pos: -127.5,-51.5 + pos: -87.65843,-27.36025 parent: 1 - - uid: 36670 + - uid: 12570 components: - type: Transform - pos: -90.5,-79.5 + pos: -16.49164,-15.313523 parent: 1 - - uid: 36671 + - uid: 29509 components: - type: Transform - pos: -89.5,-78.5 + pos: -56.633263,-40.305492 parent: 1 - - uid: 40812 +- proto: BoxMRE + entities: + - uid: 30363 components: - type: Transform - pos: -24.5,-55.5 + pos: -37.584335,-66.26245 parent: 1 -- proto: BarricadeDirectional +- proto: BoxPerformer entities: - - uid: 36327 + - uid: 30413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-56.5 + pos: -79.18089,-48.344585 parent: 1 - - uid: 36328 +- proto: BoxPillCanister + entities: + - uid: 16432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-55.5 + pos: 6.5053406,-37.283524 parent: 1 - - uid: 36329 +- proto: BoxShotgunPractice + entities: + - uid: 4440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-54.5 + pos: -57.439724,-48.318264 parent: 1 - - uid: 36330 +- proto: BoxSterileMask + entities: + - uid: 4790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-54.5 + pos: -70.48274,-19.380396 parent: 1 - - uid: 36331 + - uid: 4791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-55.5 + pos: -65.46712,-19.380396 parent: 1 - - uid: 36332 + - uid: 9180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-56.5 + pos: -12.47504,-37.396946 parent: 1 - - uid: 36333 +- proto: BoxSyringe + entities: + - uid: 4681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-52.5 + pos: -62.35725,-24.963905 parent: 1 - - uid: 36334 +- proto: BoxTrashbag + entities: + - uid: 7197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-51.5 + pos: -20.491499,26.706678 parent: 1 - - uid: 36335 + - uid: 12079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-50.5 + pos: 17.763779,-13.805279 parent: 1 - - uid: 36336 + - uid: 30743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-50.5 + pos: -87.51437,-38.29358 parent: 1 - - uid: 36337 +- proto: BoxVial + entities: + - uid: 28176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-51.5 + pos: 3.4585488,-29.378923 parent: 1 - - uid: 36338 +- proto: BoxZiptie + entities: + - uid: 1397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-52.5 + pos: -48.45456,14.719884 parent: 1 - - uid: 36339 + - uid: 7764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-54.5 + pos: -78.494255,24.713926 parent: 1 - - uid: 36340 + - uid: 12142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-55.5 + pos: 13.449738,-18.265587 parent: 1 - - uid: 36341 + - uid: 12143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-56.5 + pos: 13.6268215,-18.276012 parent: 1 - - uid: 36342 + - uid: 14924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-56.5 + pos: -46.74948,-33.33157 parent: 1 - - uid: 36343 + - uid: 28648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-54.5 + pos: -1.480845,-20.389856 parent: 1 - - uid: 36344 + - uid: 29448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-55.5 + pos: -9.530252,-52.395126 parent: 1 -- proto: BarSign +- proto: BrbSign entities: - - uid: 1480 + - uid: 3177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,6.5 + pos: -36.940586,27.49595 parent: 1 - - uid: 12706 + - uid: 8762 components: - type: Transform - pos: -87.5,-44.5 + pos: -99.357864,-12.496858 parent: 1 - - uid: 17559 +- proto: BriefcaseBrown + entities: + - uid: 42169 components: - type: Transform - pos: 19.5,-21.5 + pos: 20.725468,-53.955048 parent: 1 -- proto: BaseChemistryEmptyVial +- proto: BriefcaseBrownFilled entities: - - uid: 32306 + - uid: 11918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.138084,-21.609352 + pos: -20.682331,-34.14556 parent: 1 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: DemonsBlood - Quantity: 1 - - uid: 32307 + - uid: 20557 components: - type: Transform - pos: -63.988083,-21.371687 + pos: -81.21649,32.29706 parent: 1 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: Mold - Quantity: 18 -- proto: BaseComputer - entities: - - uid: 23784 + - uid: 20558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-53.5 + pos: -81.22691,32.51596 parent: 1 -- proto: BaseGasCondenser - entities: - - uid: 1743 + - uid: 20559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-37.5 + pos: -81.24774,32.755707 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30039 + - uid: 30928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-31.5 + pos: -69.64716,-62.083187 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Basketball - entities: - - uid: 11162 + - uid: 32165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.987872,-2.6871533 + pos: -87.361115,0.23540133 parent: 1 - - uid: 16273 + - uid: 36809 components: - type: Transform - pos: -47.64365,-77.24409 + pos: 35.47866,-34.359875 parent: 1 -- proto: Beaker +- proto: BrigTimer entities: - - uid: 32231 - components: - - type: Transform - pos: -36.658237,-49.28672 - parent: 1 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: RootBeer - Quantity: 34 - - uid: 32232 + - uid: 16025 components: + - type: MetaData + name: cell 1 timer - type: Transform - pos: -35.29365,-49.109512 + pos: -50.5,-34.5 parent: 1 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Starkist - Quantity: 27 - - uid: 32233 + - type: DeviceLinkSource + linkedPorts: + 3922: + - Start: Close + - Timer: Open + - Timer: AutoClose + - uid: 30185 components: + - type: MetaData + name: solitary B timer - type: Transform - pos: -35.29365,-49.38053 + rot: 3.141592653589793 rad + pos: 6.5,-24.5 parent: 1 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Cola - Quantity: 15 -- proto: Bed - entities: - - uid: 229 + - type: DeviceLinkSource + linkedPorts: + 1576: + - Start: Close + - Timer: Open + - Timer: AutoClose + - uid: 33641 components: + - type: MetaData + name: cell 2 timer - type: Transform - pos: -11.5,10.5 + rot: 3.141592653589793 rad + pos: -48.5,-37.5 parent: 1 - - uid: 231 + - type: DeviceLinkSource + linkedPorts: + 3923: + - Start: Close + - Timer: Open + - Timer: AutoClose + - uid: 33642 components: + - type: MetaData + name: cell 3 timer - type: Transform - pos: -9.5,10.5 + rot: 3.141592653589793 rad + pos: -45.5,-37.5 parent: 1 - - uid: 582 + - type: DeviceLinkSource + linkedPorts: + 3924: + - Start: Close + - Timer: Open + - Timer: AutoClose + - uid: 33644 components: + - type: MetaData + name: solitary A timer - type: Transform - pos: -34.5,14.5 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 parent: 1 - - uid: 811 + - type: DeviceLinkSource + linkedPorts: + 1577: + - Start: Close + - Timer: Open + - Timer: AutoClose +- proto: BrokenBottle + entities: + - uid: 12432 components: - type: Transform - pos: -35.5,-19.5 + rot: -1.5707963267948966 rad + pos: 19.58995,-14.732552 parent: 1 - - uid: 1258 + - uid: 12433 components: - type: Transform - pos: -7.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.985783,-13.55465 parent: 1 - - uid: 1259 + - uid: 31012 components: - type: Transform - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: -0.46251655,-43.874573 parent: 1 - - uid: 1260 +- proto: Brutepack + entities: + - uid: 14961 components: - type: Transform - pos: -3.5,10.5 + pos: 13.949057,-21.248465 parent: 1 - - uid: 1261 +- proto: Bucket + entities: + - uid: 923 components: - type: Transform - pos: -1.5,10.5 + pos: -34.25293,-10.207769 parent: 1 - - uid: 1262 + - uid: 7199 components: - type: Transform - pos: 0.5,10.5 + pos: -21.981083,24.3613 parent: 1 - - uid: 1263 + - uid: 10279 components: - type: Transform - pos: 2.5,10.5 + pos: -11.721792,9.063126 parent: 1 - - uid: 1264 + - type: SolutionContainerManager + solutions: + bucket: + temperature: 293.15 + canReact: True + maxVol: 250 + name: null + reagents: + - data: null + ReagentId: Hooch + Quantity: 100 + - uid: 12561 components: - type: Transform - pos: 4.5,10.5 + pos: -16.34122,-10.277122 parent: 1 - - uid: 1265 + - uid: 23759 components: - type: Transform - pos: 6.5,10.5 + pos: 25.599798,-56.344418 parent: 1 - - uid: 1266 + - type: SolutionContainerManager + solutions: + bucket: + temperature: 293.15 + canReact: True + maxVol: 250 + name: null + reagents: + - data: null + ReagentId: Water + Quantity: 175 + - data: null + ReagentId: EZNutrient + Quantity: 75 + - uid: 30900 components: - type: Transform - pos: 8.5,10.5 + pos: -85.34233,-50.92668 parent: 1 - - uid: 1267 + - uid: 36424 components: - type: Transform - pos: 10.5,10.5 + rot: -1.5707963267948966 rad + pos: -118.92159,-52.697895 parent: 1 - - uid: 1580 +- proto: BulletFoam + entities: + - uid: 41128 components: - type: Transform - pos: 7.5,-26.5 + rot: 3.141592653589793 rad + pos: -122.46376,-18.346937 parent: 1 - - uid: 1581 + - uid: 41129 components: - type: Transform - pos: 11.5,-26.5 + rot: 1.5707963267948966 rad + pos: -122.224174,-18.586687 parent: 1 - - uid: 1678 +- proto: ButchCleaver + entities: + - uid: 10523 components: - type: Transform - pos: -0.5,-29.5 + pos: 23.478565,-40.32107 parent: 1 - - uid: 2638 + - uid: 12549 components: - type: Transform - pos: 20.5,-54.5 + pos: -17.665884,12.609267 parent: 1 - - uid: 3172 +- proto: ButtonFrameCaution + entities: + - uid: 42179 components: - type: Transform - pos: -102.5,-30.5 + rot: 1.5707963267948966 rad + pos: -36.5,39.5 parent: 1 - - uid: 3355 + - uid: 42180 components: - type: Transform - pos: -27.5,-50.5 + rot: -1.5707963267948966 rad + pos: -3.5,43.5 parent: 1 - - uid: 3517 + - uid: 42181 components: - type: Transform - pos: -101.5,-29.5 + rot: 3.141592653589793 rad + pos: -3.5,44.5 parent: 1 - - uid: 3948 + - uid: 42186 components: - type: Transform - pos: -49.5,-38.5 + rot: -1.5707963267948966 rad + pos: -37.5,-56.5 parent: 1 - - uid: 3949 + - uid: 42188 components: - type: Transform - pos: -46.5,-38.5 + rot: -1.5707963267948966 rad + pos: -106.5,-77.5 parent: 1 - - uid: 3950 +- proto: ButtonFrameExit + entities: + - uid: 42173 components: - type: Transform - pos: -43.5,-38.5 + rot: 1.5707963267948966 rad + pos: -74.5,-22.5 parent: 1 - - uid: 4856 + - uid: 42174 components: - type: Transform - pos: -90.5,-23.5 + rot: -1.5707963267948966 rad + pos: -74.5,-18.5 parent: 1 - - uid: 4857 + - uid: 42176 components: - type: Transform - pos: -90.5,-25.5 + rot: 1.5707963267948966 rad + pos: -9.5,-36.5 parent: 1 - - uid: 7327 +- proto: ButtonFrameJanitor + entities: + - uid: 42175 components: - type: Transform - pos: -51.5,27.5 + rot: 3.141592653589793 rad + pos: -68.5,-26.5 parent: 1 - - uid: 7330 + - uid: 42177 components: - type: Transform - pos: -47.5,27.5 + rot: -1.5707963267948966 rad + pos: -2.5,-32.5 parent: 1 - - uid: 7335 + - uid: 42178 components: - type: Transform - pos: -43.5,27.5 + rot: 1.5707963267948966 rad + pos: -36.5,32.5 parent: 1 - - uid: 7592 + - uid: 42182 components: - type: Transform - pos: -69.5,15.5 + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 parent: 1 - - uid: 8340 + - uid: 42183 components: - type: Transform - pos: -67.5,7.5 + rot: 1.5707963267948966 rad + pos: -29.5,0.5 parent: 1 - - uid: 8349 + - uid: 42184 components: - type: Transform - pos: -67.5,1.5 + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 parent: 1 - - uid: 8550 + - uid: 42185 components: - type: Transform - pos: -67.5,-0.5 + rot: 1.5707963267948966 rad + pos: -30.5,-45.5 parent: 1 - - uid: 8558 + - uid: 42187 components: - type: Transform - pos: -64.5,-0.5 + rot: -1.5707963267948966 rad + pos: -51.5,-34.5 parent: 1 - - uid: 8787 + - uid: 42189 components: - type: Transform - pos: -117.5,-3.5 + rot: -1.5707963267948966 rad + pos: -98.5,-10.5 parent: 1 - - uid: 9477 + - uid: 42190 components: - type: Transform - pos: -57.5,-23.5 + rot: -1.5707963267948966 rad + pos: -96.5,1.5 parent: 1 - - uid: 9513 +- proto: CableApcExtension + entities: + - uid: 1114 components: - type: Transform - pos: -58.5,-1.5 + pos: 22.5,5.5 parent: 1 - - uid: 9521 + - uid: 1118 components: - type: Transform - pos: -56.5,-1.5 + pos: 23.5,5.5 parent: 1 - - uid: 9684 + - uid: 1699 components: - type: Transform - pos: -87.5,-21.5 + pos: -1.5,-32.5 parent: 1 - - uid: 9792 + - uid: 1862 components: - type: Transform - pos: -104.5,-35.5 + pos: 30.5,-10.5 parent: 1 - - uid: 11390 + - uid: 2137 components: - type: Transform - pos: -13.5,40.5 + pos: 22.5,1.5 parent: 1 - - uid: 11486 + - uid: 2223 components: - type: Transform - pos: -43.5,40.5 + pos: 26.5,-51.5 parent: 1 - - uid: 11487 + - uid: 2224 components: - type: Transform - pos: -38.5,40.5 + pos: 26.5,-53.5 parent: 1 - - uid: 11978 + - uid: 2225 components: - type: Transform - pos: -8.5,-15.5 + pos: 26.5,-52.5 parent: 1 - - uid: 11979 + - uid: 2232 components: - type: Transform - pos: -8.5,-14.5 + pos: 32.5,0.5 parent: 1 - - uid: 12000 + - uid: 2234 components: - type: Transform - pos: -8.5,-13.5 + pos: 14.5,-45.5 parent: 1 - - uid: 23770 + - uid: 2236 components: - type: Transform - pos: 32.5,-52.5 + pos: 15.5,-45.5 parent: 1 - - uid: 23771 + - uid: 2237 components: - type: Transform - pos: 32.5,-55.5 + pos: 14.5,-44.5 parent: 1 - - uid: 23772 + - uid: 2239 components: - type: Transform - pos: 43.5,-55.5 + pos: 43.5,29.5 parent: 1 - - uid: 23773 + - uid: 2240 components: - type: Transform - pos: 43.5,-52.5 + pos: 43.5,26.5 parent: 1 - - uid: 28495 + - uid: 2241 components: - type: Transform - pos: -10.5,-34.5 + pos: 43.5,25.5 parent: 1 - - uid: 30740 + - uid: 2242 components: - type: Transform - pos: -92.5,-40.5 + pos: 43.5,23.5 parent: 1 - - uid: 32286 + - uid: 2243 components: - type: Transform - pos: -120.5,-55.5 + pos: 43.5,21.5 parent: 1 - - uid: 33937 + - uid: 2267 components: - type: Transform - pos: -99.5,-71.5 + pos: 43.5,19.5 parent: 1 - - uid: 33938 + - uid: 2473 components: - type: Transform - pos: -99.5,-72.5 + pos: -105.5,-25.5 parent: 1 -- proto: BedsheetBrigmedic - entities: - - uid: 1640 + - uid: 2475 components: - type: Transform - pos: -0.5,-29.5 + pos: -107.5,-12.5 parent: 1 -- proto: BedsheetCaptain - entities: - - uid: 8769 + - uid: 2477 components: - type: Transform - pos: -117.5,-3.5 + pos: -29.5,24.5 parent: 1 -- proto: BedsheetCE - entities: - - uid: 9793 + - uid: 2478 components: - type: Transform - pos: -104.5,-35.5 + pos: -105.5,-23.5 parent: 1 -- proto: BedsheetClown - entities: - - uid: 8353 + - uid: 2480 components: - type: Transform - pos: -67.5,1.5 + pos: -105.5,-24.5 parent: 1 -- proto: BedsheetCMO - entities: - - uid: 9685 + - uid: 2481 components: - type: Transform - pos: -87.5,-21.5 + pos: -105.5,-21.5 parent: 1 -- proto: BedsheetCult - entities: - - uid: 5636 + - uid: 2482 components: - type: Transform - pos: -27.5,-50.5 + pos: -105.5,-22.5 parent: 1 -- proto: BedsheetGreen - entities: - - uid: 4858 + - uid: 2483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-23.5 + pos: -105.5,-20.5 parent: 1 - - uid: 4860 + - uid: 2486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-25.5 + pos: -105.5,-19.5 parent: 1 -- proto: BedsheetHOS - entities: - - uid: 9476 + - uid: 2523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-23.5 + pos: -101.5,-19.5 parent: 1 -- proto: BedsheetIan - entities: - - uid: 7593 + - uid: 2536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,15.5 + pos: -101.5,-20.5 parent: 1 -- proto: BedsheetMedical - entities: - - uid: 9064 + - uid: 3149 components: - type: Transform - pos: -75.5,-27.5 + pos: -77.5,-49.5 parent: 1 - - uid: 9065 + - uid: 3686 components: - type: Transform - pos: -75.5,-28.5 + pos: -76.5,6.5 parent: 1 - - uid: 9066 + - uid: 3735 components: - type: Transform - pos: -75.5,-30.5 + pos: -75.5,6.5 parent: 1 - - uid: 9067 + - uid: 4699 components: - type: Transform - pos: -75.5,-31.5 + pos: -79.5,-33.5 parent: 1 - - uid: 9068 + - uid: 4738 components: - type: Transform - pos: -70.5,-31.5 + pos: -79.5,-35.5 parent: 1 - - uid: 9144 + - uid: 4771 components: - type: Transform - pos: -6.5,-39.5 + pos: -74.5,-34.5 parent: 1 - - uid: 9145 + - uid: 4782 components: - type: Transform - pos: -4.5,-39.5 + pos: -84.5,-39.5 parent: 1 - - uid: 9146 + - uid: 4792 components: - type: Transform - pos: -2.5,-39.5 + pos: -79.5,-39.5 parent: 1 - - uid: 30044 + - uid: 4924 components: - type: Transform - pos: -70.5,-29.5 + pos: -96.5,-42.5 parent: 1 - - uid: 30045 + - uid: 5310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-30.5 + pos: -96.5,-11.5 parent: 1 -- proto: BedsheetMime - entities: - - uid: 8341 + - uid: 5482 components: - type: Transform - pos: -67.5,7.5 + pos: -101.5,-26.5 parent: 1 -- proto: BedsheetOrange - entities: - - uid: 254 + - uid: 5517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 + pos: -106.5,-12.5 parent: 1 - - uid: 255 + - uid: 5615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 + pos: -100.5,-26.5 parent: 1 - - uid: 1268 + - uid: 5946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 + pos: -101.5,-25.5 parent: 1 - - uid: 1269 + - uid: 6641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 + pos: -38.5,-75.5 parent: 1 - - uid: 1270 + - uid: 6642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 + pos: -40.5,-75.5 parent: 1 - - uid: 1271 + - uid: 6945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 + pos: -59.5,-38.5 parent: 1 - - uid: 1272 + - uid: 6946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,10.5 + pos: -59.5,-37.5 parent: 1 - - uid: 1274 + - uid: 6991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 + pos: -59.5,-36.5 parent: 1 - - uid: 1275 + - uid: 7463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,10.5 + pos: -103.5,-0.5 parent: 1 - - uid: 1276 + - uid: 8038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,10.5 + pos: -59.5,-35.5 parent: 1 - - uid: 1277 + - uid: 8055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 + pos: -59.5,-34.5 parent: 1 - - uid: 1278 + - uid: 8064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 + pos: -59.5,-33.5 parent: 1 - - uid: 1582 + - uid: 8109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 + pos: -59.5,-32.5 parent: 1 - - uid: 1583 + - uid: 8110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 + pos: -59.5,-31.5 parent: 1 - - uid: 3951 + - uid: 8111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-38.5 + pos: -59.5,-30.5 parent: 1 - - uid: 3952 + - uid: 8116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-38.5 + pos: -59.5,-22.5 parent: 1 - - uid: 3953 + - uid: 8151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-38.5 + pos: -59.5,-29.5 parent: 1 -- proto: BedsheetQM - entities: - - uid: 11602 + - uid: 8162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,40.5 + pos: -59.5,-28.5 parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 594 + - uid: 8163 components: - type: Transform - pos: -34.5,14.5 + pos: -59.5,-27.5 parent: 1 - - uid: 2140 + - uid: 8167 components: - type: Transform - pos: -101.5,-29.5 + pos: -59.5,-26.5 parent: 1 - - uid: 2141 + - uid: 8169 components: - type: Transform - pos: -102.5,-30.5 + pos: -59.5,-25.5 parent: 1 - - uid: 2639 + - uid: 8173 components: - type: Transform - pos: 20.5,-54.5 + pos: -59.5,-24.5 parent: 1 - - uid: 7331 + - uid: 8234 components: - type: Transform - pos: -51.5,27.5 + pos: -65.5,27.5 parent: 1 - - uid: 7332 + - uid: 8367 components: - type: Transform - pos: -43.5,27.5 + pos: -63.5,-14.5 parent: 1 - - uid: 7337 + - uid: 8368 components: - type: Transform - pos: -47.5,27.5 + pos: -62.5,-14.5 parent: 1 - - uid: 8566 + - uid: 8369 components: - type: Transform - pos: -67.5,-0.5 + pos: -61.5,-14.5 parent: 1 - - uid: 8567 + - uid: 8370 components: - type: Transform - pos: -64.5,-0.5 + pos: -60.5,-14.5 parent: 1 - - uid: 9517 + - uid: 8371 components: - type: Transform - pos: -56.5,-1.5 + pos: -59.5,-14.5 parent: 1 - - uid: 9531 + - uid: 8372 components: - type: Transform - pos: -58.5,-1.5 + pos: -58.5,-14.5 parent: 1 - - uid: 10999 + - uid: 8373 components: - type: Transform - pos: -35.5,-19.5 + pos: -57.5,-14.5 parent: 1 - - uid: 11488 + - uid: 8374 components: - type: Transform - pos: -43.5,40.5 + pos: -56.5,-14.5 parent: 1 - - uid: 11491 + - uid: 8375 components: - type: Transform - pos: -38.5,40.5 + pos: -55.5,-14.5 parent: 1 - - uid: 11980 + - uid: 8376 components: - type: Transform - pos: -8.5,-15.5 + pos: -54.5,-14.5 parent: 1 - - uid: 11981 + - uid: 8377 components: - type: Transform - pos: -8.5,-14.5 + pos: -53.5,-14.5 parent: 1 - - uid: 12001 + - uid: 8378 components: - type: Transform - pos: -8.5,-13.5 + pos: -52.5,-14.5 parent: 1 - - uid: 23778 + - uid: 8379 components: - type: Transform - pos: 32.5,-52.5 + pos: -60.5,-13.5 parent: 1 - - uid: 23779 + - uid: 8380 components: - type: Transform - pos: 32.5,-55.5 + pos: -60.5,-12.5 parent: 1 - - uid: 23780 + - uid: 8381 components: - type: Transform - pos: 43.5,-55.5 + pos: -56.5,-13.5 parent: 1 - - uid: 23781 + - uid: 8382 components: - type: Transform - pos: 43.5,-52.5 + pos: -56.5,-12.5 parent: 1 - - uid: 28496 + - uid: 8383 components: - type: Transform - pos: -10.5,-34.5 + pos: -52.5,-13.5 parent: 1 - - uid: 30741 + - uid: 8384 components: - type: Transform - pos: -92.5,-40.5 + pos: -52.5,-12.5 parent: 1 - - uid: 33986 + - uid: 8385 components: - type: Transform - pos: -99.5,-71.5 + pos: -52.5,-11.5 parent: 1 - - uid: 33989 + - uid: 8386 components: - type: Transform - pos: -99.5,-72.5 + pos: -56.5,-11.5 parent: 1 - - uid: 36485 + - uid: 8387 components: - type: Transform - pos: -120.5,-55.5 + pos: -60.5,-11.5 parent: 1 -- proto: BenchParkBambooMiddle - entities: - - uid: 39536 + - uid: 8389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-87.5 + pos: -105.5,-5.5 parent: 1 -- proto: BenchSofaCorner - entities: - - uid: 2142 + - uid: 8390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-25.5 + pos: -105.5,-6.5 parent: 1 - - uid: 12349 + - uid: 8391 components: - type: Transform - pos: -11.5,33.5 + pos: -105.5,-7.5 parent: 1 -- proto: BenchSofaCorpLeft - entities: - - uid: 8923 + - uid: 8392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-8.5 + pos: -106.5,-7.5 parent: 1 - - uid: 8924 + - uid: 8393 components: - type: Transform - pos: -36.5,-3.5 + pos: -107.5,-7.5 parent: 1 - - uid: 8927 + - uid: 8394 components: - type: Transform - pos: -36.5,-0.5 + pos: -108.5,-7.5 parent: 1 - - uid: 8928 + - uid: 8395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-2.5 + pos: -109.5,-7.5 parent: 1 - - uid: 8930 + - uid: 8396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-5.5 + pos: -110.5,-7.5 parent: 1 - - uid: 8932 + - uid: 8397 components: - type: Transform - pos: -36.5,-6.5 + pos: -111.5,-7.5 parent: 1 - - uid: 9177 + - uid: 8398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,17.5 + pos: -112.5,-7.5 parent: 1 -- proto: BenchSofaCorpRight - entities: - - uid: 8919 + - uid: 8399 components: - type: Transform - pos: -37.5,-0.5 + pos: -113.5,-7.5 parent: 1 - - uid: 8925 + - uid: 8400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-5.5 + pos: -114.5,-7.5 parent: 1 - - uid: 8926 + - uid: 8401 components: - type: Transform - pos: -37.5,-3.5 + pos: -115.5,-7.5 parent: 1 - - uid: 8929 + - uid: 8402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-2.5 + pos: -116.5,-7.5 parent: 1 - - uid: 8931 + - uid: 8403 components: - type: Transform - pos: -37.5,-6.5 + pos: -117.5,-7.5 parent: 1 - - uid: 9167 + - uid: 8404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,16.5 + pos: -118.5,-7.5 parent: 1 - - uid: 15607 + - uid: 8405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-8.5 + pos: -119.5,-7.5 parent: 1 -- proto: BenchSofaLeft - entities: - - uid: 9168 + - uid: 8406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,32.5 + pos: -120.5,-7.5 parent: 1 - - uid: 9534 + - uid: 8407 components: - type: Transform - pos: -100.5,-25.5 + pos: -121.5,-7.5 parent: 1 - - uid: 33985 + - uid: 8408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-68.5 + pos: -122.5,-7.5 parent: 1 - - uid: 36490 + - uid: 8409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-60.5 + pos: -122.5,-8.5 parent: 1 -- proto: BenchSofaMiddle - entities: - - uid: 9537 + - uid: 8410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-26.5 + pos: -122.5,-9.5 parent: 1 -- proto: BenchSofaRight - entities: - - uid: 9536 + - uid: 8411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-27.5 + pos: -122.5,-10.5 parent: 1 - - uid: 29598 + - uid: 8412 components: - type: Transform - pos: -12.5,33.5 + pos: -121.5,-10.5 parent: 1 - - uid: 33959 + - uid: 8413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-68.5 + pos: -122.5,-6.5 parent: 1 - - uid: 36489 + - uid: 8414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-60.5 + pos: -122.5,-5.5 parent: 1 -- proto: BenchSteelLeft - entities: - - uid: 2921 + - uid: 8415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-55.5 + pos: -122.5,-4.5 parent: 1 - - uid: 2922 + - uid: 8416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-54.5 + pos: -122.5,-3.5 parent: 1 - - uid: 7748 + - uid: 8417 components: - type: Transform - pos: -83.5,26.5 + pos: -122.5,-2.5 parent: 1 - - uid: 7751 + - uid: 8419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,24.5 + pos: -122.5,-1.5 parent: 1 -- proto: BenchSteelRight - entities: - - uid: 7225 + - uid: 8420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-55.5 + pos: -122.5,-0.5 parent: 1 - - uid: 7591 + - uid: 8421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 + pos: -122.5,0.5 parent: 1 - - uid: 7749 + - uid: 8422 components: - type: Transform - pos: -82.5,26.5 + pos: -122.5,1.5 parent: 1 - - uid: 7750 + - uid: 8423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,24.5 + pos: -122.5,2.5 parent: 1 -- proto: BigBox - entities: - - uid: 8201 + - uid: 8424 components: - type: Transform - pos: -45.49905,38.670017 + pos: -122.5,3.5 parent: 1 -- proto: BikeHornInstrument - entities: - - uid: 8454 + - uid: 8425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.50091,6.665364 + pos: -122.5,4.5 parent: 1 -- proto: BiomassReclaimer - entities: - - uid: 1731 + - uid: 8426 components: - type: Transform - pos: 7.5,-28.5 + pos: -122.5,5.5 parent: 1 - - uid: 4654 + - uid: 8427 components: - type: Transform - pos: -78.5,-32.5 + pos: -122.5,6.5 parent: 1 -- proto: BlastDoor - entities: - - uid: 970 + - uid: 8428 components: - type: Transform - pos: -23.5,-46.5 + pos: -122.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 1818 - - 32205 - - uid: 2144 + - uid: 8429 components: - type: Transform - pos: -17.5,-43.5 + pos: -122.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 12258 - - uid: 3142 + - uid: 8430 components: - type: Transform - pos: -24.5,-46.5 + pos: -122.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 1818 - - 32205 - - uid: 3161 + - uid: 8431 components: - type: Transform - pos: -22.5,-46.5 + pos: -122.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1818 - - 32205 - - uid: 3469 + - uid: 8432 components: - type: Transform - pos: -17.5,-44.5 + pos: -122.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 12258 - - uid: 3470 + - uid: 8433 components: - type: Transform - pos: -17.5,-45.5 + pos: -122.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 12258 - - uid: 5440 + - uid: 8434 components: - type: Transform - pos: -30.5,42.5 + pos: -122.5,13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 5441 + - uid: 8435 components: - type: Transform - pos: -34.5,42.5 + pos: -122.5,14.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 6091 + - uid: 8436 components: - type: Transform - pos: -5.5,44.5 + pos: -122.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 11595 - - 5438 - - uid: 6096 + - uid: 8437 components: - type: Transform - pos: -6.5,44.5 + pos: -122.5,16.5 parent: 1 - - type: DeviceLinkSink - links: - - 11595 - - 5438 - - uid: 6794 + - uid: 8438 components: - type: Transform - pos: -21.5,-43.5 + pos: -122.5,17.5 parent: 1 - - type: DeviceLinkSink - links: - - 12259 - - uid: 6795 + - uid: 8439 components: - type: Transform - pos: -21.5,-44.5 + pos: -122.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 12259 - - uid: 6796 + - uid: 8440 components: - type: Transform - pos: -21.5,-45.5 + pos: -122.5,19.5 parent: 1 - - type: DeviceLinkSink - links: - - 12259 - - uid: 6965 + - uid: 8441 components: - type: Transform - pos: -35.5,-60.5 + pos: -122.5,20.5 parent: 1 - - type: DeviceLinkSink - links: - - 29504 - - uid: 11534 + - uid: 8442 components: - type: Transform - pos: 4.5,51.5 + pos: -122.5,21.5 parent: 1 - - type: DeviceLinkSink - links: - - 11333 - - uid: 30107 + - uid: 8443 components: - type: Transform - pos: -104.5,-78.5 + pos: -122.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 31370 - - uid: 30108 + - uid: 8444 components: - type: Transform - pos: -103.5,-78.5 + pos: -121.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 31370 - - uid: 30667 + - uid: 8445 components: - type: Transform - pos: -102.5,-78.5 + pos: -120.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 31370 -- proto: BlastDoorOpen - entities: - - uid: 5119 + - uid: 8446 components: - type: Transform - pos: -44.5,-25.5 + pos: -119.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 3603 - - uid: 7455 + - uid: 8447 components: - type: Transform - pos: -43.5,-25.5 + pos: -118.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 3603 - - uid: 8260 + - uid: 8506 components: - type: Transform - pos: -98.5,10.5 + pos: -96.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 29492 - - uid: 8261 + - uid: 8507 components: - type: Transform - pos: -90.5,-0.5 + pos: -95.5,-12.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8262 + - uid: 8508 components: - type: Transform - pos: -90.5,0.5 + pos: -94.5,-12.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8263 + - uid: 8509 components: - type: Transform - pos: -90.5,1.5 + pos: -93.5,-12.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8264 + - uid: 8510 components: - type: Transform - pos: -90.5,2.5 + pos: -93.5,-13.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8265 + - uid: 8511 components: - type: Transform - pos: -90.5,3.5 + pos: -93.5,-14.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8266 + - uid: 8512 components: - type: Transform - pos: -90.5,4.5 + pos: -92.5,-14.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8267 + - uid: 8513 components: - type: Transform - pos: -90.5,5.5 + pos: -91.5,-14.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8268 + - uid: 8514 components: - type: Transform - pos: -90.5,6.5 + pos: -90.5,-14.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 6517 - - uid: 8800 + - uid: 8515 components: - type: Transform - pos: -114.5,-4.5 + pos: -89.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 29490 - - uid: 11867 + - uid: 8516 components: - type: Transform - pos: -52.5,-25.5 + pos: -88.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 3603 - - uid: 13782 + - uid: 8517 components: - type: Transform - pos: -47.5,-25.5 + pos: -87.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 3603 - - uid: 13979 + - uid: 8518 components: - type: Transform - pos: -48.5,-25.5 + pos: -86.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 3603 - - uid: 24603 + - uid: 8520 components: - type: Transform - pos: -6.5,-48.5 + pos: -93.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 24606 - - uid: 24604 + - uid: 8521 components: - type: Transform - pos: -6.5,-47.5 + pos: -93.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 24606 - - uid: 24605 + - uid: 8522 components: - type: Transform - pos: -6.5,-46.5 + pos: -94.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 24606 - - uid: 29482 + - uid: 8523 components: - type: Transform - pos: -41.5,13.5 + pos: -95.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 29489 - - uid: 29483 + - uid: 8524 components: - type: Transform - pos: -40.5,13.5 + pos: -89.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 29489 - - uid: 29484 + - uid: 8525 components: - type: Transform - pos: -39.5,13.5 + pos: -85.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 29489 - - uid: 29485 + - uid: 8526 components: - type: Transform - pos: -74.5,25.5 + pos: -84.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 29488 - - uid: 29486 + - uid: 8527 components: - type: Transform - pos: -73.5,25.5 + pos: -83.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 29488 - - uid: 29487 + - uid: 8528 components: - type: Transform - pos: -72.5,25.5 + pos: -82.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 29488 -- proto: BlockGameArcade - entities: - - uid: 1929 + - uid: 8529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 + pos: -81.5,-14.5 parent: 1 -- proto: BoardGameSpawner - entities: - - uid: 2973 + - uid: 8530 components: - type: Transform - pos: -84.5,0.5 + pos: -80.5,-14.5 parent: 1 - - uid: 9385 + - uid: 8531 components: - type: Transform - pos: -86.5,0.5 + pos: -79.5,-14.5 parent: 1 - - uid: 9386 + - uid: 8532 components: - type: Transform - pos: -84.5,5.5 + pos: -78.5,-14.5 parent: 1 - - uid: 9388 + - uid: 8533 components: - type: Transform - pos: -86.5,5.5 + pos: -77.5,-14.5 parent: 1 - - uid: 12341 + - uid: 8534 components: - type: Transform - pos: -114.5,20.5 + pos: -78.5,-13.5 parent: 1 - - uid: 12353 + - uid: 8535 components: - type: Transform - pos: -109.5,26.5 + pos: -76.5,-14.5 parent: 1 - - uid: 23020 + - uid: 8536 components: - type: Transform - pos: -87.5,-49.5 + pos: -75.5,-14.5 parent: 1 - - uid: 37382 + - uid: 8537 components: - type: Transform - pos: -17.5,-71.5 + pos: -74.5,-14.5 parent: 1 -- proto: Bonfire - entities: - - uid: 23679 + - uid: 8538 components: - type: Transform - pos: 68.5,0.5 + pos: -73.5,-14.5 parent: 1 -- proto: BookAtmosAirAlarms - entities: - - uid: 15400 + - uid: 8539 components: - type: Transform - pos: -94.90623,-39.386993 + pos: -72.5,-14.5 parent: 1 -- proto: BookBartendersManual - entities: - - uid: 9646 + - uid: 8540 components: - type: Transform - pos: -52.461086,2.7009819 + pos: -71.5,-14.5 parent: 1 - - uid: 32023 + - uid: 8541 components: - type: Transform - parent: 13800 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 32052 + pos: -70.5,-14.5 + parent: 1 + - uid: 8542 components: - type: Transform - pos: -85.54477,-50.276264 + pos: -69.5,-14.5 parent: 1 -- proto: BookChefGaming - entities: - - uid: 9645 + - uid: 8543 components: - type: Transform - pos: -32.475998,10.675412 + pos: -68.5,-14.5 parent: 1 - - uid: 32054 + - uid: 8544 components: - type: Transform - pos: -22.474867,7.6008115 + pos: -68.5,-13.5 parent: 1 -- proto: BookChemicalCompendium - entities: - - uid: 4671 + - uid: 8545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.51425,-29.406227 + pos: -67.5,-14.5 parent: 1 - - uid: 32315 + - uid: 8546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.52896166,-39.458164 + pos: -66.5,-14.5 parent: 1 -- proto: BookDetective - entities: - - uid: 11233 + - uid: 8547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.462261,1.7426231 + pos: -65.5,-14.5 parent: 1 -- proto: BookEngineersHandbook - entities: - - uid: 8883 + - uid: 8548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.50173,-11.930775 + pos: -64.5,-14.5 parent: 1 - - uid: 32051 + - uid: 8710 components: - type: Transform - pos: -34.523594,-64.49235 + pos: -59.5,-23.5 parent: 1 -- proto: BookFishing - entities: - - uid: 11234 + - uid: 8715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.7671967,2.5765367 + pos: -70.5,-7.5 parent: 1 -- proto: BookHowToSurvive - entities: - - uid: 11845 + - uid: 8872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.35571,-7.445701 + pos: -40.5,-76.5 parent: 1 -- proto: BookLeafLoversSecret - entities: - - uid: 904 + - uid: 8939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.50293,-11.364823 + pos: 27.5,8.5 parent: 1 - - uid: 11025 + - uid: 9046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.3566,-10.526518 + pos: -92.5,-34.5 parent: 1 -- proto: BookMedicalReferenceBook - entities: - - uid: 4474 + - uid: 9165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.61171,-22.726242 + pos: -62.5,-28.5 parent: 1 -- proto: BookRandom - entities: - - uid: 2886 + - uid: 9662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.991606,-56.394897 + pos: -61.5,-28.5 parent: 1 - - uid: 3766 + - uid: 9903 components: - type: Transform - pos: -61.479443,23.57373 + pos: -12.5,-8.5 parent: 1 - - uid: 8843 + - uid: 10625 components: - type: Transform - pos: -101.03304,-0.48043472 + pos: 28.5,-50.5 parent: 1 - - uid: 11236 + - uid: 11107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.484922,-2.3575933 + pos: -19.5,-70.5 parent: 1 - - uid: 11921 + - uid: 11112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.463581,-32.9859 + pos: -20.5,-70.5 parent: 1 - - uid: 11947 + - uid: 11113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.45056,-32.855602 + pos: -21.5,-70.5 parent: 1 - - uid: 12780 + - uid: 11114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.4304,32.685825 + pos: -21.5,-71.5 parent: 1 - - uid: 12835 + - uid: 13243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.44081,32.539894 + pos: -25.5,21.5 parent: 1 - - uid: 32030 + - uid: 13260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.99947,-81.416466 + pos: 48.5,-14.5 parent: 1 - - uid: 32050 + - uid: 13272 components: - type: Transform - pos: -69.510765,38.599113 + pos: 52.5,-14.5 parent: 1 -- proto: BookSalvageEpistemicsRandom - entities: - - uid: 2630 + - uid: 13276 components: - type: Transform - pos: 14.27593,-53.43313 + pos: -25.5,20.5 parent: 1 - - uid: 2631 + - uid: 13292 components: - type: Transform - pos: 14.442596,-53.44355 + pos: -24.5,20.5 parent: 1 - - uid: 2632 + - uid: 13314 components: - type: Transform - pos: 14.598846,-53.43313 + pos: -23.5,20.5 parent: 1 -- proto: BookScientistsGuidebook - entities: - - uid: 16059 + - uid: 13333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.446167,-49.578117 + pos: 23.5,-0.5 parent: 1 -- proto: BookSecurity - entities: - - uid: 11844 + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.452065,-10.260155 + pos: -22.5,20.5 parent: 1 -- proto: BookshelfFilled - entities: - - uid: 2602 + - uid: 13530 components: - type: Transform - pos: 12.5,-49.5 + pos: -21.5,20.5 parent: 1 - - uid: 2603 + - uid: 14633 components: - type: Transform - pos: 13.5,-49.5 + pos: -82.5,-39.5 parent: 1 - - uid: 2604 + - uid: 14987 components: - type: Transform - pos: 14.5,-49.5 + pos: 1.5,-12.5 parent: 1 - - uid: 2606 + - uid: 14988 components: - type: Transform - pos: 15.5,-51.5 + pos: 0.5,-12.5 parent: 1 - - uid: 2607 + - uid: 14989 components: - type: Transform - pos: 14.5,-51.5 + pos: 0.5,-11.5 parent: 1 - - uid: 2608 + - uid: 14990 components: - type: Transform - pos: 13.5,-51.5 + pos: 0.5,-10.5 parent: 1 - - uid: 2609 + - uid: 14991 components: - type: Transform - pos: 12.5,-51.5 + pos: 0.5,-9.5 parent: 1 - - uid: 2610 + - uid: 14992 components: - type: Transform - pos: 9.5,-52.5 + pos: 0.5,-8.5 parent: 1 - - uid: 2611 + - uid: 14993 components: - type: Transform - pos: 9.5,-54.5 + pos: 0.5,-7.5 parent: 1 - - uid: 2615 + - uid: 14994 components: - type: Transform - pos: 9.5,-53.5 + pos: 0.5,-6.5 parent: 1 - - uid: 2619 + - uid: 14995 components: - type: Transform - pos: 9.5,-55.5 + pos: 0.5,-5.5 parent: 1 - - uid: 3706 + - uid: 14996 components: - type: Transform - pos: -28.5,-30.5 + pos: 0.5,-4.5 parent: 1 - - uid: 3736 + - uid: 14997 components: - type: Transform - pos: -19.5,-36.5 + pos: 1.5,-4.5 parent: 1 - - uid: 4419 + - uid: 14998 components: - type: Transform - pos: -19.5,-37.5 + pos: -1.5,-2.5 parent: 1 - - uid: 4757 + - uid: 14999 components: - type: Transform - pos: -19.5,-31.5 + pos: 2.5,-4.5 parent: 1 - - uid: 6024 + - uid: 15000 components: - type: Transform - pos: -22.5,-30.5 + pos: 3.5,-4.5 parent: 1 - - uid: 6758 + - uid: 15001 components: - type: Transform - pos: -27.5,-30.5 + pos: 4.5,-4.5 parent: 1 - - uid: 6764 + - uid: 15002 components: - type: Transform - pos: -26.5,-30.5 + pos: 5.5,-4.5 parent: 1 - - uid: 6941 + - uid: 15003 components: - type: Transform - pos: -23.5,-37.5 + pos: 6.5,-4.5 parent: 1 - - uid: 9898 + - uid: 15004 components: - type: Transform - pos: -28.5,-37.5 + pos: 7.5,-4.5 parent: 1 - - uid: 9899 + - uid: 15005 components: - type: Transform - pos: -26.5,-37.5 + pos: 8.5,-4.5 parent: 1 - - uid: 18629 + - uid: 15006 components: - type: Transform - pos: -100.5,2.5 + pos: 9.5,-4.5 parent: 1 - - uid: 18988 + - uid: 15007 components: - type: Transform - pos: -21.5,-30.5 + pos: 10.5,-4.5 parent: 1 - - uid: 18995 + - uid: 15008 components: - type: Transform - pos: -28.5,-36.5 + pos: 10.5,-3.5 parent: 1 - - uid: 19590 + - uid: 15009 components: - type: Transform - pos: -70.5,18.5 + pos: 10.5,-2.5 parent: 1 - - uid: 19592 + - uid: 15010 components: - type: Transform - pos: -93.5,-7.5 + pos: 10.5,-1.5 parent: 1 - - uid: 19596 + - uid: 15011 components: - type: Transform - pos: -6.5,-13.5 + pos: 10.5,-0.5 parent: 1 - - uid: 21123 + - uid: 15012 components: - type: Transform - pos: 9.5,-0.5 + pos: 10.5,0.5 parent: 1 - - uid: 21143 + - uid: 15013 components: - type: Transform - pos: 9.5,-3.5 + pos: 10.5,1.5 parent: 1 - - uid: 21572 + - uid: 15014 components: - type: Transform - pos: 6.5,-3.5 + pos: 10.5,2.5 parent: 1 - - uid: 21575 + - uid: 15015 components: - type: Transform - pos: 6.5,-0.5 + pos: 10.5,3.5 parent: 1 - - uid: 21576 + - uid: 15016 components: - type: Transform - pos: 7.5,-0.5 + pos: 10.5,4.5 parent: 1 - - uid: 21577 + - uid: 15017 components: - type: Transform - pos: -89.5,-19.5 + pos: 9.5,4.5 parent: 1 - - uid: 33963 + - uid: 15018 components: - type: Transform - pos: -99.5,-69.5 + pos: 8.5,4.5 parent: 1 - - uid: 33965 + - uid: 15019 components: - type: Transform - pos: -98.5,-69.5 + pos: 7.5,4.5 parent: 1 -- proto: BoozeDispenser - entities: - - uid: 1530 + - uid: 15020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 + pos: 6.5,4.5 parent: 1 - - uid: 12668 + - uid: 15021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-51.5 + pos: 5.5,4.5 parent: 1 - - uid: 13805 + - uid: 15022 components: - type: Transform - pos: 18.5,-22.5 + pos: 4.5,4.5 parent: 1 - - uid: 17533 + - uid: 15023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-0.5 + pos: 3.5,4.5 parent: 1 - - uid: 23845 + - uid: 15024 components: - type: Transform - pos: -7.5,-57.5 + pos: 2.5,4.5 parent: 1 -- proto: BoozeDispenserMachineCircuitboard - entities: - - uid: 34233 + - uid: 15025 components: - type: Transform - pos: -99.294075,-32.747967 + pos: 1.5,4.5 parent: 1 -- proto: BorgCharger - entities: - - uid: 12862 + - uid: 15026 components: - type: Transform - pos: -85.5,47.5 + pos: 1.5,3.5 parent: 1 - - uid: 29668 + - uid: 15027 components: - type: Transform - pos: -95.5,-9.5 + pos: 1.5,2.5 parent: 1 - - uid: 31681 + - uid: 15028 components: - type: Transform - pos: -22.5,-51.5 + pos: 1.5,1.5 parent: 1 - - uid: 32280 + - uid: 15031 components: - type: Transform - pos: -93.5,-9.5 + pos: -0.5,-4.5 parent: 1 - - uid: 32287 + - uid: 15032 components: - type: Transform - pos: 15.5,19.5 + pos: -1.5,-4.5 parent: 1 -- proto: BoxBeaker - entities: - - uid: 9083 + - uid: 15033 components: - type: Transform - pos: -62.54828,-24.667576 + pos: -2.5,-4.5 parent: 1 - - uid: 12248 + - uid: 15034 components: - type: Transform - pos: -26.604498,-40.19401 + pos: -2.5,-2.5 parent: 1 - - uid: 16434 + - uid: 15035 components: - type: Transform - pos: 6.5053406,-37.179287 + pos: -3.5,-4.5 parent: 1 -- proto: BoxBeanbag - entities: - - uid: 15533 + - uid: 15036 components: - type: Transform - pos: 23.508007,-19.265778 + pos: -4.5,-4.5 parent: 1 - - uid: 28743 + - uid: 15037 components: - type: Transform - pos: 23.518984,-19.390024 + pos: -5.5,-4.5 parent: 1 -- proto: BoxBodyBag - entities: - - uid: 9058 + - uid: 15038 components: - type: Transform - pos: -80.51019,-27.374659 + pos: -6.5,-4.5 parent: 1 - - uid: 9132 + - uid: 15039 components: - type: Transform - pos: 6.9590178,-35.351105 + pos: -7.5,-4.5 parent: 1 -- proto: BoxBottle - entities: - - uid: 12249 + - uid: 15040 components: - type: Transform - pos: -26.437832,-40.3191 + pos: -8.5,-4.5 parent: 1 -- proto: BoxCardboard - entities: - - uid: 5647 + - uid: 15041 components: - type: Transform - pos: -49.551132,32.999413 + pos: -9.5,-4.5 parent: 1 - - uid: 7293 + - uid: 15042 components: - type: Transform - pos: -49.37405,34.70893 + pos: -10.5,-4.5 parent: 1 - - uid: 7294 + - uid: 15043 components: - type: Transform - pos: -43.426132,34.67766 + pos: -11.5,-4.5 parent: 1 - - uid: 7295 + - uid: 15044 components: - type: Transform - pos: -43.5303,34.635963 + pos: -11.5,-3.5 parent: 1 - - uid: 7303 + - uid: 15045 components: - type: Transform - pos: -49.644882,34.667236 + pos: -11.5,-2.5 parent: 1 - - uid: 13682 + - uid: 15046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.52693,-67.32834 + pos: -11.5,-1.5 parent: 1 - - uid: 13683 + - uid: 15047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.818596,-67.964195 + pos: -11.5,-0.5 parent: 1 - - uid: 40612 + - uid: 15048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.607631,22.33284 + pos: -11.5,0.5 parent: 1 - - uid: 40613 + - uid: 15049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.420131,21.08197 + pos: -11.5,1.5 parent: 1 - - uid: 40617 + - uid: 15050 components: - type: Transform - pos: 13.555548,22.645557 + pos: -11.5,2.5 parent: 1 -- proto: BoxCartridgeCap - entities: - - uid: 8345 + - uid: 15051 components: - type: Transform - pos: -69.42907,7.6555877 + pos: -11.5,3.5 parent: 1 - - uid: 32106 + - uid: 15052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.568935,14.576718 + pos: -11.5,4.5 parent: 1 -- proto: BoxColoredLighttube - entities: - - uid: 30742 + - uid: 15053 components: - type: Transform - pos: -87.50396,-39.25258 + pos: -10.5,4.5 parent: 1 -- proto: BoxDonkSoftBox - entities: - - uid: 14488 + - uid: 15054 components: - type: Transform - pos: -119.48909,26.165625 + pos: -9.5,4.5 parent: 1 -- proto: BoxFlashbang - entities: - - uid: 12144 + - uid: 15055 components: - type: Transform - pos: 14.418488,-18.29686 + pos: -8.5,4.5 parent: 1 - - uid: 12145 + - uid: 15056 components: - type: Transform - pos: 14.5955715,-18.276012 + pos: -7.5,4.5 parent: 1 -- proto: BoxFolderBlack - entities: - - uid: 3998 + - uid: 15057 components: - type: Transform - parent: 20883 - - type: Physics - canCollide: False - - uid: 23861 + pos: -6.5,4.5 + parent: 1 + - uid: 15058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.416724,-56.06218 + pos: -5.5,4.5 parent: 1 -- proto: BoxFolderBlue - entities: - - uid: 9713 + - uid: 15059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.57248,-19.470816 + pos: -4.5,4.5 parent: 1 - - uid: 23860 + - uid: 15060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.61464,-56.06218 + pos: -3.5,4.5 parent: 1 -- proto: BoxFolderClipboard - entities: - - uid: 23862 + - uid: 15061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.416724,-55.415897 + pos: -2.5,4.5 parent: 1 -- proto: BoxFolderGreen - entities: - - uid: 4391 + - uid: 15062 components: - type: Transform - parent: 20883 - - type: Physics - canCollide: False -- proto: BoxFolderRed - entities: - - uid: 3997 + pos: -2.5,3.5 + parent: 1 + - uid: 15063 components: - type: Transform - parent: 20883 - - type: Physics - canCollide: False - - uid: 30927 + pos: -2.5,2.5 + parent: 1 + - uid: 15064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.477264,-19.33748 + pos: -2.5,1.5 parent: 1 -- proto: BoxForensicPad - entities: - - uid: 29508 + - uid: 15179 components: - type: Transform - pos: -56.320763,-40.27422 + pos: 23.5,-1.5 parent: 1 -- proto: BoxInflatable - entities: - - uid: 8150 + - uid: 15183 components: - type: Transform - pos: -106.458725,-18.385973 + pos: -136.5,-23.5 parent: 1 - - uid: 11299 + - uid: 15330 components: - type: Transform - pos: -20.443964,21.969835 + pos: -78.5,-35.5 parent: 1 -- proto: BoxLatexGloves - entities: - - uid: 9059 + - uid: 15331 components: - type: Transform - pos: -77.46853,-31.37744 + pos: -79.5,-36.5 parent: 1 - - uid: 9131 + - uid: 15382 components: - type: Transform - pos: 8.104851,-35.351105 + pos: -79.5,-32.5 parent: 1 - - uid: 28507 + - uid: 15383 components: - type: Transform - pos: -68.51415,-28.287876 + pos: -79.5,-34.5 parent: 1 -- proto: BoxLightbulb - entities: - - uid: 7196 + - uid: 15403 components: - type: Transform - pos: -20.481083,27.717798 + pos: -57.5,-66.5 parent: 1 -- proto: BoxLightMixed - entities: - - uid: 30416 + - uid: 15592 components: - type: Transform - pos: -63.501144,-35.27278 + pos: -72.5,-5.5 parent: 1 -- proto: BoxLighttube - entities: - - uid: 7195 + - uid: 16381 components: - type: Transform - pos: -20.491499,28.697645 + pos: -45.5,13.5 parent: 1 - - uid: 13908 + - uid: 16417 components: - type: Transform - pos: -6.4903593,-41.275818 + pos: -27.5,6.5 parent: 1 -- proto: BoxMagazineLightRiflePractice - entities: - - uid: 4443 + - uid: 16418 components: - type: Transform - pos: -55.5491,-48.302628 + pos: -22.5,6.5 parent: 1 -- proto: BoxMagazineMagnumSubMachineGunPractice - entities: - - uid: 4442 + - uid: 16419 components: - type: Transform - pos: -56.158474,-48.318264 + pos: -23.5,6.5 parent: 1 -- proto: BoxMagazinePistolPractice - entities: - - uid: 4441 + - uid: 16421 components: - type: Transform - pos: -56.7366,-48.302628 + pos: -45.5,-51.5 parent: 1 - - uid: 12587 + - uid: 16422 components: - type: Transform - pos: -59.432156,-48.563755 + pos: -45.5,-52.5 parent: 1 -- proto: BoxMagazineShotgunBeanbag - entities: - - uid: 12161 + - uid: 16423 components: - type: Transform - pos: -1.536452,-23.315777 + pos: -45.5,-53.5 parent: 1 -- proto: BoxMaintenanceLightbulb - entities: - - uid: 15398 + - uid: 16425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.483955,-10.801642 + pos: -45.5,-57.5 parent: 1 - - uid: 36665 + - uid: 16428 components: - type: Transform - pos: -90.28692,-68.9993 + pos: -45.5,-56.5 parent: 1 -- proto: BoxMesonScanners - entities: - - uid: 30760 + - uid: 16429 components: - type: Transform - pos: -62.49649,-35.249317 + pos: -45.5,-55.5 parent: 1 -- proto: BoxMousetrap - entities: - - uid: 7194 + - uid: 16430 components: - type: Transform - pos: -20.512333,29.72961 + pos: -45.5,-54.5 parent: 1 - - uid: 9643 + - uid: 16802 components: - type: Transform - pos: -28.507246,-2.2867155 + pos: -80.5,-36.5 parent: 1 - - uid: 13907 + - uid: 16806 components: - type: Transform - pos: -7.4903593,-41.29667 + pos: -79.5,-30.5 parent: 1 -- proto: BoxMouthSwab - entities: - - uid: 4917 + - uid: 16818 components: - type: Transform - pos: -87.65843,-27.36025 + pos: -92.5,-33.5 parent: 1 - - uid: 12570 + - uid: 17113 components: - type: Transform - pos: -16.49164,-15.313523 + pos: 9.5,17.5 parent: 1 - - uid: 29509 + - uid: 17407 components: - type: Transform - pos: -56.633263,-40.305492 + pos: -22.5,-61.5 parent: 1 -- proto: BoxMRE - entities: - - uid: 30363 + - uid: 17408 components: - type: Transform - pos: -37.584335,-66.26245 + pos: -23.5,-61.5 parent: 1 -- proto: BoxPerformer - entities: - - uid: 30413 + - uid: 17409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.18089,-48.344585 + pos: -24.5,-61.5 parent: 1 -- proto: BoxPillCanister - entities: - - uid: 16432 + - uid: 17410 components: - type: Transform - pos: 6.5053406,-37.283524 + pos: -25.5,-61.5 parent: 1 -- proto: BoxShotgunPractice - entities: - - uid: 4440 + - uid: 17411 components: - type: Transform - pos: -57.439724,-48.318264 + pos: -26.5,-61.5 parent: 1 -- proto: BoxSterileMask - entities: - - uid: 4790 + - uid: 17412 components: - type: Transform - pos: -70.48274,-19.380396 + pos: -26.5,-62.5 parent: 1 - - uid: 4791 + - uid: 17413 components: - type: Transform - pos: -65.46712,-19.380396 + pos: -26.5,-63.5 parent: 1 - - uid: 9180 + - uid: 17414 components: - type: Transform - pos: -12.47504,-37.396946 + pos: -26.5,-64.5 parent: 1 -- proto: BoxSyringe - entities: - - uid: 4681 + - uid: 17415 components: - type: Transform - pos: -62.35725,-24.963905 + pos: -25.5,-64.5 parent: 1 -- proto: BoxTrashbag - entities: - - uid: 7197 + - uid: 17416 components: - type: Transform - pos: -20.491499,26.706678 + pos: -24.5,-64.5 parent: 1 - - uid: 12079 + - uid: 17417 components: - type: Transform - pos: 17.763779,-13.805279 + pos: -23.5,-64.5 parent: 1 - - uid: 30743 + - uid: 17418 components: - type: Transform - pos: -87.51437,-38.29358 + pos: -22.5,-64.5 parent: 1 -- proto: BoxVial - entities: - - uid: 28176 + - uid: 17419 components: - type: Transform - pos: 3.4585488,-29.378923 + pos: -22.5,-63.5 parent: 1 -- proto: BoxZiptie - entities: - - uid: 1397 + - uid: 17420 components: - type: Transform - pos: -48.45456,14.719884 + pos: -22.5,-62.5 parent: 1 - - uid: 7764 + - uid: 17421 components: - type: Transform - pos: -78.494255,24.713926 + pos: -21.5,-62.5 parent: 1 - - uid: 12142 + - uid: 17422 components: - type: Transform - pos: 13.449738,-18.265587 + pos: -20.5,-62.5 parent: 1 - - uid: 12143 + - uid: 17687 components: - type: Transform - pos: 13.6268215,-18.276012 + pos: -17.5,-70.5 parent: 1 - - uid: 14924 + - uid: 17688 components: - type: Transform - pos: -46.74948,-33.33157 + pos: -18.5,-70.5 parent: 1 - - uid: 28648 + - uid: 17703 components: - type: Transform - pos: -1.480845,-20.389856 + pos: 31.5,-10.5 parent: 1 - - uid: 29448 + - uid: 17711 components: - type: Transform - pos: -9.530252,-52.395126 + pos: 29.5,-50.5 parent: 1 -- proto: BrbSign - entities: - - uid: 3177 + - uid: 17754 components: - type: Transform - pos: -36.940586,27.49595 + pos: 24.5,-49.5 parent: 1 - - uid: 8762 + - uid: 17755 components: - type: Transform - pos: -99.357864,-12.496858 + pos: 24.5,-50.5 parent: 1 -- proto: BriefcaseBrown - entities: - - uid: 42169 + - uid: 17756 components: - type: Transform - pos: 20.725468,-53.955048 + pos: 23.5,-50.5 parent: 1 -- proto: BriefcaseBrownFilled - entities: - - uid: 11918 + - uid: 17757 components: - type: Transform - pos: -20.682331,-34.14556 + pos: 22.5,-50.5 parent: 1 - - uid: 20557 + - uid: 17758 components: - type: Transform - pos: -81.21649,32.29706 + pos: 25.5,-50.5 parent: 1 - - uid: 20558 + - uid: 17759 components: - type: Transform - pos: -81.22691,32.51596 + pos: 26.5,-50.5 parent: 1 - - uid: 20559 + - uid: 17760 components: - type: Transform - pos: -81.24774,32.755707 + pos: 27.5,-50.5 parent: 1 - - uid: 30928 + - uid: 17776 components: - type: Transform - pos: -69.64716,-62.083187 + pos: 30.5,-50.5 parent: 1 - - uid: 32165 + - uid: 17778 components: - type: Transform - pos: -87.361115,0.23540133 + pos: 33.5,-10.5 parent: 1 - - uid: 36809 + - uid: 17820 components: - type: Transform - pos: 35.47866,-34.359875 + pos: 32.5,-10.5 parent: 1 -- proto: BrigTimer - entities: - - uid: 16025 + - uid: 17887 components: - - type: MetaData - name: cell 1 timer - type: Transform - pos: -50.5,-34.5 + pos: 36.5,-2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3922: - - Start: Close - - Timer: Open - - Timer: AutoClose - - uid: 30185 + - uid: 17888 components: - - type: MetaData - name: solitary B timer - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-24.5 + pos: 35.5,-2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1576: - - Start: Close - - Timer: Open - - Timer: AutoClose - - uid: 33641 + - uid: 17889 components: - - type: MetaData - name: cell 2 timer - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-37.5 + pos: 34.5,-2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3923: - - Start: Close - - Timer: Open - - Timer: AutoClose - - uid: 33642 + - uid: 17890 components: - - type: MetaData - name: cell 3 timer - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-37.5 + pos: 33.5,-2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3924: - - Start: Close - - Timer: Open - - Timer: AutoClose - - uid: 33644 + - uid: 17891 components: - - type: MetaData - name: solitary A timer - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-24.5 + pos: 32.5,-2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1577: - - Start: Close - - Timer: Open - - Timer: AutoClose -- proto: BrokenBottle - entities: - - uid: 12432 + - uid: 17892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.58995,-14.732552 + pos: 31.5,-2.5 parent: 1 - - uid: 12433 + - uid: 17893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.985783,-13.55465 + pos: 30.5,-2.5 parent: 1 - - uid: 31012 + - uid: 17894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.46251655,-43.874573 + pos: 29.5,-2.5 parent: 1 -- proto: Brutepack - entities: - - uid: 14961 + - uid: 17895 components: - type: Transform - pos: 13.949057,-21.248465 + pos: 28.5,-2.5 parent: 1 -- proto: Bucket - entities: - - uid: 923 + - uid: 17896 components: - type: Transform - pos: -34.25293,-10.207769 + pos: 27.5,-2.5 parent: 1 - - uid: 7199 + - uid: 17897 components: - type: Transform - pos: -21.981083,24.3613 + pos: 26.5,-2.5 parent: 1 - - uid: 10279 + - uid: 17898 components: - type: Transform - pos: -11.721792,9.063126 + pos: 25.5,-2.5 parent: 1 - - type: SolutionContainerManager - solutions: - bucket: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 250 - name: null - reagents: - - data: null - ReagentId: Hooch - Quantity: 100 - - uid: 12561 + - uid: 17899 components: - type: Transform - pos: -16.34122,-10.277122 + pos: 24.5,-2.5 parent: 1 - - uid: 23759 + - uid: 17900 components: - type: Transform - pos: 25.599798,-56.344418 + pos: 23.5,-2.5 parent: 1 - - type: SolutionContainerManager - solutions: - bucket: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 250 - name: null - reagents: - - data: null - ReagentId: Water - Quantity: 175 - - data: null - ReagentId: EZNutrient - Quantity: 75 - - uid: 30900 + - uid: 17901 components: - type: Transform - pos: -85.34233,-50.92668 + pos: 23.5,-3.5 parent: 1 - - uid: 36424 + - uid: 17902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.92159,-52.697895 + pos: 23.5,-4.5 parent: 1 -- proto: BulletFoam - entities: - - uid: 41128 + - uid: 17903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.46376,-18.346937 + pos: 24.5,-4.5 parent: 1 - - uid: 41129 + - uid: 17904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.224174,-18.586687 + pos: 25.5,-4.5 parent: 1 -- proto: ButchCleaver - entities: - - uid: 10523 + - uid: 17905 components: - type: Transform - pos: 23.478565,-40.32107 + pos: 26.5,-4.5 parent: 1 - - uid: 12549 + - uid: 17906 components: - type: Transform - pos: -17.665884,12.609267 + pos: 27.5,-4.5 parent: 1 -- proto: ButtonFrameCaution - entities: - - uid: 42179 + - uid: 17907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,39.5 + pos: 28.5,-4.5 parent: 1 - - uid: 42180 + - uid: 17908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,43.5 + pos: 29.5,-4.5 parent: 1 - - uid: 42181 + - uid: 17909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,44.5 + pos: 30.5,-4.5 parent: 1 - - uid: 42186 + - uid: 17910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-56.5 + pos: 31.5,-4.5 parent: 1 - - uid: 42188 + - uid: 17911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-77.5 + pos: 32.5,-4.5 parent: 1 -- proto: ButtonFrameExit - entities: - - uid: 42173 + - uid: 17912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-22.5 + pos: 33.5,-4.5 parent: 1 - - uid: 42174 + - uid: 17913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-18.5 + pos: 34.5,-4.5 parent: 1 - - uid: 42176 + - uid: 17994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-36.5 + pos: 34.5,-10.5 parent: 1 -- proto: ButtonFrameJanitor - entities: - - uid: 42175 + - uid: 18009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-26.5 + pos: 31.5,2.5 parent: 1 - - uid: 42177 + - uid: 18010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-32.5 + pos: 30.5,2.5 parent: 1 - - uid: 42178 + - uid: 18011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,32.5 + pos: 29.5,2.5 parent: 1 - - uid: 42182 + - uid: 18012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 + pos: 28.5,2.5 parent: 1 - - uid: 42183 + - uid: 18013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,0.5 + pos: 27.5,2.5 parent: 1 - - uid: 42184 + - uid: 18014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-14.5 + pos: 26.5,2.5 parent: 1 - - uid: 42185 + - uid: 18015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-45.5 + pos: 25.5,2.5 parent: 1 - - uid: 42187 + - uid: 18016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-34.5 + pos: 24.5,2.5 parent: 1 - - uid: 42189 + - uid: 18017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-10.5 + pos: 23.5,2.5 parent: 1 - - uid: 42190 + - uid: 18018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,1.5 + pos: 23.5,1.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 1114 + - uid: 18019 components: - type: Transform - pos: 22.5,5.5 + pos: 23.5,0.5 parent: 1 - - uid: 1118 + - uid: 18020 components: - type: Transform - pos: 23.5,5.5 + pos: 24.5,0.5 parent: 1 - - uid: 1699 + - uid: 18021 components: - type: Transform - pos: -1.5,-32.5 + pos: 25.5,0.5 parent: 1 - - uid: 1862 + - uid: 18022 components: - type: Transform - pos: 30.5,-10.5 + pos: 26.5,0.5 parent: 1 - - uid: 2137 + - uid: 18023 components: - type: Transform - pos: 22.5,1.5 + pos: 27.5,0.5 parent: 1 - - uid: 2223 + - uid: 18024 components: - type: Transform - pos: 26.5,-51.5 + pos: 28.5,0.5 parent: 1 - - uid: 2224 + - uid: 18025 components: - type: Transform - pos: 26.5,-53.5 + pos: 29.5,0.5 parent: 1 - - uid: 2225 + - uid: 18026 components: - type: Transform - pos: 26.5,-52.5 + pos: 30.5,0.5 parent: 1 - - uid: 2232 + - uid: 18059 components: - type: Transform - pos: 32.5,0.5 + pos: 35.5,-10.5 parent: 1 - - uid: 2234 + - uid: 18080 components: - type: Transform - pos: 14.5,-45.5 + pos: 22.5,-3.5 parent: 1 - - uid: 2236 + - uid: 18081 components: - type: Transform - pos: 15.5,-45.5 + pos: -58.5,-51.5 parent: 1 - - uid: 2237 + - uid: 18111 components: - type: Transform - pos: 14.5,-44.5 + pos: 24.5,15.5 parent: 1 - - uid: 2239 + - uid: 18112 components: - type: Transform - pos: 43.5,29.5 + pos: 24.5,16.5 parent: 1 - - uid: 2240 + - uid: 18113 components: - type: Transform - pos: 43.5,26.5 + pos: 24.5,17.5 parent: 1 - - uid: 2241 + - uid: 18114 components: - type: Transform - pos: 43.5,25.5 + pos: 24.5,18.5 parent: 1 - - uid: 2242 + - uid: 18115 components: - type: Transform - pos: 43.5,23.5 + pos: 24.5,19.5 parent: 1 - - uid: 2243 + - uid: 18116 components: - type: Transform - pos: 43.5,21.5 + pos: 24.5,20.5 parent: 1 - - uid: 2267 + - uid: 18117 components: - type: Transform - pos: 43.5,19.5 + pos: 24.5,21.5 parent: 1 - - uid: 2473 + - uid: 18118 components: - type: Transform - pos: -105.5,-25.5 + pos: 25.5,21.5 parent: 1 - - uid: 2475 + - uid: 18119 components: - type: Transform - pos: -107.5,-12.5 + pos: 26.5,21.5 parent: 1 - - uid: 2477 + - uid: 18127 components: - type: Transform - pos: -29.5,24.5 + pos: 26.5,20.5 parent: 1 - - uid: 2478 + - uid: 18196 components: - type: Transform - pos: -105.5,-23.5 + pos: -21.5,-42.5 parent: 1 - - uid: 2480 + - uid: 18197 components: - type: Transform - pos: -105.5,-24.5 + pos: -21.5,-41.5 parent: 1 - - uid: 2481 + - uid: 18198 components: - type: Transform - pos: -105.5,-21.5 + pos: -21.5,-40.5 parent: 1 - - uid: 2482 + - uid: 18199 components: - type: Transform - pos: -105.5,-22.5 + pos: -20.5,-40.5 parent: 1 - - uid: 2483 + - uid: 18200 components: - type: Transform - pos: -105.5,-20.5 + pos: -22.5,-40.5 parent: 1 - - uid: 2486 + - uid: 18201 components: - type: Transform - pos: -105.5,-19.5 + pos: -23.5,-40.5 parent: 1 - - uid: 2523 + - uid: 18202 components: - type: Transform - pos: -101.5,-19.5 + pos: -24.5,-40.5 parent: 1 - - uid: 2536 + - uid: 18203 components: - type: Transform - pos: -101.5,-20.5 + pos: -24.5,-39.5 parent: 1 - - uid: 3149 + - uid: 18204 components: - type: Transform - pos: -77.5,-49.5 + pos: -24.5,-38.5 parent: 1 - - uid: 3686 + - uid: 18205 components: - type: Transform - pos: -76.5,6.5 + pos: -24.5,-37.5 parent: 1 - - uid: 3735 + - uid: 18206 components: - type: Transform - pos: -75.5,6.5 + pos: -25.5,-37.5 parent: 1 - - uid: 4699 + - uid: 18207 components: - type: Transform - pos: -79.5,-33.5 + pos: -26.5,-37.5 parent: 1 - - uid: 4738 + - uid: 18208 components: - type: Transform - pos: -79.5,-35.5 + pos: -24.5,-36.5 parent: 1 - - uid: 4771 + - uid: 18209 components: - type: Transform - pos: -74.5,-34.5 + pos: -23.5,-36.5 parent: 1 - - uid: 4782 + - uid: 18210 components: - type: Transform - pos: -84.5,-39.5 + pos: -22.5,-36.5 parent: 1 - - uid: 4792 + - uid: 18211 components: - type: Transform - pos: -79.5,-39.5 + pos: -21.5,-36.5 parent: 1 - - uid: 4924 + - uid: 18212 components: - type: Transform - pos: -96.5,-42.5 + pos: -21.5,-35.5 parent: 1 - - uid: 5310 + - uid: 18213 components: - type: Transform - pos: -96.5,-11.5 + pos: -21.5,-34.5 parent: 1 - - uid: 5482 + - uid: 18214 components: - type: Transform - pos: -101.5,-26.5 + pos: -21.5,-33.5 parent: 1 - - uid: 5517 + - uid: 18215 components: - type: Transform - pos: -106.5,-12.5 + pos: -21.5,-32.5 parent: 1 - - uid: 5615 + - uid: 18216 components: - type: Transform - pos: -100.5,-26.5 + pos: -21.5,-31.5 parent: 1 - - uid: 5946 + - uid: 18217 components: - type: Transform - pos: -101.5,-25.5 + pos: -24.5,-35.5 parent: 1 - - uid: 6641 + - uid: 18218 components: - type: Transform - pos: -38.5,-75.5 + pos: -24.5,-34.5 parent: 1 - - uid: 6642 + - uid: 18219 components: - type: Transform - pos: -40.5,-75.5 + pos: -24.5,-33.5 parent: 1 - - uid: 6945 + - uid: 18220 components: - type: Transform - pos: -59.5,-38.5 + pos: -24.5,-32.5 parent: 1 - - uid: 6946 + - uid: 18221 components: - type: Transform - pos: -59.5,-37.5 + pos: -24.5,-31.5 parent: 1 - - uid: 6991 + - uid: 18222 components: - type: Transform - pos: -59.5,-36.5 + pos: -25.5,-34.5 parent: 1 - - uid: 7463 + - uid: 18223 components: - type: Transform - pos: -103.5,-0.5 + pos: -26.5,-34.5 parent: 1 - - uid: 8038 + - uid: 18224 components: - type: Transform - pos: -59.5,-35.5 + pos: -27.5,-34.5 parent: 1 - - uid: 8055 + - uid: 18225 components: - type: Transform - pos: -59.5,-34.5 + pos: -27.5,-33.5 parent: 1 - - uid: 8064 + - uid: 18226 components: - type: Transform - pos: -59.5,-33.5 + pos: -27.5,-32.5 parent: 1 - - uid: 8109 + - uid: 18227 components: - type: Transform - pos: -59.5,-32.5 + pos: -27.5,-31.5 parent: 1 - - uid: 8110 + - uid: 18228 components: - type: Transform - pos: -59.5,-31.5 + pos: -24.5,-41.5 parent: 1 - - uid: 8111 + - uid: 18229 components: - type: Transform - pos: -59.5,-30.5 + pos: -24.5,-42.5 parent: 1 - - uid: 8116 + - uid: 18230 components: - type: Transform - pos: -59.5,-22.5 + pos: -24.5,-43.5 parent: 1 - - uid: 8151 + - uid: 18231 components: - type: Transform - pos: -59.5,-29.5 + pos: -24.5,-44.5 parent: 1 - - uid: 8162 + - uid: 18232 components: - type: Transform - pos: -59.5,-28.5 + pos: -23.5,-44.5 parent: 1 - - uid: 8163 + - uid: 18233 components: - type: Transform - pos: -59.5,-27.5 + pos: -22.5,-44.5 parent: 1 - - uid: 8167 + - uid: 18234 components: - type: Transform - pos: -59.5,-26.5 + pos: -21.5,-44.5 parent: 1 - - uid: 8169 + - uid: 18235 components: - type: Transform - pos: -59.5,-25.5 + pos: -20.5,-44.5 parent: 1 - - uid: 8173 + - uid: 18236 components: - type: Transform - pos: -59.5,-24.5 + pos: -19.5,-44.5 parent: 1 - - uid: 8234 + - uid: 18237 components: - type: Transform - pos: -65.5,27.5 + pos: -19.5,-43.5 parent: 1 - - uid: 8367 + - uid: 18238 components: - type: Transform - pos: -63.5,-14.5 + pos: -19.5,-45.5 parent: 1 - - uid: 8368 + - uid: 18239 components: - type: Transform - pos: -62.5,-14.5 + pos: -31.5,-37.5 parent: 1 - - uid: 8369 + - uid: 18240 components: - type: Transform - pos: -61.5,-14.5 + pos: -31.5,-36.5 parent: 1 - - uid: 8370 + - uid: 18241 components: - type: Transform - pos: -60.5,-14.5 + pos: -32.5,-36.5 parent: 1 - - uid: 8371 + - uid: 18242 components: - type: Transform - pos: -59.5,-14.5 + pos: -32.5,-35.5 parent: 1 - - uid: 8372 + - uid: 18243 components: - type: Transform - pos: -58.5,-14.5 + pos: -32.5,-34.5 parent: 1 - - uid: 8373 + - uid: 18244 components: - type: Transform - pos: -57.5,-14.5 + pos: -32.5,-33.5 parent: 1 - - uid: 8374 + - uid: 18245 components: - type: Transform - pos: -56.5,-14.5 + pos: -31.5,-38.5 parent: 1 - - uid: 8375 + - uid: 18246 components: - type: Transform - pos: -55.5,-14.5 + pos: -31.5,-39.5 parent: 1 - - uid: 8376 + - uid: 18247 components: - type: Transform - pos: -54.5,-14.5 + pos: -30.5,-39.5 parent: 1 - - uid: 8377 + - uid: 18248 components: - type: Transform - pos: -53.5,-14.5 + pos: -29.5,-39.5 parent: 1 - - uid: 8378 + - uid: 18249 components: - type: Transform - pos: -52.5,-14.5 + pos: -29.5,-40.5 parent: 1 - - uid: 8379 + - uid: 18250 components: - type: Transform - pos: -60.5,-13.5 + pos: -29.5,-41.5 parent: 1 - - uid: 8380 + - uid: 18251 components: - type: Transform - pos: -60.5,-12.5 + pos: -29.5,-42.5 parent: 1 - - uid: 8381 + - uid: 18252 components: - type: Transform - pos: -56.5,-13.5 + pos: -29.5,-43.5 parent: 1 - - uid: 8382 + - uid: 18253 components: - type: Transform - pos: -56.5,-12.5 + pos: -29.5,-44.5 parent: 1 - - uid: 8383 + - uid: 18254 components: - type: Transform - pos: -52.5,-13.5 + pos: -29.5,-45.5 parent: 1 - - uid: 8384 + - uid: 18255 components: - type: Transform - pos: -52.5,-12.5 + pos: -29.5,-46.5 parent: 1 - - uid: 8385 + - uid: 18256 components: - type: Transform - pos: -52.5,-11.5 + pos: -29.5,-47.5 parent: 1 - - uid: 8386 + - uid: 18257 components: - type: Transform - pos: -56.5,-11.5 + pos: -28.5,-47.5 parent: 1 - - uid: 8387 + - uid: 18258 components: - type: Transform - pos: -60.5,-11.5 + pos: -28.5,-48.5 parent: 1 - - uid: 8389 + - uid: 18259 components: - type: Transform - pos: -105.5,-5.5 + pos: -28.5,-49.5 parent: 1 - - uid: 8390 + - uid: 18260 components: - type: Transform - pos: -105.5,-6.5 + pos: -29.5,-49.5 parent: 1 - - uid: 8391 + - uid: 18261 components: - type: Transform - pos: -105.5,-7.5 + pos: -29.5,-50.5 parent: 1 - - uid: 8392 + - uid: 18262 components: - type: Transform - pos: -106.5,-7.5 + pos: -30.5,-47.5 parent: 1 - - uid: 8393 + - uid: 18263 components: - type: Transform - pos: -107.5,-7.5 + pos: -31.5,-47.5 parent: 1 - - uid: 8394 + - uid: 18264 components: - type: Transform - pos: -108.5,-7.5 + pos: -32.5,-47.5 parent: 1 - - uid: 8395 + - uid: 18265 components: - type: Transform - pos: -109.5,-7.5 + pos: -33.5,-47.5 parent: 1 - - uid: 8396 + - uid: 18266 components: - type: Transform - pos: -110.5,-7.5 + pos: -34.5,-47.5 parent: 1 - - uid: 8397 + - uid: 18267 components: - type: Transform - pos: -111.5,-7.5 + pos: -35.5,-47.5 parent: 1 - - uid: 8398 + - uid: 18268 components: - type: Transform - pos: -112.5,-7.5 + pos: -36.5,-47.5 parent: 1 - - uid: 8399 + - uid: 18269 components: - type: Transform - pos: -113.5,-7.5 + pos: -39.5,-39.5 parent: 1 - - uid: 8400 + - uid: 18270 components: - type: Transform - pos: -114.5,-7.5 + pos: -38.5,-39.5 parent: 1 - - uid: 8401 + - uid: 18271 components: - type: Transform - pos: -115.5,-7.5 + pos: -37.5,-39.5 parent: 1 - - uid: 8402 + - uid: 18272 components: - type: Transform - pos: -116.5,-7.5 + pos: -36.5,-39.5 parent: 1 - - uid: 8403 + - uid: 18273 components: - type: Transform - pos: -117.5,-7.5 + pos: -36.5,-40.5 parent: 1 - - uid: 8404 + - uid: 18274 components: - type: Transform - pos: -118.5,-7.5 + pos: -36.5,-41.5 parent: 1 - - uid: 8405 + - uid: 18275 components: - type: Transform - pos: -119.5,-7.5 + pos: -36.5,-42.5 parent: 1 - - uid: 8406 + - uid: 18276 components: - type: Transform - pos: -120.5,-7.5 + pos: -36.5,-43.5 parent: 1 - - uid: 8407 + - uid: 18277 components: - type: Transform - pos: -121.5,-7.5 + pos: -37.5,-43.5 parent: 1 - - uid: 8408 + - uid: 18278 components: - type: Transform - pos: -122.5,-7.5 + pos: -35.5,-43.5 parent: 1 - - uid: 8409 + - uid: 18279 components: - type: Transform - pos: -122.5,-8.5 + pos: -34.5,-43.5 parent: 1 - - uid: 8410 + - uid: 18280 components: - type: Transform - pos: -122.5,-9.5 + pos: -33.5,-43.5 parent: 1 - - uid: 8411 + - uid: 18281 components: - type: Transform - pos: -122.5,-10.5 + pos: -32.5,-43.5 parent: 1 - - uid: 8412 + - uid: 18282 components: - type: Transform - pos: -121.5,-10.5 + pos: -43.5,-55.5 parent: 1 - - uid: 8413 + - uid: 18283 components: - type: Transform - pos: -122.5,-6.5 + pos: -42.5,-55.5 parent: 1 - - uid: 8414 + - uid: 18284 components: - type: Transform - pos: -122.5,-5.5 + pos: -41.5,-55.5 parent: 1 - - uid: 8415 + - uid: 18285 components: - type: Transform - pos: -122.5,-4.5 + pos: -40.5,-55.5 parent: 1 - - uid: 8416 + - uid: 18286 components: - type: Transform - pos: -122.5,-3.5 + pos: -39.5,-55.5 parent: 1 - - uid: 8417 + - uid: 18287 components: - type: Transform - pos: -122.5,-2.5 + pos: -38.5,-55.5 parent: 1 - - uid: 8419 + - uid: 18288 components: - type: Transform - pos: -122.5,-1.5 + pos: -38.5,-54.5 parent: 1 - - uid: 8420 + - uid: 18289 components: - type: Transform - pos: -122.5,-0.5 + pos: -38.5,-53.5 parent: 1 - - uid: 8421 + - uid: 18290 components: - type: Transform - pos: -122.5,0.5 + pos: -38.5,-52.5 parent: 1 - - uid: 8422 + - uid: 18291 components: - type: Transform - pos: -122.5,1.5 + pos: -37.5,-52.5 parent: 1 - - uid: 8423 + - uid: 18292 components: - type: Transform - pos: -122.5,2.5 + pos: -36.5,-52.5 parent: 1 - - uid: 8424 + - uid: 18293 components: - type: Transform - pos: -122.5,3.5 + pos: -35.5,-52.5 parent: 1 - - uid: 8425 + - uid: 18294 components: - type: Transform - pos: -122.5,4.5 + pos: -34.5,-52.5 parent: 1 - - uid: 8426 + - uid: 18295 components: - type: Transform - pos: -122.5,5.5 + pos: -34.5,-53.5 parent: 1 - - uid: 8427 + - uid: 18296 components: - type: Transform - pos: -122.5,6.5 + pos: -34.5,-54.5 parent: 1 - - uid: 8428 + - uid: 18297 components: - type: Transform - pos: -122.5,7.5 + pos: -35.5,-55.5 parent: 1 - - uid: 8429 + - uid: 18298 components: - type: Transform - pos: -122.5,8.5 + pos: -35.5,-54.5 parent: 1 - - uid: 8430 + - uid: 18299 components: - type: Transform - pos: -122.5,9.5 + pos: -35.5,-56.5 parent: 1 - - uid: 8431 + - uid: 18300 components: - type: Transform - pos: -122.5,10.5 + pos: -35.5,-57.5 parent: 1 - - uid: 8432 + - uid: 18301 components: - type: Transform - pos: -122.5,11.5 + pos: -35.5,-58.5 parent: 1 - - uid: 8433 + - uid: 18302 components: - type: Transform - pos: -122.5,12.5 + pos: -40.5,-56.5 parent: 1 - - uid: 8434 + - uid: 18303 components: - type: Transform - pos: -122.5,13.5 + pos: -40.5,-57.5 parent: 1 - - uid: 8435 + - uid: 18304 components: - type: Transform - pos: -122.5,14.5 + pos: -40.5,-58.5 parent: 1 - - uid: 8436 + - uid: 18305 components: - type: Transform - pos: -122.5,15.5 + pos: -40.5,-59.5 parent: 1 - - uid: 8437 + - uid: 18306 components: - type: Transform - pos: -122.5,16.5 + pos: -40.5,-60.5 parent: 1 - - uid: 8438 + - uid: 18307 components: - type: Transform - pos: -122.5,17.5 + pos: -41.5,-60.5 parent: 1 - - uid: 8439 + - uid: 18308 components: - type: Transform - pos: -122.5,18.5 + pos: -41.5,-61.5 parent: 1 - - uid: 8440 + - uid: 18309 components: - type: Transform - pos: -122.5,19.5 + pos: -42.5,-61.5 parent: 1 - - uid: 8441 + - uid: 18310 components: - type: Transform - pos: -122.5,20.5 + pos: -43.5,-61.5 parent: 1 - - uid: 8442 + - uid: 18311 components: - type: Transform - pos: -122.5,21.5 + pos: -44.5,-61.5 parent: 1 - - uid: 8443 + - uid: 18312 components: - type: Transform - pos: -122.5,22.5 + pos: -45.5,-61.5 parent: 1 - - uid: 8444 + - uid: 18313 components: - type: Transform - pos: -121.5,22.5 + pos: -45.5,-62.5 parent: 1 - - uid: 8445 + - uid: 18314 components: - type: Transform - pos: -120.5,22.5 + pos: -45.5,-63.5 parent: 1 - - uid: 8446 + - uid: 18315 components: - type: Transform - pos: -119.5,22.5 + pos: -45.5,-64.5 parent: 1 - - uid: 8447 + - uid: 18316 components: - type: Transform - pos: -118.5,22.5 + pos: -45.5,-65.5 parent: 1 - - uid: 8506 + - uid: 18317 components: - type: Transform - pos: -96.5,-12.5 + pos: -45.5,-66.5 parent: 1 - - uid: 8507 + - uid: 18318 components: - type: Transform - pos: -95.5,-12.5 + pos: -45.5,-67.5 parent: 1 - - uid: 8508 + - uid: 18319 components: - type: Transform - pos: -94.5,-12.5 + pos: -45.5,-68.5 parent: 1 - - uid: 8509 + - uid: 18320 components: - type: Transform - pos: -93.5,-12.5 + pos: -46.5,-68.5 parent: 1 - - uid: 8510 + - uid: 18321 components: - type: Transform - pos: -93.5,-13.5 + pos: -47.5,-68.5 parent: 1 - - uid: 8511 + - uid: 18322 components: - type: Transform - pos: -93.5,-14.5 + pos: -45.5,-69.5 parent: 1 - - uid: 8512 + - uid: 18323 components: - type: Transform - pos: -92.5,-14.5 + pos: -44.5,-69.5 parent: 1 - - uid: 8513 + - uid: 18324 components: - type: Transform - pos: -91.5,-14.5 + pos: -43.5,-69.5 parent: 1 - - uid: 8514 + - uid: 18325 components: - type: Transform - pos: -90.5,-14.5 + pos: -42.5,-69.5 parent: 1 - - uid: 8515 + - uid: 18326 components: - type: Transform - pos: -89.5,-14.5 + pos: -41.5,-69.5 parent: 1 - - uid: 8516 + - uid: 18327 components: - type: Transform - pos: -88.5,-14.5 + pos: -41.5,-68.5 parent: 1 - - uid: 8517 + - uid: 18328 components: - type: Transform - pos: -87.5,-14.5 + pos: -41.5,-67.5 parent: 1 - - uid: 8518 + - uid: 18329 components: - type: Transform - pos: -86.5,-14.5 + pos: -41.5,-66.5 parent: 1 - - uid: 8520 + - uid: 18330 components: - type: Transform - pos: -93.5,-15.5 + pos: -42.5,-66.5 parent: 1 - - uid: 8521 + - uid: 18331 components: - type: Transform - pos: -93.5,-16.5 + pos: -43.5,-66.5 parent: 1 - - uid: 8522 + - uid: 18332 components: - type: Transform - pos: -94.5,-16.5 + pos: -44.5,-66.5 parent: 1 - - uid: 8523 + - uid: 18333 components: - type: Transform - pos: -95.5,-16.5 + pos: -27.5,-75.5 parent: 1 - - uid: 8524 + - uid: 18334 components: - type: Transform - pos: -89.5,-15.5 + pos: -27.5,-74.5 parent: 1 - - uid: 8525 + - uid: 18335 components: - type: Transform - pos: -85.5,-14.5 + pos: -27.5,-73.5 parent: 1 - - uid: 8526 + - uid: 18336 components: - type: Transform - pos: -84.5,-14.5 + pos: -27.5,-72.5 parent: 1 - - uid: 8527 + - uid: 18337 components: - type: Transform - pos: -83.5,-14.5 + pos: -28.5,-72.5 parent: 1 - - uid: 8528 + - uid: 18338 components: - type: Transform - pos: -82.5,-14.5 + pos: -28.5,-71.5 parent: 1 - - uid: 8529 + - uid: 18339 components: - type: Transform - pos: -81.5,-14.5 + pos: -26.5,-73.5 parent: 1 - - uid: 8530 + - uid: 18340 components: - type: Transform - pos: -80.5,-14.5 + pos: -28.5,-70.5 parent: 1 - - uid: 8531 + - uid: 18341 components: - type: Transform - pos: -79.5,-14.5 + pos: -29.5,-70.5 parent: 1 - - uid: 8532 + - uid: 18342 components: - type: Transform - pos: -78.5,-14.5 + pos: -30.5,-70.5 parent: 1 - - uid: 8533 + - uid: 18343 components: - type: Transform - pos: -77.5,-14.5 + pos: -31.5,-70.5 parent: 1 - - uid: 8534 + - uid: 18344 components: - type: Transform - pos: -78.5,-13.5 + pos: -31.5,-69.5 parent: 1 - - uid: 8535 + - uid: 18345 components: - type: Transform - pos: -76.5,-14.5 + pos: -31.5,-68.5 parent: 1 - - uid: 8536 + - uid: 18346 components: - type: Transform - pos: -75.5,-14.5 + pos: -31.5,-67.5 parent: 1 - - uid: 8537 + - uid: 18347 components: - type: Transform - pos: -74.5,-14.5 + pos: -31.5,-66.5 parent: 1 - - uid: 8538 + - uid: 18348 components: - type: Transform - pos: -73.5,-14.5 + pos: -31.5,-65.5 parent: 1 - - uid: 8539 + - uid: 18349 components: - type: Transform - pos: -72.5,-14.5 + pos: -31.5,-64.5 parent: 1 - - uid: 8540 + - uid: 18350 components: - type: Transform - pos: -71.5,-14.5 + pos: -31.5,-63.5 parent: 1 - - uid: 8541 + - uid: 18351 components: - type: Transform - pos: -70.5,-14.5 + pos: -31.5,-62.5 parent: 1 - - uid: 8542 + - uid: 18352 components: - type: Transform - pos: -69.5,-14.5 + pos: -31.5,-61.5 parent: 1 - - uid: 8543 + - uid: 18353 components: - type: Transform - pos: -68.5,-14.5 + pos: -31.5,-60.5 parent: 1 - - uid: 8544 + - uid: 18354 components: - type: Transform - pos: -68.5,-13.5 + pos: -31.5,-59.5 parent: 1 - - uid: 8545 + - uid: 18355 components: - type: Transform - pos: -67.5,-14.5 + pos: -31.5,-58.5 parent: 1 - - uid: 8546 + - uid: 18356 components: - type: Transform - pos: -66.5,-14.5 + pos: -31.5,-57.5 parent: 1 - - uid: 8547 + - uid: 18357 components: - type: Transform - pos: -65.5,-14.5 + pos: -30.5,-57.5 parent: 1 - - uid: 8548 + - uid: 18358 components: - type: Transform - pos: -64.5,-14.5 + pos: -30.5,-56.5 parent: 1 - - uid: 8710 + - uid: 18359 components: - type: Transform - pos: -59.5,-23.5 + pos: -29.5,-56.5 parent: 1 - - uid: 8715 + - uid: 18360 components: - type: Transform - pos: -70.5,-7.5 + pos: -28.5,-56.5 parent: 1 - - uid: 8872 + - uid: 18361 components: - type: Transform - pos: -40.5,-76.5 + pos: -27.5,-56.5 parent: 1 - - uid: 8939 + - uid: 18362 components: - type: Transform - pos: 27.5,8.5 + pos: -26.5,-56.5 parent: 1 - - uid: 9046 + - uid: 18379 components: - type: Transform - pos: -92.5,-34.5 + pos: -31.5,-71.5 parent: 1 - - uid: 9165 + - uid: 18380 components: - type: Transform - pos: -62.5,-28.5 + pos: -31.5,-72.5 parent: 1 - - uid: 9662 + - uid: 18381 components: - type: Transform - pos: -61.5,-28.5 + pos: -31.5,-73.5 parent: 1 - - uid: 9903 + - uid: 18382 components: - type: Transform - pos: -12.5,-8.5 + pos: -31.5,-74.5 parent: 1 - - uid: 10625 + - uid: 18383 components: - type: Transform - pos: 28.5,-50.5 + pos: -31.5,-75.5 parent: 1 - - uid: 11107 + - uid: 18384 components: - type: Transform - pos: -19.5,-70.5 + pos: -31.5,-76.5 parent: 1 - - uid: 11112 + - uid: 18385 components: - type: Transform - pos: -20.5,-70.5 + pos: -32.5,-76.5 parent: 1 - - uid: 11113 + - uid: 18386 components: - type: Transform - pos: -21.5,-70.5 + pos: -31.5,-77.5 parent: 1 - - uid: 11114 + - uid: 18387 components: - type: Transform - pos: -21.5,-71.5 + pos: -31.5,-78.5 parent: 1 - - uid: 13243 + - uid: 18388 components: - type: Transform - pos: -25.5,21.5 + pos: -31.5,-79.5 parent: 1 - - uid: 13260 + - uid: 18389 components: - type: Transform - pos: 48.5,-14.5 + pos: -31.5,-80.5 parent: 1 - - uid: 13272 + - uid: 18390 components: - type: Transform - pos: 52.5,-14.5 + pos: -32.5,-80.5 parent: 1 - - uid: 13276 + - uid: 18391 components: - type: Transform - pos: -25.5,20.5 + pos: -33.5,-80.5 parent: 1 - - uid: 13292 + - uid: 18392 components: - type: Transform - pos: -24.5,20.5 + pos: -34.5,-80.5 parent: 1 - - uid: 13314 + - uid: 18393 components: - type: Transform - pos: -23.5,20.5 + pos: -32.5,-71.5 parent: 1 - - uid: 13333 + - uid: 18394 components: - type: Transform - pos: 23.5,-0.5 + pos: -33.5,-71.5 parent: 1 - - uid: 13497 + - uid: 18395 components: - type: Transform - pos: -22.5,20.5 + pos: -34.5,-71.5 parent: 1 - - uid: 13530 + - uid: 18396 components: - type: Transform - pos: -21.5,20.5 + pos: -34.5,-72.5 parent: 1 - - uid: 14633 + - uid: 18397 components: - type: Transform - pos: -82.5,-39.5 + pos: -34.5,-73.5 parent: 1 - - uid: 14987 + - uid: 18398 components: - type: Transform - pos: 1.5,-12.5 + pos: -34.5,-74.5 parent: 1 - - uid: 14988 + - uid: 18399 components: - type: Transform - pos: 0.5,-12.5 + pos: -35.5,-74.5 parent: 1 - - uid: 14989 + - uid: 18400 components: - type: Transform - pos: 0.5,-11.5 + pos: -36.5,-74.5 parent: 1 - - uid: 14990 + - uid: 18401 components: - type: Transform - pos: 0.5,-10.5 + pos: -37.5,-74.5 parent: 1 - - uid: 14991 + - uid: 18402 components: - type: Transform - pos: 0.5,-9.5 + pos: -38.5,-74.5 parent: 1 - - uid: 14992 + - uid: 18404 components: - type: Transform - pos: 0.5,-8.5 + pos: -40.5,-74.5 parent: 1 - - uid: 14993 + - uid: 18405 components: - type: Transform - pos: 0.5,-7.5 + pos: -41.5,-74.5 parent: 1 - - uid: 14994 + - uid: 18406 components: - type: Transform - pos: 0.5,-6.5 + pos: -42.5,-74.5 parent: 1 - - uid: 14995 + - uid: 18407 components: - type: Transform - pos: 0.5,-5.5 + pos: -43.5,-74.5 parent: 1 - - uid: 14996 + - uid: 18408 components: - type: Transform - pos: 0.5,-4.5 + pos: -44.5,-74.5 parent: 1 - - uid: 14997 + - uid: 18409 components: - type: Transform - pos: 1.5,-4.5 + pos: -45.5,-74.5 parent: 1 - - uid: 14998 + - uid: 18410 components: - type: Transform - pos: -1.5,-2.5 + pos: -46.5,-74.5 parent: 1 - - uid: 14999 + - uid: 18411 components: - type: Transform - pos: 2.5,-4.5 + pos: -47.5,-74.5 parent: 1 - - uid: 15000 + - uid: 18412 components: - type: Transform - pos: 3.5,-4.5 + pos: -48.5,-74.5 parent: 1 - - uid: 15001 + - uid: 18413 components: - type: Transform - pos: 4.5,-4.5 + pos: -49.5,-74.5 parent: 1 - - uid: 15002 + - uid: 18414 components: - type: Transform - pos: 5.5,-4.5 + pos: -50.5,-74.5 parent: 1 - - uid: 15003 + - uid: 18415 components: - type: Transform - pos: 6.5,-4.5 + pos: -51.5,-74.5 parent: 1 - - uid: 15004 + - uid: 18416 components: - type: Transform - pos: 7.5,-4.5 + pos: -52.5,-74.5 parent: 1 - - uid: 15005 + - uid: 18417 components: - type: Transform - pos: 8.5,-4.5 + pos: -53.5,-74.5 parent: 1 - - uid: 15006 + - uid: 18418 components: - type: Transform - pos: 9.5,-4.5 + pos: -53.5,-73.5 parent: 1 - - uid: 15007 + - uid: 18419 components: - type: Transform - pos: 10.5,-4.5 + pos: -53.5,-72.5 parent: 1 - - uid: 15008 + - uid: 18420 components: - type: Transform - pos: 10.5,-3.5 + pos: -53.5,-71.5 parent: 1 - - uid: 15009 + - uid: 18421 components: - type: Transform - pos: 10.5,-2.5 + pos: -53.5,-70.5 parent: 1 - - uid: 15010 + - uid: 18422 components: - type: Transform - pos: 10.5,-1.5 + pos: -53.5,-69.5 parent: 1 - - uid: 15011 + - uid: 18423 components: - type: Transform - pos: 10.5,-0.5 + pos: -53.5,-68.5 parent: 1 - - uid: 15012 + - uid: 18424 components: - type: Transform - pos: 10.5,0.5 + pos: -53.5,-67.5 parent: 1 - - uid: 15013 + - uid: 18425 components: - type: Transform - pos: 10.5,1.5 + pos: -53.5,-66.5 parent: 1 - - uid: 15014 + - uid: 18426 components: - type: Transform - pos: 10.5,2.5 + pos: -53.5,-65.5 parent: 1 - - uid: 15015 + - uid: 18427 components: - type: Transform - pos: 10.5,3.5 + pos: -52.5,-65.5 parent: 1 - - uid: 15016 + - uid: 18428 components: - type: Transform - pos: 10.5,4.5 + pos: -51.5,-65.5 parent: 1 - - uid: 15017 + - uid: 18429 components: - type: Transform - pos: 9.5,4.5 + pos: -50.5,-65.5 parent: 1 - - uid: 15018 + - uid: 18430 components: - type: Transform - pos: 8.5,4.5 + pos: -49.5,-65.5 parent: 1 - - uid: 15019 + - uid: 18431 components: - type: Transform - pos: 7.5,4.5 + pos: -49.5,-64.5 parent: 1 - - uid: 15020 + - uid: 18432 components: - type: Transform - pos: 6.5,4.5 + pos: -49.5,-63.5 parent: 1 - - uid: 15021 + - uid: 18433 components: - type: Transform - pos: 5.5,4.5 + pos: -49.5,-62.5 parent: 1 - - uid: 15022 + - uid: 18434 components: - type: Transform - pos: 4.5,4.5 + pos: -49.5,-61.5 parent: 1 - - uid: 15023 + - uid: 18435 components: - type: Transform - pos: 3.5,4.5 + pos: -49.5,-60.5 parent: 1 - - uid: 15024 + - uid: 18436 components: - type: Transform - pos: 2.5,4.5 + pos: -49.5,-59.5 parent: 1 - - uid: 15025 + - uid: 18437 components: - type: Transform - pos: 1.5,4.5 + pos: -48.5,-59.5 parent: 1 - - uid: 15026 + - uid: 18438 components: - type: Transform - pos: 1.5,3.5 + pos: -47.5,-59.5 parent: 1 - - uid: 15027 + - uid: 18439 components: - type: Transform - pos: 1.5,2.5 + pos: -46.5,-59.5 parent: 1 - - uid: 15028 + - uid: 18440 components: - type: Transform - pos: 1.5,1.5 + pos: -45.5,-59.5 parent: 1 - - uid: 15031 + - uid: 18441 components: - type: Transform - pos: -0.5,-4.5 + pos: -45.5,-58.5 parent: 1 - - uid: 15032 + - uid: 18449 components: - type: Transform - pos: -1.5,-4.5 + pos: -44.5,-51.5 parent: 1 - - uid: 15033 + - uid: 18450 components: - type: Transform - pos: -2.5,-4.5 + pos: -43.5,-51.5 parent: 1 - - uid: 15034 + - uid: 18451 components: - type: Transform - pos: -2.5,-2.5 + pos: -42.5,-51.5 parent: 1 - - uid: 15035 + - uid: 18452 components: - type: Transform - pos: -3.5,-4.5 + pos: -42.5,-50.5 parent: 1 - - uid: 15036 + - uid: 18453 components: - type: Transform - pos: -4.5,-4.5 + pos: -42.5,-49.5 parent: 1 - - uid: 15037 + - uid: 18454 components: - type: Transform - pos: -5.5,-4.5 + pos: -42.5,-48.5 parent: 1 - - uid: 15038 + - uid: 18455 components: - type: Transform - pos: -6.5,-4.5 + pos: -41.5,-48.5 parent: 1 - - uid: 15039 + - uid: 18466 components: - type: Transform - pos: -7.5,-4.5 + pos: -40.5,-38.5 parent: 1 - - uid: 15040 + - uid: 18467 components: - type: Transform - pos: -8.5,-4.5 + pos: -40.5,-37.5 parent: 1 - - uid: 15041 + - uid: 18468 components: - type: Transform - pos: -9.5,-4.5 + pos: -40.5,-36.5 parent: 1 - - uid: 15042 + - uid: 18469 components: - type: Transform - pos: -10.5,-4.5 + pos: -40.5,-35.5 parent: 1 - - uid: 15043 + - uid: 18470 components: - type: Transform - pos: -11.5,-4.5 + pos: -39.5,-35.5 parent: 1 - - uid: 15044 + - uid: 18471 components: - type: Transform - pos: -11.5,-3.5 + pos: -38.5,-35.5 parent: 1 - - uid: 15045 + - uid: 18472 components: - type: Transform - pos: -11.5,-2.5 + pos: -37.5,-35.5 parent: 1 - - uid: 15046 + - uid: 18473 components: - type: Transform - pos: -11.5,-1.5 + pos: -36.5,-35.5 parent: 1 - - uid: 15047 + - uid: 18474 components: - type: Transform - pos: -11.5,-0.5 + pos: -36.5,-34.5 parent: 1 - - uid: 15048 + - uid: 18475 components: - type: Transform - pos: -11.5,0.5 + pos: -36.5,-33.5 parent: 1 - - uid: 15049 + - uid: 18476 components: - type: Transform - pos: -11.5,1.5 + pos: -36.5,-32.5 parent: 1 - - uid: 15050 + - uid: 18543 components: - type: Transform - pos: -11.5,2.5 + pos: -54.5,-22.5 parent: 1 - - uid: 15051 + - uid: 18544 components: - type: Transform - pos: -11.5,3.5 + pos: -54.5,-21.5 parent: 1 - - uid: 15052 + - uid: 18545 components: - type: Transform - pos: -11.5,4.5 + pos: -54.5,-20.5 parent: 1 - - uid: 15053 + - uid: 18546 components: - type: Transform - pos: -10.5,4.5 + pos: -54.5,-19.5 parent: 1 - - uid: 15054 + - uid: 18547 components: - type: Transform - pos: -9.5,4.5 + pos: -54.5,-18.5 parent: 1 - - uid: 15055 + - uid: 18548 components: - type: Transform - pos: -8.5,4.5 + pos: -55.5,-22.5 parent: 1 - - uid: 15056 + - uid: 18549 components: - type: Transform - pos: -7.5,4.5 + pos: -55.5,-23.5 parent: 1 - - uid: 15057 + - uid: 18550 components: - type: Transform - pos: -6.5,4.5 + pos: -55.5,-24.5 parent: 1 - - uid: 15058 + - uid: 18551 components: - type: Transform - pos: -5.5,4.5 + pos: -56.5,-24.5 parent: 1 - - uid: 15059 + - uid: 18552 components: - type: Transform - pos: -4.5,4.5 + pos: -53.5,-21.5 parent: 1 - - uid: 15060 + - uid: 18553 components: - type: Transform - pos: -3.5,4.5 + pos: -52.5,-21.5 parent: 1 - - uid: 15061 + - uid: 18554 components: - type: Transform - pos: -2.5,4.5 + pos: -52.5,-22.5 parent: 1 - - uid: 15062 + - uid: 18555 components: - type: Transform - pos: -2.5,3.5 + pos: -52.5,-23.5 parent: 1 - - uid: 15063 + - uid: 18560 components: - type: Transform - pos: -2.5,2.5 + pos: -51.5,-27.5 parent: 1 - - uid: 15064 + - uid: 18561 components: - type: Transform - pos: -2.5,1.5 + pos: -50.5,-27.5 parent: 1 - - uid: 15179 + - uid: 18562 components: - type: Transform - pos: 23.5,-1.5 + pos: -49.5,-27.5 parent: 1 - - uid: 15183 + - uid: 18563 components: - type: Transform - pos: -136.5,-23.5 + pos: -48.5,-27.5 parent: 1 - - uid: 15330 + - uid: 18564 components: - type: Transform - pos: -78.5,-35.5 + pos: -47.5,-27.5 parent: 1 - - uid: 15331 + - uid: 18565 components: - type: Transform - pos: -79.5,-36.5 + pos: -47.5,-26.5 parent: 1 - - uid: 15382 + - uid: 18566 components: - type: Transform - pos: -79.5,-32.5 + pos: -47.5,-25.5 parent: 1 - - uid: 15383 + - uid: 18567 components: - type: Transform - pos: -79.5,-34.5 + pos: -47.5,-24.5 parent: 1 - - uid: 15403 + - uid: 18568 components: - type: Transform - pos: -57.5,-66.5 + pos: -47.5,-23.5 parent: 1 - - uid: 15592 + - uid: 18569 components: - type: Transform - pos: -72.5,-5.5 + pos: -47.5,-22.5 parent: 1 - - uid: 16381 + - uid: 18570 components: - type: Transform - pos: -45.5,13.5 + pos: -47.5,-21.5 parent: 1 - - uid: 16417 + - uid: 18571 components: - type: Transform - pos: -27.5,6.5 + pos: -48.5,-21.5 parent: 1 - - uid: 16418 + - uid: 18572 components: - type: Transform - pos: -22.5,6.5 + pos: -46.5,-27.5 parent: 1 - - uid: 16419 + - uid: 18573 components: - type: Transform - pos: -23.5,6.5 + pos: -45.5,-27.5 parent: 1 - - uid: 16421 + - uid: 18574 components: - type: Transform - pos: -45.5,-51.5 + pos: -44.5,-27.5 parent: 1 - - uid: 16422 + - uid: 18575 components: - type: Transform - pos: -45.5,-52.5 + pos: -43.5,-27.5 parent: 1 - - uid: 16423 + - uid: 18576 components: - type: Transform - pos: -45.5,-53.5 + pos: -43.5,-26.5 parent: 1 - - uid: 16425 + - uid: 18577 components: - type: Transform - pos: -45.5,-57.5 + pos: -43.5,-25.5 parent: 1 - - uid: 16428 + - uid: 18578 components: - type: Transform - pos: -45.5,-56.5 + pos: -43.5,-24.5 parent: 1 - - uid: 16429 + - uid: 18579 components: - type: Transform - pos: -45.5,-55.5 + pos: -44.5,-24.5 parent: 1 - - uid: 16430 + - uid: 18580 components: - type: Transform - pos: -45.5,-54.5 + pos: -44.5,-23.5 parent: 1 - - uid: 16802 + - uid: 18581 components: - type: Transform - pos: -80.5,-36.5 + pos: -44.5,-22.5 parent: 1 - - uid: 16806 + - uid: 18582 components: - type: Transform - pos: -79.5,-30.5 + pos: -44.5,-21.5 parent: 1 - - uid: 16818 + - uid: 18586 components: - type: Transform - pos: -92.5,-33.5 + pos: -54.5,-40.5 parent: 1 - - uid: 17113 + - uid: 18587 components: - type: Transform - pos: 9.5,17.5 + pos: -53.5,-40.5 parent: 1 - - uid: 17407 + - uid: 18592 components: - type: Transform - pos: -22.5,-61.5 + pos: -53.5,-37.5 parent: 1 - - uid: 17408 + - uid: 18593 components: - type: Transform - pos: -23.5,-61.5 + pos: -54.5,-37.5 parent: 1 - - uid: 17409 + - uid: 18594 components: - type: Transform - pos: -24.5,-61.5 + pos: -55.5,-37.5 parent: 1 - - uid: 17410 + - uid: 18598 components: - type: Transform - pos: -25.5,-61.5 + pos: -52.5,-33.5 parent: 1 - - uid: 17411 + - uid: 18599 components: - type: Transform - pos: -26.5,-61.5 + pos: -53.5,-33.5 parent: 1 - - uid: 17412 + - uid: 18600 components: - type: Transform - pos: -26.5,-62.5 + pos: -54.5,-33.5 parent: 1 - - uid: 17413 + - uid: 18601 components: - type: Transform - pos: -26.5,-63.5 + pos: -55.5,-33.5 parent: 1 - - uid: 17414 + - uid: 18603 components: - type: Transform - pos: -26.5,-64.5 + pos: -50.5,-35.5 parent: 1 - - uid: 17415 + - uid: 18604 components: - type: Transform - pos: -25.5,-64.5 + pos: -50.5,-36.5 parent: 1 - - uid: 17416 + - uid: 18605 components: - type: Transform - pos: -24.5,-64.5 + pos: -50.5,-37.5 parent: 1 - - uid: 17417 + - uid: 18606 components: - type: Transform - pos: -23.5,-64.5 + pos: -49.5,-35.5 parent: 1 - - uid: 17418 + - uid: 18607 components: - type: Transform - pos: -22.5,-64.5 + pos: -48.5,-35.5 parent: 1 - - uid: 17419 + - uid: 18608 components: - type: Transform - pos: -22.5,-63.5 + pos: -47.5,-35.5 parent: 1 - - uid: 17420 + - uid: 18609 components: - type: Transform - pos: -22.5,-62.5 + pos: -47.5,-36.5 parent: 1 - - uid: 17421 + - uid: 18610 components: - type: Transform - pos: -21.5,-62.5 + pos: -47.5,-37.5 parent: 1 - - uid: 17422 + - uid: 18611 components: - type: Transform - pos: -20.5,-62.5 + pos: -46.5,-35.5 parent: 1 - - uid: 17687 + - uid: 18612 components: - type: Transform - pos: -17.5,-70.5 + pos: -45.5,-35.5 parent: 1 - - uid: 17688 + - uid: 18613 components: - type: Transform - pos: -18.5,-70.5 + pos: -44.5,-35.5 parent: 1 - - uid: 17703 + - uid: 18614 components: - type: Transform - pos: 31.5,-10.5 + pos: -44.5,-36.5 parent: 1 - - uid: 17711 + - uid: 18615 components: - type: Transform - pos: 29.5,-50.5 + pos: -44.5,-37.5 parent: 1 - - uid: 17754 + - uid: 18616 components: - type: Transform - pos: 24.5,-49.5 + pos: -44.5,-34.5 parent: 1 - - uid: 17755 + - uid: 18617 components: - type: Transform - pos: 24.5,-50.5 + pos: -44.5,-33.5 parent: 1 - - uid: 17756 + - uid: 18618 components: - type: Transform - pos: 23.5,-50.5 + pos: -44.5,-32.5 parent: 1 - - uid: 17757 + - uid: 18619 components: - type: Transform - pos: 22.5,-50.5 + pos: -44.5,-31.5 parent: 1 - - uid: 17758 + - uid: 18620 components: - type: Transform - pos: 25.5,-50.5 + pos: -43.5,-31.5 parent: 1 - - uid: 17759 + - uid: 18621 components: - type: Transform - pos: 26.5,-50.5 + pos: -42.5,-31.5 parent: 1 - - uid: 17760 + - uid: 18622 components: - type: Transform - pos: 27.5,-50.5 + pos: -41.5,-31.5 parent: 1 - - uid: 17776 + - uid: 18623 components: - type: Transform - pos: 30.5,-50.5 + pos: -45.5,-31.5 parent: 1 - - uid: 17778 + - uid: 18624 components: - type: Transform - pos: 33.5,-10.5 + pos: -46.5,-31.5 parent: 1 - - uid: 17820 + - uid: 18625 components: - type: Transform - pos: 32.5,-10.5 + pos: -47.5,-31.5 parent: 1 - - uid: 17887 + - uid: 18626 components: - type: Transform - pos: 36.5,-2.5 + pos: -48.5,-31.5 parent: 1 - - uid: 17888 + - uid: 18630 components: - type: Transform - pos: 35.5,-2.5 + pos: -52.5,-44.5 parent: 1 - - uid: 17889 + - uid: 18631 components: - type: Transform - pos: 34.5,-2.5 + pos: -51.5,-44.5 parent: 1 - - uid: 17890 + - uid: 18632 components: - type: Transform - pos: 33.5,-2.5 + pos: -50.5,-44.5 parent: 1 - - uid: 17891 + - uid: 18633 components: - type: Transform - pos: 32.5,-2.5 + pos: -49.5,-44.5 parent: 1 - - uid: 17892 + - uid: 18634 components: - type: Transform - pos: 31.5,-2.5 + pos: -49.5,-43.5 parent: 1 - - uid: 17893 + - uid: 18635 components: - type: Transform - pos: 30.5,-2.5 + pos: -49.5,-42.5 parent: 1 - - uid: 17894 + - uid: 18636 components: - type: Transform - pos: 29.5,-2.5 + pos: -48.5,-42.5 parent: 1 - - uid: 17895 + - uid: 18637 components: - type: Transform - pos: 28.5,-2.5 + pos: -47.5,-42.5 parent: 1 - - uid: 17896 + - uid: 18638 components: - type: Transform - pos: 27.5,-2.5 + pos: -46.5,-42.5 parent: 1 - - uid: 17897 + - uid: 18639 components: - type: Transform - pos: 26.5,-2.5 + pos: -45.5,-42.5 parent: 1 - - uid: 17898 + - uid: 18640 components: - type: Transform - pos: 25.5,-2.5 + pos: -48.5,-44.5 parent: 1 - - uid: 17899 + - uid: 18641 components: - type: Transform - pos: 24.5,-2.5 + pos: -47.5,-44.5 parent: 1 - - uid: 17900 + - uid: 18642 components: - type: Transform - pos: 23.5,-2.5 + pos: -46.5,-44.5 parent: 1 - - uid: 17901 + - uid: 18643 components: - type: Transform - pos: 23.5,-3.5 + pos: -45.5,-44.5 parent: 1 - - uid: 17902 + - uid: 18644 components: - type: Transform - pos: 23.5,-4.5 + pos: -45.5,-45.5 parent: 1 - - uid: 17903 + - uid: 18645 components: - type: Transform - pos: 24.5,-4.5 + pos: -45.5,-46.5 parent: 1 - - uid: 17904 + - uid: 18646 components: - type: Transform - pos: 25.5,-4.5 + pos: -49.5,-45.5 parent: 1 - - uid: 17905 + - uid: 18647 components: - type: Transform - pos: 26.5,-4.5 + pos: -49.5,-46.5 parent: 1 - - uid: 17906 + - uid: 18648 components: - type: Transform - pos: 27.5,-4.5 + pos: -49.5,-47.5 parent: 1 - - uid: 17907 + - uid: 18649 components: - type: Transform - pos: 28.5,-4.5 + pos: -49.5,-48.5 parent: 1 - - uid: 17908 + - uid: 18650 components: - type: Transform - pos: 29.5,-4.5 + pos: -49.5,-49.5 parent: 1 - - uid: 17909 + - uid: 18651 components: - type: Transform - pos: 30.5,-4.5 + pos: -49.5,-50.5 parent: 1 - - uid: 17910 + - uid: 18652 components: - type: Transform - pos: 31.5,-4.5 + pos: -49.5,-51.5 parent: 1 - - uid: 17911 + - uid: 18653 components: - type: Transform - pos: 32.5,-4.5 + pos: -49.5,-52.5 parent: 1 - - uid: 17912 + - uid: 18654 components: - type: Transform - pos: 33.5,-4.5 + pos: -49.5,-53.5 parent: 1 - - uid: 17913 + - uid: 18655 components: - type: Transform - pos: 34.5,-4.5 + pos: -49.5,-54.5 parent: 1 - - uid: 17994 + - uid: 18656 components: - type: Transform - pos: 34.5,-10.5 + pos: -48.5,-54.5 parent: 1 - - uid: 18009 + - uid: 18657 components: - type: Transform - pos: 31.5,2.5 + pos: -60.5,-51.5 parent: 1 - - uid: 18010 + - uid: 18658 components: - type: Transform - pos: 30.5,2.5 + pos: -60.5,-50.5 parent: 1 - - uid: 18011 + - uid: 18659 components: - type: Transform - pos: 29.5,2.5 + pos: -60.5,-49.5 parent: 1 - - uid: 18012 + - uid: 18660 components: - type: Transform - pos: 28.5,2.5 + pos: -60.5,-48.5 parent: 1 - - uid: 18013 + - uid: 18661 components: - type: Transform - pos: 27.5,2.5 + pos: -61.5,-48.5 parent: 1 - - uid: 18014 + - uid: 18662 components: - type: Transform - pos: 26.5,2.5 + pos: -62.5,-48.5 parent: 1 - - uid: 18015 + - uid: 18663 components: - type: Transform - pos: 25.5,2.5 + pos: -62.5,-47.5 parent: 1 - - uid: 18016 + - uid: 18664 components: - type: Transform - pos: 24.5,2.5 + pos: -63.5,-47.5 parent: 1 - - uid: 18017 + - uid: 18665 components: - type: Transform - pos: 23.5,2.5 + pos: -64.5,-47.5 parent: 1 - - uid: 18018 + - uid: 18666 components: - type: Transform - pos: 23.5,1.5 + pos: -65.5,-47.5 parent: 1 - - uid: 18019 + - uid: 18667 components: - type: Transform - pos: 23.5,0.5 + pos: -66.5,-47.5 parent: 1 - - uid: 18020 + - uid: 18668 components: - type: Transform - pos: 24.5,0.5 + pos: -67.5,-47.5 parent: 1 - - uid: 18021 + - uid: 18669 components: - type: Transform - pos: 25.5,0.5 + pos: -61.5,-47.5 parent: 1 - - uid: 18022 + - uid: 18670 components: - type: Transform - pos: 26.5,0.5 + pos: -61.5,-46.5 parent: 1 - - uid: 18023 + - uid: 18671 components: - type: Transform - pos: 27.5,0.5 + pos: -61.5,-45.5 parent: 1 - - uid: 18024 + - uid: 18672 components: - type: Transform - pos: 28.5,0.5 + pos: -60.5,-45.5 parent: 1 - - uid: 18025 + - uid: 18673 components: - type: Transform - pos: 29.5,0.5 + pos: -59.5,-45.5 parent: 1 - - uid: 18026 + - uid: 18674 components: - type: Transform - pos: 30.5,0.5 + pos: -58.5,-45.5 parent: 1 - - uid: 18059 + - uid: 18675 components: - type: Transform - pos: 35.5,-10.5 + pos: -57.5,-45.5 parent: 1 - - uid: 18080 + - uid: 18676 components: - type: Transform - pos: 22.5,-3.5 + pos: -59.5,-49.5 parent: 1 - - uid: 18081 + - uid: 18677 components: - type: Transform - pos: -58.5,-51.5 + pos: -58.5,-49.5 parent: 1 - - uid: 18111 + - uid: 18678 components: - type: Transform - pos: 24.5,15.5 + pos: -57.5,-49.5 parent: 1 - - uid: 18112 + - uid: 18679 components: - type: Transform - pos: 24.5,16.5 + pos: -56.5,-49.5 parent: 1 - - uid: 18113 + - uid: 18680 components: - type: Transform - pos: 24.5,17.5 + pos: -55.5,-49.5 parent: 1 - - uid: 18114 + - uid: 18681 components: - type: Transform - pos: 24.5,18.5 + pos: -54.5,-49.5 parent: 1 - - uid: 18115 + - uid: 18682 components: - type: Transform - pos: 24.5,19.5 + pos: -54.5,-52.5 parent: 1 - - uid: 18116 + - uid: 18683 components: - type: Transform - pos: 24.5,20.5 + pos: -54.5,-51.5 parent: 1 - - uid: 18117 + - uid: 18684 components: - type: Transform - pos: 24.5,21.5 + pos: -54.5,-50.5 parent: 1 - - uid: 18118 + - uid: 18685 components: - type: Transform - pos: 25.5,21.5 + pos: -54.5,-53.5 parent: 1 - - uid: 18119 + - uid: 18686 components: - type: Transform - pos: 26.5,21.5 + pos: -54.5,-54.5 parent: 1 - - uid: 18127 + - uid: 18687 components: - type: Transform - pos: 26.5,20.5 + pos: -54.5,-55.5 parent: 1 - - uid: 18196 + - uid: 18688 components: - type: Transform - pos: -21.5,-42.5 + pos: -54.5,-56.5 parent: 1 - - uid: 18197 + - uid: 18689 components: - type: Transform - pos: -21.5,-41.5 + pos: -54.5,-57.5 parent: 1 - - uid: 18198 + - uid: 18690 components: - type: Transform - pos: -21.5,-40.5 + pos: -54.5,-58.5 parent: 1 - - uid: 18199 + - uid: 18691 components: - type: Transform - pos: -20.5,-40.5 + pos: -54.5,-59.5 parent: 1 - - uid: 18200 + - uid: 18692 components: - type: Transform - pos: -22.5,-40.5 + pos: -54.5,-60.5 parent: 1 - - uid: 18201 + - uid: 18693 components: - type: Transform - pos: -23.5,-40.5 + pos: -58.5,-51.5 parent: 1 - - uid: 18202 + - uid: 18694 components: - type: Transform - pos: -24.5,-40.5 + pos: -58.5,-50.5 parent: 1 - - uid: 18203 + - uid: 18695 components: - type: Transform - pos: -24.5,-39.5 + pos: -36.5,-80.5 parent: 1 - - uid: 18204 + - uid: 18696 components: - type: Transform - pos: -24.5,-38.5 + pos: -58.5,-52.5 parent: 1 - - uid: 18205 + - uid: 18697 components: - type: Transform - pos: -24.5,-37.5 + pos: -58.5,-53.5 parent: 1 - - uid: 18206 + - uid: 18698 components: - type: Transform - pos: -25.5,-37.5 + pos: -58.5,-54.5 parent: 1 - - uid: 18207 + - uid: 18699 components: - type: Transform - pos: -26.5,-37.5 + pos: -58.5,-55.5 parent: 1 - - uid: 18208 + - uid: 18700 components: - type: Transform - pos: -24.5,-36.5 + pos: -58.5,-56.5 parent: 1 - - uid: 18209 + - uid: 18701 components: - type: Transform - pos: -23.5,-36.5 + pos: -58.5,-57.5 parent: 1 - - uid: 18210 + - uid: 18702 components: - type: Transform - pos: -22.5,-36.5 + pos: -58.5,-58.5 parent: 1 - - uid: 18211 + - uid: 18703 components: - type: Transform - pos: -21.5,-36.5 + pos: -58.5,-59.5 parent: 1 - - uid: 18212 + - uid: 18704 components: - type: Transform - pos: -21.5,-35.5 + pos: -58.5,-60.5 parent: 1 - - uid: 18213 + - uid: 18705 components: - type: Transform - pos: -21.5,-34.5 + pos: -59.5,-60.5 parent: 1 - - uid: 18214 + - uid: 18754 components: - type: Transform - pos: -21.5,-33.5 + pos: -81.5,-22.5 parent: 1 - - uid: 18215 + - uid: 18755 components: - type: Transform - pos: -21.5,-32.5 + pos: -81.5,-21.5 parent: 1 - - uid: 18216 + - uid: 18756 components: - type: Transform - pos: -21.5,-31.5 + pos: -81.5,-20.5 parent: 1 - - uid: 18217 + - uid: 18757 components: - type: Transform - pos: -24.5,-35.5 + pos: -81.5,-19.5 parent: 1 - - uid: 18218 + - uid: 18758 components: - type: Transform - pos: -24.5,-34.5 + pos: -81.5,-18.5 parent: 1 - - uid: 18219 + - uid: 18759 components: - type: Transform - pos: -24.5,-33.5 + pos: -82.5,-18.5 parent: 1 - - uid: 18220 + - uid: 18760 components: - type: Transform - pos: -24.5,-32.5 + pos: -83.5,-18.5 parent: 1 - - uid: 18221 + - uid: 18761 components: - type: Transform - pos: -24.5,-31.5 + pos: -84.5,-18.5 parent: 1 - - uid: 18222 + - uid: 18762 components: - type: Transform - pos: -25.5,-34.5 + pos: -84.5,-19.5 parent: 1 - - uid: 18223 + - uid: 18763 components: - type: Transform - pos: -26.5,-34.5 + pos: -84.5,-20.5 parent: 1 - - uid: 18224 + - uid: 18764 components: - type: Transform - pos: -27.5,-34.5 + pos: -85.5,-20.5 parent: 1 - - uid: 18225 + - uid: 18765 components: - type: Transform - pos: -27.5,-33.5 + pos: -86.5,-20.5 parent: 1 - - uid: 18226 + - uid: 18766 components: - type: Transform - pos: -27.5,-32.5 + pos: -87.5,-20.5 parent: 1 - - uid: 18227 + - uid: 18767 components: - type: Transform - pos: -27.5,-31.5 + pos: -88.5,-20.5 parent: 1 - - uid: 18228 + - uid: 18768 components: - type: Transform - pos: -24.5,-41.5 + pos: -83.5,-20.5 parent: 1 - - uid: 18229 + - uid: 18769 components: - type: Transform - pos: -24.5,-42.5 + pos: -83.5,-21.5 parent: 1 - - uid: 18230 + - uid: 18770 components: - type: Transform - pos: -24.5,-43.5 + pos: -83.5,-22.5 parent: 1 - - uid: 18231 + - uid: 18771 components: - type: Transform - pos: -24.5,-44.5 + pos: -83.5,-23.5 parent: 1 - - uid: 18232 + - uid: 18772 components: - type: Transform - pos: -23.5,-44.5 + pos: -83.5,-24.5 parent: 1 - - uid: 18233 + - uid: 18773 components: - type: Transform - pos: -22.5,-44.5 + pos: -84.5,-24.5 parent: 1 - - uid: 18234 + - uid: 18774 components: - type: Transform - pos: -21.5,-44.5 + pos: -85.5,-24.5 parent: 1 - - uid: 18235 + - uid: 18775 components: - type: Transform - pos: -20.5,-44.5 + pos: -86.5,-24.5 parent: 1 - - uid: 18236 + - uid: 18776 components: - type: Transform - pos: -19.5,-44.5 + pos: -87.5,-24.5 parent: 1 - - uid: 18237 + - uid: 18777 components: - type: Transform - pos: -19.5,-43.5 + pos: -88.5,-24.5 parent: 1 - - uid: 18238 + - uid: 18778 components: - type: Transform - pos: -19.5,-45.5 + pos: -88.5,-25.5 parent: 1 - - uid: 18239 + - uid: 18779 components: - type: Transform - pos: -31.5,-37.5 + pos: -88.5,-26.5 parent: 1 - - uid: 18240 + - uid: 18780 components: - type: Transform - pos: -31.5,-36.5 + pos: -87.5,-26.5 parent: 1 - - uid: 18241 + - uid: 18781 components: - type: Transform - pos: -32.5,-36.5 + pos: -86.5,-26.5 parent: 1 - - uid: 18242 + - uid: 18786 components: - type: Transform - pos: -32.5,-35.5 + pos: -83.5,-25.5 parent: 1 - - uid: 18243 + - uid: 18787 components: - type: Transform - pos: -32.5,-34.5 + pos: -83.5,-26.5 parent: 1 - - uid: 18244 + - uid: 18788 components: - type: Transform - pos: -32.5,-33.5 + pos: -83.5,-27.5 parent: 1 - - uid: 18245 + - uid: 18789 components: - type: Transform - pos: -31.5,-38.5 + pos: -83.5,-28.5 parent: 1 - - uid: 18246 + - uid: 18790 components: - type: Transform - pos: -31.5,-39.5 + pos: -83.5,-29.5 parent: 1 - - uid: 18247 + - uid: 18791 components: - type: Transform - pos: -30.5,-39.5 + pos: -83.5,-30.5 parent: 1 - - uid: 18248 + - uid: 18792 components: - type: Transform - pos: -29.5,-39.5 + pos: -83.5,-31.5 parent: 1 - - uid: 18249 + - uid: 18793 components: - type: Transform - pos: -29.5,-40.5 + pos: -84.5,-30.5 parent: 1 - - uid: 18250 + - uid: 18794 components: - type: Transform - pos: -29.5,-41.5 + pos: -85.5,-30.5 parent: 1 - - uid: 18251 + - uid: 18795 components: - type: Transform - pos: -29.5,-42.5 + pos: -81.5,-23.5 parent: 1 - - uid: 18252 + - uid: 18796 components: - type: Transform - pos: -29.5,-43.5 + pos: -80.5,-23.5 parent: 1 - - uid: 18253 + - uid: 18797 components: - type: Transform - pos: -29.5,-44.5 + pos: -79.5,-23.5 parent: 1 - - uid: 18254 + - uid: 18798 components: - type: Transform - pos: -29.5,-45.5 + pos: -78.5,-23.5 parent: 1 - - uid: 18255 + - uid: 18799 components: - type: Transform - pos: -29.5,-46.5 + pos: -78.5,-22.5 parent: 1 - - uid: 18256 + - uid: 18800 components: - type: Transform - pos: -29.5,-47.5 + pos: -78.5,-21.5 parent: 1 - - uid: 18257 + - uid: 18801 components: - type: Transform - pos: -28.5,-47.5 + pos: -78.5,-20.5 parent: 1 - - uid: 18258 + - uid: 18802 components: - type: Transform - pos: -28.5,-48.5 + pos: -71.5,-26.5 parent: 1 - - uid: 18259 + - uid: 18803 components: - type: Transform - pos: -28.5,-49.5 + pos: -72.5,-26.5 parent: 1 - - uid: 18260 + - uid: 18804 components: - type: Transform - pos: -29.5,-49.5 + pos: -72.5,-25.5 parent: 1 - - uid: 18261 + - uid: 18805 components: - type: Transform - pos: -29.5,-50.5 + pos: -72.5,-24.5 parent: 1 - - uid: 18262 + - uid: 18806 components: - type: Transform - pos: -30.5,-47.5 + pos: -72.5,-23.5 parent: 1 - - uid: 18263 + - uid: 18807 components: - type: Transform - pos: -31.5,-47.5 + pos: -72.5,-22.5 parent: 1 - - uid: 18264 + - uid: 18808 components: - type: Transform - pos: -32.5,-47.5 + pos: -72.5,-21.5 parent: 1 - - uid: 18265 + - uid: 18809 components: - type: Transform - pos: -33.5,-47.5 + pos: -72.5,-20.5 parent: 1 - - uid: 18266 + - uid: 18810 components: - type: Transform - pos: -34.5,-47.5 + pos: -72.5,-19.5 parent: 1 - - uid: 18267 + - uid: 18811 components: - type: Transform - pos: -35.5,-47.5 + pos: -73.5,-19.5 parent: 1 - - uid: 18268 + - uid: 18812 components: - type: Transform - pos: -36.5,-47.5 + pos: -74.5,-19.5 parent: 1 - - uid: 18269 + - uid: 18813 components: - type: Transform - pos: -39.5,-39.5 + pos: -72.5,-18.5 parent: 1 - - uid: 18270 + - uid: 18814 components: - type: Transform - pos: -38.5,-39.5 + pos: -71.5,-18.5 parent: 1 - - uid: 18271 + - uid: 18815 components: - type: Transform - pos: -37.5,-39.5 + pos: -70.5,-18.5 parent: 1 - - uid: 18272 + - uid: 18816 components: - type: Transform - pos: -36.5,-39.5 + pos: -69.5,-18.5 parent: 1 - - uid: 18273 + - uid: 18817 components: - type: Transform - pos: -36.5,-40.5 + pos: -68.5,-18.5 parent: 1 - - uid: 18274 + - uid: 18818 components: - type: Transform - pos: -36.5,-41.5 + pos: -67.5,-18.5 parent: 1 - - uid: 18275 + - uid: 18819 components: - type: Transform - pos: -36.5,-42.5 + pos: -66.5,-18.5 parent: 1 - - uid: 18276 + - uid: 18820 components: - type: Transform - pos: -36.5,-43.5 + pos: -65.5,-18.5 parent: 1 - - uid: 18277 + - uid: 18821 components: - type: Transform - pos: -37.5,-43.5 + pos: -64.5,-18.5 parent: 1 - - uid: 18278 + - uid: 18822 components: - type: Transform - pos: -35.5,-43.5 + pos: -63.5,-18.5 parent: 1 - - uid: 18279 + - uid: 18823 components: - type: Transform - pos: -34.5,-43.5 + pos: -62.5,-18.5 parent: 1 - - uid: 18280 + - uid: 18824 components: - type: Transform - pos: -33.5,-43.5 + pos: -71.5,-24.5 parent: 1 - - uid: 18281 + - uid: 18825 components: - type: Transform - pos: -32.5,-43.5 + pos: -70.5,-24.5 parent: 1 - - uid: 18282 + - uid: 18826 components: - type: Transform - pos: -43.5,-55.5 + pos: -69.5,-24.5 parent: 1 - - uid: 18283 + - uid: 18827 components: - type: Transform - pos: -42.5,-55.5 + pos: -68.5,-24.5 parent: 1 - - uid: 18284 + - uid: 18828 components: - type: Transform - pos: -41.5,-55.5 + pos: -68.5,-23.5 parent: 1 - - uid: 18285 + - uid: 18829 components: - type: Transform - pos: -40.5,-55.5 + pos: -68.5,-22.5 parent: 1 - - uid: 18286 + - uid: 18830 components: - type: Transform - pos: -39.5,-55.5 + pos: -72.5,-27.5 parent: 1 - - uid: 18287 + - uid: 18831 components: - type: Transform - pos: -38.5,-55.5 + pos: -72.5,-28.5 parent: 1 - - uid: 18288 + - uid: 18832 components: - type: Transform - pos: -38.5,-54.5 + pos: -72.5,-29.5 parent: 1 - - uid: 18289 + - uid: 18833 components: - type: Transform - pos: -38.5,-53.5 + pos: -72.5,-30.5 parent: 1 - - uid: 18290 + - uid: 18834 components: - type: Transform - pos: -38.5,-52.5 + pos: -73.5,-27.5 parent: 1 - - uid: 18291 + - uid: 18835 components: - type: Transform - pos: -37.5,-52.5 + pos: -73.5,-30.5 parent: 1 - - uid: 18292 + - uid: 18836 components: - type: Transform - pos: -36.5,-52.5 + pos: -72.5,-31.5 parent: 1 - - uid: 18293 + - uid: 18837 components: - type: Transform - pos: -35.5,-52.5 + pos: -72.5,-32.5 parent: 1 - - uid: 18294 + - uid: 18838 components: - type: Transform - pos: -34.5,-52.5 + pos: -72.5,-33.5 parent: 1 - - uid: 18295 + - uid: 18839 components: - type: Transform - pos: -34.5,-53.5 + pos: -78.5,-24.5 parent: 1 - - uid: 18296 + - uid: 18840 components: - type: Transform - pos: -34.5,-54.5 + pos: -78.5,-25.5 parent: 1 - - uid: 18297 + - uid: 18841 components: - type: Transform - pos: -35.5,-55.5 + pos: -78.5,-26.5 parent: 1 - - uid: 18298 + - uid: 18842 components: - type: Transform - pos: -35.5,-54.5 + pos: -78.5,-27.5 parent: 1 - - uid: 18299 + - uid: 18843 components: - type: Transform - pos: -35.5,-56.5 + pos: -78.5,-28.5 parent: 1 - - uid: 18300 + - uid: 18844 components: - type: Transform - pos: -35.5,-57.5 + pos: -78.5,-29.5 parent: 1 - - uid: 18301 + - uid: 18845 components: - type: Transform - pos: -35.5,-58.5 + pos: -78.5,-30.5 parent: 1 - - uid: 18302 + - uid: 18846 components: - type: Transform - pos: -40.5,-56.5 + pos: -72.5,-34.5 parent: 1 - - uid: 18303 + - uid: 18847 components: - type: Transform - pos: -40.5,-57.5 + pos: -73.5,-34.5 parent: 1 - - uid: 18304 + - uid: 18848 components: - type: Transform - pos: -40.5,-58.5 + pos: -71.5,-34.5 parent: 1 - - uid: 18305 + - uid: 18849 components: - type: Transform - pos: -40.5,-59.5 + pos: -70.5,-34.5 parent: 1 - - uid: 18306 + - uid: 18850 components: - type: Transform - pos: -40.5,-60.5 + pos: -69.5,-34.5 parent: 1 - - uid: 18307 + - uid: 18853 components: - type: Transform - pos: -41.5,-60.5 + pos: -63.5,-29.5 parent: 1 - - uid: 18308 + - uid: 18854 components: - type: Transform - pos: -41.5,-61.5 + pos: -64.5,-29.5 parent: 1 - - uid: 18309 + - uid: 18855 components: - type: Transform - pos: -42.5,-61.5 + pos: -65.5,-29.5 parent: 1 - - uid: 18310 + - uid: 18856 components: - type: Transform - pos: -43.5,-61.5 + pos: -66.5,-29.5 parent: 1 - - uid: 18311 + - uid: 18857 components: - type: Transform - pos: -44.5,-61.5 + pos: -67.5,-29.5 parent: 1 - - uid: 18312 + - uid: 18858 components: - type: Transform - pos: -45.5,-61.5 + pos: -67.5,-30.5 parent: 1 - - uid: 18313 + - uid: 18859 components: - type: Transform - pos: -45.5,-62.5 + pos: -67.5,-28.5 parent: 1 - - uid: 18314 + - uid: 18860 components: - type: Transform - pos: -45.5,-63.5 + pos: -63.5,-28.5 parent: 1 - - uid: 18315 + - uid: 18861 components: - type: Transform - pos: -45.5,-64.5 + pos: -63.5,-27.5 parent: 1 - - uid: 18316 + - uid: 18862 components: - type: Transform - pos: -45.5,-65.5 + pos: -63.5,-26.5 parent: 1 - - uid: 18317 + - uid: 18863 components: - type: Transform - pos: -45.5,-66.5 + pos: -63.5,-25.5 parent: 1 - - uid: 18318 + - uid: 18864 components: - type: Transform - pos: -45.5,-67.5 + pos: -63.5,-24.5 parent: 1 - - uid: 18319 + - uid: 18865 components: - type: Transform - pos: -45.5,-68.5 + pos: -63.5,-23.5 parent: 1 - - uid: 18320 + - uid: 18866 components: - type: Transform - pos: -46.5,-68.5 + pos: -67.5,-24.5 parent: 1 - - uid: 18321 + - uid: 18875 components: - type: Transform - pos: -47.5,-68.5 + pos: -96.5,-39.5 parent: 1 - - uid: 18322 + - uid: 18920 components: - type: Transform - pos: -45.5,-69.5 + pos: -88.5,-36.5 parent: 1 - - uid: 18323 + - uid: 18921 components: - type: Transform - pos: -44.5,-69.5 + pos: -87.5,-36.5 parent: 1 - - uid: 18324 + - uid: 18922 components: - type: Transform - pos: -43.5,-69.5 + pos: -86.5,-36.5 parent: 1 - - uid: 18325 + - uid: 18923 components: - type: Transform - pos: -42.5,-69.5 + pos: -85.5,-36.5 parent: 1 - - uid: 18326 + - uid: 18924 components: - type: Transform - pos: -41.5,-69.5 + pos: -88.5,-37.5 parent: 1 - - uid: 18327 + - uid: 18925 components: - type: Transform - pos: -41.5,-68.5 + pos: -88.5,-38.5 parent: 1 - - uid: 18328 + - uid: 18926 components: - type: Transform - pos: -41.5,-67.5 + pos: -85.5,-37.5 parent: 1 - - uid: 18329 + - uid: 18927 components: - type: Transform - pos: -41.5,-66.5 + pos: -85.5,-38.5 parent: 1 - - uid: 18330 + - uid: 18928 components: - type: Transform - pos: -42.5,-66.5 + pos: -85.5,-39.5 parent: 1 - - uid: 18331 + - uid: 18929 components: - type: Transform - pos: -43.5,-66.5 + pos: -85.5,-40.5 parent: 1 - - uid: 18332 + - uid: 18930 components: - type: Transform - pos: -44.5,-66.5 + pos: -85.5,-41.5 parent: 1 - - uid: 18333 + - uid: 18931 components: - type: Transform - pos: -27.5,-75.5 + pos: -85.5,-42.5 parent: 1 - - uid: 18334 + - uid: 18932 components: - type: Transform - pos: -27.5,-74.5 + pos: -85.5,-43.5 parent: 1 - - uid: 18335 + - uid: 18933 components: - type: Transform - pos: -27.5,-73.5 + pos: -85.5,-44.5 parent: 1 - - uid: 18336 + - uid: 18934 components: - type: Transform - pos: -27.5,-72.5 + pos: -85.5,-45.5 parent: 1 - - uid: 18337 + - uid: 18935 components: - type: Transform - pos: -28.5,-72.5 + pos: -85.5,-46.5 parent: 1 - - uid: 18338 + - uid: 18936 components: - type: Transform - pos: -28.5,-71.5 + pos: -85.5,-47.5 parent: 1 - - uid: 18339 + - uid: 18937 components: - type: Transform - pos: -26.5,-73.5 + pos: -85.5,-48.5 parent: 1 - - uid: 18340 + - uid: 18938 components: - type: Transform - pos: -28.5,-70.5 + pos: -85.5,-49.5 parent: 1 - - uid: 18341 + - uid: 18939 components: - type: Transform - pos: -29.5,-70.5 + pos: -86.5,-49.5 parent: 1 - - uid: 18342 + - uid: 18940 components: - type: Transform - pos: -30.5,-70.5 + pos: -84.5,-49.5 parent: 1 - - uid: 18343 + - uid: 18941 components: - type: Transform - pos: -31.5,-70.5 + pos: -83.5,-49.5 parent: 1 - - uid: 18344 + - uid: 18942 components: - type: Transform - pos: -31.5,-69.5 + pos: -85.5,-50.5 parent: 1 - - uid: 18345 + - uid: 18943 components: - type: Transform - pos: -31.5,-68.5 + pos: -85.5,-51.5 parent: 1 - - uid: 18346 + - uid: 18944 components: - type: Transform - pos: -31.5,-67.5 + pos: -86.5,-51.5 parent: 1 - - uid: 18347 + - uid: 18945 components: - type: Transform - pos: -31.5,-66.5 + pos: -84.5,-51.5 parent: 1 - - uid: 18348 + - uid: 18946 components: - type: Transform - pos: -31.5,-65.5 + pos: -83.5,-51.5 parent: 1 - - uid: 18349 + - uid: 18947 components: - type: Transform - pos: -31.5,-64.5 + pos: -86.5,-46.5 parent: 1 - - uid: 18350 + - uid: 18948 components: - type: Transform - pos: -31.5,-63.5 + pos: -84.5,-46.5 parent: 1 - - uid: 18351 + - uid: 18949 components: - type: Transform - pos: -31.5,-62.5 + pos: -83.5,-46.5 parent: 1 - - uid: 18352 + - uid: 18953 components: - type: Transform - pos: -31.5,-61.5 + pos: -79.5,-31.5 parent: 1 - - uid: 18353 + - uid: 18962 components: - type: Transform - pos: -31.5,-60.5 + pos: -77.5,-39.5 parent: 1 - - uid: 18354 + - uid: 18963 components: - type: Transform - pos: -31.5,-59.5 + pos: -76.5,-39.5 parent: 1 - - uid: 18355 + - uid: 18964 components: - type: Transform - pos: -31.5,-58.5 + pos: -75.5,-39.5 parent: 1 - - uid: 18356 + - uid: 18965 components: - type: Transform - pos: -31.5,-57.5 + pos: -74.5,-39.5 parent: 1 - - uid: 18357 + - uid: 18966 components: - type: Transform - pos: -30.5,-57.5 + pos: -74.5,-38.5 parent: 1 - - uid: 18358 + - uid: 18967 components: - type: Transform - pos: -30.5,-56.5 + pos: -73.5,-38.5 parent: 1 - - uid: 18359 + - uid: 18968 components: - type: Transform - pos: -29.5,-56.5 + pos: -72.5,-38.5 parent: 1 - - uid: 18360 + - uid: 18969 components: - type: Transform - pos: -28.5,-56.5 + pos: -71.5,-38.5 parent: 1 - - uid: 18361 + - uid: 18970 components: - type: Transform - pos: -27.5,-56.5 + pos: -70.5,-38.5 parent: 1 - - uid: 18362 + - uid: 18971 components: - type: Transform - pos: -26.5,-56.5 + pos: -69.5,-38.5 parent: 1 - - uid: 18379 + - uid: 18972 components: - type: Transform - pos: -31.5,-71.5 + pos: -68.5,-38.5 parent: 1 - - uid: 18380 + - uid: 18973 components: - type: Transform - pos: -31.5,-72.5 + pos: -67.5,-38.5 parent: 1 - - uid: 18381 + - uid: 18974 components: - type: Transform - pos: -31.5,-73.5 + pos: -66.5,-38.5 parent: 1 - - uid: 18382 + - uid: 18975 components: - type: Transform - pos: -31.5,-74.5 + pos: -65.5,-38.5 parent: 1 - - uid: 18383 + - uid: 18976 components: - type: Transform - pos: -31.5,-75.5 + pos: -64.5,-38.5 parent: 1 - - uid: 18384 + - uid: 18977 components: - type: Transform - pos: -31.5,-76.5 + pos: -63.5,-38.5 parent: 1 - - uid: 18385 + - uid: 18978 components: - type: Transform - pos: -32.5,-76.5 + pos: -62.5,-38.5 parent: 1 - - uid: 18386 + - uid: 18979 components: - type: Transform - pos: -31.5,-77.5 + pos: -61.5,-38.5 parent: 1 - - uid: 18387 + - uid: 18980 components: - type: Transform - pos: -31.5,-78.5 + pos: -60.5,-38.5 parent: 1 - - uid: 18388 + - uid: 18998 components: - type: Transform - pos: -31.5,-79.5 + pos: -59.5,-21.5 parent: 1 - - uid: 18389 + - uid: 18999 components: - type: Transform - pos: -31.5,-80.5 + pos: -58.5,-21.5 parent: 1 - - uid: 18390 + - uid: 19000 components: - type: Transform - pos: -32.5,-80.5 + pos: -58.5,-20.5 parent: 1 - - uid: 18391 + - uid: 19001 components: - type: Transform - pos: -33.5,-80.5 + pos: -58.5,-19.5 parent: 1 - - uid: 18392 + - uid: 19002 components: - type: Transform - pos: -34.5,-80.5 + pos: -58.5,-18.5 parent: 1 - - uid: 18393 + - uid: 19003 components: - type: Transform - pos: -32.5,-71.5 + pos: -44.5,13.5 parent: 1 - - uid: 18394 + - uid: 19004 components: - type: Transform - pos: -33.5,-71.5 + pos: -74.5,-40.5 parent: 1 - - uid: 18395 + - uid: 19005 components: - type: Transform - pos: -34.5,-71.5 + pos: -74.5,-41.5 parent: 1 - - uid: 18396 + - uid: 19006 components: - type: Transform - pos: -34.5,-72.5 + pos: -74.5,-42.5 parent: 1 - - uid: 18397 + - uid: 19007 components: - type: Transform - pos: -34.5,-73.5 + pos: -74.5,-43.5 parent: 1 - - uid: 18398 + - uid: 19008 components: - type: Transform - pos: -34.5,-74.5 + pos: -74.5,-44.5 parent: 1 - - uid: 18399 + - uid: 19009 components: - type: Transform - pos: -35.5,-74.5 + pos: -74.5,-45.5 parent: 1 - - uid: 18400 + - uid: 19010 components: - type: Transform - pos: -36.5,-74.5 + pos: -74.5,-46.5 parent: 1 - - uid: 18401 + - uid: 19011 components: - type: Transform - pos: -37.5,-74.5 + pos: -74.5,-47.5 parent: 1 - - uid: 18402 + - uid: 19012 components: - type: Transform - pos: -38.5,-74.5 + pos: -74.5,-48.5 parent: 1 - - uid: 18404 + - uid: 19013 components: - type: Transform - pos: -40.5,-74.5 + pos: -74.5,-49.5 parent: 1 - - uid: 18405 + - uid: 19014 components: - type: Transform - pos: -41.5,-74.5 + pos: -74.5,-50.5 parent: 1 - - uid: 18406 + - uid: 19015 components: - type: Transform - pos: -42.5,-74.5 + pos: -74.5,-51.5 parent: 1 - - uid: 18407 + - uid: 19016 components: - type: Transform - pos: -43.5,-74.5 + pos: -74.5,-52.5 parent: 1 - - uid: 18408 + - uid: 19017 components: - type: Transform - pos: -44.5,-74.5 + pos: -74.5,-53.5 parent: 1 - - uid: 18409 + - uid: 19018 components: - type: Transform - pos: -45.5,-74.5 + pos: -74.5,-54.5 parent: 1 - - uid: 18410 + - uid: 19019 components: - type: Transform - pos: -46.5,-74.5 + pos: -76.5,-49.5 parent: 1 - - uid: 18411 + - uid: 19020 components: - type: Transform - pos: -47.5,-74.5 + pos: -75.5,-49.5 parent: 1 - - uid: 18412 + - uid: 19021 components: - type: Transform - pos: -48.5,-74.5 + pos: -82.5,-49.5 parent: 1 - - uid: 18413 + - uid: 19025 components: - type: Transform - pos: -49.5,-74.5 + pos: -96.5,-27.5 parent: 1 - - uid: 18414 + - uid: 19028 components: - type: Transform - pos: -50.5,-74.5 + pos: -69.5,-56.5 parent: 1 - - uid: 18415 + - uid: 19029 components: - type: Transform - pos: -51.5,-74.5 + pos: -69.5,-57.5 parent: 1 - - uid: 18416 + - uid: 19030 components: - type: Transform - pos: -52.5,-74.5 + pos: -68.5,-56.5 parent: 1 - - uid: 18417 + - uid: 19031 components: - type: Transform - pos: -53.5,-74.5 + pos: -67.5,-56.5 parent: 1 - - uid: 18418 + - uid: 19032 components: - type: Transform - pos: -53.5,-73.5 + pos: -66.5,-56.5 parent: 1 - - uid: 18419 + - uid: 19033 components: - type: Transform - pos: -53.5,-72.5 + pos: -65.5,-56.5 parent: 1 - - uid: 18420 + - uid: 19034 components: - type: Transform - pos: -53.5,-71.5 + pos: -64.5,-56.5 parent: 1 - - uid: 18421 + - uid: 19035 components: - type: Transform - pos: -53.5,-70.5 + pos: -63.5,-56.5 parent: 1 - - uid: 18422 + - uid: 19036 components: - type: Transform - pos: -53.5,-69.5 + pos: -63.5,-57.5 parent: 1 - - uid: 18423 + - uid: 19037 components: - type: Transform - pos: -53.5,-68.5 + pos: -63.5,-58.5 parent: 1 - - uid: 18424 + - uid: 19038 components: - type: Transform - pos: -53.5,-67.5 + pos: -63.5,-59.5 parent: 1 - - uid: 18425 + - uid: 19039 components: - type: Transform - pos: -53.5,-66.5 + pos: -63.5,-60.5 parent: 1 - - uid: 18426 + - uid: 19040 components: - type: Transform - pos: -53.5,-65.5 + pos: -63.5,-61.5 parent: 1 - - uid: 18427 + - uid: 19041 components: - type: Transform - pos: -52.5,-65.5 + pos: -63.5,-62.5 parent: 1 - - uid: 18428 + - uid: 19042 components: - type: Transform - pos: -51.5,-65.5 + pos: -63.5,-63.5 parent: 1 - - uid: 18429 + - uid: 19043 components: - type: Transform - pos: -50.5,-65.5 + pos: -63.5,-64.5 parent: 1 - - uid: 18430 + - uid: 19044 components: - type: Transform - pos: -49.5,-65.5 + pos: -63.5,-65.5 parent: 1 - - uid: 18431 + - uid: 19045 components: - type: Transform - pos: -49.5,-64.5 + pos: -64.5,-65.5 parent: 1 - - uid: 18432 + - uid: 19046 components: - type: Transform - pos: -49.5,-63.5 + pos: -65.5,-65.5 parent: 1 - - uid: 18433 + - uid: 19047 components: - type: Transform - pos: -49.5,-62.5 + pos: -66.5,-65.5 parent: 1 - - uid: 18434 + - uid: 19048 components: - type: Transform - pos: -49.5,-61.5 + pos: -67.5,-65.5 parent: 1 - - uid: 18435 + - uid: 19049 components: - type: Transform - pos: -49.5,-60.5 + pos: -68.5,-65.5 parent: 1 - - uid: 18436 + - uid: 19050 components: - type: Transform - pos: -49.5,-59.5 + pos: -68.5,-64.5 parent: 1 - - uid: 18437 + - uid: 19051 components: - type: Transform - pos: -48.5,-59.5 + pos: -68.5,-63.5 parent: 1 - - uid: 18438 + - uid: 19052 components: - type: Transform - pos: -47.5,-59.5 + pos: -69.5,-63.5 parent: 1 - - uid: 18439 + - uid: 19053 components: - type: Transform - pos: -46.5,-59.5 + pos: -62.5,-65.5 parent: 1 - - uid: 18440 + - uid: 19054 components: - type: Transform - pos: -45.5,-59.5 + pos: -61.5,-65.5 parent: 1 - - uid: 18441 + - uid: 19055 components: - type: Transform - pos: -45.5,-58.5 + pos: -60.5,-65.5 parent: 1 - - uid: 18449 + - uid: 19056 components: - type: Transform - pos: -44.5,-51.5 + pos: -59.5,-65.5 parent: 1 - - uid: 18450 + - uid: 19057 components: - type: Transform - pos: -43.5,-51.5 + pos: -59.5,-66.5 parent: 1 - - uid: 18451 + - uid: 19058 components: - type: Transform - pos: -42.5,-51.5 + pos: -59.5,-67.5 parent: 1 - - uid: 18452 + - uid: 19059 components: - type: Transform - pos: -42.5,-50.5 + pos: -59.5,-68.5 parent: 1 - - uid: 18453 + - uid: 19060 components: - type: Transform - pos: -42.5,-49.5 + pos: -59.5,-69.5 parent: 1 - - uid: 18454 + - uid: 19061 components: - type: Transform - pos: -42.5,-48.5 + pos: -60.5,-69.5 parent: 1 - - uid: 18455 + - uid: 19062 components: - type: Transform - pos: -41.5,-48.5 + pos: -61.5,-69.5 parent: 1 - - uid: 18466 + - uid: 19063 components: - type: Transform - pos: -40.5,-38.5 + pos: -62.5,-69.5 parent: 1 - - uid: 18467 + - uid: 19064 components: - type: Transform - pos: -40.5,-37.5 + pos: -63.5,-69.5 parent: 1 - - uid: 18468 + - uid: 19065 components: - type: Transform - pos: -40.5,-36.5 + pos: -64.5,-69.5 parent: 1 - - uid: 18469 + - uid: 19066 components: - type: Transform - pos: -40.5,-35.5 + pos: -64.5,-68.5 parent: 1 - - uid: 18470 + - uid: 19067 components: - type: Transform - pos: -39.5,-35.5 + pos: -65.5,-68.5 parent: 1 - - uid: 18471 + - uid: 19068 components: - type: Transform - pos: -38.5,-35.5 + pos: -66.5,-68.5 parent: 1 - - uid: 18472 + - uid: 19069 components: - type: Transform - pos: -37.5,-35.5 + pos: -67.5,-68.5 parent: 1 - - uid: 18473 + - uid: 19070 components: - type: Transform - pos: -36.5,-35.5 + pos: -68.5,-68.5 parent: 1 - - uid: 18474 + - uid: 19071 components: - type: Transform - pos: -36.5,-34.5 + pos: -69.5,-68.5 parent: 1 - - uid: 18475 + - uid: 19072 components: - type: Transform - pos: -36.5,-33.5 + pos: -70.5,-68.5 parent: 1 - - uid: 18476 + - uid: 19073 components: - type: Transform - pos: -36.5,-32.5 + pos: -71.5,-68.5 parent: 1 - - uid: 18543 + - uid: 19074 components: - type: Transform - pos: -54.5,-22.5 + pos: -72.5,-68.5 parent: 1 - - uid: 18544 + - uid: 19075 components: - type: Transform - pos: -54.5,-21.5 + pos: -73.5,-68.5 parent: 1 - - uid: 18545 + - uid: 19076 components: - type: Transform - pos: -54.5,-20.5 + pos: -74.5,-68.5 parent: 1 - - uid: 18546 + - uid: 19077 components: - type: Transform - pos: -54.5,-19.5 + pos: -75.5,-68.5 parent: 1 - - uid: 18547 + - uid: 19078 components: - type: Transform - pos: -54.5,-18.5 + pos: -76.5,-68.5 parent: 1 - - uid: 18548 + - uid: 19079 components: - type: Transform - pos: -55.5,-22.5 + pos: -77.5,-68.5 parent: 1 - - uid: 18549 + - uid: 19080 components: - type: Transform - pos: -55.5,-23.5 + pos: -77.5,-67.5 parent: 1 - - uid: 18550 + - uid: 19081 components: - type: Transform - pos: -55.5,-24.5 + pos: -74.5,-67.5 parent: 1 - - uid: 18551 + - uid: 19082 components: - type: Transform - pos: -56.5,-24.5 + pos: -72.5,-69.5 parent: 1 - - uid: 18552 + - uid: 19083 components: - type: Transform - pos: -53.5,-21.5 + pos: -67.5,-69.5 parent: 1 - - uid: 18553 + - uid: 19084 components: - type: Transform - pos: -52.5,-21.5 + pos: -61.5,-70.5 parent: 1 - - uid: 18554 + - uid: 19085 components: - type: Transform - pos: -52.5,-22.5 + pos: -61.5,-71.5 parent: 1 - - uid: 18555 + - uid: 19086 components: - type: Transform - pos: -52.5,-23.5 + pos: -61.5,-73.5 parent: 1 - - uid: 18560 + - uid: 19087 components: - type: Transform - pos: -51.5,-27.5 + pos: -61.5,-72.5 parent: 1 - - uid: 18561 + - uid: 19088 components: - type: Transform - pos: -50.5,-27.5 + pos: -61.5,-74.5 parent: 1 - - uid: 18562 + - uid: 19089 components: - type: Transform - pos: -49.5,-27.5 + pos: -61.5,-75.5 parent: 1 - - uid: 18563 + - uid: 19090 components: - type: Transform - pos: -48.5,-27.5 + pos: -62.5,-74.5 parent: 1 - - uid: 18564 + - uid: 19091 components: - type: Transform - pos: -47.5,-27.5 + pos: -63.5,-74.5 parent: 1 - - uid: 18565 + - uid: 19092 components: - type: Transform - pos: -47.5,-26.5 + pos: -61.5,-76.5 parent: 1 - - uid: 18566 + - uid: 19093 components: - type: Transform - pos: -47.5,-25.5 + pos: -62.5,-76.5 parent: 1 - - uid: 18567 + - uid: 19094 components: - type: Transform - pos: -47.5,-24.5 + pos: -58.5,-67.5 parent: 1 - - uid: 18568 + - uid: 19095 components: - type: Transform - pos: -47.5,-23.5 + pos: -57.5,-67.5 parent: 1 - - uid: 18569 + - uid: 19096 components: - type: Transform - pos: -47.5,-22.5 + pos: -57.5,-68.5 parent: 1 - - uid: 18570 + - uid: 19097 components: - type: Transform - pos: -47.5,-21.5 + pos: -57.5,-69.5 parent: 1 - - uid: 18571 + - uid: 19098 components: - type: Transform - pos: -48.5,-21.5 + pos: -57.5,-70.5 parent: 1 - - uid: 18572 + - uid: 19099 components: - type: Transform - pos: -46.5,-27.5 + pos: -57.5,-71.5 parent: 1 - - uid: 18573 + - uid: 19100 components: - type: Transform - pos: -45.5,-27.5 + pos: -57.5,-72.5 parent: 1 - - uid: 18574 + - uid: 19101 components: - type: Transform - pos: -44.5,-27.5 + pos: -57.5,-73.5 parent: 1 - - uid: 18575 + - uid: 19102 components: - type: Transform - pos: -43.5,-27.5 + pos: -57.5,-74.5 parent: 1 - - uid: 18576 + - uid: 19103 components: - type: Transform - pos: -43.5,-26.5 + pos: -57.5,-75.5 parent: 1 - - uid: 18577 + - uid: 19104 components: - type: Transform - pos: -43.5,-25.5 + pos: -57.5,-76.5 parent: 1 - - uid: 18578 + - uid: 19105 components: - type: Transform - pos: -43.5,-24.5 + pos: -57.5,-77.5 parent: 1 - - uid: 18579 + - uid: 19106 components: - type: Transform - pos: -44.5,-24.5 + pos: -57.5,-78.5 parent: 1 - - uid: 18580 + - uid: 19107 components: - type: Transform - pos: -44.5,-23.5 + pos: -57.5,-79.5 parent: 1 - - uid: 18581 + - uid: 19108 components: - type: Transform - pos: -44.5,-22.5 + pos: -57.5,-80.5 parent: 1 - - uid: 18582 + - uid: 19109 components: - type: Transform - pos: -44.5,-21.5 + pos: -56.5,-80.5 parent: 1 - - uid: 18586 + - uid: 19110 components: - type: Transform - pos: -54.5,-40.5 + pos: -56.5,-81.5 parent: 1 - - uid: 18587 + - uid: 19111 components: - type: Transform - pos: -53.5,-40.5 + pos: -35.5,-80.5 parent: 1 - - uid: 18592 + - uid: 19112 components: - type: Transform - pos: -53.5,-37.5 + pos: -36.5,-81.5 parent: 1 - - uid: 18593 + - uid: 19113 components: - type: Transform - pos: -54.5,-37.5 + pos: -36.5,-82.5 parent: 1 - - uid: 18594 + - uid: 19114 components: - type: Transform - pos: -55.5,-37.5 + pos: -36.5,-83.5 parent: 1 - - uid: 18598 + - uid: 19115 components: - type: Transform - pos: -52.5,-33.5 + pos: -35.5,-83.5 parent: 1 - - uid: 18599 + - uid: 19116 components: - type: Transform - pos: -53.5,-33.5 + pos: -35.5,-84.5 parent: 1 - - uid: 18600 + - uid: 19117 components: - type: Transform - pos: -54.5,-33.5 + pos: -34.5,-84.5 parent: 1 - - uid: 18601 + - uid: 19118 components: - type: Transform - pos: -55.5,-33.5 + pos: -56.5,-84.5 parent: 1 - - uid: 18603 + - uid: 19119 components: - type: Transform - pos: -50.5,-35.5 + pos: -33.5,-84.5 parent: 1 - - uid: 18604 + - uid: 19120 components: - type: Transform - pos: -50.5,-36.5 + pos: -33.5,-85.5 parent: 1 - - uid: 18605 + - uid: 19121 components: - type: Transform - pos: -50.5,-37.5 + pos: -33.5,-86.5 parent: 1 - - uid: 18606 + - uid: 19122 components: - type: Transform - pos: -49.5,-35.5 + pos: -33.5,-87.5 parent: 1 - - uid: 18607 + - uid: 19123 components: - type: Transform - pos: -48.5,-35.5 + pos: -33.5,-88.5 parent: 1 - - uid: 18608 + - uid: 19124 components: - type: Transform - pos: -47.5,-35.5 + pos: -33.5,-89.5 parent: 1 - - uid: 18609 + - uid: 19125 components: - type: Transform - pos: -47.5,-36.5 + pos: -33.5,-90.5 parent: 1 - - uid: 18610 + - uid: 19126 components: - type: Transform - pos: -47.5,-37.5 + pos: -33.5,-91.5 parent: 1 - - uid: 18611 + - uid: 19127 components: - type: Transform - pos: -46.5,-35.5 + pos: -55.5,-81.5 parent: 1 - - uid: 18612 + - uid: 19128 components: - type: Transform - pos: -45.5,-35.5 + pos: -54.5,-81.5 parent: 1 - - uid: 18613 + - uid: 19129 components: - type: Transform - pos: -44.5,-35.5 + pos: -53.5,-81.5 parent: 1 - - uid: 18614 + - uid: 19130 components: - type: Transform - pos: -44.5,-36.5 + pos: -53.5,-82.5 parent: 1 - - uid: 18615 + - uid: 19131 components: - type: Transform - pos: -44.5,-37.5 + pos: -53.5,-83.5 parent: 1 - - uid: 18616 + - uid: 19132 components: - type: Transform - pos: -44.5,-34.5 + pos: -54.5,-83.5 parent: 1 - - uid: 18617 + - uid: 19133 components: - type: Transform - pos: -44.5,-33.5 + pos: -54.5,-84.5 parent: 1 - - uid: 18618 + - uid: 19134 components: - type: Transform - pos: -44.5,-32.5 + pos: -55.5,-84.5 parent: 1 - - uid: 18619 + - uid: 19135 components: - type: Transform - pos: -44.5,-31.5 + pos: -56.5,-85.5 parent: 1 - - uid: 18620 + - uid: 19136 components: - type: Transform - pos: -43.5,-31.5 + pos: -56.5,-86.5 parent: 1 - - uid: 18621 + - uid: 19137 components: - type: Transform - pos: -42.5,-31.5 + pos: -56.5,-87.5 parent: 1 - - uid: 18622 + - uid: 19138 components: - type: Transform - pos: -41.5,-31.5 + pos: -56.5,-88.5 parent: 1 - - uid: 18623 + - uid: 19139 components: - type: Transform - pos: -45.5,-31.5 + pos: -56.5,-89.5 parent: 1 - - uid: 18624 + - uid: 19140 components: - type: Transform - pos: -46.5,-31.5 + pos: -56.5,-90.5 parent: 1 - - uid: 18625 + - uid: 19141 components: - type: Transform - pos: -47.5,-31.5 + pos: -56.5,-91.5 parent: 1 - - uid: 18626 + - uid: 19199 components: - type: Transform - pos: -48.5,-31.5 + pos: -60.5,-68.5 parent: 1 - - uid: 18630 + - uid: 19200 components: - type: Transform - pos: -52.5,-44.5 + pos: -88.5,-35.5 parent: 1 - - uid: 18631 + - uid: 19201 components: - type: Transform - pos: -51.5,-44.5 + pos: -88.5,-34.5 parent: 1 - - uid: 18632 + - uid: 19202 components: - type: Transform - pos: -50.5,-44.5 + pos: -88.5,-33.5 parent: 1 - - uid: 18633 + - uid: 19203 components: - type: Transform - pos: -49.5,-44.5 + pos: -89.5,-33.5 parent: 1 - - uid: 18634 + - uid: 19204 components: - type: Transform - pos: -49.5,-43.5 + pos: -90.5,-33.5 parent: 1 - - uid: 18635 + - uid: 19205 components: - type: Transform - pos: -49.5,-42.5 + pos: -91.5,-33.5 parent: 1 - - uid: 18636 + - uid: 19206 components: - type: Transform - pos: -48.5,-42.5 + pos: -91.5,-32.5 parent: 1 - - uid: 18637 + - uid: 19207 components: - type: Transform - pos: -47.5,-42.5 + pos: -91.5,-31.5 parent: 1 - - uid: 18638 + - uid: 19208 components: - type: Transform - pos: -46.5,-42.5 + pos: -91.5,-30.5 parent: 1 - - uid: 18639 + - uid: 19209 components: - type: Transform - pos: -45.5,-42.5 + pos: -91.5,-29.5 parent: 1 - - uid: 18640 + - uid: 19210 components: - type: Transform - pos: -48.5,-44.5 + pos: -91.5,-28.5 parent: 1 - - uid: 18641 + - uid: 19211 components: - type: Transform - pos: -47.5,-44.5 + pos: -92.5,-28.5 parent: 1 - - uid: 18642 + - uid: 19212 components: - type: Transform - pos: -46.5,-44.5 + pos: -93.5,-28.5 parent: 1 - - uid: 18643 + - uid: 19213 components: - type: Transform - pos: -45.5,-44.5 + pos: -94.5,-28.5 parent: 1 - - uid: 18644 + - uid: 19214 components: - type: Transform - pos: -45.5,-45.5 + pos: -95.5,-28.5 parent: 1 - - uid: 18645 + - uid: 19215 components: - type: Transform - pos: -45.5,-46.5 + pos: -96.5,-28.5 parent: 1 - - uid: 18646 + - uid: 19216 components: - type: Transform - pos: -49.5,-45.5 + pos: -96.5,-26.5 parent: 1 - - uid: 18647 + - uid: 19217 components: - type: Transform - pos: -49.5,-46.5 + pos: -96.5,-25.5 parent: 1 - - uid: 18648 + - uid: 19218 components: - type: Transform - pos: -49.5,-47.5 + pos: -96.5,-24.5 parent: 1 - - uid: 18649 + - uid: 19219 components: - type: Transform - pos: -49.5,-48.5 + pos: -96.5,-23.5 parent: 1 - - uid: 18650 + - uid: 19220 components: - type: Transform - pos: -49.5,-49.5 + pos: -96.5,-22.5 parent: 1 - - uid: 18651 + - uid: 19221 components: - type: Transform - pos: -49.5,-50.5 + pos: -96.5,-21.5 parent: 1 - - uid: 18652 + - uid: 19236 components: - type: Transform - pos: -49.5,-51.5 + pos: -104.5,-18.5 parent: 1 - - uid: 18653 + - uid: 19237 components: - type: Transform - pos: -49.5,-52.5 + pos: -105.5,-18.5 parent: 1 - - uid: 18654 + - uid: 19238 components: - type: Transform - pos: -49.5,-53.5 + pos: -103.5,-18.5 parent: 1 - - uid: 18655 + - uid: 19240 components: - type: Transform - pos: -49.5,-54.5 + pos: -103.5,-19.5 parent: 1 - - uid: 18656 + - uid: 19262 components: - type: Transform - pos: -48.5,-54.5 + pos: -102.5,-18.5 parent: 1 - - uid: 18657 + - uid: 19263 components: - type: Transform - pos: -60.5,-51.5 + pos: -102.5,-17.5 parent: 1 - - uid: 18658 + - uid: 19264 components: - type: Transform - pos: -60.5,-50.5 + pos: -102.5,-16.5 parent: 1 - - uid: 18659 + - uid: 19265 components: - type: Transform - pos: -60.5,-49.5 + pos: -103.5,-16.5 parent: 1 - - uid: 18660 + - uid: 19266 components: - type: Transform - pos: -60.5,-48.5 + pos: -104.5,-16.5 parent: 1 - - uid: 18661 + - uid: 19267 components: - type: Transform - pos: -61.5,-48.5 + pos: -102.5,-15.5 parent: 1 - - uid: 18662 + - uid: 19268 components: - type: Transform - pos: -62.5,-48.5 + pos: -102.5,-14.5 parent: 1 - - uid: 18663 + - uid: 19269 components: - type: Transform - pos: -62.5,-47.5 + pos: -101.5,-14.5 parent: 1 - - uid: 18664 + - uid: 19270 components: - type: Transform - pos: -63.5,-47.5 + pos: -100.5,-14.5 parent: 1 - - uid: 18665 + - uid: 19271 components: - type: Transform - pos: -64.5,-47.5 + pos: -99.5,-14.5 parent: 1 - - uid: 18666 + - uid: 19272 components: - type: Transform - pos: -65.5,-47.5 + pos: -100.5,-13.5 parent: 1 - - uid: 18667 + - uid: 19273 components: - type: Transform - pos: -66.5,-47.5 + pos: -100.5,-12.5 parent: 1 - - uid: 18668 + - uid: 19274 components: - type: Transform - pos: -67.5,-47.5 + pos: -100.5,-11.5 parent: 1 - - uid: 18669 + - uid: 19277 components: - type: Transform - pos: -61.5,-47.5 + pos: -105.5,-13.5 parent: 1 - - uid: 18670 + - uid: 19278 components: - type: Transform - pos: -61.5,-46.5 + pos: -105.5,-12.5 parent: 1 - - uid: 18671 + - uid: 19280 components: - type: Transform - pos: -61.5,-45.5 + pos: -108.5,-12.5 parent: 1 - - uid: 18672 + - uid: 19281 components: - type: Transform - pos: -60.5,-45.5 + pos: -109.5,-12.5 parent: 1 - - uid: 18673 + - uid: 19282 components: - type: Transform - pos: -59.5,-45.5 + pos: -110.5,-12.5 parent: 1 - - uid: 18674 + - uid: 19283 components: - type: Transform - pos: -58.5,-45.5 + pos: -111.5,-12.5 parent: 1 - - uid: 18675 + - uid: 19284 components: - type: Transform - pos: -57.5,-45.5 + pos: -112.5,-12.5 parent: 1 - - uid: 18676 + - uid: 19285 components: - type: Transform - pos: -59.5,-49.5 + pos: -113.5,-12.5 parent: 1 - - uid: 18677 + - uid: 19291 components: - type: Transform - pos: -58.5,-49.5 + pos: -143.5,23.5 parent: 1 - - uid: 18678 + - uid: 19295 components: - type: Transform - pos: -57.5,-49.5 + pos: -117.5,22.5 parent: 1 - - uid: 18679 + - uid: 19296 components: - type: Transform - pos: -56.5,-49.5 + pos: -116.5,22.5 parent: 1 - - uid: 18680 + - uid: 19297 components: - type: Transform - pos: -55.5,-49.5 + pos: -116.5,23.5 parent: 1 - - uid: 18681 + - uid: 19298 components: - type: Transform - pos: -54.5,-49.5 + pos: -116.5,24.5 parent: 1 - - uid: 18682 + - uid: 19299 components: - type: Transform - pos: -54.5,-52.5 + pos: -115.5,22.5 parent: 1 - - uid: 18683 + - uid: 19300 components: - type: Transform - pos: -54.5,-51.5 + pos: -114.5,22.5 parent: 1 - - uid: 18684 + - uid: 19301 components: - type: Transform - pos: -54.5,-50.5 + pos: -113.5,22.5 parent: 1 - - uid: 18685 + - uid: 19302 components: - type: Transform - pos: -54.5,-53.5 + pos: -112.5,22.5 parent: 1 - - uid: 18686 + - uid: 19303 components: - type: Transform - pos: -54.5,-54.5 + pos: -111.5,22.5 parent: 1 - - uid: 18687 + - uid: 19304 components: - type: Transform - pos: -54.5,-55.5 + pos: -110.5,22.5 parent: 1 - - uid: 18688 + - uid: 19305 components: - type: Transform - pos: -54.5,-56.5 + pos: -109.5,22.5 parent: 1 - - uid: 18689 + - uid: 19306 components: - type: Transform - pos: -54.5,-57.5 + pos: -108.5,22.5 parent: 1 - - uid: 18690 + - uid: 19307 components: - type: Transform - pos: -54.5,-58.5 + pos: -108.5,23.5 parent: 1 - - uid: 18691 + - uid: 19308 components: - type: Transform - pos: -54.5,-59.5 + pos: -108.5,24.5 parent: 1 - - uid: 18692 + - uid: 19309 components: - type: Transform - pos: -54.5,-60.5 + pos: -107.5,22.5 parent: 1 - - uid: 18693 + - uid: 19310 components: - type: Transform - pos: -58.5,-51.5 + pos: -106.5,22.5 parent: 1 - - uid: 18694 + - uid: 19311 components: - type: Transform - pos: -58.5,-50.5 + pos: -105.5,22.5 parent: 1 - - uid: 18695 + - uid: 19312 components: - type: Transform - pos: -36.5,-80.5 + pos: -124.5,-0.5 parent: 1 - - uid: 18696 + - uid: 19313 components: - type: Transform - pos: -58.5,-52.5 + pos: -125.5,-0.5 parent: 1 - - uid: 18697 + - uid: 19314 components: - type: Transform - pos: -58.5,-53.5 + pos: -125.5,-1.5 parent: 1 - - uid: 18698 + - uid: 19315 components: - type: Transform - pos: -58.5,-54.5 + pos: -126.5,-1.5 parent: 1 - - uid: 18699 + - uid: 19316 components: - type: Transform - pos: -58.5,-55.5 + pos: -127.5,-1.5 parent: 1 - - uid: 18700 + - uid: 19317 components: - type: Transform - pos: -58.5,-56.5 + pos: -128.5,-1.5 parent: 1 - - uid: 18701 + - uid: 19318 components: - type: Transform - pos: -58.5,-57.5 + pos: -129.5,-1.5 parent: 1 - - uid: 18702 + - uid: 19319 components: - type: Transform - pos: -58.5,-58.5 + pos: -130.5,-1.5 parent: 1 - - uid: 18703 + - uid: 19320 components: - type: Transform - pos: -58.5,-59.5 + pos: -130.5,-2.5 parent: 1 - - uid: 18704 + - uid: 19321 components: - type: Transform - pos: -58.5,-60.5 + pos: -130.5,-3.5 parent: 1 - - uid: 18705 + - uid: 19322 components: - type: Transform - pos: -59.5,-60.5 + pos: -130.5,-4.5 parent: 1 - - uid: 18754 + - uid: 19323 components: - type: Transform - pos: -81.5,-22.5 + pos: -130.5,-5.5 parent: 1 - - uid: 18755 + - uid: 19324 components: - type: Transform - pos: -81.5,-21.5 + pos: -130.5,-6.5 parent: 1 - - uid: 18756 + - uid: 19325 components: - type: Transform - pos: -81.5,-20.5 + pos: -130.5,-7.5 parent: 1 - - uid: 18757 + - uid: 19326 components: - type: Transform - pos: -81.5,-19.5 + pos: -130.5,-8.5 parent: 1 - - uid: 18758 + - uid: 19327 components: - type: Transform - pos: -81.5,-18.5 + pos: -130.5,-9.5 parent: 1 - - uid: 18759 + - uid: 19328 components: - type: Transform - pos: -82.5,-18.5 + pos: -130.5,-10.5 parent: 1 - - uid: 18760 + - uid: 19329 components: - type: Transform - pos: -83.5,-18.5 + pos: -131.5,-10.5 parent: 1 - - uid: 18761 + - uid: 19330 components: - type: Transform - pos: -84.5,-18.5 + pos: -132.5,-10.5 parent: 1 - - uid: 18762 + - uid: 19331 components: - type: Transform - pos: -84.5,-19.5 + pos: -133.5,-10.5 parent: 1 - - uid: 18763 + - uid: 19332 components: - type: Transform - pos: -84.5,-20.5 + pos: -134.5,-10.5 parent: 1 - - uid: 18764 + - uid: 19333 components: - type: Transform - pos: -85.5,-20.5 + pos: -135.5,-10.5 parent: 1 - - uid: 18765 + - uid: 19334 components: - type: Transform - pos: -86.5,-20.5 + pos: -136.5,-10.5 parent: 1 - - uid: 18766 + - uid: 19335 components: - type: Transform - pos: -87.5,-20.5 + pos: -137.5,-10.5 parent: 1 - - uid: 18767 + - uid: 19336 components: - type: Transform - pos: -88.5,-20.5 + pos: -138.5,-10.5 parent: 1 - - uid: 18768 + - uid: 19337 components: - type: Transform - pos: -83.5,-20.5 + pos: -139.5,-10.5 parent: 1 - - uid: 18769 + - uid: 19338 components: - type: Transform - pos: -83.5,-21.5 + pos: -140.5,-10.5 parent: 1 - - uid: 18770 + - uid: 19339 components: - type: Transform - pos: -83.5,-22.5 + pos: -141.5,-10.5 parent: 1 - - uid: 18771 + - uid: 19340 components: - type: Transform - pos: -83.5,-23.5 + pos: -142.5,-10.5 parent: 1 - - uid: 18772 + - uid: 19341 components: - type: Transform - pos: -83.5,-24.5 + pos: -143.5,-10.5 parent: 1 - - uid: 18773 + - uid: 19342 components: - type: Transform - pos: -84.5,-24.5 + pos: -144.5,-10.5 parent: 1 - - uid: 18774 + - uid: 19343 components: - type: Transform - pos: -85.5,-24.5 + pos: -144.5,-9.5 parent: 1 - - uid: 18775 + - uid: 19344 components: - type: Transform - pos: -86.5,-24.5 + pos: -144.5,-8.5 parent: 1 - - uid: 18776 + - uid: 19345 components: - type: Transform - pos: -87.5,-24.5 + pos: -144.5,-7.5 parent: 1 - - uid: 18777 + - uid: 19346 components: - type: Transform - pos: -88.5,-24.5 + pos: -144.5,-6.5 parent: 1 - - uid: 18778 + - uid: 19347 components: - type: Transform - pos: -88.5,-25.5 + pos: -144.5,-5.5 parent: 1 - - uid: 18779 + - uid: 19348 components: - type: Transform - pos: -88.5,-26.5 + pos: -144.5,-4.5 parent: 1 - - uid: 18780 + - uid: 19349 components: - type: Transform - pos: -87.5,-26.5 + pos: -144.5,-3.5 parent: 1 - - uid: 18781 + - uid: 19350 components: - type: Transform - pos: -86.5,-26.5 + pos: -144.5,-2.5 parent: 1 - - uid: 18786 + - uid: 19351 components: - type: Transform - pos: -83.5,-25.5 + pos: -144.5,-1.5 parent: 1 - - uid: 18787 + - uid: 19370 components: - type: Transform - pos: -83.5,-26.5 + pos: -144.5,17.5 parent: 1 - - uid: 18788 + - uid: 19371 components: - type: Transform - pos: -83.5,-27.5 + pos: -144.5,18.5 parent: 1 - - uid: 18789 + - uid: 19372 components: - type: Transform - pos: -83.5,-28.5 + pos: -144.5,19.5 parent: 1 - - uid: 18790 + - uid: 19373 components: - type: Transform - pos: -83.5,-29.5 + pos: -144.5,20.5 parent: 1 - - uid: 18791 + - uid: 19374 components: - type: Transform - pos: -83.5,-30.5 + pos: -144.5,21.5 parent: 1 - - uid: 18792 + - uid: 19375 components: - type: Transform - pos: -83.5,-31.5 + pos: -144.5,22.5 parent: 1 - - uid: 18793 + - uid: 19376 components: - type: Transform - pos: -84.5,-30.5 + pos: -144.5,23.5 parent: 1 - - uid: 18794 + - uid: 19377 components: - type: Transform - pos: -85.5,-30.5 + pos: -142.5,23.5 parent: 1 - - uid: 18795 + - uid: 19378 components: - type: Transform - pos: -81.5,-23.5 + pos: -141.5,23.5 parent: 1 - - uid: 18796 + - uid: 19379 components: - type: Transform - pos: -80.5,-23.5 + pos: -140.5,23.5 parent: 1 - - uid: 18797 + - uid: 19380 components: - type: Transform - pos: -79.5,-23.5 + pos: -139.5,23.5 parent: 1 - - uid: 18798 + - uid: 19381 components: - type: Transform - pos: -78.5,-23.5 + pos: -138.5,23.5 parent: 1 - - uid: 18799 + - uid: 19382 components: - type: Transform - pos: -78.5,-22.5 + pos: -137.5,23.5 parent: 1 - - uid: 18800 + - uid: 19383 components: - type: Transform - pos: -78.5,-21.5 + pos: -136.5,23.5 parent: 1 - - uid: 18801 + - uid: 19384 components: - type: Transform - pos: -78.5,-20.5 + pos: -135.5,23.5 parent: 1 - - uid: 18802 + - uid: 19385 components: - type: Transform - pos: -71.5,-26.5 + pos: -134.5,23.5 parent: 1 - - uid: 18803 + - uid: 19386 components: - type: Transform - pos: -72.5,-26.5 + pos: -133.5,23.5 parent: 1 - - uid: 18804 + - uid: 19387 components: - type: Transform - pos: -72.5,-25.5 + pos: -132.5,23.5 parent: 1 - - uid: 18805 + - uid: 19388 components: - type: Transform - pos: -72.5,-24.5 + pos: -131.5,23.5 parent: 1 - - uid: 18806 + - uid: 19389 components: - type: Transform - pos: -72.5,-23.5 + pos: -130.5,23.5 parent: 1 - - uid: 18807 + - uid: 19390 components: - type: Transform - pos: -72.5,-22.5 + pos: -130.5,22.5 parent: 1 - - uid: 18808 + - uid: 19391 components: - type: Transform - pos: -72.5,-21.5 + pos: -130.5,21.5 parent: 1 - - uid: 18809 + - uid: 19392 components: - type: Transform - pos: -72.5,-20.5 + pos: -130.5,20.5 parent: 1 - - uid: 18810 + - uid: 19393 components: - type: Transform - pos: -72.5,-19.5 + pos: -130.5,19.5 parent: 1 - - uid: 18811 + - uid: 19394 components: - type: Transform - pos: -73.5,-19.5 + pos: -130.5,18.5 parent: 1 - - uid: 18812 + - uid: 19395 components: - type: Transform - pos: -74.5,-19.5 + pos: -130.5,17.5 parent: 1 - - uid: 18813 + - uid: 19396 components: - type: Transform - pos: -72.5,-18.5 + pos: -130.5,16.5 parent: 1 - - uid: 18814 + - uid: 19397 components: - type: Transform - pos: -71.5,-18.5 + pos: -130.5,15.5 parent: 1 - - uid: 18815 + - uid: 19398 components: - type: Transform - pos: -70.5,-18.5 + pos: -130.5,14.5 parent: 1 - - uid: 18816 + - uid: 19399 components: - type: Transform - pos: -69.5,-18.5 + pos: -130.5,13.5 parent: 1 - - uid: 18817 + - uid: 19400 components: - type: Transform - pos: -68.5,-18.5 + pos: -130.5,12.5 parent: 1 - - uid: 18818 + - uid: 19401 components: - type: Transform - pos: -67.5,-18.5 + pos: -130.5,11.5 parent: 1 - - uid: 18819 + - uid: 19402 components: - type: Transform - pos: -66.5,-18.5 + pos: -130.5,10.5 parent: 1 - - uid: 18820 + - uid: 19403 components: - type: Transform - pos: -65.5,-18.5 + pos: -130.5,9.5 parent: 1 - - uid: 18821 + - uid: 19404 components: - type: Transform - pos: -64.5,-18.5 + pos: -130.5,8.5 parent: 1 - - uid: 18822 + - uid: 19405 components: - type: Transform - pos: -63.5,-18.5 + pos: -130.5,7.5 parent: 1 - - uid: 18823 + - uid: 19406 components: - type: Transform - pos: -62.5,-18.5 + pos: -130.5,6.5 parent: 1 - - uid: 18824 + - uid: 19407 components: - type: Transform - pos: -71.5,-24.5 + pos: -130.5,5.5 parent: 1 - - uid: 18825 + - uid: 19408 components: - type: Transform - pos: -70.5,-24.5 + pos: -130.5,4.5 parent: 1 - - uid: 18826 + - uid: 19409 components: - type: Transform - pos: -69.5,-24.5 + pos: -130.5,3.5 parent: 1 - - uid: 18827 + - uid: 19410 components: - type: Transform - pos: -68.5,-24.5 + pos: -130.5,2.5 parent: 1 - - uid: 18828 + - uid: 19411 components: - type: Transform - pos: -68.5,-23.5 + pos: -130.5,1.5 parent: 1 - - uid: 18829 + - uid: 19412 components: - type: Transform - pos: -68.5,-22.5 + pos: -130.5,0.5 parent: 1 - - uid: 18830 + - uid: 19413 components: - type: Transform - pos: -72.5,-27.5 + pos: -130.5,-0.5 parent: 1 - - uid: 18831 + - uid: 19415 components: - type: Transform - pos: -72.5,-28.5 + pos: -129.5,2.5 parent: 1 - - uid: 18832 + - uid: 19416 components: - type: Transform - pos: -72.5,-29.5 + pos: -128.5,2.5 parent: 1 - - uid: 18833 + - uid: 19417 components: - type: Transform - pos: -72.5,-30.5 + pos: -127.5,2.5 parent: 1 - - uid: 18834 + - uid: 19418 components: - type: Transform - pos: -73.5,-27.5 + pos: -126.5,2.5 parent: 1 - - uid: 18835 + - uid: 19419 components: - type: Transform - pos: -73.5,-30.5 + pos: -126.5,3.5 parent: 1 - - uid: 18836 + - uid: 19420 components: - type: Transform - pos: -72.5,-31.5 + pos: -126.5,4.5 parent: 1 - - uid: 18837 + - uid: 19421 components: - type: Transform - pos: -72.5,-32.5 + pos: -126.5,5.5 parent: 1 - - uid: 18838 + - uid: 19422 components: - type: Transform - pos: -72.5,-33.5 + pos: -126.5,6.5 parent: 1 - - uid: 18839 + - uid: 19423 components: - type: Transform - pos: -78.5,-24.5 + pos: -126.5,7.5 parent: 1 - - uid: 18840 + - uid: 19424 components: - type: Transform - pos: -78.5,-25.5 + pos: -126.5,8.5 parent: 1 - - uid: 18841 + - uid: 19425 components: - type: Transform - pos: -78.5,-26.5 + pos: -126.5,9.5 parent: 1 - - uid: 18842 + - uid: 19426 components: - type: Transform - pos: -78.5,-27.5 + pos: -126.5,10.5 parent: 1 - - uid: 18843 + - uid: 19427 components: - type: Transform - pos: -78.5,-28.5 + pos: -126.5,11.5 parent: 1 - - uid: 18844 + - uid: 19477 components: - type: Transform - pos: -78.5,-29.5 + pos: -103.5,8.5 parent: 1 - - uid: 18845 + - uid: 19485 components: - type: Transform - pos: -78.5,-30.5 + pos: -103.5,9.5 parent: 1 - - uid: 18846 + - uid: 19486 components: - type: Transform - pos: -72.5,-34.5 + pos: -103.5,10.5 parent: 1 - - uid: 18847 + - uid: 19487 components: - type: Transform - pos: -73.5,-34.5 + pos: -102.5,10.5 parent: 1 - - uid: 18848 + - uid: 19488 components: - type: Transform - pos: -71.5,-34.5 + pos: -103.5,7.5 parent: 1 - - uid: 18849 + - uid: 19489 components: - type: Transform - pos: -70.5,-34.5 + pos: -103.5,6.5 parent: 1 - - uid: 18850 + - uid: 19490 components: - type: Transform - pos: -69.5,-34.5 + pos: -102.5,6.5 parent: 1 - - uid: 18853 + - uid: 19491 components: - type: Transform - pos: -63.5,-29.5 + pos: -101.5,6.5 parent: 1 - - uid: 18854 + - uid: 19492 components: - type: Transform - pos: -64.5,-29.5 + pos: -100.5,6.5 parent: 1 - - uid: 18855 + - uid: 19493 components: - type: Transform - pos: -65.5,-29.5 + pos: -99.5,6.5 parent: 1 - - uid: 18856 + - uid: 19494 components: - type: Transform - pos: -66.5,-29.5 + pos: -98.5,6.5 parent: 1 - - uid: 18857 + - uid: 19495 components: - type: Transform - pos: -67.5,-29.5 + pos: -98.5,7.5 parent: 1 - - uid: 18858 + - uid: 19496 components: - type: Transform - pos: -67.5,-30.5 + pos: -98.5,8.5 parent: 1 - - uid: 18859 + - uid: 19497 components: - type: Transform - pos: -67.5,-28.5 + pos: -98.5,9.5 parent: 1 - - uid: 18860 + - uid: 19498 components: - type: Transform - pos: -63.5,-28.5 + pos: -103.5,5.5 parent: 1 - - uid: 18861 + - uid: 19514 components: - type: Transform - pos: -63.5,-27.5 + pos: -105.5,9.5 parent: 1 - - uid: 18862 + - uid: 19515 components: - type: Transform - pos: -63.5,-26.5 + pos: -106.5,9.5 parent: 1 - - uid: 18863 + - uid: 19516 components: - type: Transform - pos: -63.5,-25.5 + pos: -107.5,9.5 parent: 1 - - uid: 18864 + - uid: 19517 components: - type: Transform - pos: -63.5,-24.5 + pos: -108.5,9.5 parent: 1 - - uid: 18865 + - uid: 19518 components: - type: Transform - pos: -63.5,-23.5 + pos: -109.5,9.5 parent: 1 - - uid: 18866 + - uid: 19519 components: - type: Transform - pos: -67.5,-24.5 + pos: -110.5,9.5 parent: 1 - - uid: 18875 + - uid: 19520 components: - type: Transform - pos: -96.5,-39.5 + pos: -111.5,9.5 parent: 1 - - uid: 18920 + - uid: 19521 components: - type: Transform - pos: -88.5,-36.5 + pos: -112.5,9.5 parent: 1 - - uid: 18921 + - uid: 19522 components: - type: Transform - pos: -87.5,-36.5 + pos: -113.5,9.5 parent: 1 - - uid: 18922 + - uid: 19523 components: - type: Transform - pos: -86.5,-36.5 + pos: -107.5,10.5 parent: 1 - - uid: 18923 + - uid: 19524 components: - type: Transform - pos: -85.5,-36.5 + pos: -107.5,11.5 parent: 1 - - uid: 18924 + - uid: 19525 components: - type: Transform - pos: -88.5,-37.5 + pos: -107.5,12.5 parent: 1 - - uid: 18925 + - uid: 19526 components: - type: Transform - pos: -88.5,-38.5 + pos: -107.5,13.5 parent: 1 - - uid: 18926 + - uid: 19527 components: - type: Transform - pos: -85.5,-37.5 + pos: -108.5,13.5 parent: 1 - - uid: 18927 + - uid: 19528 components: - type: Transform - pos: -85.5,-38.5 + pos: -109.5,13.5 parent: 1 - - uid: 18928 + - uid: 19529 components: - type: Transform - pos: -85.5,-39.5 + pos: -110.5,13.5 parent: 1 - - uid: 18929 + - uid: 19530 components: - type: Transform - pos: -85.5,-40.5 + pos: -111.5,13.5 parent: 1 - - uid: 18930 + - uid: 19531 components: - type: Transform - pos: -85.5,-41.5 + pos: -112.5,13.5 parent: 1 - - uid: 18931 + - uid: 19532 components: - type: Transform - pos: -85.5,-42.5 + pos: -113.5,13.5 parent: 1 - - uid: 18932 + - uid: 19533 components: - type: Transform - pos: -85.5,-43.5 + pos: -114.5,13.5 parent: 1 - - uid: 18933 + - uid: 19534 components: - type: Transform - pos: -85.5,-44.5 + pos: -115.5,13.5 parent: 1 - - uid: 18934 + - uid: 19535 components: - type: Transform - pos: -85.5,-45.5 + pos: -115.5,12.5 parent: 1 - - uid: 18935 + - uid: 19536 components: - type: Transform - pos: -85.5,-46.5 + pos: -115.5,11.5 parent: 1 - - uid: 18936 + - uid: 19537 components: - type: Transform - pos: -85.5,-47.5 + pos: -115.5,10.5 parent: 1 - - uid: 18937 + - uid: 19538 components: - type: Transform - pos: -85.5,-48.5 + pos: -115.5,9.5 parent: 1 - - uid: 18938 + - uid: 19539 components: - type: Transform - pos: -85.5,-49.5 + pos: -115.5,8.5 parent: 1 - - uid: 18939 + - uid: 19540 components: - type: Transform - pos: -86.5,-49.5 + pos: -115.5,7.5 parent: 1 - - uid: 18940 + - uid: 19541 components: - type: Transform - pos: -84.5,-49.5 + pos: -115.5,6.5 parent: 1 - - uid: 18941 + - uid: 19542 components: - type: Transform - pos: -83.5,-49.5 + pos: -115.5,5.5 parent: 1 - - uid: 18942 + - uid: 19543 components: - type: Transform - pos: -85.5,-50.5 + pos: -114.5,5.5 parent: 1 - - uid: 18943 + - uid: 19544 components: - type: Transform - pos: -85.5,-51.5 + pos: -113.5,5.5 parent: 1 - - uid: 18944 + - uid: 19545 components: - type: Transform - pos: -86.5,-51.5 + pos: -112.5,5.5 parent: 1 - - uid: 18945 + - uid: 19546 components: - type: Transform - pos: -84.5,-51.5 + pos: -111.5,5.5 parent: 1 - - uid: 18946 + - uid: 19547 components: - type: Transform - pos: -83.5,-51.5 + pos: -110.5,5.5 parent: 1 - - uid: 18947 + - uid: 19548 components: - type: Transform - pos: -86.5,-46.5 + pos: -109.5,5.5 parent: 1 - - uid: 18948 + - uid: 19549 components: - type: Transform - pos: -84.5,-46.5 + pos: -108.5,5.5 parent: 1 - - uid: 18949 + - uid: 19550 components: - type: Transform - pos: -83.5,-46.5 + pos: -107.5,5.5 parent: 1 - - uid: 18953 + - uid: 19551 components: - type: Transform - pos: -79.5,-31.5 + pos: -107.5,6.5 parent: 1 - - uid: 18962 + - uid: 19552 components: - type: Transform - pos: -77.5,-39.5 + pos: -107.5,7.5 parent: 1 - - uid: 18963 + - uid: 19553 components: - type: Transform - pos: -76.5,-39.5 + pos: -107.5,8.5 parent: 1 - - uid: 18964 + - uid: 19562 components: - type: Transform - pos: -75.5,-39.5 + pos: -104.5,0.5 parent: 1 - - uid: 18965 + - uid: 19563 components: - type: Transform - pos: -74.5,-39.5 + pos: -103.5,0.5 parent: 1 - - uid: 18966 + - uid: 19564 components: - type: Transform - pos: -74.5,-38.5 + pos: -102.5,0.5 parent: 1 - - uid: 18967 + - uid: 19565 components: - type: Transform - pos: -73.5,-38.5 + pos: -101.5,0.5 parent: 1 - - uid: 18968 + - uid: 19566 components: - type: Transform - pos: -72.5,-38.5 + pos: -100.5,0.5 parent: 1 - - uid: 18969 + - uid: 19567 components: - type: Transform - pos: -71.5,-38.5 + pos: -99.5,0.5 parent: 1 - - uid: 18970 + - uid: 19568 components: - type: Transform - pos: -70.5,-38.5 + pos: -98.5,0.5 parent: 1 - - uid: 18971 + - uid: 19569 components: - type: Transform - pos: -69.5,-38.5 + pos: -97.5,0.5 parent: 1 - - uid: 18972 + - uid: 19570 components: - type: Transform - pos: -68.5,-38.5 + pos: -96.5,0.5 parent: 1 - - uid: 18973 + - uid: 19571 components: - type: Transform - pos: -67.5,-38.5 + pos: -95.5,0.5 parent: 1 - - uid: 18974 + - uid: 19572 components: - type: Transform - pos: -66.5,-38.5 + pos: -94.5,0.5 parent: 1 - - uid: 18975 + - uid: 19573 components: - type: Transform - pos: -65.5,-38.5 + pos: -94.5,1.5 parent: 1 - - uid: 18976 + - uid: 19574 components: - type: Transform - pos: -64.5,-38.5 + pos: -94.5,2.5 parent: 1 - - uid: 18977 + - uid: 19575 components: - type: Transform - pos: -63.5,-38.5 + pos: -94.5,3.5 parent: 1 - - uid: 18978 + - uid: 19576 components: - type: Transform - pos: -62.5,-38.5 + pos: -94.5,4.5 parent: 1 - - uid: 18979 + - uid: 19577 components: - type: Transform - pos: -61.5,-38.5 + pos: -94.5,5.5 parent: 1 - - uid: 18980 + - uid: 19578 components: - type: Transform - pos: -60.5,-38.5 + pos: -93.5,2.5 parent: 1 - - uid: 18998 + - uid: 19579 components: - type: Transform - pos: -59.5,-21.5 + pos: -93.5,2.5 parent: 1 - - uid: 18999 + - uid: 19580 components: - type: Transform - pos: -58.5,-21.5 + pos: -92.5,2.5 parent: 1 - - uid: 19000 + - uid: 19581 components: - type: Transform - pos: -58.5,-20.5 + pos: -91.5,2.5 parent: 1 - - uid: 19001 + - uid: 19582 components: - type: Transform - pos: -58.5,-19.5 + pos: -91.5,3.5 parent: 1 - - uid: 19002 + - uid: 19583 components: - type: Transform - pos: -58.5,-18.5 + pos: -91.5,4.5 parent: 1 - - uid: 19003 + - uid: 19584 components: - type: Transform - pos: -44.5,13.5 + pos: -91.5,1.5 parent: 1 - - uid: 19004 + - uid: 19585 components: - type: Transform - pos: -74.5,-40.5 + pos: -106.5,0.5 parent: 1 - - uid: 19005 + - uid: 19586 components: - type: Transform - pos: -74.5,-41.5 + pos: -106.5,1.5 parent: 1 - - uid: 19006 + - uid: 19587 components: - type: Transform - pos: -74.5,-42.5 + pos: -107.5,1.5 parent: 1 - - uid: 19007 + - uid: 19588 components: - type: Transform - pos: -74.5,-43.5 + pos: -108.5,1.5 parent: 1 - - uid: 19008 + - uid: 19589 components: - type: Transform - pos: -74.5,-44.5 + pos: -109.5,1.5 parent: 1 - - uid: 19009 + - uid: 19591 components: - type: Transform - pos: -74.5,-45.5 + pos: -111.5,1.5 parent: 1 - - uid: 19010 + - uid: 19593 components: - type: Transform - pos: -74.5,-46.5 + pos: -110.5,-0.5 parent: 1 - - uid: 19011 + - uid: 19594 components: - type: Transform - pos: -74.5,-47.5 + pos: -110.5,-1.5 parent: 1 - - uid: 19012 + - uid: 19595 components: - type: Transform - pos: -74.5,-48.5 + pos: -110.5,-2.5 parent: 1 - - uid: 19013 + - uid: 19597 components: - type: Transform - pos: -74.5,-49.5 + pos: -112.5,0.5 parent: 1 - - uid: 19014 + - uid: 19598 components: - type: Transform - pos: -74.5,-50.5 + pos: -113.5,0.5 parent: 1 - - uid: 19015 + - uid: 19599 components: - type: Transform - pos: -74.5,-51.5 + pos: -114.5,0.5 parent: 1 - - uid: 19016 + - uid: 19600 components: - type: Transform - pos: -74.5,-52.5 + pos: -115.5,0.5 parent: 1 - - uid: 19017 + - uid: 19601 components: - type: Transform - pos: -74.5,-53.5 + pos: -114.5,-0.5 parent: 1 - - uid: 19018 + - uid: 19602 components: - type: Transform - pos: -74.5,-54.5 + pos: -114.5,-1.5 parent: 1 - - uid: 19019 + - uid: 19603 components: - type: Transform - pos: -76.5,-49.5 + pos: -114.5,-2.5 parent: 1 - - uid: 19020 + - uid: 19604 components: - type: Transform - pos: -75.5,-49.5 + pos: -115.5,-2.5 parent: 1 - - uid: 19021 + - uid: 19605 components: - type: Transform - pos: -82.5,-49.5 + pos: -115.5,-3.5 parent: 1 - - uid: 19025 + - uid: 19606 components: - type: Transform - pos: -96.5,-27.5 + pos: -116.5,-2.5 parent: 1 - - uid: 19028 + - uid: 19607 components: - type: Transform - pos: -69.5,-56.5 + pos: -117.5,-2.5 parent: 1 - - uid: 19029 + - uid: 19669 components: - type: Transform - pos: -69.5,-57.5 + pos: -97.5,23.5 parent: 1 - - uid: 19030 + - uid: 19670 components: - type: Transform - pos: -68.5,-56.5 + pos: -97.5,22.5 parent: 1 - - uid: 19031 + - uid: 19671 components: - type: Transform - pos: -67.5,-56.5 + pos: -97.5,21.5 parent: 1 - - uid: 19032 + - uid: 19672 components: - type: Transform - pos: -66.5,-56.5 + pos: -98.5,21.5 parent: 1 - - uid: 19033 + - uid: 19673 components: - type: Transform - pos: -65.5,-56.5 + pos: -99.5,21.5 parent: 1 - - uid: 19034 + - uid: 19674 components: - type: Transform - pos: -64.5,-56.5 + pos: -100.5,21.5 parent: 1 - - uid: 19035 + - uid: 19675 components: - type: Transform - pos: -63.5,-56.5 + pos: -101.5,21.5 parent: 1 - - uid: 19036 + - uid: 19676 components: - type: Transform - pos: -63.5,-57.5 + pos: -98.5,20.5 parent: 1 - - uid: 19037 + - uid: 19677 components: - type: Transform - pos: -63.5,-58.5 + pos: -98.5,19.5 parent: 1 - - uid: 19038 + - uid: 19678 components: - type: Transform - pos: -63.5,-59.5 + pos: -98.5,18.5 parent: 1 - - uid: 19039 + - uid: 19679 components: - type: Transform - pos: -63.5,-60.5 + pos: -98.5,17.5 parent: 1 - - uid: 19040 + - uid: 19680 components: - type: Transform - pos: -63.5,-61.5 + pos: -98.5,16.5 parent: 1 - - uid: 19041 + - uid: 19681 components: - type: Transform - pos: -63.5,-62.5 + pos: -98.5,15.5 parent: 1 - - uid: 19042 + - uid: 19682 components: - type: Transform - pos: -63.5,-63.5 + pos: -98.5,14.5 parent: 1 - - uid: 19043 + - uid: 19683 components: - type: Transform - pos: -63.5,-64.5 + pos: -98.5,13.5 parent: 1 - - uid: 19044 + - uid: 19684 components: - type: Transform - pos: -63.5,-65.5 + pos: -97.5,13.5 parent: 1 - - uid: 19045 + - uid: 19685 components: - type: Transform - pos: -64.5,-65.5 + pos: -96.5,13.5 parent: 1 - - uid: 19046 + - uid: 19686 components: - type: Transform - pos: -65.5,-65.5 + pos: -96.5,12.5 parent: 1 - - uid: 19047 + - uid: 19687 components: - type: Transform - pos: -66.5,-65.5 + pos: -96.5,11.5 parent: 1 - - uid: 19048 + - uid: 19688 components: - type: Transform - pos: -67.5,-65.5 + pos: -96.5,10.5 parent: 1 - - uid: 19049 + - uid: 19689 components: - type: Transform - pos: -68.5,-65.5 + pos: -95.5,10.5 parent: 1 - - uid: 19050 + - uid: 19690 components: - type: Transform - pos: -68.5,-64.5 + pos: -94.5,10.5 parent: 1 - - uid: 19051 + - uid: 19691 components: - type: Transform - pos: -68.5,-63.5 + pos: -93.5,10.5 parent: 1 - - uid: 19052 + - uid: 19692 components: - type: Transform - pos: -69.5,-63.5 + pos: -92.5,10.5 parent: 1 - - uid: 19053 + - uid: 19693 components: - type: Transform - pos: -62.5,-65.5 + pos: -91.5,10.5 parent: 1 - - uid: 19054 + - uid: 19694 components: - type: Transform - pos: -61.5,-65.5 + pos: -96.5,21.5 parent: 1 - - uid: 19055 + - uid: 19695 components: - type: Transform - pos: -60.5,-65.5 + pos: -95.5,21.5 parent: 1 - - uid: 19056 + - uid: 19696 components: - type: Transform - pos: -59.5,-65.5 + pos: -94.5,21.5 parent: 1 - - uid: 19057 + - uid: 19697 components: - type: Transform - pos: -59.5,-66.5 + pos: -93.5,21.5 parent: 1 - - uid: 19058 + - uid: 19698 components: - type: Transform - pos: -59.5,-67.5 + pos: -93.5,22.5 parent: 1 - - uid: 19059 + - uid: 19699 components: - type: Transform - pos: -59.5,-68.5 + pos: -92.5,21.5 parent: 1 - - uid: 19060 + - uid: 19700 components: - type: Transform - pos: -59.5,-69.5 + pos: -91.5,21.5 parent: 1 - - uid: 19061 + - uid: 19701 components: - type: Transform - pos: -60.5,-69.5 + pos: -90.5,21.5 parent: 1 - - uid: 19062 + - uid: 19702 components: - type: Transform - pos: -61.5,-69.5 + pos: -89.5,21.5 parent: 1 - - uid: 19063 + - uid: 19703 components: - type: Transform - pos: -62.5,-69.5 + pos: -88.5,21.5 parent: 1 - - uid: 19064 + - uid: 19704 components: - type: Transform - pos: -63.5,-69.5 + pos: -87.5,21.5 parent: 1 - - uid: 19065 + - uid: 19705 components: - type: Transform - pos: -64.5,-69.5 + pos: -86.5,21.5 parent: 1 - - uid: 19066 + - uid: 19706 components: - type: Transform - pos: -64.5,-68.5 + pos: -85.5,21.5 parent: 1 - - uid: 19067 + - uid: 19707 components: - type: Transform - pos: -65.5,-68.5 + pos: -84.5,21.5 parent: 1 - - uid: 19068 + - uid: 19708 components: - type: Transform - pos: -66.5,-68.5 + pos: -83.5,21.5 parent: 1 - - uid: 19069 + - uid: 19709 components: - type: Transform - pos: -67.5,-68.5 + pos: -82.5,21.5 parent: 1 - - uid: 19070 + - uid: 19710 components: - type: Transform - pos: -68.5,-68.5 + pos: -81.5,21.5 parent: 1 - - uid: 19071 + - uid: 19711 components: - type: Transform - pos: -69.5,-68.5 + pos: -80.5,21.5 parent: 1 - - uid: 19072 + - uid: 19712 components: - type: Transform - pos: -70.5,-68.5 + pos: -79.5,21.5 parent: 1 - - uid: 19073 + - uid: 19713 components: - type: Transform - pos: -71.5,-68.5 + pos: -78.5,21.5 parent: 1 - - uid: 19074 + - uid: 19714 components: - type: Transform - pos: -72.5,-68.5 + pos: -77.5,21.5 parent: 1 - - uid: 19075 + - uid: 19715 components: - type: Transform - pos: -73.5,-68.5 + pos: -89.5,12.5 parent: 1 - - uid: 19076 + - uid: 19716 components: - type: Transform - pos: -74.5,-68.5 + pos: -88.5,12.5 parent: 1 - - uid: 19077 + - uid: 19717 components: - type: Transform - pos: -75.5,-68.5 + pos: -88.5,13.5 parent: 1 - - uid: 19078 + - uid: 19718 components: - type: Transform - pos: -76.5,-68.5 + pos: -88.5,14.5 parent: 1 - - uid: 19079 + - uid: 19719 components: - type: Transform - pos: -77.5,-68.5 + pos: -88.5,15.5 parent: 1 - - uid: 19080 + - uid: 19720 components: - type: Transform - pos: -77.5,-67.5 + pos: -88.5,16.5 parent: 1 - - uid: 19081 + - uid: 19721 components: - type: Transform - pos: -74.5,-67.5 + pos: -88.5,17.5 parent: 1 - - uid: 19082 + - uid: 19722 components: - type: Transform - pos: -72.5,-69.5 + pos: -88.5,18.5 parent: 1 - - uid: 19083 + - uid: 19723 components: - type: Transform - pos: -67.5,-69.5 + pos: -89.5,18.5 parent: 1 - - uid: 19084 + - uid: 19724 components: - type: Transform - pos: -61.5,-70.5 + pos: -90.5,18.5 parent: 1 - - uid: 19085 + - uid: 19725 components: - type: Transform - pos: -61.5,-71.5 + pos: -91.5,18.5 parent: 1 - - uid: 19086 + - uid: 19726 components: - type: Transform - pos: -61.5,-73.5 + pos: -92.5,18.5 parent: 1 - - uid: 19087 + - uid: 19727 components: - type: Transform - pos: -61.5,-72.5 + pos: -93.5,18.5 parent: 1 - - uid: 19088 + - uid: 19728 components: - type: Transform - pos: -61.5,-74.5 + pos: -94.5,18.5 parent: 1 - - uid: 19089 + - uid: 19729 components: - type: Transform - pos: -61.5,-75.5 + pos: -95.5,18.5 parent: 1 - - uid: 19090 + - uid: 19732 components: - type: Transform - pos: -62.5,-74.5 + pos: -87.5,16.5 parent: 1 - - uid: 19091 + - uid: 19733 components: - type: Transform - pos: -63.5,-74.5 + pos: -86.5,16.5 parent: 1 - - uid: 19092 + - uid: 19734 components: - type: Transform - pos: -61.5,-76.5 + pos: -85.5,16.5 parent: 1 - - uid: 19093 + - uid: 19735 components: - type: Transform - pos: -62.5,-76.5 + pos: -84.5,16.5 parent: 1 - - uid: 19094 + - uid: 19736 components: - type: Transform - pos: -58.5,-67.5 + pos: -83.5,16.5 parent: 1 - - uid: 19095 + - uid: 19737 components: - type: Transform - pos: -57.5,-67.5 + pos: -82.5,16.5 parent: 1 - - uid: 19096 + - uid: 19738 components: - type: Transform - pos: -57.5,-68.5 + pos: -81.5,16.5 parent: 1 - - uid: 19097 + - uid: 19739 components: - type: Transform - pos: -57.5,-69.5 + pos: -87.5,12.5 parent: 1 - - uid: 19098 + - uid: 19740 components: - type: Transform - pos: -57.5,-70.5 + pos: -86.5,12.5 parent: 1 - - uid: 19099 + - uid: 19741 components: - type: Transform - pos: -57.5,-71.5 + pos: -85.5,12.5 parent: 1 - - uid: 19100 + - uid: 19742 components: - type: Transform - pos: -57.5,-72.5 + pos: -84.5,12.5 parent: 1 - - uid: 19101 + - uid: 19747 components: - type: Transform - pos: -57.5,-73.5 + pos: -78.5,6.5 parent: 1 - - uid: 19102 + - uid: 19748 components: - type: Transform - pos: -57.5,-74.5 + pos: -77.5,6.5 parent: 1 - - uid: 19103 + - uid: 19749 components: - type: Transform - pos: -57.5,-75.5 + pos: -77.5,7.5 parent: 1 - - uid: 19104 + - uid: 19750 components: - type: Transform - pos: -57.5,-76.5 + pos: -77.5,8.5 parent: 1 - - uid: 19105 + - uid: 19751 components: - type: Transform - pos: -57.5,-77.5 + pos: -77.5,9.5 parent: 1 - - uid: 19106 + - uid: 19752 components: - type: Transform - pos: -57.5,-78.5 + pos: -77.5,10.5 parent: 1 - - uid: 19107 + - uid: 19753 components: - type: Transform - pos: -57.5,-79.5 + pos: -77.5,11.5 parent: 1 - - uid: 19108 + - uid: 19754 components: - type: Transform - pos: -57.5,-80.5 + pos: -77.5,12.5 parent: 1 - - uid: 19109 + - uid: 19755 components: - type: Transform - pos: -56.5,-80.5 + pos: -77.5,13.5 parent: 1 - - uid: 19110 + - uid: 19756 components: - type: Transform - pos: -56.5,-81.5 + pos: -78.5,13.5 parent: 1 - - uid: 19111 + - uid: 19757 components: - type: Transform - pos: -35.5,-80.5 + pos: -79.5,13.5 parent: 1 - - uid: 19112 + - uid: 19758 components: - type: Transform - pos: -36.5,-81.5 + pos: -79.5,12.5 parent: 1 - - uid: 19113 + - uid: 19759 components: - type: Transform - pos: -36.5,-82.5 + pos: -88.5,-7.5 parent: 1 - - uid: 19114 + - uid: 19760 components: - type: Transform - pos: -36.5,-83.5 + pos: -88.5,-8.5 parent: 1 - - uid: 19115 + - uid: 19761 components: - type: Transform - pos: -35.5,-83.5 + pos: -88.5,-9.5 parent: 1 - - uid: 19116 + - uid: 19762 components: - type: Transform - pos: -35.5,-84.5 + pos: -89.5,-9.5 parent: 1 - - uid: 19117 + - uid: 19763 components: - type: Transform - pos: -34.5,-84.5 + pos: -90.5,-9.5 parent: 1 - - uid: 19118 + - uid: 19764 components: - type: Transform - pos: -56.5,-84.5 + pos: -90.5,-8.5 parent: 1 - - uid: 19119 + - uid: 19765 components: - type: Transform - pos: -33.5,-84.5 + pos: -90.5,-7.5 parent: 1 - - uid: 19120 + - uid: 19766 components: - type: Transform - pos: -33.5,-85.5 + pos: -90.5,-6.5 parent: 1 - - uid: 19121 + - uid: 19767 components: - type: Transform - pos: -33.5,-86.5 + pos: -88.5,-6.5 parent: 1 - - uid: 19122 + - uid: 19768 components: - type: Transform - pos: -33.5,-87.5 + pos: -90.5,-5.5 parent: 1 - - uid: 19123 + - uid: 19769 components: - type: Transform - pos: -33.5,-88.5 + pos: -91.5,-5.5 parent: 1 - - uid: 19124 + - uid: 19770 components: - type: Transform - pos: -33.5,-89.5 + pos: -92.5,-5.5 parent: 1 - - uid: 19125 + - uid: 19771 components: - type: Transform - pos: -33.5,-90.5 + pos: -93.5,-5.5 parent: 1 - - uid: 19126 + - uid: 19772 components: - type: Transform - pos: -33.5,-91.5 + pos: -94.5,-5.5 parent: 1 - - uid: 19127 + - uid: 19773 components: - type: Transform - pos: -55.5,-81.5 + pos: -87.5,-6.5 parent: 1 - - uid: 19128 + - uid: 19774 components: - type: Transform - pos: -54.5,-81.5 + pos: -86.5,-6.5 parent: 1 - - uid: 19129 + - uid: 19775 components: - type: Transform - pos: -53.5,-81.5 + pos: -85.5,-7.5 parent: 1 - - uid: 19130 + - uid: 19776 components: - type: Transform - pos: -53.5,-82.5 + pos: -85.5,-6.5 parent: 1 - - uid: 19131 + - uid: 19777 components: - type: Transform - pos: -53.5,-83.5 + pos: -84.5,-7.5 parent: 1 - - uid: 19132 + - uid: 19778 components: - type: Transform - pos: -54.5,-83.5 + pos: -83.5,-7.5 parent: 1 - - uid: 19133 + - uid: 19779 components: - type: Transform - pos: -54.5,-84.5 + pos: -82.5,-7.5 parent: 1 - - uid: 19134 + - uid: 19780 components: - type: Transform - pos: -55.5,-84.5 + pos: -81.5,-7.5 parent: 1 - - uid: 19135 + - uid: 19781 components: - type: Transform - pos: -56.5,-85.5 + pos: -80.5,-7.5 parent: 1 - - uid: 19136 + - uid: 19782 components: - type: Transform - pos: -56.5,-86.5 + pos: -79.5,-7.5 parent: 1 - - uid: 19137 + - uid: 19783 components: - type: Transform - pos: -56.5,-87.5 + pos: -78.5,-7.5 parent: 1 - - uid: 19138 + - uid: 19784 components: - type: Transform - pos: -56.5,-88.5 + pos: -77.5,-7.5 parent: 1 - - uid: 19139 + - uid: 19785 components: - type: Transform - pos: -56.5,-89.5 + pos: -77.5,-6.5 parent: 1 - - uid: 19140 + - uid: 19786 components: - type: Transform - pos: -56.5,-90.5 + pos: -77.5,-5.5 parent: 1 - - uid: 19141 + - uid: 19787 components: - type: Transform - pos: -56.5,-91.5 + pos: -77.5,-4.5 parent: 1 - - uid: 19199 + - uid: 19788 components: - type: Transform - pos: -60.5,-68.5 + pos: -84.5,-6.5 parent: 1 - - uid: 19200 + - uid: 19789 components: - type: Transform - pos: -88.5,-35.5 + pos: -89.5,9.5 parent: 1 - - uid: 19201 + - uid: 19790 components: - type: Transform - pos: -88.5,-34.5 + pos: -88.5,9.5 parent: 1 - - uid: 19202 + - uid: 19791 components: - type: Transform - pos: -88.5,-33.5 + pos: -88.5,8.5 parent: 1 - - uid: 19203 + - uid: 19792 components: - type: Transform - pos: -89.5,-33.5 + pos: -88.5,7.5 parent: 1 - - uid: 19204 + - uid: 19793 components: - type: Transform - pos: -90.5,-33.5 + pos: -88.5,6.5 parent: 1 - - uid: 19205 + - uid: 19794 components: - type: Transform - pos: -91.5,-33.5 + pos: -88.5,5.5 parent: 1 - - uid: 19206 + - uid: 19795 components: - type: Transform - pos: -91.5,-32.5 + pos: -88.5,4.5 parent: 1 - - uid: 19207 + - uid: 19796 components: - type: Transform - pos: -91.5,-31.5 + pos: -88.5,3.5 parent: 1 - - uid: 19208 + - uid: 19797 components: - type: Transform - pos: -91.5,-30.5 + pos: -88.5,2.5 parent: 1 - - uid: 19209 + - uid: 19798 components: - type: Transform - pos: -91.5,-29.5 + pos: -88.5,1.5 parent: 1 - - uid: 19210 + - uid: 19799 components: - type: Transform - pos: -91.5,-28.5 + pos: -88.5,0.5 parent: 1 - - uid: 19211 + - uid: 19800 components: - type: Transform - pos: -92.5,-28.5 + pos: -88.5,-0.5 parent: 1 - - uid: 19212 + - uid: 19801 components: - type: Transform - pos: -93.5,-28.5 + pos: -88.5,-1.5 parent: 1 - - uid: 19213 + - uid: 19802 components: - type: Transform - pos: -94.5,-28.5 + pos: -87.5,-1.5 parent: 1 - - uid: 19214 + - uid: 19803 components: - type: Transform - pos: -95.5,-28.5 + pos: -87.5,-2.5 parent: 1 - - uid: 19215 + - uid: 19804 components: - type: Transform - pos: -96.5,-28.5 + pos: -86.5,-2.5 parent: 1 - - uid: 19216 + - uid: 19805 components: - type: Transform - pos: -96.5,-26.5 + pos: -85.5,-2.5 parent: 1 - - uid: 19217 + - uid: 19806 components: - type: Transform - pos: -96.5,-25.5 + pos: -84.5,-2.5 parent: 1 - - uid: 19218 + - uid: 19807 components: - type: Transform - pos: -96.5,-24.5 + pos: -83.5,-2.5 parent: 1 - - uid: 19219 + - uid: 19808 components: - type: Transform - pos: -96.5,-23.5 + pos: -83.5,-1.5 parent: 1 - - uid: 19220 + - uid: 19809 components: - type: Transform - pos: -96.5,-22.5 + pos: -82.5,-1.5 parent: 1 - - uid: 19221 + - uid: 19810 components: - type: Transform - pos: -96.5,-21.5 + pos: -82.5,-0.5 parent: 1 - - uid: 19236 + - uid: 19811 components: - type: Transform - pos: -104.5,-18.5 + pos: -82.5,0.5 parent: 1 - - uid: 19237 + - uid: 19812 components: - type: Transform - pos: -105.5,-18.5 + pos: -82.5,1.5 parent: 1 - - uid: 19238 + - uid: 19813 components: - type: Transform - pos: -103.5,-18.5 + pos: -82.5,2.5 parent: 1 - - uid: 19240 + - uid: 19814 components: - type: Transform - pos: -103.5,-19.5 + pos: -82.5,3.5 parent: 1 - - uid: 19262 + - uid: 19815 components: - type: Transform - pos: -102.5,-18.5 + pos: -82.5,4.5 parent: 1 - - uid: 19263 + - uid: 19816 components: - type: Transform - pos: -102.5,-17.5 + pos: -82.5,5.5 parent: 1 - - uid: 19264 + - uid: 19817 components: - type: Transform - pos: -102.5,-16.5 + pos: -82.5,6.5 parent: 1 - - uid: 19265 + - uid: 19818 components: - type: Transform - pos: -103.5,-16.5 + pos: -82.5,7.5 parent: 1 - - uid: 19266 + - uid: 19819 components: - type: Transform - pos: -104.5,-16.5 + pos: -83.5,7.5 parent: 1 - - uid: 19267 + - uid: 19820 components: - type: Transform - pos: -102.5,-15.5 + pos: -83.5,8.5 parent: 1 - - uid: 19268 + - uid: 19821 components: - type: Transform - pos: -102.5,-14.5 + pos: -84.5,8.5 parent: 1 - - uid: 19269 + - uid: 19822 components: - type: Transform - pos: -101.5,-14.5 + pos: -85.5,8.5 parent: 1 - - uid: 19270 + - uid: 19823 components: - type: Transform - pos: -100.5,-14.5 + pos: -86.5,8.5 parent: 1 - - uid: 19271 + - uid: 19824 components: - type: Transform - pos: -99.5,-14.5 + pos: -87.5,8.5 parent: 1 - - uid: 19272 + - uid: 19825 components: - type: Transform - pos: -100.5,-13.5 + pos: -81.5,0.5 parent: 1 - - uid: 19273 + - uid: 19826 components: - type: Transform - pos: -100.5,-12.5 + pos: -80.5,0.5 parent: 1 - - uid: 19274 + - uid: 19827 components: - type: Transform - pos: -100.5,-11.5 + pos: -79.5,0.5 parent: 1 - - uid: 19277 + - uid: 19828 components: - type: Transform - pos: -105.5,-13.5 + pos: -78.5,0.5 parent: 1 - - uid: 19278 + - uid: 19829 components: - type: Transform - pos: -105.5,-12.5 + pos: -77.5,0.5 parent: 1 - - uid: 19280 + - uid: 19830 components: - type: Transform - pos: -108.5,-12.5 + pos: -77.5,1.5 parent: 1 - - uid: 19281 + - uid: 19831 components: - type: Transform - pos: -109.5,-12.5 + pos: -77.5,2.5 parent: 1 - - uid: 19282 + - uid: 19832 components: - type: Transform - pos: -110.5,-12.5 + pos: -78.5,2.5 parent: 1 - - uid: 19283 + - uid: 19833 components: - type: Transform - pos: -111.5,-12.5 + pos: -76.5,0.5 parent: 1 - - uid: 19284 + - uid: 19834 components: - type: Transform - pos: -112.5,-12.5 + pos: -75.5,0.5 parent: 1 - - uid: 19285 + - uid: 19835 components: - type: Transform - pos: -113.5,-12.5 + pos: -74.5,0.5 parent: 1 - - uid: 19291 + - uid: 19836 components: - type: Transform - pos: -143.5,23.5 + pos: -73.5,0.5 parent: 1 - - uid: 19295 + - uid: 19837 components: - type: Transform - pos: -117.5,22.5 + pos: -73.5,-0.5 parent: 1 - - uid: 19296 + - uid: 19838 components: - type: Transform - pos: -116.5,22.5 + pos: -73.5,-1.5 parent: 1 - - uid: 19297 + - uid: 19839 components: - type: Transform - pos: -116.5,23.5 + pos: -73.5,-2.5 parent: 1 - - uid: 19298 + - uid: 19840 components: - type: Transform - pos: -116.5,24.5 + pos: -73.5,-3.5 parent: 1 - - uid: 19299 + - uid: 19841 components: - type: Transform - pos: -115.5,22.5 + pos: -73.5,-4.5 parent: 1 - - uid: 19300 + - uid: 19842 components: - type: Transform - pos: -114.5,22.5 + pos: -73.5,-5.5 parent: 1 - - uid: 19301 + - uid: 19843 components: - type: Transform - pos: -113.5,22.5 + pos: -73.5,2.5 parent: 1 - - uid: 19302 + - uid: 19844 components: - type: Transform - pos: -112.5,22.5 + pos: -73.5,3.5 parent: 1 - - uid: 19303 + - uid: 19845 components: - type: Transform - pos: -111.5,22.5 + pos: -73.5,4.5 parent: 1 - - uid: 19304 + - uid: 19846 components: - type: Transform - pos: -110.5,22.5 + pos: -73.5,1.5 parent: 1 - - uid: 19305 + - uid: 19847 components: - type: Transform - pos: -109.5,22.5 + pos: -73.5,5.5 parent: 1 - - uid: 19306 + - uid: 19848 components: - type: Transform - pos: -108.5,22.5 + pos: -73.5,6.5 parent: 1 - - uid: 19307 + - uid: 19849 components: - type: Transform - pos: -108.5,23.5 + pos: -73.5,7.5 parent: 1 - - uid: 19308 + - uid: 19850 components: - type: Transform - pos: -108.5,24.5 + pos: -73.5,8.5 parent: 1 - - uid: 19309 + - uid: 19851 components: - type: Transform - pos: -107.5,22.5 + pos: -73.5,9.5 parent: 1 - - uid: 19310 + - uid: 19852 components: - type: Transform - pos: -106.5,22.5 + pos: -73.5,10.5 parent: 1 - - uid: 19311 + - uid: 19853 components: - type: Transform - pos: -105.5,22.5 + pos: -73.5,11.5 parent: 1 - - uid: 19312 + - uid: 19854 components: - type: Transform - pos: -124.5,-0.5 + pos: -73.5,12.5 parent: 1 - - uid: 19313 + - uid: 19855 components: - type: Transform - pos: -125.5,-0.5 + pos: -73.5,13.5 parent: 1 - - uid: 19314 + - uid: 19856 components: - type: Transform - pos: -125.5,-1.5 + pos: -73.5,14.5 parent: 1 - - uid: 19315 + - uid: 19857 components: - type: Transform - pos: -126.5,-1.5 + pos: -73.5,15.5 parent: 1 - - uid: 19316 + - uid: 19858 components: - type: Transform - pos: -127.5,-1.5 + pos: -73.5,16.5 parent: 1 - - uid: 19317 + - uid: 19859 components: - type: Transform - pos: -128.5,-1.5 + pos: -73.5,17.5 parent: 1 - - uid: 19318 + - uid: 19860 components: - type: Transform - pos: -129.5,-1.5 + pos: -73.5,18.5 parent: 1 - - uid: 19319 + - uid: 19861 components: - type: Transform - pos: -130.5,-1.5 + pos: -73.5,19.5 parent: 1 - - uid: 19320 + - uid: 19862 components: - type: Transform - pos: -130.5,-2.5 + pos: -73.5,20.5 parent: 1 - - uid: 19321 + - uid: 19863 components: - type: Transform - pos: -130.5,-3.5 + pos: -74.5,17.5 parent: 1 - - uid: 19322 + - uid: 19864 components: - type: Transform - pos: -130.5,-4.5 + pos: -75.5,17.5 parent: 1 - - uid: 19323 + - uid: 19900 components: - type: Transform - pos: -130.5,-5.5 + pos: -77.5,29.5 parent: 1 - - uid: 19324 + - uid: 19901 components: - type: Transform - pos: -130.5,-6.5 + pos: -77.5,28.5 parent: 1 - - uid: 19325 + - uid: 19902 components: - type: Transform - pos: -130.5,-7.5 + pos: -77.5,27.5 parent: 1 - - uid: 19326 + - uid: 19903 components: - type: Transform - pos: -130.5,-8.5 + pos: -77.5,26.5 parent: 1 - - uid: 19327 + - uid: 19904 components: - type: Transform - pos: -130.5,-9.5 + pos: -76.5,26.5 parent: 1 - - uid: 19328 + - uid: 19905 components: - type: Transform - pos: -130.5,-10.5 + pos: -75.5,26.5 parent: 1 - - uid: 19329 + - uid: 19906 components: - type: Transform - pos: -131.5,-10.5 + pos: -74.5,26.5 parent: 1 - - uid: 19330 + - uid: 19907 components: - type: Transform - pos: -132.5,-10.5 + pos: -73.5,26.5 parent: 1 - - uid: 19331 + - uid: 19908 components: - type: Transform - pos: -133.5,-10.5 + pos: -73.5,27.5 parent: 1 - - uid: 19332 + - uid: 19909 components: - type: Transform - pos: -134.5,-10.5 + pos: -77.5,25.5 parent: 1 - - uid: 19333 + - uid: 19910 components: - type: Transform - pos: -135.5,-10.5 + pos: -78.5,25.5 parent: 1 - - uid: 19334 + - uid: 19911 components: - type: Transform - pos: -136.5,-10.5 + pos: -79.5,25.5 parent: 1 - - uid: 19335 + - uid: 19912 components: - type: Transform - pos: -137.5,-10.5 + pos: -80.5,25.5 parent: 1 - - uid: 19336 + - uid: 19913 components: - type: Transform - pos: -138.5,-10.5 + pos: -81.5,25.5 parent: 1 - - uid: 19337 + - uid: 19992 components: - type: Transform - pos: -139.5,-10.5 + pos: -66.5,29.5 parent: 1 - - uid: 19338 + - uid: 19993 components: - type: Transform - pos: -140.5,-10.5 + pos: -66.5,30.5 parent: 1 - - uid: 19339 + - uid: 19994 components: - type: Transform - pos: -141.5,-10.5 + pos: -66.5,31.5 parent: 1 - - uid: 19340 + - uid: 19995 components: - type: Transform - pos: -142.5,-10.5 + pos: -67.5,31.5 parent: 1 - - uid: 19341 + - uid: 19996 components: - type: Transform - pos: -143.5,-10.5 + pos: -68.5,31.5 parent: 1 - - uid: 19342 + - uid: 19997 components: - type: Transform - pos: -144.5,-10.5 + pos: -69.5,31.5 parent: 1 - - uid: 19343 + - uid: 19998 components: - type: Transform - pos: -144.5,-9.5 + pos: -66.5,28.5 parent: 1 - - uid: 19344 + - uid: 19999 components: - type: Transform - pos: -144.5,-8.5 + pos: -66.5,27.5 parent: 1 - - uid: 19345 + - uid: 20000 components: - type: Transform - pos: -144.5,-7.5 + pos: -66.5,26.5 parent: 1 - - uid: 19346 + - uid: 20001 components: - type: Transform - pos: -144.5,-6.5 + pos: -67.5,26.5 parent: 1 - - uid: 19347 + - uid: 20002 components: - type: Transform - pos: -144.5,-5.5 + pos: -68.5,26.5 parent: 1 - - uid: 19348 + - uid: 20003 components: - type: Transform - pos: -144.5,-4.5 + pos: -68.5,19.5 parent: 1 - - uid: 19349 + - uid: 20004 components: - type: Transform - pos: -144.5,-3.5 + pos: -67.5,19.5 parent: 1 - - uid: 19350 + - uid: 20005 components: - type: Transform - pos: -144.5,-2.5 + pos: -67.5,20.5 parent: 1 - - uid: 19351 + - uid: 20006 components: - type: Transform - pos: -144.5,-1.5 + pos: -67.5,21.5 parent: 1 - - uid: 19370 + - uid: 20007 components: - type: Transform - pos: -144.5,17.5 + pos: -67.5,22.5 parent: 1 - - uid: 19371 + - uid: 20008 components: - type: Transform - pos: -144.5,18.5 + pos: -68.5,22.5 parent: 1 - - uid: 19372 + - uid: 20009 components: - type: Transform - pos: -144.5,19.5 + pos: -66.5,21.5 parent: 1 - - uid: 19373 + - uid: 20010 components: - type: Transform - pos: -144.5,20.5 + pos: -65.5,21.5 parent: 1 - - uid: 19374 + - uid: 20011 components: - type: Transform - pos: -144.5,21.5 + pos: -64.5,21.5 parent: 1 - - uid: 19375 + - uid: 20012 components: - type: Transform - pos: -144.5,22.5 + pos: -63.5,21.5 parent: 1 - - uid: 19376 + - uid: 20013 components: - type: Transform - pos: -144.5,23.5 + pos: -62.5,21.5 parent: 1 - - uid: 19377 + - uid: 20014 components: - type: Transform - pos: -142.5,23.5 + pos: -67.5,18.5 parent: 1 - - uid: 19378 + - uid: 20015 components: - type: Transform - pos: -141.5,23.5 + pos: -67.5,17.5 parent: 1 - - uid: 19379 + - uid: 20016 components: - type: Transform - pos: -140.5,23.5 + pos: -67.5,16.5 parent: 1 - - uid: 19380 + - uid: 20017 components: - type: Transform - pos: -139.5,23.5 + pos: -68.5,16.5 parent: 1 - - uid: 19381 + - uid: 20028 components: - type: Transform - pos: -138.5,23.5 + pos: -59.5,18.5 parent: 1 - - uid: 19382 + - uid: 20029 components: - type: Transform - pos: -137.5,23.5 + pos: -59.5,17.5 parent: 1 - - uid: 19383 + - uid: 20030 components: - type: Transform - pos: -136.5,23.5 + pos: -59.5,16.5 parent: 1 - - uid: 19384 + - uid: 20031 components: - type: Transform - pos: -135.5,23.5 + pos: -59.5,15.5 parent: 1 - - uid: 19385 + - uid: 20032 components: - type: Transform - pos: -134.5,23.5 + pos: -59.5,14.5 parent: 1 - - uid: 19386 + - uid: 20033 components: - type: Transform - pos: -133.5,23.5 + pos: -59.5,13.5 parent: 1 - - uid: 19387 + - uid: 20034 components: - type: Transform - pos: -132.5,23.5 + pos: -60.5,13.5 parent: 1 - - uid: 19388 + - uid: 20035 components: - type: Transform - pos: -131.5,23.5 + pos: -58.5,13.5 parent: 1 - - uid: 19389 + - uid: 20036 components: - type: Transform - pos: -130.5,23.5 + pos: -58.5,17.5 parent: 1 - - uid: 19390 + - uid: 20037 components: - type: Transform - pos: -130.5,22.5 + pos: -57.5,17.5 parent: 1 - - uid: 19391 + - uid: 20038 components: - type: Transform - pos: -130.5,21.5 + pos: -56.5,17.5 parent: 1 - - uid: 19392 + - uid: 20039 components: - type: Transform - pos: -130.5,20.5 + pos: -55.5,17.5 parent: 1 - - uid: 19393 + - uid: 20040 components: - type: Transform - pos: -130.5,19.5 + pos: -54.5,17.5 parent: 1 - - uid: 19394 + - uid: 20041 components: - type: Transform - pos: -130.5,18.5 + pos: -53.5,17.5 parent: 1 - - uid: 19395 + - uid: 20042 components: - type: Transform - pos: -130.5,17.5 + pos: -53.5,16.5 parent: 1 - - uid: 19396 + - uid: 20058 components: - type: Transform - pos: -130.5,16.5 + pos: -70.5,4.5 parent: 1 - - uid: 19397 + - uid: 20059 components: - type: Transform - pos: -130.5,15.5 + pos: -70.5,5.5 parent: 1 - - uid: 19398 + - uid: 20060 components: - type: Transform - pos: -130.5,14.5 + pos: -70.5,6.5 parent: 1 - - uid: 19399 + - uid: 20061 components: - type: Transform - pos: -130.5,13.5 + pos: -69.5,6.5 parent: 1 - - uid: 19400 + - uid: 20062 components: - type: Transform - pos: -130.5,12.5 + pos: -70.5,3.5 parent: 1 - - uid: 19401 + - uid: 20063 components: - type: Transform - pos: -130.5,11.5 + pos: -69.5,3.5 parent: 1 - - uid: 19402 + - uid: 20064 components: - type: Transform - pos: -130.5,10.5 + pos: -68.5,3.5 parent: 1 - - uid: 19403 + - uid: 20065 components: - type: Transform - pos: -130.5,9.5 + pos: -67.5,3.5 parent: 1 - - uid: 19404 + - uid: 20066 components: - type: Transform - pos: -130.5,8.5 + pos: -67.5,2.5 parent: 1 - - uid: 19405 + - uid: 20067 components: - type: Transform - pos: -130.5,7.5 + pos: -67.5,1.5 parent: 1 - - uid: 19406 + - uid: 20068 components: - type: Transform - pos: -130.5,6.5 + pos: -67.5,0.5 parent: 1 - - uid: 19407 + - uid: 20069 components: - type: Transform - pos: -130.5,5.5 + pos: -67.5,-0.5 parent: 1 - - uid: 19408 + - uid: 20070 components: - type: Transform - pos: -130.5,4.5 + pos: -67.5,-1.5 parent: 1 - - uid: 19409 + - uid: 20071 components: - type: Transform - pos: -130.5,3.5 + pos: -67.5,-2.5 parent: 1 - - uid: 19410 + - uid: 20072 components: - type: Transform - pos: -130.5,2.5 + pos: -66.5,-2.5 parent: 1 - - uid: 19411 + - uid: 20073 components: - type: Transform - pos: -130.5,1.5 + pos: -67.5,-3.5 parent: 1 - - uid: 19412 + - uid: 20074 components: - type: Transform - pos: -130.5,0.5 + pos: -68.5,-3.5 parent: 1 - - uid: 19413 + - uid: 20093 components: - type: Transform - pos: -130.5,-0.5 + pos: -70.5,-6.5 parent: 1 - - uid: 19415 + - uid: 20094 components: - type: Transform - pos: -129.5,2.5 + pos: -69.5,-6.5 parent: 1 - - uid: 19416 + - uid: 20095 components: - type: Transform - pos: -128.5,2.5 + pos: -68.5,-6.5 parent: 1 - - uid: 19417 + - uid: 20096 components: - type: Transform - pos: -127.5,2.5 + pos: -68.5,-7.5 parent: 1 - - uid: 19418 + - uid: 20097 components: - type: Transform - pos: -126.5,2.5 + pos: -67.5,-7.5 parent: 1 - - uid: 19419 + - uid: 20098 components: - type: Transform - pos: -126.5,3.5 + pos: -66.5,-7.5 parent: 1 - - uid: 19420 + - uid: 20099 components: - type: Transform - pos: -126.5,4.5 + pos: -65.5,-7.5 parent: 1 - - uid: 19421 + - uid: 20146 components: - type: Transform - pos: -126.5,5.5 + pos: -50.5,11.5 parent: 1 - - uid: 19422 + - uid: 20147 components: - type: Transform - pos: -126.5,6.5 + pos: -50.5,10.5 parent: 1 - - uid: 19423 + - uid: 20148 components: - type: Transform - pos: -126.5,7.5 + pos: -50.5,9.5 parent: 1 - - uid: 19424 + - uid: 20149 components: - type: Transform - pos: -126.5,8.5 + pos: -49.5,9.5 parent: 1 - - uid: 19425 + - uid: 20150 components: - type: Transform - pos: -126.5,9.5 + pos: -48.5,9.5 parent: 1 - - uid: 19426 + - uid: 20151 components: - type: Transform - pos: -126.5,10.5 + pos: -47.5,9.5 parent: 1 - - uid: 19427 + - uid: 20152 components: - type: Transform - pos: -126.5,11.5 + pos: -46.5,9.5 parent: 1 - - uid: 19477 + - uid: 20153 components: - type: Transform - pos: -103.5,8.5 + pos: -45.5,9.5 parent: 1 - - uid: 19485 + - uid: 20154 components: - type: Transform - pos: -103.5,9.5 + pos: -44.5,9.5 parent: 1 - - uid: 19486 + - uid: 20155 components: - type: Transform - pos: -103.5,10.5 + pos: -51.5,9.5 parent: 1 - - uid: 19487 + - uid: 20156 components: - type: Transform - pos: -102.5,10.5 + pos: -52.5,9.5 parent: 1 - - uid: 19488 + - uid: 20157 components: - type: Transform - pos: -103.5,7.5 + pos: -53.5,9.5 parent: 1 - - uid: 19489 + - uid: 20158 components: - type: Transform - pos: -103.5,6.5 + pos: -54.5,9.5 parent: 1 - - uid: 19490 + - uid: 20159 components: - type: Transform - pos: -102.5,6.5 + pos: -55.5,9.5 parent: 1 - - uid: 19491 + - uid: 20160 components: - type: Transform - pos: -101.5,6.5 + pos: -56.5,9.5 parent: 1 - - uid: 19492 + - uid: 20161 components: - type: Transform - pos: -100.5,6.5 + pos: -57.5,9.5 parent: 1 - - uid: 19493 + - uid: 20162 components: - type: Transform - pos: -99.5,6.5 + pos: -58.5,9.5 parent: 1 - - uid: 19494 + - uid: 20163 components: - type: Transform - pos: -98.5,6.5 + pos: -59.5,9.5 parent: 1 - - uid: 19495 + - uid: 20164 components: - type: Transform - pos: -98.5,7.5 + pos: -60.5,9.5 parent: 1 - - uid: 19496 + - uid: 20165 components: - type: Transform - pos: -98.5,8.5 + pos: -60.5,8.5 parent: 1 - - uid: 19497 + - uid: 20166 components: - type: Transform - pos: -98.5,9.5 + pos: -60.5,7.5 parent: 1 - - uid: 19498 + - uid: 20167 components: - type: Transform - pos: -103.5,5.5 + pos: -60.5,6.5 parent: 1 - - uid: 19514 + - uid: 20168 components: - type: Transform - pos: -105.5,9.5 + pos: -60.5,5.5 parent: 1 - - uid: 19515 + - uid: 20169 components: - type: Transform - pos: -106.5,9.5 + pos: -61.5,5.5 parent: 1 - - uid: 19516 + - uid: 20170 components: - type: Transform - pos: -107.5,9.5 + pos: -62.5,5.5 parent: 1 - - uid: 19517 + - uid: 20171 components: - type: Transform - pos: -108.5,9.5 + pos: -62.5,4.5 parent: 1 - - uid: 19518 + - uid: 20172 components: - type: Transform - pos: -109.5,9.5 + pos: -62.5,3.5 parent: 1 - - uid: 19519 + - uid: 20173 components: - type: Transform - pos: -110.5,9.5 + pos: -62.5,2.5 parent: 1 - - uid: 19520 + - uid: 20175 components: - type: Transform - pos: -111.5,9.5 + pos: -62.5,1.5 parent: 1 - - uid: 19521 + - uid: 20176 components: - type: Transform - pos: -112.5,9.5 + pos: -62.5,0.5 parent: 1 - - uid: 19522 + - uid: 20177 components: - type: Transform - pos: -113.5,9.5 + pos: -62.5,-0.5 parent: 1 - - uid: 19523 + - uid: 20178 components: - type: Transform - pos: -107.5,10.5 + pos: -62.5,-1.5 parent: 1 - - uid: 19524 + - uid: 20179 components: - type: Transform - pos: -107.5,11.5 + pos: -62.5,-2.5 parent: 1 - - uid: 19525 + - uid: 20180 components: - type: Transform - pos: -107.5,12.5 + pos: -62.5,-3.5 parent: 1 - - uid: 19526 + - uid: 20181 components: - type: Transform - pos: -107.5,13.5 + pos: -62.5,-4.5 parent: 1 - - uid: 19527 + - uid: 20182 components: - type: Transform - pos: -108.5,13.5 + pos: -62.5,-5.5 parent: 1 - - uid: 19528 + - uid: 20183 components: - type: Transform - pos: -109.5,13.5 + pos: -62.5,-6.5 parent: 1 - - uid: 19529 + - uid: 20184 components: - type: Transform - pos: -110.5,13.5 + pos: -62.5,-7.5 parent: 1 - - uid: 19530 + - uid: 20185 components: - type: Transform - pos: -111.5,13.5 + pos: -61.5,-7.5 parent: 1 - - uid: 19531 + - uid: 20186 components: - type: Transform - pos: -112.5,13.5 + pos: -60.5,-7.5 parent: 1 - - uid: 19532 + - uid: 20187 components: - type: Transform - pos: -113.5,13.5 + pos: -59.5,-7.5 parent: 1 - - uid: 19533 + - uid: 20188 components: - type: Transform - pos: -114.5,13.5 + pos: -58.5,-7.5 parent: 1 - - uid: 19534 + - uid: 20189 components: - type: Transform - pos: -115.5,13.5 + pos: -57.5,-7.5 parent: 1 - - uid: 19535 + - uid: 20190 components: - type: Transform - pos: -115.5,12.5 + pos: -56.5,-7.5 parent: 1 - - uid: 19536 + - uid: 20191 components: - type: Transform - pos: -115.5,11.5 + pos: -55.5,-7.5 parent: 1 - - uid: 19537 + - uid: 20192 components: - type: Transform - pos: -115.5,10.5 + pos: -54.5,-7.5 parent: 1 - - uid: 19538 + - uid: 20193 components: - type: Transform - pos: -115.5,9.5 + pos: -53.5,-7.5 parent: 1 - - uid: 19539 + - uid: 20194 components: - type: Transform - pos: -115.5,8.5 + pos: -52.5,-7.5 parent: 1 - - uid: 19540 + - uid: 20197 components: - type: Transform - pos: -115.5,7.5 + pos: -54.5,-3.5 parent: 1 - - uid: 19541 + - uid: 20198 components: - type: Transform - pos: -115.5,6.5 + pos: -54.5,-4.5 parent: 1 - - uid: 19542 + - uid: 20199 components: - type: Transform - pos: -115.5,5.5 + pos: -55.5,-4.5 parent: 1 - - uid: 19543 + - uid: 20200 components: - type: Transform - pos: -114.5,5.5 + pos: -56.5,-4.5 parent: 1 - - uid: 19544 + - uid: 20201 components: - type: Transform - pos: -113.5,5.5 + pos: -57.5,-4.5 parent: 1 - - uid: 19545 + - uid: 20202 components: - type: Transform - pos: -112.5,5.5 + pos: -53.5,-4.5 parent: 1 - - uid: 19546 + - uid: 20203 components: - type: Transform - pos: -111.5,5.5 + pos: -52.5,-4.5 parent: 1 - - uid: 19547 + - uid: 20204 components: - type: Transform - pos: -110.5,5.5 + pos: -51.5,-4.5 parent: 1 - - uid: 19548 + - uid: 20205 components: - type: Transform - pos: -109.5,5.5 + pos: -50.5,-4.5 parent: 1 - - uid: 19549 + - uid: 20206 components: - type: Transform - pos: -108.5,5.5 + pos: -49.5,-4.5 parent: 1 - - uid: 19550 + - uid: 20207 components: - type: Transform - pos: -107.5,5.5 + pos: -48.5,-4.5 parent: 1 - - uid: 19551 + - uid: 20208 components: - type: Transform - pos: -107.5,6.5 + pos: -47.5,-4.5 parent: 1 - - uid: 19552 + - uid: 20209 components: - type: Transform - pos: -107.5,7.5 + pos: -46.5,-4.5 parent: 1 - - uid: 19553 + - uid: 20210 components: - type: Transform - pos: -107.5,8.5 + pos: -45.5,-4.5 parent: 1 - - uid: 19562 + - uid: 20211 components: - type: Transform - pos: -104.5,0.5 + pos: -46.5,-3.5 parent: 1 - - uid: 19563 + - uid: 20212 components: - type: Transform - pos: -103.5,0.5 + pos: -46.5,-2.5 parent: 1 - - uid: 19564 + - uid: 20213 components: - type: Transform - pos: -102.5,0.5 + pos: -46.5,-1.5 parent: 1 - - uid: 19565 + - uid: 20214 components: - type: Transform - pos: -101.5,0.5 + pos: -46.5,-0.5 parent: 1 - - uid: 19566 + - uid: 20215 components: - type: Transform - pos: -100.5,0.5 + pos: -46.5,0.5 parent: 1 - - uid: 19567 + - uid: 20216 components: - type: Transform - pos: -99.5,0.5 + pos: -46.5,1.5 parent: 1 - - uid: 19568 + - uid: 20217 components: - type: Transform - pos: -98.5,0.5 + pos: -46.5,2.5 parent: 1 - - uid: 19569 + - uid: 20218 components: - type: Transform - pos: -97.5,0.5 + pos: -46.5,3.5 parent: 1 - - uid: 19570 + - uid: 20219 components: - type: Transform - pos: -96.5,0.5 + pos: -46.5,4.5 parent: 1 - - uid: 19571 + - uid: 20220 components: - type: Transform - pos: -95.5,0.5 + pos: -46.5,5.5 parent: 1 - - uid: 19572 + - uid: 20221 components: - type: Transform - pos: -94.5,0.5 + pos: -47.5,5.5 parent: 1 - - uid: 19573 + - uid: 20222 components: - type: Transform - pos: -94.5,1.5 + pos: -48.5,5.5 parent: 1 - - uid: 19574 + - uid: 20223 components: - type: Transform - pos: -94.5,2.5 + pos: -49.5,5.5 parent: 1 - - uid: 19575 + - uid: 20224 components: - type: Transform - pos: -94.5,3.5 + pos: -50.5,5.5 parent: 1 - - uid: 19576 + - uid: 20225 components: - type: Transform - pos: -94.5,4.5 + pos: -51.5,5.5 parent: 1 - - uid: 19577 + - uid: 20226 components: - type: Transform - pos: -94.5,5.5 + pos: -52.5,5.5 parent: 1 - - uid: 19578 + - uid: 20227 components: - type: Transform - pos: -93.5,2.5 + pos: -52.5,6.5 parent: 1 - - uid: 19579 + - uid: 20228 components: - type: Transform - pos: -93.5,2.5 + pos: -53.5,6.5 parent: 1 - - uid: 19580 + - uid: 20229 components: - type: Transform - pos: -92.5,2.5 + pos: -54.5,6.5 parent: 1 - - uid: 19581 + - uid: 20230 components: - type: Transform - pos: -91.5,2.5 + pos: -52.5,-3.5 parent: 1 - - uid: 19582 + - uid: 20231 components: - type: Transform - pos: -91.5,3.5 + pos: -52.5,-2.5 parent: 1 - - uid: 19583 + - uid: 20232 components: - type: Transform - pos: -91.5,4.5 + pos: -52.5,-1.5 parent: 1 - - uid: 19584 + - uid: 20233 components: - type: Transform - pos: -91.5,1.5 + pos: -52.5,-0.5 parent: 1 - - uid: 19585 + - uid: 20234 components: - type: Transform - pos: -106.5,0.5 + pos: -52.5,0.5 parent: 1 - - uid: 19586 + - uid: 20235 components: - type: Transform - pos: -106.5,1.5 + pos: -52.5,1.5 parent: 1 - - uid: 19587 + - uid: 20236 components: - type: Transform - pos: -107.5,1.5 + pos: -53.5,1.5 parent: 1 - - uid: 19588 + - uid: 20237 components: - type: Transform - pos: -108.5,1.5 + pos: -54.5,1.5 parent: 1 - - uid: 19589 + - uid: 20238 components: - type: Transform - pos: -109.5,1.5 + pos: -55.5,1.5 parent: 1 - - uid: 19591 + - uid: 20239 components: - type: Transform - pos: -111.5,1.5 + pos: -56.5,1.5 parent: 1 - - uid: 19593 + - uid: 20240 components: - type: Transform - pos: -110.5,-0.5 + pos: -57.5,1.5 parent: 1 - - uid: 19594 + - uid: 20241 components: - type: Transform - pos: -110.5,-1.5 + pos: -58.5,1.5 parent: 1 - - uid: 19595 + - uid: 20242 components: - type: Transform - pos: -110.5,-2.5 + pos: -58.5,0.5 parent: 1 - - uid: 19597 + - uid: 20243 components: - type: Transform - pos: -112.5,0.5 + pos: -56.5,0.5 parent: 1 - - uid: 19598 + - uid: 20245 components: - type: Transform - pos: -113.5,0.5 + pos: -43.5,12.5 parent: 1 - - uid: 19599 + - uid: 20247 components: - type: Transform - pos: -114.5,0.5 + pos: -43.5,13.5 parent: 1 - - uid: 19600 + - uid: 20248 components: - type: Transform - pos: -115.5,0.5 + pos: -43.5,14.5 parent: 1 - - uid: 19601 + - uid: 20249 components: - type: Transform - pos: -114.5,-0.5 + pos: -43.5,15.5 parent: 1 - - uid: 19602 + - uid: 20250 components: - type: Transform - pos: -114.5,-1.5 + pos: -44.5,15.5 parent: 1 - - uid: 19603 + - uid: 20251 components: - type: Transform - pos: -114.5,-2.5 + pos: -45.5,15.5 parent: 1 - - uid: 19604 + - uid: 20252 components: - type: Transform - pos: -115.5,-2.5 + pos: -45.5,16.5 parent: 1 - - uid: 19605 + - uid: 20253 components: - type: Transform - pos: -115.5,-3.5 + pos: -46.5,15.5 parent: 1 - - uid: 19606 + - uid: 20254 components: - type: Transform - pos: -116.5,-2.5 + pos: -47.5,15.5 parent: 1 - - uid: 19607 + - uid: 20255 components: - type: Transform - pos: -117.5,-2.5 + pos: -47.5,16.5 parent: 1 - - uid: 19669 + - uid: 20256 components: - type: Transform - pos: -97.5,23.5 + pos: -48.5,16.5 parent: 1 - - uid: 19670 + - uid: 20257 components: - type: Transform - pos: -97.5,22.5 + pos: -49.5,16.5 parent: 1 - - uid: 19671 + - uid: 20269 components: - type: Transform - pos: -97.5,21.5 + pos: -25.5,23.5 parent: 1 - - uid: 19672 + - uid: 20270 components: - type: Transform - pos: -98.5,21.5 + pos: -25.5,22.5 parent: 1 - - uid: 19673 + - uid: 20271 components: - type: Transform - pos: -99.5,21.5 + pos: -26.5,22.5 parent: 1 - - uid: 19674 + - uid: 20272 components: - type: Transform - pos: -100.5,21.5 + pos: -27.5,22.5 parent: 1 - - uid: 19675 + - uid: 20273 components: - type: Transform - pos: -101.5,21.5 + pos: -28.5,22.5 parent: 1 - - uid: 19676 + - uid: 20274 components: - type: Transform - pos: -98.5,20.5 + pos: -28.5,23.5 parent: 1 - - uid: 19677 + - uid: 20275 components: - type: Transform - pos: -98.5,19.5 + pos: -28.5,24.5 parent: 1 - - uid: 19678 + - uid: 20277 components: - type: Transform - pos: -98.5,18.5 + pos: -28.5,21.5 parent: 1 - - uid: 19679 + - uid: 20278 components: - type: Transform - pos: -98.5,17.5 + pos: -28.5,20.5 parent: 1 - - uid: 19680 + - uid: 20279 components: - type: Transform - pos: -98.5,16.5 + pos: -29.5,20.5 parent: 1 - - uid: 19681 + - uid: 20288 components: - type: Transform - pos: -98.5,15.5 + pos: -38.5,20.5 parent: 1 - - uid: 19682 + - uid: 20289 components: - type: Transform - pos: -98.5,14.5 + pos: -39.5,20.5 parent: 1 - - uid: 19683 + - uid: 20290 components: - type: Transform - pos: -98.5,13.5 + pos: -40.5,20.5 parent: 1 - - uid: 19684 + - uid: 20291 components: - type: Transform - pos: -97.5,13.5 + pos: -42.5,14.5 parent: 1 - - uid: 19685 + - uid: 20292 components: - type: Transform - pos: -96.5,13.5 + pos: -41.5,14.5 parent: 1 - - uid: 19686 + - uid: 20293 components: - type: Transform - pos: -96.5,12.5 + pos: -40.5,14.5 parent: 1 - - uid: 19687 + - uid: 20294 components: - type: Transform - pos: -96.5,11.5 + pos: -40.5,15.5 parent: 1 - - uid: 19688 + - uid: 20295 components: - type: Transform - pos: -96.5,10.5 + pos: -40.5,13.5 parent: 1 - - uid: 19689 + - uid: 20296 components: - type: Transform - pos: -95.5,10.5 + pos: -40.5,21.5 parent: 1 - - uid: 19690 + - uid: 20297 components: - type: Transform - pos: -94.5,10.5 + pos: -40.5,22.5 parent: 1 - - uid: 19691 + - uid: 20396 components: - type: Transform - pos: -93.5,10.5 + pos: -41.5,20.5 parent: 1 - - uid: 19692 + - uid: 20397 components: - type: Transform - pos: -92.5,10.5 + pos: -42.5,20.5 parent: 1 - - uid: 19693 + - uid: 20398 components: - type: Transform - pos: -91.5,10.5 + pos: -43.5,20.5 parent: 1 - - uid: 19694 + - uid: 20399 components: - type: Transform - pos: -96.5,21.5 + pos: -44.5,20.5 parent: 1 - - uid: 19695 + - uid: 20400 components: - type: Transform - pos: -95.5,21.5 + pos: -45.5,20.5 parent: 1 - - uid: 19696 + - uid: 20401 components: - type: Transform - pos: -94.5,21.5 + pos: -46.5,20.5 parent: 1 - - uid: 19697 + - uid: 20402 components: - type: Transform - pos: -93.5,21.5 + pos: -47.5,20.5 parent: 1 - - uid: 19698 + - uid: 20403 components: - type: Transform - pos: -93.5,22.5 + pos: -48.5,20.5 parent: 1 - - uid: 19699 + - uid: 20404 components: - type: Transform - pos: -92.5,21.5 + pos: -49.5,20.5 parent: 1 - - uid: 19700 + - uid: 20405 components: - type: Transform - pos: -91.5,21.5 + pos: -50.5,20.5 parent: 1 - - uid: 19701 + - uid: 20406 components: - type: Transform - pos: -90.5,21.5 + pos: -51.5,20.5 parent: 1 - - uid: 19702 + - uid: 20407 components: - type: Transform - pos: -89.5,21.5 + pos: -52.5,20.5 parent: 1 - - uid: 19703 + - uid: 20408 components: - type: Transform - pos: -88.5,21.5 + pos: -53.5,20.5 parent: 1 - - uid: 19704 + - uid: 20409 components: - type: Transform - pos: -87.5,21.5 + pos: -54.5,20.5 parent: 1 - - uid: 19705 + - uid: 20410 components: - type: Transform - pos: -86.5,21.5 + pos: -55.5,20.5 parent: 1 - - uid: 19706 + - uid: 20411 components: - type: Transform - pos: -85.5,21.5 + pos: -56.5,20.5 parent: 1 - - uid: 19707 + - uid: 20412 components: - type: Transform - pos: -84.5,21.5 + pos: -56.5,21.5 parent: 1 - - uid: 19708 + - uid: 20413 components: - type: Transform - pos: -83.5,21.5 + pos: -56.5,22.5 parent: 1 - - uid: 19709 + - uid: 20414 components: - type: Transform - pos: -82.5,21.5 + pos: -56.5,23.5 parent: 1 - - uid: 19710 + - uid: 20415 components: - type: Transform - pos: -81.5,21.5 + pos: -56.5,24.5 parent: 1 - - uid: 19711 + - uid: 20416 components: - type: Transform - pos: -80.5,21.5 + pos: -56.5,25.5 parent: 1 - - uid: 19712 + - uid: 20417 components: - type: Transform - pos: -79.5,21.5 + pos: -56.5,26.5 parent: 1 - - uid: 19713 + - uid: 20418 components: - type: Transform - pos: -78.5,21.5 + pos: -56.5,27.5 parent: 1 - - uid: 19714 + - uid: 20419 components: - type: Transform - pos: -77.5,21.5 + pos: -56.5,28.5 parent: 1 - - uid: 19715 + - uid: 20420 components: - type: Transform - pos: -89.5,12.5 + pos: -56.5,29.5 parent: 1 - - uid: 19716 + - uid: 20421 components: - type: Transform - pos: -88.5,12.5 + pos: -56.5,30.5 parent: 1 - - uid: 19717 + - uid: 20422 components: - type: Transform - pos: -88.5,13.5 + pos: -56.5,31.5 parent: 1 - - uid: 19718 + - uid: 20423 components: - type: Transform - pos: -88.5,14.5 + pos: -56.5,32.5 parent: 1 - - uid: 19719 + - uid: 20424 components: - type: Transform - pos: -88.5,15.5 + pos: -56.5,33.5 parent: 1 - - uid: 19720 + - uid: 20425 components: - type: Transform - pos: -88.5,16.5 + pos: -56.5,34.5 parent: 1 - - uid: 19721 + - uid: 20426 components: - type: Transform - pos: -88.5,17.5 + pos: -56.5,35.5 parent: 1 - - uid: 19722 + - uid: 20427 components: - type: Transform - pos: -88.5,18.5 + pos: -56.5,36.5 parent: 1 - - uid: 19723 + - uid: 20428 components: - type: Transform - pos: -89.5,18.5 + pos: -57.5,36.5 parent: 1 - - uid: 19724 + - uid: 20429 components: - type: Transform - pos: -90.5,18.5 + pos: -58.5,36.5 parent: 1 - - uid: 19725 + - uid: 20430 components: - type: Transform - pos: -91.5,18.5 + pos: -59.5,36.5 parent: 1 - - uid: 19726 + - uid: 20431 components: - type: Transform - pos: -92.5,18.5 + pos: -60.5,36.5 parent: 1 - - uid: 19727 + - uid: 20432 components: - type: Transform - pos: -93.5,18.5 + pos: -61.5,36.5 parent: 1 - - uid: 19728 + - uid: 20433 components: - type: Transform - pos: -94.5,18.5 + pos: -62.5,36.5 parent: 1 - - uid: 19729 + - uid: 20434 components: - type: Transform - pos: -95.5,18.5 + pos: -63.5,36.5 parent: 1 - - uid: 19732 + - uid: 20435 components: - type: Transform - pos: -87.5,16.5 + pos: -64.5,36.5 parent: 1 - - uid: 19733 + - uid: 20436 components: - type: Transform - pos: -86.5,16.5 + pos: -65.5,36.5 parent: 1 - - uid: 19734 + - uid: 20437 components: - type: Transform - pos: -85.5,16.5 + pos: -66.5,36.5 parent: 1 - - uid: 19735 + - uid: 20438 components: - type: Transform - pos: -84.5,16.5 + pos: -67.5,36.5 parent: 1 - - uid: 19736 + - uid: 20439 components: - type: Transform - pos: -83.5,16.5 + pos: -68.5,36.5 parent: 1 - - uid: 19737 + - uid: 20440 components: - type: Transform - pos: -82.5,16.5 + pos: -69.5,36.5 parent: 1 - - uid: 19738 + - uid: 20441 components: - type: Transform - pos: -81.5,16.5 + pos: -70.5,36.5 parent: 1 - - uid: 19739 + - uid: 20442 components: - type: Transform - pos: -87.5,12.5 + pos: -71.5,36.5 parent: 1 - - uid: 19740 + - uid: 20443 components: - type: Transform - pos: -86.5,12.5 + pos: -72.5,36.5 parent: 1 - - uid: 19741 + - uid: 20444 components: - type: Transform - pos: -85.5,12.5 + pos: -73.5,36.5 parent: 1 - - uid: 19742 + - uid: 20445 components: - type: Transform - pos: -84.5,12.5 + pos: -74.5,36.5 parent: 1 - - uid: 19747 + - uid: 20446 components: - type: Transform - pos: -78.5,6.5 + pos: -75.5,36.5 parent: 1 - - uid: 19748 + - uid: 20447 components: - type: Transform - pos: -77.5,6.5 + pos: -76.5,36.5 parent: 1 - - uid: 19749 + - uid: 20448 components: - type: Transform - pos: -77.5,7.5 + pos: -77.5,36.5 parent: 1 - - uid: 19750 + - uid: 20449 components: - type: Transform - pos: -77.5,8.5 + pos: -77.5,37.5 parent: 1 - - uid: 19751 + - uid: 20450 components: - type: Transform - pos: -77.5,9.5 + pos: -73.5,35.5 parent: 1 - - uid: 19752 + - uid: 20451 components: - type: Transform - pos: -77.5,10.5 + pos: -73.5,37.5 parent: 1 - - uid: 19753 + - uid: 20452 components: - type: Transform - pos: -77.5,11.5 + pos: -73.5,38.5 parent: 1 - - uid: 19754 + - uid: 20453 components: - type: Transform - pos: -77.5,12.5 + pos: -74.5,38.5 parent: 1 - - uid: 19755 + - uid: 20454 components: - type: Transform - pos: -77.5,13.5 + pos: -74.5,39.5 parent: 1 - - uid: 19756 + - uid: 20455 components: - type: Transform - pos: -78.5,13.5 + pos: -74.5,40.5 parent: 1 - - uid: 19757 + - uid: 20456 components: - type: Transform - pos: -79.5,13.5 + pos: -72.5,38.5 parent: 1 - - uid: 19758 + - uid: 20457 components: - type: Transform - pos: -79.5,12.5 + pos: -72.5,39.5 parent: 1 - - uid: 19759 + - uid: 20458 components: - type: Transform - pos: -88.5,-7.5 + pos: -72.5,40.5 parent: 1 - - uid: 19760 + - uid: 20459 components: - type: Transform - pos: -88.5,-8.5 + pos: -65.5,37.5 parent: 1 - - uid: 19761 + - uid: 20460 components: - type: Transform - pos: -88.5,-9.5 + pos: -65.5,38.5 parent: 1 - - uid: 19762 + - uid: 20461 components: - type: Transform - pos: -89.5,-9.5 + pos: -66.5,38.5 parent: 1 - - uid: 19763 + - uid: 20462 components: - type: Transform - pos: -90.5,-9.5 + pos: -66.5,39.5 parent: 1 - - uid: 19764 + - uid: 20463 components: - type: Transform - pos: -90.5,-8.5 + pos: -66.5,40.5 parent: 1 - - uid: 19765 + - uid: 20465 components: - type: Transform - pos: -90.5,-7.5 + pos: -64.5,38.5 parent: 1 - - uid: 19766 + - uid: 20466 components: - type: Transform - pos: -90.5,-6.5 + pos: -64.5,39.5 parent: 1 - - uid: 19767 + - uid: 20467 components: - type: Transform - pos: -88.5,-6.5 + pos: -64.5,40.5 parent: 1 - - uid: 19768 + - uid: 20491 components: - type: Transform - pos: -90.5,-5.5 + pos: -50.5,31.5 parent: 1 - - uid: 19769 + - uid: 20492 components: - type: Transform - pos: -91.5,-5.5 + pos: -50.5,30.5 parent: 1 - - uid: 19770 + - uid: 20493 components: - type: Transform - pos: -92.5,-5.5 + pos: -50.5,29.5 parent: 1 - - uid: 19771 + - uid: 20494 components: - type: Transform - pos: -93.5,-5.5 + pos: -51.5,29.5 parent: 1 - - uid: 19772 + - uid: 20495 components: - type: Transform - pos: -94.5,-5.5 + pos: -52.5,29.5 parent: 1 - - uid: 19773 + - uid: 20496 components: - type: Transform - pos: -87.5,-6.5 + pos: -52.5,28.5 parent: 1 - - uid: 19774 + - uid: 20497 components: - type: Transform - pos: -86.5,-6.5 + pos: -52.5,27.5 parent: 1 - - uid: 19775 + - uid: 20498 components: - type: Transform - pos: -85.5,-7.5 + pos: -49.5,29.5 parent: 1 - - uid: 19776 + - uid: 20499 components: - type: Transform - pos: -85.5,-6.5 + pos: -48.5,29.5 parent: 1 - - uid: 19777 + - uid: 20500 components: - type: Transform - pos: -84.5,-7.5 + pos: -48.5,28.5 parent: 1 - - uid: 19778 + - uid: 20501 components: - type: Transform - pos: -83.5,-7.5 + pos: -48.5,27.5 parent: 1 - - uid: 19779 + - uid: 20502 components: - type: Transform - pos: -82.5,-7.5 + pos: -47.5,29.5 parent: 1 - - uid: 19780 + - uid: 20503 components: - type: Transform - pos: -81.5,-7.5 + pos: -46.5,29.5 parent: 1 - - uid: 19781 + - uid: 20504 components: - type: Transform - pos: -80.5,-7.5 + pos: -45.5,29.5 parent: 1 - - uid: 19782 + - uid: 20505 components: - type: Transform - pos: -79.5,-7.5 + pos: -44.5,29.5 parent: 1 - - uid: 19783 + - uid: 20506 components: - type: Transform - pos: -78.5,-7.5 + pos: -44.5,28.5 parent: 1 - - uid: 19784 + - uid: 20507 components: - type: Transform - pos: -77.5,-7.5 + pos: -44.5,27.5 parent: 1 - - uid: 19785 + - uid: 20508 components: - type: Transform - pos: -77.5,-6.5 + pos: -78.5,37.5 parent: 1 - - uid: 19786 + - uid: 20509 components: - type: Transform - pos: -77.5,-5.5 + pos: -79.5,37.5 parent: 1 - - uid: 19787 + - uid: 20570 components: - type: Transform - pos: -77.5,-4.5 + pos: -42.5,1.5 parent: 1 - - uid: 19788 + - uid: 20571 components: - type: Transform - pos: -84.5,-6.5 + pos: -42.5,2.5 parent: 1 - - uid: 19789 + - uid: 20572 components: - type: Transform - pos: -89.5,9.5 + pos: -42.5,3.5 parent: 1 - - uid: 19790 + - uid: 20573 components: - type: Transform - pos: -88.5,9.5 + pos: -42.5,4.5 parent: 1 - - uid: 19791 + - uid: 20574 components: - type: Transform - pos: -88.5,8.5 + pos: -42.5,5.5 parent: 1 - - uid: 19792 + - uid: 20575 components: - type: Transform - pos: -88.5,7.5 + pos: -42.5,6.5 parent: 1 - - uid: 19793 + - uid: 20576 components: - type: Transform - pos: -88.5,6.5 + pos: -41.5,6.5 parent: 1 - - uid: 19794 + - uid: 20577 components: - type: Transform - pos: -88.5,5.5 + pos: -40.5,6.5 parent: 1 - - uid: 19795 + - uid: 20578 components: - type: Transform - pos: -88.5,4.5 + pos: -39.5,6.5 parent: 1 - - uid: 19796 + - uid: 20579 components: - type: Transform - pos: -88.5,3.5 + pos: -38.5,6.5 parent: 1 - - uid: 19797 + - uid: 20580 components: - type: Transform - pos: -88.5,2.5 + pos: -37.5,6.5 parent: 1 - - uid: 19798 + - uid: 20581 components: - type: Transform - pos: -88.5,1.5 + pos: -37.5,5.5 parent: 1 - - uid: 19799 + - uid: 20582 components: - type: Transform - pos: -88.5,0.5 + pos: -37.5,4.5 parent: 1 - - uid: 19800 + - uid: 20583 components: - type: Transform - pos: -88.5,-0.5 + pos: -37.5,3.5 parent: 1 - - uid: 19801 + - uid: 20584 components: - type: Transform - pos: -88.5,-1.5 + pos: -37.5,2.5 parent: 1 - - uid: 19802 + - uid: 20585 components: - type: Transform - pos: -87.5,-1.5 + pos: -38.5,2.5 parent: 1 - - uid: 19803 + - uid: 20586 components: - type: Transform - pos: -87.5,-2.5 + pos: -39.5,2.5 parent: 1 - - uid: 19804 + - uid: 20587 components: - type: Transform - pos: -86.5,-2.5 + pos: -40.5,2.5 parent: 1 - - uid: 19805 + - uid: 20588 components: - type: Transform - pos: -85.5,-2.5 + pos: -41.5,2.5 parent: 1 - - uid: 19806 + - uid: 20589 components: - type: Transform - pos: -84.5,-2.5 + pos: -40.5,1.5 parent: 1 - - uid: 19807 + - uid: 20590 components: - type: Transform - pos: -83.5,-2.5 + pos: -40.5,0.5 parent: 1 - - uid: 19808 + - uid: 20591 components: - type: Transform - pos: -83.5,-1.5 + pos: -40.5,-0.5 parent: 1 - - uid: 19809 + - uid: 20592 components: - type: Transform - pos: -82.5,-1.5 + pos: -40.5,-1.5 parent: 1 - - uid: 19810 + - uid: 20593 components: - type: Transform - pos: -82.5,-0.5 + pos: -40.5,-2.5 parent: 1 - - uid: 19811 + - uid: 20594 components: - type: Transform - pos: -82.5,0.5 + pos: -40.5,-3.5 parent: 1 - - uid: 19812 + - uid: 20595 components: - type: Transform - pos: -82.5,1.5 + pos: -40.5,-4.5 parent: 1 - - uid: 19813 + - uid: 20596 components: - type: Transform - pos: -82.5,2.5 + pos: -40.5,-5.5 parent: 1 - - uid: 19814 + - uid: 20597 components: - type: Transform - pos: -82.5,3.5 + pos: -40.5,-6.5 parent: 1 - - uid: 19815 + - uid: 20598 components: - type: Transform - pos: -82.5,4.5 + pos: -40.5,-7.5 parent: 1 - - uid: 19816 + - uid: 20599 components: - type: Transform - pos: -82.5,5.5 + pos: -40.5,-8.5 parent: 1 - - uid: 19817 + - uid: 20600 components: - type: Transform - pos: -82.5,6.5 + pos: -41.5,-8.5 parent: 1 - - uid: 19818 + - uid: 20601 components: - type: Transform - pos: -82.5,7.5 + pos: -42.5,-8.5 parent: 1 - - uid: 19819 + - uid: 20602 components: - type: Transform - pos: -83.5,7.5 + pos: -43.5,-8.5 parent: 1 - - uid: 19820 + - uid: 20603 components: - type: Transform - pos: -83.5,8.5 + pos: -44.5,-8.5 parent: 1 - - uid: 19821 + - uid: 20604 components: - type: Transform - pos: -84.5,8.5 + pos: -45.5,-8.5 parent: 1 - - uid: 19822 + - uid: 20605 components: - type: Transform - pos: -85.5,8.5 + pos: -46.5,-8.5 parent: 1 - - uid: 19823 + - uid: 20606 components: - type: Transform - pos: -86.5,8.5 + pos: -47.5,-8.5 parent: 1 - - uid: 19824 + - uid: 20607 components: - type: Transform - pos: -87.5,8.5 + pos: -48.5,-8.5 parent: 1 - - uid: 19825 + - uid: 20608 components: - type: Transform - pos: -81.5,0.5 + pos: -40.5,-9.5 parent: 1 - - uid: 19826 + - uid: 20609 components: - type: Transform - pos: -80.5,0.5 + pos: -40.5,-10.5 parent: 1 - - uid: 19827 + - uid: 20610 components: - type: Transform - pos: -79.5,0.5 + pos: -40.5,-11.5 parent: 1 - - uid: 19828 + - uid: 20611 components: - type: Transform - pos: -78.5,0.5 + pos: -40.5,-12.5 parent: 1 - - uid: 19829 + - uid: 20612 components: - type: Transform - pos: -77.5,0.5 + pos: -40.5,-13.5 parent: 1 - - uid: 19830 + - uid: 20613 components: - type: Transform - pos: -77.5,1.5 + pos: -40.5,-14.5 parent: 1 - - uid: 19831 + - uid: 20614 components: - type: Transform - pos: -77.5,2.5 + pos: -40.5,-15.5 parent: 1 - - uid: 19832 + - uid: 20615 components: - type: Transform - pos: -78.5,2.5 + pos: -40.5,-16.5 parent: 1 - - uid: 19833 + - uid: 20616 components: - type: Transform - pos: -76.5,0.5 + pos: -40.5,-17.5 parent: 1 - - uid: 19834 + - uid: 20617 components: - type: Transform - pos: -75.5,0.5 + pos: -41.5,-17.5 parent: 1 - - uid: 19835 + - uid: 20618 components: - type: Transform - pos: -74.5,0.5 + pos: -42.5,-17.5 parent: 1 - - uid: 19836 + - uid: 20619 components: - type: Transform - pos: -73.5,0.5 + pos: -43.5,-17.5 parent: 1 - - uid: 19837 + - uid: 20620 components: - type: Transform - pos: -73.5,-0.5 + pos: -44.5,-17.5 parent: 1 - - uid: 19838 + - uid: 20621 components: - type: Transform - pos: -73.5,-1.5 + pos: -45.5,-17.5 parent: 1 - - uid: 19839 + - uid: 20622 components: - type: Transform - pos: -73.5,-2.5 + pos: -46.5,-17.5 parent: 1 - - uid: 19840 + - uid: 20623 components: - type: Transform - pos: -73.5,-3.5 + pos: -47.5,-17.5 parent: 1 - - uid: 19841 + - uid: 20624 components: - type: Transform - pos: -73.5,-4.5 + pos: -48.5,-17.5 parent: 1 - - uid: 19842 + - uid: 20625 components: - type: Transform - pos: -73.5,-5.5 + pos: -49.5,-17.5 parent: 1 - - uid: 19843 + - uid: 20626 components: - type: Transform - pos: -73.5,2.5 + pos: -49.5,-16.5 parent: 1 - - uid: 19844 + - uid: 20627 components: - type: Transform - pos: -73.5,3.5 + pos: -49.5,-15.5 parent: 1 - - uid: 19845 + - uid: 20628 components: - type: Transform - pos: -73.5,4.5 + pos: -49.5,-14.5 parent: 1 - - uid: 19846 + - uid: 20629 components: - type: Transform - pos: -73.5,1.5 + pos: -49.5,-13.5 parent: 1 - - uid: 19847 + - uid: 20630 components: - type: Transform - pos: -73.5,5.5 + pos: -49.5,-12.5 parent: 1 - - uid: 19848 + - uid: 20631 components: - type: Transform - pos: -73.5,6.5 + pos: -49.5,-11.5 parent: 1 - - uid: 19849 + - uid: 20632 components: - type: Transform - pos: -73.5,7.5 + pos: -49.5,-10.5 parent: 1 - - uid: 19850 + - uid: 20633 components: - type: Transform - pos: -73.5,8.5 + pos: -49.5,-9.5 parent: 1 - - uid: 19851 + - uid: 20634 components: - type: Transform - pos: -73.5,9.5 + pos: -49.5,-8.5 parent: 1 - - uid: 19852 + - uid: 20654 components: - type: Transform - pos: -73.5,10.5 + pos: 16.5,-27.5 parent: 1 - - uid: 19853 + - uid: 20655 components: - type: Transform - pos: -73.5,11.5 + pos: 17.5,-27.5 parent: 1 - - uid: 19854 + - uid: 20656 components: - type: Transform - pos: -73.5,12.5 + pos: 18.5,-27.5 parent: 1 - - uid: 19855 + - uid: 20657 components: - type: Transform - pos: -73.5,13.5 + pos: 19.5,-27.5 parent: 1 - - uid: 19856 + - uid: 20658 components: - type: Transform - pos: -73.5,14.5 + pos: 20.5,-27.5 parent: 1 - - uid: 19857 + - uid: 20659 components: - type: Transform - pos: -73.5,15.5 + pos: 20.5,-26.5 parent: 1 - - uid: 19858 + - uid: 20660 components: - type: Transform - pos: -73.5,16.5 + pos: 20.5,-25.5 parent: 1 - - uid: 19859 + - uid: 20661 components: - type: Transform - pos: -73.5,17.5 + pos: 20.5,-24.5 parent: 1 - - uid: 19860 + - uid: 20662 components: - type: Transform - pos: -73.5,18.5 + pos: 20.5,-23.5 parent: 1 - - uid: 19861 + - uid: 20663 components: - type: Transform - pos: -73.5,19.5 + pos: 21.5,-23.5 parent: 1 - - uid: 19862 + - uid: 20664 components: - type: Transform - pos: -73.5,20.5 + pos: 22.5,-23.5 parent: 1 - - uid: 19863 + - uid: 20665 components: - type: Transform - pos: -74.5,17.5 + pos: 23.5,-23.5 parent: 1 - - uid: 19864 + - uid: 20666 components: - type: Transform - pos: -75.5,17.5 + pos: 23.5,-24.5 parent: 1 - - uid: 19900 + - uid: 20667 components: - type: Transform - pos: -77.5,29.5 + pos: 23.5,-25.5 parent: 1 - - uid: 19901 + - uid: 20668 components: - type: Transform - pos: -77.5,28.5 + pos: 23.5,-26.5 parent: 1 - - uid: 19902 + - uid: 20669 components: - type: Transform - pos: -77.5,27.5 + pos: 21.5,-26.5 parent: 1 - - uid: 19903 + - uid: 20670 components: - type: Transform - pos: -77.5,26.5 + pos: 22.5,-26.5 parent: 1 - - uid: 19904 + - uid: 20671 components: - type: Transform - pos: -76.5,26.5 + pos: 18.5,-28.5 parent: 1 - - uid: 19905 + - uid: 20672 components: - type: Transform - pos: -75.5,26.5 + pos: 18.5,-29.5 parent: 1 - - uid: 19906 + - uid: 20673 components: - type: Transform - pos: -74.5,26.5 + pos: 18.5,-30.5 parent: 1 - - uid: 19907 + - uid: 20674 components: - type: Transform - pos: -73.5,26.5 + pos: 18.5,-31.5 parent: 1 - - uid: 19908 + - uid: 20675 components: - type: Transform - pos: -73.5,27.5 + pos: 18.5,-32.5 parent: 1 - - uid: 19909 + - uid: 20676 components: - type: Transform - pos: -77.5,25.5 + pos: 18.5,-33.5 parent: 1 - - uid: 19910 + - uid: 20677 components: - type: Transform - pos: -78.5,25.5 + pos: 17.5,-33.5 parent: 1 - - uid: 19911 + - uid: 20678 components: - type: Transform - pos: -79.5,25.5 + pos: 16.5,-33.5 parent: 1 - - uid: 19912 + - uid: 20679 components: - type: Transform - pos: -80.5,25.5 + pos: 15.5,-33.5 parent: 1 - - uid: 19913 + - uid: 20680 components: - type: Transform - pos: -81.5,25.5 + pos: 15.5,-34.5 parent: 1 - - uid: 19992 + - uid: 20681 components: - type: Transform - pos: -66.5,29.5 + pos: 15.5,-35.5 parent: 1 - - uid: 19993 + - uid: 20682 components: - type: Transform - pos: -66.5,30.5 + pos: 15.5,-36.5 parent: 1 - - uid: 19994 + - uid: 20683 components: - type: Transform - pos: -66.5,31.5 + pos: 15.5,-37.5 parent: 1 - - uid: 19995 + - uid: 20684 components: - type: Transform - pos: -67.5,31.5 + pos: 15.5,-38.5 parent: 1 - - uid: 19996 + - uid: 20685 components: - type: Transform - pos: -68.5,31.5 + pos: 14.5,-38.5 parent: 1 - - uid: 19997 + - uid: 20686 components: - type: Transform - pos: -69.5,31.5 + pos: 16.5,-36.5 parent: 1 - - uid: 19998 + - uid: 20687 components: - type: Transform - pos: -66.5,28.5 + pos: 17.5,-36.5 parent: 1 - - uid: 19999 + - uid: 20688 components: - type: Transform - pos: -66.5,27.5 + pos: 18.5,-36.5 parent: 1 - - uid: 20000 + - uid: 20689 components: - type: Transform - pos: -66.5,26.5 + pos: 19.5,-36.5 parent: 1 - - uid: 20001 + - uid: 20690 components: - type: Transform - pos: -67.5,26.5 + pos: 20.5,-36.5 parent: 1 - - uid: 20002 + - uid: 20691 components: - type: Transform - pos: -68.5,26.5 + pos: 19.5,-33.5 parent: 1 - - uid: 20003 + - uid: 20692 components: - type: Transform - pos: -68.5,19.5 + pos: 20.5,-33.5 parent: 1 - - uid: 20004 + - uid: 20693 components: - type: Transform - pos: -67.5,19.5 + pos: 21.5,-33.5 parent: 1 - - uid: 20005 + - uid: 20694 components: - type: Transform - pos: -67.5,20.5 + pos: 22.5,-33.5 parent: 1 - - uid: 20006 + - uid: 20695 components: - type: Transform - pos: -67.5,21.5 + pos: 23.5,-33.5 parent: 1 - - uid: 20007 + - uid: 20696 components: - type: Transform - pos: -67.5,22.5 + pos: 24.5,-33.5 parent: 1 - - uid: 20008 + - uid: 20697 components: - type: Transform - pos: -68.5,22.5 + pos: 25.5,-33.5 parent: 1 - - uid: 20009 + - uid: 20698 components: - type: Transform - pos: -66.5,21.5 + pos: 26.5,-33.5 parent: 1 - - uid: 20010 + - uid: 20699 components: - type: Transform - pos: -65.5,21.5 + pos: 27.5,-33.5 parent: 1 - - uid: 20011 + - uid: 20700 components: - type: Transform - pos: -64.5,21.5 + pos: 28.5,-33.5 parent: 1 - - uid: 20012 + - uid: 20701 components: - type: Transform - pos: -63.5,21.5 + pos: 29.5,-33.5 parent: 1 - - uid: 20013 + - uid: 20702 components: - type: Transform - pos: -62.5,21.5 + pos: 19.5,-30.5 parent: 1 - - uid: 20014 + - uid: 20703 components: - type: Transform - pos: -67.5,18.5 + pos: 20.5,-30.5 parent: 1 - - uid: 20015 + - uid: 20704 components: - type: Transform - pos: -67.5,17.5 + pos: 22.5,-30.5 parent: 1 - - uid: 20016 + - uid: 20705 components: - type: Transform - pos: -67.5,16.5 + pos: 21.5,-30.5 parent: 1 - - uid: 20017 + - uid: 20706 components: - type: Transform - pos: -68.5,16.5 + pos: 24.5,-26.5 parent: 1 - - uid: 20028 + - uid: 20707 components: - type: Transform - pos: -59.5,18.5 + pos: 25.5,-26.5 parent: 1 - - uid: 20029 + - uid: 20708 components: - type: Transform - pos: -59.5,17.5 + pos: 26.5,-26.5 parent: 1 - - uid: 20030 + - uid: 20709 components: - type: Transform - pos: -59.5,16.5 + pos: 27.5,-26.5 parent: 1 - - uid: 20031 + - uid: 20710 components: - type: Transform - pos: -59.5,15.5 + pos: 28.5,-26.5 parent: 1 - - uid: 20032 + - uid: 20711 components: - type: Transform - pos: -59.5,14.5 + pos: 29.5,-26.5 parent: 1 - - uid: 20033 + - uid: 20712 components: - type: Transform - pos: -59.5,13.5 + pos: 14.5,-27.5 parent: 1 - - uid: 20034 + - uid: 20713 components: - type: Transform - pos: -60.5,13.5 + pos: 14.5,-28.5 parent: 1 - - uid: 20035 + - uid: 20714 components: - type: Transform - pos: -58.5,13.5 + pos: 14.5,-29.5 parent: 1 - - uid: 20036 + - uid: 20715 components: - type: Transform - pos: -58.5,17.5 + pos: 13.5,-29.5 parent: 1 - - uid: 20037 + - uid: 20716 components: - type: Transform - pos: -57.5,17.5 + pos: 12.5,-29.5 parent: 1 - - uid: 20038 + - uid: 20717 components: - type: Transform - pos: -56.5,17.5 + pos: 11.5,-29.5 parent: 1 - - uid: 20039 + - uid: 20718 components: - type: Transform - pos: -55.5,17.5 + pos: 11.5,-30.5 parent: 1 - - uid: 20040 + - uid: 20719 components: - type: Transform - pos: -54.5,17.5 + pos: 11.5,-31.5 parent: 1 - - uid: 20041 + - uid: 20720 components: - type: Transform - pos: -53.5,17.5 + pos: 11.5,-32.5 parent: 1 - - uid: 20042 + - uid: 20721 components: - type: Transform - pos: -53.5,16.5 + pos: 11.5,-33.5 parent: 1 - - uid: 20058 + - uid: 20722 components: - type: Transform - pos: -70.5,4.5 + pos: 11.5,-34.5 parent: 1 - - uid: 20059 + - uid: 20723 components: - type: Transform - pos: -70.5,5.5 + pos: 11.5,-35.5 parent: 1 - - uid: 20060 + - uid: 20724 components: - type: Transform - pos: -70.5,6.5 + pos: 11.5,-36.5 parent: 1 - - uid: 20061 + - uid: 20725 components: - type: Transform - pos: -69.5,6.5 + pos: 11.5,-37.5 parent: 1 - - uid: 20062 + - uid: 20726 components: - type: Transform - pos: -70.5,3.5 + pos: 11.5,-38.5 parent: 1 - - uid: 20063 + - uid: 20727 components: - type: Transform - pos: -69.5,3.5 + pos: 11.5,-39.5 parent: 1 - - uid: 20064 + - uid: 20728 components: - type: Transform - pos: -68.5,3.5 + pos: 11.5,-40.5 parent: 1 - - uid: 20065 + - uid: 20729 components: - type: Transform - pos: -67.5,3.5 + pos: 11.5,-41.5 parent: 1 - - uid: 20066 + - uid: 20730 components: - type: Transform - pos: -67.5,2.5 + pos: 10.5,-41.5 parent: 1 - - uid: 20067 + - uid: 20731 components: - type: Transform - pos: -67.5,1.5 + pos: 10.5,-42.5 parent: 1 - - uid: 20068 + - uid: 20732 components: - type: Transform - pos: -67.5,0.5 + pos: 9.5,-42.5 parent: 1 - - uid: 20069 + - uid: 20733 components: - type: Transform - pos: -67.5,-0.5 + pos: 8.5,-42.5 parent: 1 - - uid: 20070 + - uid: 20734 components: - type: Transform - pos: -67.5,-1.5 + pos: 7.5,-42.5 parent: 1 - - uid: 20071 + - uid: 20735 components: - type: Transform - pos: -67.5,-2.5 + pos: 6.5,-42.5 parent: 1 - - uid: 20072 + - uid: 20736 components: - type: Transform - pos: -66.5,-2.5 + pos: 5.5,-42.5 parent: 1 - - uid: 20073 + - uid: 20737 components: - type: Transform - pos: -67.5,-3.5 + pos: 4.5,-42.5 parent: 1 - - uid: 20074 + - uid: 20738 components: - type: Transform - pos: -68.5,-3.5 + pos: 3.5,-42.5 parent: 1 - - uid: 20093 + - uid: 20739 components: - type: Transform - pos: -70.5,-6.5 + pos: 2.5,-42.5 parent: 1 - - uid: 20094 + - uid: 20740 components: - type: Transform - pos: -69.5,-6.5 + pos: 1.5,-42.5 parent: 1 - - uid: 20095 + - uid: 20741 components: - type: Transform - pos: -68.5,-6.5 + pos: 0.5,-42.5 parent: 1 - - uid: 20096 + - uid: 20742 components: - type: Transform - pos: -68.5,-7.5 + pos: -0.5,-42.5 parent: 1 - - uid: 20097 + - uid: 20743 components: - type: Transform - pos: -67.5,-7.5 + pos: -3.5,-44.5 parent: 1 - - uid: 20098 + - uid: 20744 components: - type: Transform - pos: -66.5,-7.5 + pos: -3.5,-45.5 parent: 1 - - uid: 20099 + - uid: 20745 components: - type: Transform - pos: -65.5,-7.5 + pos: -4.5,-45.5 parent: 1 - - uid: 20146 + - uid: 20746 components: - type: Transform - pos: -50.5,11.5 + pos: -5.5,-45.5 parent: 1 - - uid: 20147 + - uid: 20747 components: - type: Transform - pos: -50.5,10.5 + pos: -5.5,-44.5 parent: 1 - - uid: 20148 + - uid: 20748 components: - type: Transform - pos: -50.5,9.5 + pos: -5.5,-43.5 parent: 1 - - uid: 20149 + - uid: 20749 components: - type: Transform - pos: -49.5,9.5 + pos: -5.5,-42.5 parent: 1 - - uid: 20150 + - uid: 20750 components: - type: Transform - pos: -48.5,9.5 + pos: -6.5,-42.5 parent: 1 - - uid: 20151 + - uid: 20751 components: - type: Transform - pos: -47.5,9.5 + pos: -3.5,-46.5 parent: 1 - - uid: 20152 + - uid: 20752 components: - type: Transform - pos: -46.5,9.5 + pos: -2.5,-46.5 parent: 1 - - uid: 20153 + - uid: 20753 components: - type: Transform - pos: -45.5,9.5 + pos: -1.5,-46.5 parent: 1 - - uid: 20154 + - uid: 20754 components: - type: Transform - pos: -44.5,9.5 + pos: -0.5,-46.5 parent: 1 - - uid: 20155 + - uid: 20755 components: - type: Transform - pos: -51.5,9.5 + pos: 0.5,-46.5 parent: 1 - - uid: 20156 + - uid: 20756 components: - type: Transform - pos: -52.5,9.5 + pos: 1.5,-46.5 parent: 1 - - uid: 20157 + - uid: 20757 components: - type: Transform - pos: -53.5,9.5 + pos: 2.5,-46.5 parent: 1 - - uid: 20158 + - uid: 20758 components: - type: Transform - pos: -54.5,9.5 + pos: 3.5,-46.5 parent: 1 - - uid: 20159 + - uid: 20759 components: - type: Transform - pos: -55.5,9.5 + pos: 4.5,-46.5 parent: 1 - - uid: 20160 + - uid: 20760 components: - type: Transform - pos: -56.5,9.5 + pos: 5.5,-46.5 parent: 1 - - uid: 20161 + - uid: 20761 components: - type: Transform - pos: -57.5,9.5 + pos: 6.5,-46.5 parent: 1 - - uid: 20162 + - uid: 20762 components: - type: Transform - pos: -58.5,9.5 + pos: 7.5,-46.5 parent: 1 - - uid: 20163 + - uid: 20763 components: - type: Transform - pos: -59.5,9.5 + pos: 8.5,-46.5 parent: 1 - - uid: 20164 + - uid: 20764 components: - type: Transform - pos: -60.5,9.5 + pos: 9.5,-46.5 parent: 1 - - uid: 20165 + - uid: 20765 components: - type: Transform - pos: -60.5,8.5 + pos: 10.5,-46.5 parent: 1 - - uid: 20166 + - uid: 20766 components: - type: Transform - pos: -60.5,7.5 + pos: 11.5,-46.5 parent: 1 - - uid: 20167 + - uid: 20767 components: - type: Transform - pos: -60.5,6.5 + pos: 12.5,-46.5 parent: 1 - - uid: 20168 + - uid: 20768 components: - type: Transform - pos: -60.5,5.5 + pos: 13.5,-46.5 parent: 1 - - uid: 20169 + - uid: 20769 components: - type: Transform - pos: -61.5,5.5 + pos: 14.5,-46.5 parent: 1 - - uid: 20170 + - uid: 20773 components: - type: Transform - pos: -62.5,5.5 + pos: -3.5,-47.5 parent: 1 - - uid: 20171 + - uid: 20774 components: - type: Transform - pos: -62.5,4.5 + pos: -4.5,-47.5 parent: 1 - - uid: 20172 + - uid: 20775 components: - type: Transform - pos: -62.5,3.5 + pos: -5.5,-47.5 parent: 1 - - uid: 20173 + - uid: 20776 components: - type: Transform - pos: -62.5,2.5 + pos: -6.5,-47.5 parent: 1 - - uid: 20175 + - uid: 20777 components: - type: Transform - pos: -62.5,1.5 + pos: -7.5,-47.5 parent: 1 - - uid: 20176 + - uid: 20778 components: - type: Transform - pos: -62.5,0.5 + pos: -8.5,-47.5 parent: 1 - - uid: 20177 + - uid: 20779 components: - type: Transform - pos: -62.5,-0.5 + pos: -9.5,-47.5 parent: 1 - - uid: 20178 + - uid: 20780 components: - type: Transform - pos: -62.5,-1.5 + pos: -10.5,-47.5 parent: 1 - - uid: 20179 + - uid: 20781 components: - type: Transform - pos: -62.5,-2.5 + pos: -11.5,-47.5 parent: 1 - - uid: 20180 + - uid: 20782 components: - type: Transform - pos: -62.5,-3.5 + pos: -12.5,-47.5 parent: 1 - - uid: 20181 + - uid: 20783 components: - type: Transform - pos: -62.5,-4.5 + pos: -13.5,-47.5 parent: 1 - - uid: 20182 + - uid: 20784 components: - type: Transform - pos: -62.5,-5.5 + pos: -14.5,-47.5 parent: 1 - - uid: 20183 + - uid: 20785 components: - type: Transform - pos: -62.5,-6.5 + pos: -6.5,-43.5 parent: 1 - - uid: 20184 + - uid: 20786 components: - type: Transform - pos: -62.5,-7.5 + pos: -7.5,-43.5 parent: 1 - - uid: 20185 + - uid: 20787 components: - type: Transform - pos: -61.5,-7.5 + pos: -8.5,-43.5 parent: 1 - - uid: 20186 + - uid: 20788 components: - type: Transform - pos: -60.5,-7.5 + pos: -8.5,-42.5 parent: 1 - - uid: 20187 + - uid: 20789 components: - type: Transform - pos: -59.5,-7.5 + pos: -15.5,-47.5 parent: 1 - - uid: 20188 + - uid: 20790 components: - type: Transform - pos: -58.5,-7.5 + pos: -15.5,-46.5 parent: 1 - - uid: 20189 + - uid: 20791 components: - type: Transform - pos: -57.5,-7.5 + pos: -15.5,-45.5 parent: 1 - - uid: 20190 + - uid: 20792 components: - type: Transform - pos: -56.5,-7.5 + pos: -15.5,-44.5 parent: 1 - - uid: 20191 + - uid: 20793 components: - type: Transform - pos: -55.5,-7.5 + pos: -15.5,-43.5 parent: 1 - - uid: 20192 + - uid: 20794 components: - type: Transform - pos: -54.5,-7.5 + pos: -15.5,-42.5 parent: 1 - - uid: 20193 + - uid: 20795 components: - type: Transform - pos: -53.5,-7.5 + pos: -15.5,-41.5 parent: 1 - - uid: 20194 + - uid: 20796 components: - type: Transform - pos: -52.5,-7.5 + pos: -15.5,-40.5 parent: 1 - - uid: 20197 + - uid: 20797 components: - type: Transform - pos: -54.5,-3.5 + pos: -15.5,-39.5 parent: 1 - - uid: 20198 + - uid: 20798 components: - type: Transform - pos: -54.5,-4.5 + pos: -15.5,-38.5 parent: 1 - - uid: 20199 + - uid: 20799 components: - type: Transform - pos: -55.5,-4.5 + pos: -15.5,-37.5 parent: 1 - - uid: 20200 + - uid: 20800 components: - type: Transform - pos: -56.5,-4.5 + pos: -15.5,-36.5 parent: 1 - - uid: 20201 + - uid: 20801 components: - type: Transform - pos: -57.5,-4.5 + pos: -15.5,-35.5 parent: 1 - - uid: 20202 + - uid: 20802 components: - type: Transform - pos: -53.5,-4.5 + pos: -15.5,-34.5 parent: 1 - - uid: 20203 + - uid: 20803 components: - type: Transform - pos: -52.5,-4.5 + pos: -16.5,-34.5 parent: 1 - - uid: 20204 + - uid: 20804 components: - type: Transform - pos: -51.5,-4.5 + pos: -16.5,-33.5 parent: 1 - - uid: 20205 + - uid: 20805 components: - type: Transform - pos: -50.5,-4.5 + pos: -16.5,-32.5 parent: 1 - - uid: 20206 + - uid: 20806 components: - type: Transform - pos: -49.5,-4.5 + pos: -16.5,-31.5 parent: 1 - - uid: 20207 + - uid: 20807 components: - type: Transform - pos: -48.5,-4.5 + pos: -16.5,-30.5 parent: 1 - - uid: 20208 + - uid: 20808 components: - type: Transform - pos: -47.5,-4.5 + pos: -16.5,-29.5 parent: 1 - - uid: 20209 + - uid: 20809 components: - type: Transform - pos: -46.5,-4.5 + pos: -16.5,-28.5 parent: 1 - - uid: 20210 + - uid: 20810 components: - type: Transform - pos: -45.5,-4.5 + pos: -16.5,-27.5 parent: 1 - - uid: 20211 + - uid: 20811 components: - type: Transform - pos: -46.5,-3.5 + pos: -16.5,-26.5 parent: 1 - - uid: 20212 + - uid: 20812 components: - type: Transform - pos: -46.5,-2.5 + pos: -17.5,-26.5 parent: 1 - - uid: 20213 + - uid: 20813 components: - type: Transform - pos: -46.5,-1.5 + pos: -18.5,-26.5 parent: 1 - - uid: 20214 + - uid: 20814 components: - type: Transform - pos: -46.5,-0.5 + pos: -19.5,-26.5 parent: 1 - - uid: 20215 + - uid: 20815 components: - type: Transform - pos: -46.5,0.5 + pos: -20.5,-26.5 parent: 1 - - uid: 20216 + - uid: 20816 components: - type: Transform - pos: -46.5,1.5 + pos: -21.5,-26.5 parent: 1 - - uid: 20217 + - uid: 20817 components: - type: Transform - pos: -46.5,2.5 + pos: -22.5,-26.5 parent: 1 - - uid: 20218 + - uid: 20818 components: - type: Transform - pos: -46.5,3.5 + pos: -23.5,-26.5 parent: 1 - - uid: 20219 + - uid: 20819 components: - type: Transform - pos: -46.5,4.5 + pos: -24.5,-26.5 parent: 1 - - uid: 20220 + - uid: 20820 components: - type: Transform - pos: -46.5,5.5 + pos: -25.5,-26.5 parent: 1 - - uid: 20221 + - uid: 20821 components: - type: Transform - pos: -47.5,5.5 + pos: -26.5,-26.5 parent: 1 - - uid: 20222 + - uid: 20822 components: - type: Transform - pos: -48.5,5.5 + pos: -27.5,-26.5 parent: 1 - - uid: 20223 + - uid: 20823 components: - type: Transform - pos: -49.5,5.5 + pos: -28.5,-26.5 parent: 1 - - uid: 20224 + - uid: 20824 components: - type: Transform - pos: -50.5,5.5 + pos: -29.5,-26.5 parent: 1 - - uid: 20225 + - uid: 20825 components: - type: Transform - pos: -51.5,5.5 + pos: -30.5,-26.5 parent: 1 - - uid: 20226 + - uid: 20826 components: - type: Transform - pos: -52.5,5.5 + pos: -31.5,-26.5 parent: 1 - - uid: 20227 + - uid: 20827 components: - type: Transform - pos: -52.5,6.5 + pos: -32.5,-26.5 parent: 1 - - uid: 20228 + - uid: 20828 components: - type: Transform - pos: -53.5,6.5 + pos: -33.5,-26.5 parent: 1 - - uid: 20229 + - uid: 20829 components: - type: Transform - pos: -54.5,6.5 + pos: -34.5,-26.5 parent: 1 - - uid: 20230 + - uid: 20830 components: - type: Transform - pos: -52.5,-3.5 + pos: -35.5,-26.5 parent: 1 - - uid: 20231 + - uid: 20831 components: - type: Transform - pos: -52.5,-2.5 + pos: -36.5,-26.5 parent: 1 - - uid: 20232 + - uid: 20832 components: - type: Transform - pos: -52.5,-1.5 + pos: -37.5,-26.5 parent: 1 - - uid: 20233 + - uid: 20833 components: - type: Transform - pos: -52.5,-0.5 + pos: -38.5,-26.5 parent: 1 - - uid: 20234 + - uid: 20834 components: - type: Transform - pos: -52.5,0.5 + pos: -34.5,-27.5 parent: 1 - - uid: 20235 + - uid: 20835 components: - type: Transform - pos: -52.5,1.5 + pos: -30.5,-27.5 parent: 1 - - uid: 20236 + - uid: 20836 components: - type: Transform - pos: -53.5,1.5 + pos: -39.5,-26.5 parent: 1 - - uid: 20237 + - uid: 20837 components: - type: Transform - pos: -54.5,1.5 + pos: -40.5,-26.5 parent: 1 - - uid: 20238 + - uid: 20838 components: - type: Transform - pos: -55.5,1.5 + pos: -40.5,-25.5 parent: 1 - - uid: 20239 + - uid: 20839 components: - type: Transform - pos: -56.5,1.5 + pos: -40.5,-24.5 parent: 1 - - uid: 20240 + - uid: 20840 components: - type: Transform - pos: -57.5,1.5 + pos: -40.5,-23.5 parent: 1 - - uid: 20241 + - uid: 20841 components: - type: Transform - pos: -58.5,1.5 + pos: -40.5,-22.5 parent: 1 - - uid: 20242 + - uid: 20842 components: - type: Transform - pos: -58.5,0.5 + pos: -40.5,-21.5 parent: 1 - - uid: 20243 + - uid: 20843 components: - type: Transform - pos: -56.5,0.5 + pos: -40.5,-20.5 parent: 1 - - uid: 20245 + - uid: 20844 components: - type: Transform - pos: -43.5,12.5 + pos: -39.5,-20.5 parent: 1 - - uid: 20247 + - uid: 20852 components: - type: Transform - pos: -43.5,13.5 + pos: -26.5,27.5 parent: 1 - - uid: 20248 + - uid: 20853 components: - type: Transform - pos: -43.5,14.5 + pos: -25.5,27.5 parent: 1 - - uid: 20249 + - uid: 20854 components: - type: Transform - pos: -43.5,15.5 + pos: -24.5,27.5 parent: 1 - - uid: 20250 + - uid: 20855 components: - type: Transform - pos: -44.5,15.5 + pos: -23.5,27.5 parent: 1 - - uid: 20251 + - uid: 20856 components: - type: Transform - pos: -45.5,15.5 + pos: -22.5,27.5 parent: 1 - - uid: 20252 + - uid: 20857 components: - type: Transform - pos: -45.5,16.5 + pos: -21.5,27.5 parent: 1 - - uid: 20253 + - uid: 20858 components: - type: Transform - pos: -46.5,15.5 + pos: -21.5,26.5 parent: 1 - - uid: 20254 + - uid: 20859 components: - type: Transform - pos: -47.5,15.5 + pos: -24.5,26.5 parent: 1 - - uid: 20255 + - uid: 20860 components: - type: Transform - pos: -47.5,16.5 + pos: -24.5,28.5 parent: 1 - - uid: 20256 + - uid: 20861 components: - type: Transform - pos: -48.5,16.5 + pos: -24.5,29.5 parent: 1 - - uid: 20257 + - uid: 20862 components: - type: Transform - pos: -49.5,16.5 + pos: -24.5,30.5 parent: 1 - - uid: 20269 + - uid: 20863 components: - type: Transform - pos: -25.5,23.5 + pos: -24.5,31.5 parent: 1 - - uid: 20270 + - uid: 20864 components: - type: Transform - pos: -25.5,22.5 + pos: -21.5,28.5 parent: 1 - - uid: 20271 + - uid: 20865 components: - type: Transform - pos: -26.5,22.5 + pos: -21.5,29.5 parent: 1 - - uid: 20272 + - uid: 20866 components: - type: Transform - pos: -27.5,22.5 + pos: -21.5,30.5 parent: 1 - - uid: 20273 + - uid: 20867 components: - type: Transform - pos: -28.5,22.5 + pos: -21.5,31.5 parent: 1 - - uid: 20274 + - uid: 21020 components: - type: Transform - pos: -28.5,23.5 + pos: -28.5,11.5 parent: 1 - - uid: 20275 + - uid: 21021 components: - type: Transform - pos: -28.5,24.5 + pos: -29.5,11.5 parent: 1 - - uid: 20277 + - uid: 21022 components: - type: Transform - pos: -28.5,21.5 + pos: -29.5,10.5 parent: 1 - - uid: 20278 + - uid: 21023 components: - type: Transform - pos: -28.5,20.5 + pos: -30.5,10.5 parent: 1 - - uid: 20279 + - uid: 21024 components: - type: Transform - pos: -29.5,20.5 + pos: -31.5,10.5 parent: 1 - - uid: 20288 + - uid: 21025 components: - type: Transform - pos: -38.5,20.5 + pos: -32.5,10.5 parent: 1 - - uid: 20289 + - uid: 21026 components: - type: Transform - pos: -39.5,20.5 + pos: -32.5,11.5 parent: 1 - - uid: 20290 + - uid: 21027 components: - type: Transform - pos: -40.5,20.5 + pos: -32.5,12.5 parent: 1 - - uid: 20291 + - uid: 21028 components: - type: Transform - pos: -42.5,14.5 + pos: -32.5,13.5 parent: 1 - - uid: 20292 + - uid: 21029 components: - type: Transform - pos: -41.5,14.5 + pos: -25.5,11.5 parent: 1 - - uid: 20293 + - uid: 21030 components: - type: Transform - pos: -40.5,14.5 + pos: -25.5,10.5 parent: 1 - - uid: 20294 + - uid: 21031 components: - type: Transform - pos: -40.5,15.5 + pos: -23.5,10.5 parent: 1 - - uid: 20295 + - uid: 21032 components: - type: Transform - pos: -40.5,13.5 + pos: -24.5,10.5 parent: 1 - - uid: 20296 + - uid: 21033 components: - type: Transform - pos: -40.5,21.5 + pos: -22.5,10.5 parent: 1 - - uid: 20297 + - uid: 21034 components: - type: Transform - pos: -40.5,22.5 + pos: -21.5,10.5 parent: 1 - - uid: 20396 + - uid: 21035 components: - type: Transform - pos: -41.5,20.5 + pos: -20.5,10.5 parent: 1 - - uid: 20397 + - uid: 21036 components: - type: Transform - pos: -42.5,20.5 + pos: -19.5,10.5 parent: 1 - - uid: 20398 + - uid: 21037 components: - type: Transform - pos: -43.5,20.5 + pos: -18.5,10.5 parent: 1 - - uid: 20399 + - uid: 21038 components: - type: Transform - pos: -44.5,20.5 + pos: -18.5,11.5 parent: 1 - - uid: 20400 + - uid: 21039 components: - type: Transform - pos: -45.5,20.5 + pos: -28.5,8.5 parent: 1 - - uid: 20401 + - uid: 21040 components: - type: Transform - pos: -46.5,20.5 + pos: -28.5,7.5 parent: 1 - - uid: 20402 + - uid: 21041 components: - type: Transform - pos: -47.5,20.5 + pos: -28.5,6.5 parent: 1 - - uid: 20403 + - uid: 21042 components: - type: Transform - pos: -48.5,20.5 + pos: -28.5,5.5 parent: 1 - - uid: 20404 + - uid: 21043 components: - type: Transform - pos: -49.5,20.5 + pos: -28.5,4.5 parent: 1 - - uid: 20405 + - uid: 21044 components: - type: Transform - pos: -50.5,20.5 + pos: -28.5,3.5 parent: 1 - - uid: 20406 + - uid: 21045 components: - type: Transform - pos: -51.5,20.5 + pos: -28.5,2.5 parent: 1 - - uid: 20407 + - uid: 21046 components: - type: Transform - pos: -52.5,20.5 + pos: -28.5,1.5 parent: 1 - - uid: 20408 + - uid: 21047 components: - type: Transform - pos: -53.5,20.5 + pos: -27.5,1.5 parent: 1 - - uid: 20409 + - uid: 21048 components: - type: Transform - pos: -54.5,20.5 + pos: -27.5,0.5 parent: 1 - - uid: 20410 + - uid: 21049 components: - type: Transform - pos: -55.5,20.5 + pos: -27.5,-0.5 parent: 1 - - uid: 20411 + - uid: 21050 components: - type: Transform - pos: -56.5,20.5 + pos: -27.5,-1.5 parent: 1 - - uid: 20412 + - uid: 21051 components: - type: Transform - pos: -56.5,21.5 + pos: -26.5,-1.5 parent: 1 - - uid: 20413 + - uid: 21052 components: - type: Transform - pos: -56.5,22.5 + pos: -25.5,-1.5 parent: 1 - - uid: 20414 + - uid: 21053 components: - type: Transform - pos: -56.5,23.5 + pos: -25.5,-2.5 parent: 1 - - uid: 20415 + - uid: 21054 components: - type: Transform - pos: -56.5,24.5 + pos: -25.5,-3.5 parent: 1 - - uid: 20416 + - uid: 21055 components: - type: Transform - pos: -56.5,25.5 + pos: -25.5,-4.5 parent: 1 - - uid: 20417 + - uid: 21056 components: - type: Transform - pos: -56.5,26.5 + pos: -25.5,-5.5 parent: 1 - - uid: 20418 + - uid: 21057 components: - type: Transform - pos: -56.5,27.5 + pos: -25.5,-6.5 parent: 1 - - uid: 20419 + - uid: 21058 components: - type: Transform - pos: -56.5,28.5 + pos: -25.5,-7.5 parent: 1 - - uid: 20420 + - uid: 21059 components: - type: Transform - pos: -56.5,29.5 + pos: -26.5,-7.5 parent: 1 - - uid: 20421 + - uid: 21060 components: - type: Transform - pos: -56.5,30.5 + pos: -26.5,-4.5 parent: 1 - - uid: 20422 + - uid: 21061 components: - type: Transform - pos: -56.5,31.5 + pos: -27.5,-16.5 parent: 1 - - uid: 20423 + - uid: 21062 components: - type: Transform - pos: -56.5,32.5 + pos: -27.5,-15.5 parent: 1 - - uid: 20424 + - uid: 21063 components: - type: Transform - pos: -56.5,33.5 + pos: -27.5,-14.5 parent: 1 - - uid: 20425 + - uid: 21064 components: - type: Transform - pos: -56.5,34.5 + pos: -26.5,-14.5 parent: 1 - - uid: 20426 + - uid: 21065 components: - type: Transform - pos: -56.5,35.5 + pos: -26.5,-16.5 parent: 1 - - uid: 20427 + - uid: 21066 components: - type: Transform - pos: -56.5,36.5 + pos: -25.5,-16.5 parent: 1 - - uid: 20428 + - uid: 21067 components: - type: Transform - pos: -57.5,36.5 + pos: -25.5,-17.5 parent: 1 - - uid: 20429 + - uid: 21068 components: - type: Transform - pos: -58.5,36.5 + pos: -26.5,-13.5 parent: 1 - - uid: 20430 + - uid: 21069 components: - type: Transform - pos: -59.5,36.5 + pos: -26.5,-12.5 parent: 1 - - uid: 20431 + - uid: 21070 components: - type: Transform - pos: -60.5,36.5 + pos: -26.5,-11.5 parent: 1 - - uid: 20432 + - uid: 21071 components: - type: Transform - pos: -61.5,36.5 + pos: -27.5,-11.5 parent: 1 - - uid: 20433 + - uid: 21072 components: - type: Transform - pos: -62.5,36.5 + pos: -28.5,-11.5 parent: 1 - - uid: 20434 + - uid: 21073 components: - type: Transform - pos: -63.5,36.5 + pos: -29.5,-11.5 parent: 1 - - uid: 20435 + - uid: 21074 components: - type: Transform - pos: -64.5,36.5 + pos: -30.5,-11.5 parent: 1 - - uid: 20436 + - uid: 21075 components: - type: Transform - pos: -65.5,36.5 + pos: -31.5,-11.5 parent: 1 - - uid: 20437 + - uid: 21076 components: - type: Transform - pos: -66.5,36.5 + pos: -32.5,-11.5 parent: 1 - - uid: 20438 + - uid: 21077 components: - type: Transform - pos: -67.5,36.5 + pos: -33.5,-11.5 parent: 1 - - uid: 20439 + - uid: 21078 components: - type: Transform - pos: -68.5,36.5 + pos: -28.5,-14.5 parent: 1 - - uid: 20440 + - uid: 21079 components: - type: Transform - pos: -69.5,36.5 + pos: -29.5,-14.5 parent: 1 - - uid: 20441 + - uid: 21080 components: - type: Transform - pos: -70.5,36.5 + pos: -29.5,-15.5 parent: 1 - - uid: 20442 + - uid: 21081 components: - type: Transform - pos: -71.5,36.5 + pos: -29.5,-16.5 parent: 1 - - uid: 20443 + - uid: 21082 components: - type: Transform - pos: -72.5,36.5 + pos: -29.5,-17.5 parent: 1 - - uid: 20444 + - uid: 21083 components: - type: Transform - pos: -73.5,36.5 + pos: -29.5,-18.5 parent: 1 - - uid: 20445 + - uid: 21084 components: - type: Transform - pos: -74.5,36.5 + pos: -29.5,-19.5 parent: 1 - - uid: 20446 + - uid: 21085 components: - type: Transform - pos: -75.5,36.5 + pos: -31.5,-19.5 parent: 1 - - uid: 20447 + - uid: 21086 components: - type: Transform - pos: -76.5,36.5 + pos: -30.5,-19.5 parent: 1 - - uid: 20448 + - uid: 21087 components: - type: Transform - pos: -77.5,36.5 + pos: -32.5,-19.5 parent: 1 - - uid: 20449 + - uid: 21088 components: - type: Transform - pos: -77.5,37.5 + pos: -33.5,-19.5 parent: 1 - - uid: 20450 + - uid: 21089 components: - type: Transform - pos: -73.5,35.5 + pos: -33.5,-12.5 parent: 1 - - uid: 20451 + - uid: 21090 components: - type: Transform - pos: -73.5,37.5 + pos: -33.5,-13.5 parent: 1 - - uid: 20452 + - uid: 21091 components: - type: Transform - pos: -73.5,38.5 + pos: -34.5,-11.5 parent: 1 - - uid: 20453 + - uid: 21092 components: - type: Transform - pos: -74.5,38.5 + pos: -35.5,-11.5 parent: 1 - - uid: 20454 + - uid: 21093 components: - type: Transform - pos: -74.5,39.5 + pos: -33.5,-14.5 parent: 1 - - uid: 20455 + - uid: 21094 components: - type: Transform - pos: -74.5,40.5 + pos: -33.5,-15.5 parent: 1 - - uid: 20456 + - uid: 21095 components: - type: Transform - pos: -72.5,38.5 + pos: -34.5,-15.5 parent: 1 - - uid: 20457 + - uid: 21096 components: - type: Transform - pos: -72.5,39.5 + pos: -35.5,-15.5 parent: 1 - - uid: 20458 + - uid: 21097 components: - type: Transform - pos: -72.5,40.5 + pos: -32.5,-15.5 parent: 1 - - uid: 20459 + - uid: 21098 components: - type: Transform - pos: -65.5,37.5 + pos: -31.5,-15.5 parent: 1 - - uid: 20460 + - uid: 21099 components: - type: Transform - pos: -65.5,38.5 + pos: -30.5,-15.5 parent: 1 - - uid: 20461 + - uid: 21100 components: - type: Transform - pos: -66.5,38.5 + pos: -25.5,-22.5 parent: 1 - - uid: 20462 + - uid: 21101 components: - type: Transform - pos: -66.5,39.5 + pos: -25.5,-23.5 parent: 1 - - uid: 20463 + - uid: 21102 components: - type: Transform - pos: -66.5,40.5 + pos: -24.5,-23.5 parent: 1 - - uid: 20465 + - uid: 21103 components: - type: Transform - pos: -64.5,38.5 + pos: -23.5,-23.5 parent: 1 - - uid: 20466 + - uid: 21104 components: - type: Transform - pos: -64.5,39.5 + pos: -26.5,-23.5 parent: 1 - - uid: 20467 + - uid: 21105 components: - type: Transform - pos: -64.5,40.5 + pos: -27.5,-23.5 parent: 1 - - uid: 20491 + - uid: 21106 components: - type: Transform - pos: -50.5,31.5 + pos: -28.5,-23.5 parent: 1 - - uid: 20492 + - uid: 21107 components: - type: Transform - pos: -50.5,30.5 + pos: -29.5,-23.5 parent: 1 - - uid: 20493 + - uid: 21108 components: - type: Transform - pos: -50.5,29.5 + pos: -30.5,-23.5 parent: 1 - - uid: 20494 + - uid: 21109 components: - type: Transform - pos: -51.5,29.5 + pos: -31.5,-23.5 parent: 1 - - uid: 20495 + - uid: 21110 components: - type: Transform - pos: -52.5,29.5 + pos: -32.5,-23.5 parent: 1 - - uid: 20496 + - uid: 21111 components: - type: Transform - pos: -52.5,28.5 + pos: -33.5,-23.5 parent: 1 - - uid: 20497 + - uid: 21112 components: - type: Transform - pos: -52.5,27.5 + pos: -34.5,-23.5 parent: 1 - - uid: 20498 + - uid: 21113 components: - type: Transform - pos: -49.5,29.5 + pos: -35.5,-23.5 parent: 1 - - uid: 20499 + - uid: 21114 components: - type: Transform - pos: -48.5,29.5 + pos: -36.5,-23.5 parent: 1 - - uid: 20500 + - uid: 21115 components: - type: Transform - pos: -48.5,28.5 + pos: -27.5,-22.5 parent: 1 - - uid: 20501 + - uid: 21116 components: - type: Transform - pos: -48.5,27.5 + pos: -27.5,-21.5 parent: 1 - - uid: 20502 + - uid: 21117 components: - type: Transform - pos: -47.5,29.5 + pos: -26.5,-21.5 parent: 1 - - uid: 20503 + - uid: 21118 components: - type: Transform - pos: -46.5,29.5 + pos: -26.5,-20.5 parent: 1 - - uid: 20504 + - uid: 21119 components: - type: Transform - pos: -45.5,29.5 + pos: -25.5,-20.5 parent: 1 - - uid: 20505 + - uid: 21120 components: - type: Transform - pos: -44.5,29.5 + pos: -24.5,-20.5 parent: 1 - - uid: 20506 + - uid: 21121 components: - type: Transform - pos: -44.5,28.5 + pos: -23.5,-20.5 parent: 1 - - uid: 20507 + - uid: 21122 components: - type: Transform - pos: -44.5,27.5 + pos: -22.5,-20.5 parent: 1 - - uid: 20508 + - uid: 21131 components: - type: Transform - pos: -78.5,37.5 + pos: -31.5,0.5 parent: 1 - - uid: 20509 + - uid: 21132 components: - type: Transform - pos: -79.5,37.5 + pos: -32.5,0.5 parent: 1 - - uid: 20570 + - uid: 21133 components: - type: Transform - pos: -42.5,1.5 + pos: -33.5,0.5 parent: 1 - - uid: 20571 + - uid: 21134 components: - type: Transform - pos: -42.5,2.5 + pos: -33.5,1.5 parent: 1 - - uid: 20572 + - uid: 21135 components: - type: Transform - pos: -42.5,3.5 + pos: -33.5,2.5 parent: 1 - - uid: 20573 + - uid: 21136 components: - type: Transform - pos: -42.5,4.5 + pos: -33.5,3.5 parent: 1 - - uid: 20574 + - uid: 21137 components: - type: Transform - pos: -42.5,5.5 + pos: -33.5,4.5 parent: 1 - - uid: 20575 + - uid: 21138 components: - type: Transform - pos: -42.5,6.5 + pos: -33.5,5.5 parent: 1 - - uid: 20576 + - uid: 21139 components: - type: Transform - pos: -41.5,6.5 + pos: -33.5,6.5 parent: 1 - - uid: 20577 + - uid: 21149 components: - type: Transform - pos: -40.5,6.5 + pos: -33.5,-0.5 parent: 1 - - uid: 20578 + - uid: 21150 components: - type: Transform - pos: -39.5,6.5 + pos: -33.5,-1.5 parent: 1 - - uid: 20579 + - uid: 21151 components: - type: Transform - pos: -38.5,6.5 + pos: -33.5,-2.5 parent: 1 - - uid: 20580 + - uid: 21152 components: - type: Transform - pos: -37.5,6.5 + pos: -33.5,-3.5 parent: 1 - - uid: 20581 + - uid: 21153 components: - type: Transform - pos: -37.5,5.5 + pos: -32.5,-2.5 parent: 1 - - uid: 20582 + - uid: 21154 components: - type: Transform - pos: -37.5,4.5 + pos: -33.5,-4.5 parent: 1 - - uid: 20583 + - uid: 21155 components: - type: Transform - pos: -37.5,3.5 + pos: -33.5,-5.5 parent: 1 - - uid: 20584 + - uid: 21156 components: - type: Transform - pos: -37.5,2.5 + pos: -33.5,-6.5 parent: 1 - - uid: 20585 + - uid: 21157 components: - type: Transform - pos: -38.5,2.5 + pos: -33.5,-7.5 parent: 1 - - uid: 20586 + - uid: 21158 components: - type: Transform - pos: -39.5,2.5 + pos: -32.5,-7.5 parent: 1 - - uid: 20587 + - uid: 21159 components: - type: Transform - pos: -40.5,2.5 + pos: -31.5,-7.5 parent: 1 - - uid: 20588 + - uid: 21160 components: - type: Transform - pos: -41.5,2.5 + pos: -34.5,-7.5 parent: 1 - - uid: 20589 + - uid: 21161 components: - type: Transform - pos: -40.5,1.5 + pos: -35.5,-7.5 parent: 1 - - uid: 20590 + - uid: 21162 components: - type: Transform - pos: -40.5,0.5 + pos: -36.5,-7.5 parent: 1 - - uid: 20591 + - uid: 21163 components: - type: Transform - pos: -40.5,-0.5 + pos: -34.5,-4.5 parent: 1 - - uid: 20592 + - uid: 21164 components: - type: Transform - pos: -40.5,-1.5 + pos: -35.5,-4.5 parent: 1 - - uid: 20593 + - uid: 21165 components: - type: Transform - pos: -40.5,-2.5 + pos: -34.5,-0.5 parent: 1 - - uid: 20594 + - uid: 21166 components: - type: Transform - pos: -40.5,-3.5 + pos: -35.5,-0.5 parent: 1 - - uid: 20595 + - uid: 21167 components: - type: Transform - pos: -40.5,-4.5 + pos: -24.5,15.5 parent: 1 - - uid: 20596 + - uid: 21168 components: - type: Transform - pos: -40.5,-5.5 + pos: -24.5,16.5 parent: 1 - - uid: 20597 + - uid: 21169 components: - type: Transform - pos: -40.5,-6.5 + pos: -25.5,16.5 parent: 1 - - uid: 20598 + - uid: 21170 components: - type: Transform - pos: -40.5,-7.5 + pos: -26.5,16.5 parent: 1 - - uid: 20599 + - uid: 21171 components: - type: Transform - pos: -40.5,-8.5 + pos: -27.5,16.5 parent: 1 - - uid: 20600 + - uid: 21172 components: - type: Transform - pos: -41.5,-8.5 + pos: -28.5,16.5 parent: 1 - - uid: 20601 + - uid: 21173 components: - type: Transform - pos: -42.5,-8.5 + pos: -29.5,16.5 parent: 1 - - uid: 20602 + - uid: 21174 components: - type: Transform - pos: -43.5,-8.5 + pos: -30.5,16.5 parent: 1 - - uid: 20603 + - uid: 21175 components: - type: Transform - pos: -44.5,-8.5 + pos: -31.5,16.5 parent: 1 - - uid: 20604 + - uid: 21176 components: - type: Transform - pos: -45.5,-8.5 + pos: -32.5,16.5 parent: 1 - - uid: 20605 + - uid: 21177 components: - type: Transform - pos: -46.5,-8.5 + pos: -33.5,16.5 parent: 1 - - uid: 20606 + - uid: 21178 components: - type: Transform - pos: -47.5,-8.5 + pos: -34.5,16.5 parent: 1 - - uid: 20607 + - uid: 21179 components: - type: Transform - pos: -48.5,-8.5 + pos: -35.5,16.5 parent: 1 - - uid: 20608 + - uid: 21180 components: - type: Transform - pos: -40.5,-9.5 + pos: -36.5,16.5 parent: 1 - - uid: 20609 + - uid: 21181 components: - type: Transform - pos: -40.5,-10.5 + pos: -36.5,15.5 parent: 1 - - uid: 20610 + - uid: 21182 components: - type: Transform - pos: -40.5,-11.5 + pos: -36.5,14.5 parent: 1 - - uid: 20611 + - uid: 21183 components: - type: Transform - pos: -40.5,-12.5 + pos: -36.5,13.5 parent: 1 - - uid: 20612 + - uid: 21184 components: - type: Transform - pos: -40.5,-13.5 + pos: -36.5,12.5 parent: 1 - - uid: 20613 + - uid: 21185 components: - type: Transform - pos: -40.5,-14.5 + pos: -36.5,11.5 parent: 1 - - uid: 20614 + - uid: 21186 components: - type: Transform - pos: -40.5,-15.5 + pos: -36.5,10.5 parent: 1 - - uid: 20615 + - uid: 21187 components: - type: Transform - pos: -40.5,-16.5 + pos: -23.5,16.5 parent: 1 - - uid: 20616 + - uid: 21188 components: - type: Transform - pos: -40.5,-17.5 + pos: -22.5,16.5 parent: 1 - - uid: 20617 + - uid: 21189 components: - type: Transform - pos: -41.5,-17.5 + pos: -21.5,16.5 parent: 1 - - uid: 20618 + - uid: 21190 components: - type: Transform - pos: -42.5,-17.5 + pos: -20.5,16.5 parent: 1 - - uid: 20619 + - uid: 21191 components: - type: Transform - pos: -43.5,-17.5 + pos: -19.5,16.5 parent: 1 - - uid: 20620 + - uid: 21192 components: - type: Transform - pos: -44.5,-17.5 + pos: -18.5,16.5 parent: 1 - - uid: 20621 + - uid: 21193 components: - type: Transform - pos: -45.5,-17.5 + pos: -17.5,16.5 parent: 1 - - uid: 20622 + - uid: 21194 components: - type: Transform - pos: -46.5,-17.5 + pos: -16.5,16.5 parent: 1 - - uid: 20623 + - uid: 21195 components: - type: Transform - pos: -47.5,-17.5 + pos: -16.5,17.5 parent: 1 - - uid: 20624 + - uid: 21196 components: - type: Transform - pos: -48.5,-17.5 + pos: -16.5,18.5 parent: 1 - - uid: 20625 + - uid: 21197 components: - type: Transform - pos: -49.5,-17.5 + pos: -16.5,19.5 parent: 1 - - uid: 20626 + - uid: 21198 components: - type: Transform - pos: -49.5,-16.5 + pos: -16.5,20.5 parent: 1 - - uid: 20627 + - uid: 21199 components: - type: Transform - pos: -49.5,-15.5 + pos: -15.5,19.5 parent: 1 - - uid: 20628 + - uid: 21200 components: - type: Transform - pos: -49.5,-14.5 + pos: -17.5,20.5 parent: 1 - - uid: 20629 + - uid: 21201 components: - type: Transform - pos: -49.5,-13.5 + pos: -17.5,21.5 parent: 1 - - uid: 20630 + - uid: 21202 components: - type: Transform - pos: -49.5,-12.5 + pos: -17.5,22.5 parent: 1 - - uid: 20631 + - uid: 21203 components: - type: Transform - pos: -49.5,-11.5 + pos: -17.5,23.5 parent: 1 - - uid: 20632 + - uid: 21204 components: - type: Transform - pos: -49.5,-10.5 + pos: -17.5,24.5 parent: 1 - - uid: 20633 + - uid: 21205 components: - type: Transform - pos: -49.5,-9.5 + pos: -17.5,25.5 parent: 1 - - uid: 20634 + - uid: 21206 components: - type: Transform - pos: -49.5,-8.5 + pos: -17.5,26.5 parent: 1 - - uid: 20654 + - uid: 21219 components: - type: Transform - pos: 16.5,-27.5 + pos: -24.5,14.5 parent: 1 - - uid: 20655 + - uid: 21220 components: - type: Transform - pos: 17.5,-27.5 + pos: -23.5,14.5 parent: 1 - - uid: 20656 + - uid: 21221 components: - type: Transform - pos: 18.5,-27.5 + pos: -22.5,14.5 parent: 1 - - uid: 20657 + - uid: 21242 components: - type: Transform - pos: 19.5,-27.5 + pos: -12.5,28.5 parent: 1 - - uid: 20658 + - uid: 21243 components: - type: Transform - pos: 20.5,-27.5 + pos: -12.5,27.5 parent: 1 - - uid: 20659 + - uid: 21244 components: - type: Transform - pos: 20.5,-26.5 + pos: -12.5,26.5 parent: 1 - - uid: 20660 + - uid: 21245 components: - type: Transform - pos: 20.5,-25.5 + pos: -12.5,25.5 parent: 1 - - uid: 20661 + - uid: 21246 components: - type: Transform - pos: 20.5,-24.5 + pos: -13.5,25.5 parent: 1 - - uid: 20662 + - uid: 21247 components: - type: Transform - pos: 20.5,-23.5 + pos: -12.5,24.5 parent: 1 - - uid: 20663 + - uid: 21248 components: - type: Transform - pos: 21.5,-23.5 + pos: -11.5,24.5 parent: 1 - - uid: 20664 + - uid: 21249 components: - type: Transform - pos: 22.5,-23.5 + pos: -10.5,24.5 parent: 1 - - uid: 20665 + - uid: 21250 components: - type: Transform - pos: 23.5,-23.5 + pos: -9.5,24.5 parent: 1 - - uid: 20666 + - uid: 21251 components: - type: Transform - pos: 23.5,-24.5 + pos: -8.5,24.5 parent: 1 - - uid: 20667 + - uid: 21252 components: - type: Transform - pos: 23.5,-25.5 + pos: -7.5,24.5 parent: 1 - - uid: 20668 + - uid: 21253 components: - type: Transform - pos: 23.5,-26.5 + pos: -6.5,24.5 parent: 1 - - uid: 20669 + - uid: 21254 components: - type: Transform - pos: 21.5,-26.5 + pos: -6.5,23.5 parent: 1 - - uid: 20670 + - uid: 21255 components: - type: Transform - pos: 22.5,-26.5 + pos: -5.5,23.5 parent: 1 - - uid: 20671 + - uid: 21256 components: - type: Transform - pos: 18.5,-28.5 + pos: -4.5,23.5 parent: 1 - - uid: 20672 + - uid: 21257 components: - type: Transform - pos: 18.5,-29.5 + pos: -4.5,24.5 parent: 1 - - uid: 20673 + - uid: 21258 components: - type: Transform - pos: 18.5,-30.5 + pos: -4.5,25.5 parent: 1 - - uid: 20674 + - uid: 21259 components: - type: Transform - pos: 18.5,-31.5 + pos: -4.5,26.5 parent: 1 - - uid: 20675 + - uid: 21260 components: - type: Transform - pos: 18.5,-32.5 + pos: -4.5,27.5 parent: 1 - - uid: 20676 + - uid: 21262 components: - type: Transform - pos: 18.5,-33.5 + pos: -15.5,16.5 parent: 1 - - uid: 20677 + - uid: 21263 components: - type: Transform - pos: 17.5,-33.5 + pos: -14.5,16.5 parent: 1 - - uid: 20678 + - uid: 21264 components: - type: Transform - pos: 16.5,-33.5 + pos: -14.5,15.5 parent: 1 - - uid: 20679 + - uid: 21265 components: - type: Transform - pos: 15.5,-33.5 + pos: -14.5,14.5 parent: 1 - - uid: 20680 + - uid: 21266 components: - type: Transform - pos: 15.5,-34.5 + pos: -14.5,13.5 parent: 1 - - uid: 20681 + - uid: 21267 components: - type: Transform - pos: 15.5,-35.5 + pos: -14.5,12.5 parent: 1 - - uid: 20682 + - uid: 21268 components: - type: Transform - pos: 15.5,-36.5 + pos: -14.5,11.5 parent: 1 - - uid: 20683 + - uid: 21269 components: - type: Transform - pos: 15.5,-37.5 + pos: -14.5,10.5 parent: 1 - - uid: 20684 + - uid: 21270 components: - type: Transform - pos: 15.5,-38.5 + pos: -14.5,9.5 parent: 1 - - uid: 20685 + - uid: 21271 components: - type: Transform - pos: 14.5,-38.5 + pos: -13.5,9.5 parent: 1 - - uid: 20686 + - uid: 21272 components: - type: Transform - pos: 16.5,-36.5 + pos: -14.5,17.5 parent: 1 - - uid: 20687 + - uid: 21273 components: - type: Transform - pos: 17.5,-36.5 + pos: -13.5,17.5 parent: 1 - - uid: 20688 + - uid: 21274 components: - type: Transform - pos: 18.5,-36.5 + pos: -12.5,17.5 parent: 1 - - uid: 20689 + - uid: 21275 components: - type: Transform - pos: 19.5,-36.5 + pos: -11.5,17.5 parent: 1 - - uid: 20690 + - uid: 21276 components: - type: Transform - pos: 20.5,-36.5 + pos: -10.5,17.5 parent: 1 - - uid: 20691 + - uid: 21277 components: - type: Transform - pos: 19.5,-33.5 + pos: -9.5,17.5 parent: 1 - - uid: 20692 + - uid: 21278 components: - type: Transform - pos: 20.5,-33.5 + pos: -8.5,17.5 parent: 1 - - uid: 20693 + - uid: 21279 components: - type: Transform - pos: 21.5,-33.5 + pos: -7.5,17.5 parent: 1 - - uid: 20694 + - uid: 21281 components: - type: Transform - pos: 22.5,-33.5 + pos: -5.5,17.5 parent: 1 - - uid: 20695 + - uid: 21282 components: - type: Transform - pos: 23.5,-33.5 + pos: -4.5,17.5 parent: 1 - - uid: 20696 + - uid: 21283 components: - type: Transform - pos: 24.5,-33.5 + pos: -3.5,17.5 parent: 1 - - uid: 20697 + - uid: 21284 components: - type: Transform - pos: 25.5,-33.5 + pos: -2.5,17.5 parent: 1 - - uid: 20698 + - uid: 21285 components: - type: Transform - pos: 26.5,-33.5 + pos: -1.5,17.5 parent: 1 - - uid: 20699 + - uid: 21286 components: - type: Transform - pos: 27.5,-33.5 + pos: -0.5,17.5 parent: 1 - - uid: 20700 + - uid: 21287 components: - type: Transform - pos: 28.5,-33.5 + pos: 17.5,14.5 parent: 1 - - uid: 20701 + - uid: 21288 components: - type: Transform - pos: 29.5,-33.5 + pos: 16.5,14.5 parent: 1 - - uid: 20702 + - uid: 21289 components: - type: Transform - pos: 19.5,-30.5 + pos: 15.5,14.5 parent: 1 - - uid: 20703 + - uid: 21290 components: - type: Transform - pos: 20.5,-30.5 + pos: 14.5,14.5 parent: 1 - - uid: 20704 + - uid: 21291 components: - type: Transform - pos: 22.5,-30.5 + pos: 13.5,14.5 parent: 1 - - uid: 20705 + - uid: 21292 components: - type: Transform - pos: 21.5,-30.5 + pos: 13.5,13.5 parent: 1 - - uid: 20706 + - uid: 21293 components: - type: Transform - pos: 24.5,-26.5 + pos: 13.5,12.5 parent: 1 - - uid: 20707 + - uid: 21294 components: - type: Transform - pos: 25.5,-26.5 + pos: 13.5,11.5 parent: 1 - - uid: 20708 + - uid: 21295 components: - type: Transform - pos: 26.5,-26.5 + pos: 13.5,15.5 parent: 1 - - uid: 20709 + - uid: 21296 components: - type: Transform - pos: 27.5,-26.5 + pos: 13.5,9.5 parent: 1 - - uid: 20710 + - uid: 21297 components: - type: Transform - pos: 28.5,-26.5 + pos: 13.5,10.5 parent: 1 - - uid: 20711 + - uid: 21298 components: - type: Transform - pos: 29.5,-26.5 + pos: 13.5,16.5 parent: 1 - - uid: 20712 + - uid: 21299 components: - type: Transform - pos: 14.5,-27.5 + pos: 13.5,21.5 parent: 1 - - uid: 20713 + - uid: 21304 components: - type: Transform - pos: 14.5,-28.5 + pos: 13.5,20.5 parent: 1 - - uid: 20714 + - uid: 21305 components: - type: Transform - pos: 14.5,-29.5 + pos: 13.5,17.5 parent: 1 - - uid: 20715 + - uid: 21306 components: - type: Transform - pos: 13.5,-29.5 + pos: 13.5,19.5 parent: 1 - - uid: 20716 + - uid: 21307 components: - type: Transform - pos: 12.5,-29.5 + pos: 13.5,18.5 parent: 1 - - uid: 20717 + - uid: 21308 components: - type: Transform - pos: 11.5,-29.5 + pos: 13.5,22.5 parent: 1 - - uid: 20718 + - uid: 21309 components: - type: Transform - pos: 11.5,-30.5 + pos: 12.5,17.5 parent: 1 - - uid: 20719 + - uid: 21310 components: - type: Transform - pos: 11.5,-31.5 + pos: 11.5,17.5 parent: 1 - - uid: 20720 + - uid: 21311 components: - type: Transform - pos: 11.5,-32.5 + pos: 10.5,17.5 parent: 1 - - uid: 20721 + - uid: 21314 components: - type: Transform - pos: 11.5,-33.5 + pos: 12.5,14.5 parent: 1 - - uid: 20722 + - uid: 21323 components: - type: Transform - pos: 11.5,-34.5 + pos: 17.5,15.5 parent: 1 - - uid: 20723 + - uid: 21324 components: - type: Transform - pos: 11.5,-35.5 + pos: 17.5,16.5 parent: 1 - - uid: 20724 + - uid: 21325 components: - type: Transform - pos: 11.5,-36.5 + pos: 17.5,17.5 parent: 1 - - uid: 20725 + - uid: 21326 components: - type: Transform - pos: 11.5,-37.5 + pos: 17.5,18.5 parent: 1 - - uid: 20726 + - uid: 21395 components: - type: Transform - pos: 11.5,-38.5 + pos: -55.5,-41.5 parent: 1 - - uid: 20727 + - uid: 21465 components: - type: Transform - pos: 11.5,-39.5 + pos: -19.5,7.5 parent: 1 - - uid: 20728 + - uid: 21466 components: - type: Transform - pos: 11.5,-40.5 + pos: -19.5,6.5 parent: 1 - - uid: 20729 + - uid: 21467 components: - type: Transform - pos: 11.5,-41.5 + pos: -19.5,5.5 parent: 1 - - uid: 20730 + - uid: 21468 components: - type: Transform - pos: 10.5,-41.5 + pos: -20.5,5.5 parent: 1 - - uid: 20731 + - uid: 21469 components: - type: Transform - pos: 10.5,-42.5 + pos: -21.5,5.5 parent: 1 - - uid: 20732 + - uid: 21470 components: - type: Transform - pos: 9.5,-42.5 + pos: -22.5,5.5 parent: 1 - - uid: 20733 + - uid: 21471 components: - type: Transform - pos: 8.5,-42.5 + pos: -22.5,4.5 parent: 1 - - uid: 20734 + - uid: 21472 components: - type: Transform - pos: 7.5,-42.5 + pos: -22.5,3.5 parent: 1 - - uid: 20735 + - uid: 21473 components: - type: Transform - pos: 6.5,-42.5 + pos: -22.5,2.5 parent: 1 - - uid: 20736 + - uid: 21474 components: - type: Transform - pos: 5.5,-42.5 + pos: -21.5,2.5 parent: 1 - - uid: 20737 + - uid: 21475 components: - type: Transform - pos: 4.5,-42.5 + pos: -20.5,2.5 parent: 1 - - uid: 20738 + - uid: 21476 components: - type: Transform - pos: 3.5,-42.5 + pos: -19.5,2.5 parent: 1 - - uid: 20739 + - uid: 21477 components: - type: Transform - pos: 2.5,-42.5 + pos: -18.5,2.5 parent: 1 - - uid: 20740 + - uid: 21478 components: - type: Transform - pos: 1.5,-42.5 + pos: -19.5,1.5 parent: 1 - - uid: 20741 + - uid: 21479 components: - type: Transform - pos: 0.5,-42.5 + pos: -19.5,0.5 parent: 1 - - uid: 20742 + - uid: 21480 components: - type: Transform - pos: -0.5,-42.5 + pos: -19.5,-0.5 parent: 1 - - uid: 20743 + - uid: 21481 components: - type: Transform - pos: -3.5,-44.5 + pos: -19.5,-1.5 parent: 1 - - uid: 20744 + - uid: 21482 components: - type: Transform - pos: -3.5,-45.5 + pos: -19.5,-2.5 parent: 1 - - uid: 20745 + - uid: 21483 components: - type: Transform - pos: -4.5,-45.5 + pos: -19.5,-3.5 parent: 1 - - uid: 20746 + - uid: 21484 components: - type: Transform - pos: -5.5,-45.5 + pos: -19.5,-4.5 parent: 1 - - uid: 20747 + - uid: 21485 components: - type: Transform - pos: -5.5,-44.5 + pos: -19.5,-5.5 parent: 1 - - uid: 20748 + - uid: 21486 components: - type: Transform - pos: -5.5,-43.5 + pos: -19.5,-6.5 parent: 1 - - uid: 20749 + - uid: 21487 components: - type: Transform - pos: -5.5,-42.5 + pos: -19.5,-7.5 parent: 1 - - uid: 20750 + - uid: 21488 components: - type: Transform - pos: -6.5,-42.5 + pos: -18.5,-6.5 parent: 1 - - uid: 20751 + - uid: 21489 components: - type: Transform - pos: -3.5,-46.5 + pos: -17.5,-6.5 parent: 1 - - uid: 20752 + - uid: 21490 components: - type: Transform - pos: -2.5,-46.5 + pos: -17.5,-5.5 parent: 1 - - uid: 20753 + - uid: 21491 components: - type: Transform - pos: -1.5,-46.5 + pos: -20.5,-6.5 parent: 1 - - uid: 20754 + - uid: 21492 components: - type: Transform - pos: -0.5,-46.5 + pos: -20.5,-1.5 parent: 1 - - uid: 20755 + - uid: 21493 components: - type: Transform - pos: 0.5,-46.5 + pos: -18.5,-1.5 parent: 1 - - uid: 20756 + - uid: 21494 components: - type: Transform - pos: 1.5,-46.5 + pos: -18.5,5.5 parent: 1 - - uid: 20757 + - uid: 21495 components: - type: Transform - pos: 2.5,-46.5 + pos: -17.5,5.5 parent: 1 - - uid: 20758 + - uid: 21496 components: - type: Transform - pos: 3.5,-46.5 + pos: -17.5,2.5 parent: 1 - - uid: 20759 + - uid: 21497 components: - type: Transform - pos: 4.5,-46.5 + pos: -17.5,3.5 parent: 1 - - uid: 20760 + - uid: 21498 components: - type: Transform - pos: 5.5,-46.5 + pos: -22.5,1.5 parent: 1 - - uid: 20761 + - uid: 21499 components: - type: Transform - pos: 6.5,-46.5 + pos: -23.5,1.5 parent: 1 - - uid: 20762 + - uid: 21500 components: - type: Transform - pos: 7.5,-46.5 + pos: -16.5,-16.5 parent: 1 - - uid: 20763 + - uid: 21501 components: - type: Transform - pos: 8.5,-46.5 + pos: -16.5,-15.5 parent: 1 - - uid: 20764 + - uid: 21502 components: - type: Transform - pos: 9.5,-46.5 + pos: -16.5,-14.5 parent: 1 - - uid: 20765 + - uid: 21503 components: - type: Transform - pos: 10.5,-46.5 + pos: -17.5,-14.5 parent: 1 - - uid: 20766 + - uid: 21504 components: - type: Transform - pos: 11.5,-46.5 + pos: -18.5,-14.5 parent: 1 - - uid: 20767 + - uid: 21505 components: - type: Transform - pos: 12.5,-46.5 + pos: -19.5,-14.5 parent: 1 - - uid: 20768 + - uid: 21506 components: - type: Transform - pos: 13.5,-46.5 + pos: -20.5,-14.5 parent: 1 - - uid: 20769 + - uid: 21507 components: - type: Transform - pos: 14.5,-46.5 + pos: -21.5,-14.5 parent: 1 - - uid: 20773 + - uid: 21508 components: - type: Transform - pos: -3.5,-47.5 + pos: -21.5,-13.5 parent: 1 - - uid: 20774 + - uid: 21509 components: - type: Transform - pos: -4.5,-47.5 + pos: -22.5,-13.5 parent: 1 - - uid: 20775 + - uid: 21510 components: - type: Transform - pos: -5.5,-47.5 + pos: -22.5,-12.5 parent: 1 - - uid: 20776 + - uid: 21511 components: - type: Transform - pos: -6.5,-47.5 + pos: -21.5,-12.5 parent: 1 - - uid: 20777 + - uid: 21512 components: - type: Transform - pos: -7.5,-47.5 + pos: -20.5,-12.5 parent: 1 - - uid: 20778 + - uid: 21513 components: - type: Transform - pos: -8.5,-47.5 + pos: -19.5,-12.5 parent: 1 - - uid: 20779 + - uid: 21514 components: - type: Transform - pos: -9.5,-47.5 + pos: -18.5,-12.5 parent: 1 - - uid: 20780 + - uid: 21515 components: - type: Transform - pos: -10.5,-47.5 + pos: -17.5,-12.5 parent: 1 - - uid: 20781 + - uid: 21516 components: - type: Transform - pos: -11.5,-47.5 + pos: -16.5,-12.5 parent: 1 - - uid: 20782 + - uid: 21517 components: - type: Transform - pos: -12.5,-47.5 + pos: -15.5,-12.5 parent: 1 - - uid: 20783 + - uid: 21518 components: - type: Transform - pos: -13.5,-47.5 + pos: -14.5,-12.5 parent: 1 - - uid: 20784 + - uid: 21519 components: - type: Transform - pos: -14.5,-47.5 + pos: -11.5,-21.5 parent: 1 - - uid: 20785 + - uid: 21520 components: - type: Transform - pos: -6.5,-43.5 + pos: -12.5,-21.5 parent: 1 - - uid: 20786 + - uid: 21521 components: - type: Transform - pos: -7.5,-43.5 + pos: -12.5,-20.5 parent: 1 - - uid: 20787 + - uid: 21522 components: - type: Transform - pos: -8.5,-43.5 + pos: -12.5,-19.5 parent: 1 - - uid: 20788 + - uid: 21523 components: - type: Transform - pos: -8.5,-42.5 + pos: -12.5,-18.5 parent: 1 - - uid: 20789 + - uid: 21524 components: - type: Transform - pos: -15.5,-47.5 + pos: -11.5,-22.5 parent: 1 - - uid: 20790 + - uid: 21525 components: - type: Transform - pos: -15.5,-46.5 + pos: -0.5,19.5 parent: 1 - - uid: 20791 + - uid: 21526 components: - type: Transform - pos: -15.5,-45.5 + pos: -0.5,20.5 parent: 1 - - uid: 20792 + - uid: 21528 components: - type: Transform - pos: -15.5,-44.5 + pos: -9.5,-21.5 parent: 1 - - uid: 20793 + - uid: 21529 components: - type: Transform - pos: -15.5,-43.5 + pos: -12.5,-26.5 parent: 1 - - uid: 20794 + - uid: 21530 components: - type: Transform - pos: -15.5,-42.5 + pos: -12.5,-27.5 parent: 1 - - uid: 20795 + - uid: 21531 components: - type: Transform - pos: -15.5,-41.5 + pos: -12.5,-25.5 parent: 1 - - uid: 20796 + - uid: 21532 components: - type: Transform - pos: -15.5,-40.5 + pos: -10.5,-21.5 parent: 1 - - uid: 20797 + - uid: 21533 components: - type: Transform - pos: -15.5,-39.5 + pos: -9.5,-20.5 parent: 1 - - uid: 20798 + - uid: 21534 components: - type: Transform - pos: -15.5,-38.5 + pos: -9.5,-19.5 parent: 1 - - uid: 20799 + - uid: 21535 components: - type: Transform - pos: -15.5,-37.5 + pos: -9.5,-22.5 parent: 1 - - uid: 20800 + - uid: 21536 components: - type: Transform - pos: -15.5,-36.5 + pos: -9.5,-23.5 parent: 1 - - uid: 20801 + - uid: 21537 components: - type: Transform - pos: -15.5,-35.5 + pos: -8.5,-23.5 parent: 1 - - uid: 20802 + - uid: 21538 components: - type: Transform - pos: -15.5,-34.5 + pos: -7.5,-23.5 parent: 1 - - uid: 20803 + - uid: 21539 components: - type: Transform - pos: -16.5,-34.5 + pos: -6.5,-23.5 parent: 1 - - uid: 20804 + - uid: 21540 components: - type: Transform - pos: -16.5,-33.5 + pos: -5.5,-23.5 parent: 1 - - uid: 20805 + - uid: 21541 components: - type: Transform - pos: -16.5,-32.5 + pos: -5.5,-24.5 parent: 1 - - uid: 20806 + - uid: 21542 components: - type: Transform - pos: -16.5,-31.5 + pos: -4.5,-24.5 parent: 1 - - uid: 20807 + - uid: 21543 components: - type: Transform - pos: -16.5,-30.5 + pos: -4.5,-25.5 parent: 1 - - uid: 20808 + - uid: 21544 components: - type: Transform - pos: -16.5,-29.5 + pos: -4.5,-26.5 parent: 1 - - uid: 20809 + - uid: 21545 components: - type: Transform - pos: -16.5,-28.5 + pos: -3.5,-26.5 parent: 1 - - uid: 20810 + - uid: 21546 components: - type: Transform - pos: -16.5,-27.5 + pos: -1.5,-26.5 parent: 1 - - uid: 20811 + - uid: 21547 components: - type: Transform - pos: -16.5,-26.5 + pos: -2.5,-26.5 parent: 1 - - uid: 20812 + - uid: 21548 components: - type: Transform - pos: -17.5,-26.5 + pos: -0.5,-26.5 parent: 1 - - uid: 20813 + - uid: 21549 components: - type: Transform - pos: -18.5,-26.5 + pos: 0.5,-26.5 parent: 1 - - uid: 20814 + - uid: 21550 components: - type: Transform - pos: -19.5,-26.5 + pos: 1.5,-26.5 parent: 1 - - uid: 20815 + - uid: 21551 components: - type: Transform - pos: -20.5,-26.5 + pos: 2.5,-26.5 parent: 1 - - uid: 20816 + - uid: 21552 components: - type: Transform - pos: -21.5,-26.5 + pos: 3.5,-26.5 parent: 1 - - uid: 20817 + - uid: 21553 components: - type: Transform - pos: -22.5,-26.5 + pos: 4.5,-26.5 parent: 1 - - uid: 20818 + - uid: 21554 components: - type: Transform - pos: -23.5,-26.5 + pos: 4.5,-25.5 parent: 1 - - uid: 20819 + - uid: 21555 components: - type: Transform - pos: -24.5,-26.5 + pos: 5.5,-25.5 parent: 1 - - uid: 20820 + - uid: 21556 components: - type: Transform - pos: -25.5,-26.5 + pos: 5.5,-24.5 parent: 1 - - uid: 20821 + - uid: 21557 components: - type: Transform - pos: -26.5,-26.5 + pos: 5.5,-23.5 parent: 1 - - uid: 20822 + - uid: 21558 components: - type: Transform - pos: -27.5,-26.5 + pos: 6.5,-23.5 parent: 1 - - uid: 20823 + - uid: 21559 components: - type: Transform - pos: -28.5,-26.5 + pos: 7.5,-23.5 parent: 1 - - uid: 20824 + - uid: 21560 components: - type: Transform - pos: -29.5,-26.5 + pos: 8.5,-23.5 parent: 1 - - uid: 20825 + - uid: 21561 components: - type: Transform - pos: -30.5,-26.5 + pos: 8.5,-24.5 parent: 1 - - uid: 20826 + - uid: 21562 components: - type: Transform - pos: -31.5,-26.5 + pos: 9.5,-23.5 parent: 1 - - uid: 20827 + - uid: 21563 components: - type: Transform - pos: -32.5,-26.5 + pos: 10.5,-23.5 parent: 1 - - uid: 20828 + - uid: 21564 components: - type: Transform - pos: -33.5,-26.5 + pos: 10.5,-24.5 parent: 1 - - uid: 20829 + - uid: 21565 components: - type: Transform - pos: -34.5,-26.5 + pos: 9.5,-22.5 parent: 1 - - uid: 20830 + - uid: 21566 components: - type: Transform - pos: -35.5,-26.5 + pos: 9.5,-21.5 parent: 1 - - uid: 20831 + - uid: 21567 components: - type: Transform - pos: -36.5,-26.5 + pos: 9.5,-20.5 parent: 1 - - uid: 20832 + - uid: 21568 components: - type: Transform - pos: -37.5,-26.5 + pos: 9.5,-19.5 parent: 1 - - uid: 20833 + - uid: 21569 components: - type: Transform - pos: -38.5,-26.5 + pos: 8.5,-19.5 parent: 1 - - uid: 20834 + - uid: 21570 components: - type: Transform - pos: -34.5,-27.5 + pos: 8.5,-18.5 parent: 1 - - uid: 20835 + - uid: 21571 components: - type: Transform - pos: -30.5,-27.5 + pos: 9.5,-18.5 parent: 1 - - uid: 20836 + - uid: 21574 components: - type: Transform - pos: -39.5,-26.5 + pos: 24.5,6.5 parent: 1 - - uid: 20837 + - uid: 21578 components: - type: Transform - pos: -40.5,-26.5 + pos: -43.5,-30.5 parent: 1 - - uid: 20838 + - uid: 21581 components: - type: Transform - pos: -40.5,-25.5 + pos: -42.5,-32.5 parent: 1 - - uid: 20839 + - uid: 21684 components: - type: Transform - pos: -40.5,-24.5 + pos: 2.5,-20.5 parent: 1 - - uid: 20840 + - uid: 21685 components: - type: Transform - pos: -40.5,-23.5 + pos: 1.5,-20.5 parent: 1 - - uid: 20841 + - uid: 21686 components: - type: Transform - pos: -40.5,-22.5 + pos: 1.5,-21.5 parent: 1 - - uid: 20842 + - uid: 21687 components: - type: Transform - pos: -40.5,-21.5 + pos: 0.5,-21.5 parent: 1 - - uid: 20843 + - uid: 21688 components: - type: Transform - pos: -40.5,-20.5 + pos: -0.5,-21.5 parent: 1 - - uid: 20844 + - uid: 21689 components: - type: Transform - pos: -39.5,-20.5 + pos: -1.5,-21.5 parent: 1 - - uid: 20852 + - uid: 21691 components: - type: Transform - pos: -26.5,27.5 + pos: -2.5,-21.5 parent: 1 - - uid: 20853 + - uid: 21692 components: - type: Transform - pos: -25.5,27.5 + pos: -2.5,-20.5 parent: 1 - - uid: 20854 + - uid: 21693 components: - type: Transform - pos: -24.5,27.5 + pos: -2.5,-19.5 parent: 1 - - uid: 20855 + - uid: 21694 components: - type: Transform - pos: -23.5,27.5 + pos: -3.5,-19.5 parent: 1 - - uid: 20856 + - uid: 21695 components: - type: Transform - pos: -22.5,27.5 + pos: -4.5,-19.5 parent: 1 - - uid: 20857 + - uid: 21696 components: - type: Transform - pos: -21.5,27.5 + pos: -4.5,-18.5 parent: 1 - - uid: 20858 + - uid: 21697 components: - type: Transform - pos: -21.5,26.5 + pos: 1.5,-19.5 parent: 1 - - uid: 20859 + - uid: 21698 components: - type: Transform - pos: -24.5,26.5 + pos: 2.5,-19.5 parent: 1 - - uid: 20860 + - uid: 21699 components: - type: Transform - pos: -24.5,28.5 + pos: 3.5,-19.5 parent: 1 - - uid: 20861 + - uid: 21700 components: - type: Transform - pos: -24.5,29.5 + pos: 3.5,-18.5 parent: 1 - - uid: 20862 + - uid: 21701 components: - type: Transform - pos: -24.5,30.5 + pos: -5.5,-18.5 parent: 1 - - uid: 20863 + - uid: 21702 components: - type: Transform - pos: -24.5,31.5 + pos: -5.5,-19.5 parent: 1 - - uid: 20864 + - uid: 21703 components: - type: Transform - pos: -21.5,28.5 + pos: 4.5,-18.5 parent: 1 - - uid: 20865 + - uid: 21704 components: - type: Transform - pos: -21.5,29.5 + pos: 4.5,-19.5 parent: 1 - - uid: 20866 + - uid: 21705 components: - type: Transform - pos: -21.5,30.5 + pos: -2.5,-12.5 parent: 1 - - uid: 20867 + - uid: 21706 components: - type: Transform - pos: -21.5,31.5 + pos: -1.5,-12.5 parent: 1 - - uid: 21020 + - uid: 21707 components: - type: Transform - pos: -28.5,11.5 + pos: -1.5,-11.5 parent: 1 - - uid: 21021 + - uid: 21708 components: - type: Transform - pos: -29.5,11.5 + pos: -1.5,-10.5 parent: 1 - - uid: 21022 + - uid: 21709 components: - type: Transform - pos: -29.5,10.5 + pos: -1.5,-9.5 parent: 1 - - uid: 21023 + - uid: 21710 components: - type: Transform - pos: -30.5,10.5 + pos: -1.5,-8.5 parent: 1 - - uid: 21024 + - uid: 21711 components: - type: Transform - pos: -31.5,10.5 + pos: -1.5,-7.5 parent: 1 - - uid: 21025 + - uid: 21712 components: - type: Transform - pos: -32.5,10.5 + pos: -1.5,-6.5 parent: 1 - - uid: 21026 + - uid: 21713 components: - type: Transform - pos: -32.5,11.5 + pos: -2.5,-6.5 parent: 1 - - uid: 21027 + - uid: 21714 components: - type: Transform - pos: -32.5,12.5 + pos: -3.5,-6.5 parent: 1 - - uid: 21028 + - uid: 21715 components: - type: Transform - pos: -32.5,13.5 + pos: -4.5,-6.5 parent: 1 - - uid: 21029 + - uid: 21716 components: - type: Transform - pos: -25.5,11.5 + pos: -5.5,-6.5 parent: 1 - - uid: 21030 + - uid: 21717 components: - type: Transform - pos: -25.5,10.5 + pos: -6.5,-6.5 parent: 1 - - uid: 21031 + - uid: 21718 components: - type: Transform - pos: -23.5,10.5 + pos: -7.5,-6.5 parent: 1 - - uid: 21032 + - uid: 21719 components: - type: Transform - pos: -24.5,10.5 + pos: -8.5,-6.5 parent: 1 - - uid: 21033 + - uid: 21720 components: - type: Transform - pos: -22.5,10.5 + pos: -9.5,-6.5 parent: 1 - - uid: 21034 + - uid: 21721 components: - type: Transform - pos: -21.5,10.5 + pos: -10.5,-6.5 parent: 1 - - uid: 21035 + - uid: 21722 components: - type: Transform - pos: -20.5,10.5 + pos: -11.5,-6.5 parent: 1 - - uid: 21036 + - uid: 21723 components: - type: Transform - pos: -19.5,10.5 + pos: -11.5,-7.5 parent: 1 - - uid: 21037 + - uid: 21724 components: - type: Transform - pos: -18.5,10.5 + pos: -11.5,-8.5 parent: 1 - - uid: 21038 + - uid: 21725 components: - type: Transform - pos: -18.5,11.5 + pos: -11.5,-9.5 parent: 1 - - uid: 21039 + - uid: 21726 components: - type: Transform - pos: -28.5,8.5 + pos: -11.5,-10.5 parent: 1 - - uid: 21040 + - uid: 21727 components: - type: Transform - pos: -28.5,7.5 + pos: -11.5,-11.5 parent: 1 - - uid: 21041 + - uid: 21728 components: - type: Transform - pos: -28.5,6.5 + pos: -11.5,-12.5 parent: 1 - - uid: 21042 + - uid: 21729 components: - type: Transform - pos: -28.5,5.5 + pos: -11.5,-13.5 parent: 1 - - uid: 21043 + - uid: 21730 components: - type: Transform - pos: -28.5,4.5 + pos: -11.5,-14.5 parent: 1 - - uid: 21044 + - uid: 21731 components: - type: Transform - pos: -28.5,3.5 + pos: -12.5,-6.5 parent: 1 - - uid: 21045 + - uid: 21732 components: - type: Transform - pos: -28.5,2.5 + pos: -13.5,-6.5 parent: 1 - - uid: 21046 + - uid: 21733 components: - type: Transform - pos: -28.5,1.5 + pos: -13.5,-5.5 parent: 1 - - uid: 21047 + - uid: 21734 components: - type: Transform - pos: -27.5,1.5 + pos: -13.5,-4.5 parent: 1 - - uid: 21048 + - uid: 21735 components: - type: Transform - pos: -27.5,0.5 + pos: -13.5,-3.5 parent: 1 - - uid: 21049 + - uid: 21736 components: - type: Transform - pos: -27.5,-0.5 + pos: -13.5,-2.5 parent: 1 - - uid: 21050 + - uid: 21737 components: - type: Transform - pos: -27.5,-1.5 + pos: -13.5,-1.5 parent: 1 - - uid: 21051 + - uid: 21738 components: - type: Transform - pos: -26.5,-1.5 + pos: -13.5,-0.5 parent: 1 - - uid: 21052 + - uid: 21739 components: - type: Transform - pos: -25.5,-1.5 + pos: -13.5,0.5 parent: 1 - - uid: 21053 + - uid: 21740 components: - type: Transform - pos: -25.5,-2.5 + pos: -13.5,1.5 parent: 1 - - uid: 21054 + - uid: 21741 components: - type: Transform - pos: -25.5,-3.5 + pos: -13.5,2.5 parent: 1 - - uid: 21055 + - uid: 21742 components: - type: Transform - pos: -25.5,-4.5 + pos: -13.5,3.5 parent: 1 - - uid: 21056 + - uid: 21743 components: - type: Transform - pos: -25.5,-5.5 + pos: -13.5,4.5 parent: 1 - - uid: 21057 + - uid: 21744 components: - type: Transform - pos: -25.5,-6.5 + pos: -13.5,5.5 parent: 1 - - uid: 21058 + - uid: 21745 components: - type: Transform - pos: -25.5,-7.5 + pos: -12.5,5.5 parent: 1 - - uid: 21059 + - uid: 21746 components: - type: Transform - pos: -26.5,-7.5 + pos: -9.5,6.5 parent: 1 - - uid: 21060 + - uid: 21747 components: - type: Transform - pos: -26.5,-4.5 + pos: -10.5,6.5 parent: 1 - - uid: 21061 + - uid: 21748 components: - type: Transform - pos: -27.5,-16.5 + pos: -8.5,6.5 parent: 1 - - uid: 21062 + - uid: 21749 components: - type: Transform - pos: -27.5,-15.5 + pos: -6.5,6.5 parent: 1 - - uid: 21063 + - uid: 21750 components: - type: Transform - pos: -27.5,-14.5 + pos: -7.5,6.5 parent: 1 - - uid: 21064 + - uid: 21751 components: - type: Transform - pos: -26.5,-14.5 + pos: -5.5,6.5 parent: 1 - - uid: 21065 + - uid: 21752 components: - type: Transform - pos: -26.5,-16.5 + pos: -4.5,6.5 parent: 1 - - uid: 21066 + - uid: 21753 components: - type: Transform - pos: -25.5,-16.5 + pos: -3.5,6.5 parent: 1 - - uid: 21067 + - uid: 21754 components: - type: Transform - pos: -25.5,-17.5 + pos: -2.5,6.5 parent: 1 - - uid: 21068 + - uid: 21755 components: - type: Transform - pos: -26.5,-13.5 + pos: -1.5,6.5 parent: 1 - - uid: 21069 + - uid: 21756 components: - type: Transform - pos: -26.5,-12.5 + pos: -0.5,6.5 parent: 1 - - uid: 21070 + - uid: 21757 components: - type: Transform - pos: -26.5,-11.5 + pos: 0.5,6.5 parent: 1 - - uid: 21071 + - uid: 21758 components: - type: Transform - pos: -27.5,-11.5 + pos: 1.5,6.5 parent: 1 - - uid: 21072 + - uid: 21759 components: - type: Transform - pos: -28.5,-11.5 + pos: 2.5,6.5 parent: 1 - - uid: 21073 + - uid: 21760 components: - type: Transform - pos: -29.5,-11.5 + pos: 3.5,6.5 parent: 1 - - uid: 21074 + - uid: 21761 components: - type: Transform - pos: -30.5,-11.5 + pos: 4.5,6.5 parent: 1 - - uid: 21075 + - uid: 21762 components: - type: Transform - pos: -31.5,-11.5 + pos: 5.5,6.5 parent: 1 - - uid: 21076 + - uid: 21763 components: - type: Transform - pos: -32.5,-11.5 + pos: 6.5,6.5 parent: 1 - - uid: 21077 + - uid: 21764 components: - type: Transform - pos: -33.5,-11.5 + pos: 7.5,6.5 parent: 1 - - uid: 21078 + - uid: 21765 components: - type: Transform - pos: -28.5,-14.5 + pos: 8.5,6.5 parent: 1 - - uid: 21079 + - uid: 21766 components: - type: Transform - pos: -29.5,-14.5 + pos: 9.5,6.5 parent: 1 - - uid: 21080 + - uid: 21767 components: - type: Transform - pos: -29.5,-15.5 + pos: 10.5,6.5 parent: 1 - - uid: 21081 + - uid: 21768 components: - type: Transform - pos: -29.5,-16.5 + pos: 11.5,6.5 parent: 1 - - uid: 21082 + - uid: 21769 components: - type: Transform - pos: -29.5,-17.5 + pos: 12.5,6.5 parent: 1 - - uid: 21083 + - uid: 21770 components: - type: Transform - pos: -29.5,-18.5 + pos: 12.5,5.5 parent: 1 - - uid: 21084 + - uid: 21771 components: - type: Transform - pos: -29.5,-19.5 + pos: 12.5,4.5 parent: 1 - - uid: 21085 + - uid: 21772 components: - type: Transform - pos: -31.5,-19.5 + pos: 12.5,3.5 parent: 1 - - uid: 21086 + - uid: 21773 components: - type: Transform - pos: -30.5,-19.5 + pos: 12.5,2.5 parent: 1 - - uid: 21087 + - uid: 21774 components: - type: Transform - pos: -32.5,-19.5 + pos: 12.5,1.5 parent: 1 - - uid: 21088 + - uid: 21775 components: - type: Transform - pos: -33.5,-19.5 + pos: 12.5,0.5 parent: 1 - - uid: 21089 + - uid: 21776 components: - type: Transform - pos: -33.5,-12.5 + pos: 12.5,-0.5 parent: 1 - - uid: 21090 + - uid: 21777 components: - type: Transform - pos: -33.5,-13.5 + pos: 12.5,-1.5 parent: 1 - - uid: 21091 + - uid: 21778 components: - type: Transform - pos: -34.5,-11.5 + pos: 12.5,-2.5 parent: 1 - - uid: 21092 + - uid: 21779 components: - type: Transform - pos: -35.5,-11.5 + pos: 12.5,-3.5 parent: 1 - - uid: 21093 + - uid: 21780 components: - type: Transform - pos: -33.5,-14.5 + pos: 12.5,-4.5 parent: 1 - - uid: 21094 + - uid: 21781 components: - type: Transform - pos: -33.5,-15.5 + pos: 12.5,-5.5 parent: 1 - - uid: 21095 + - uid: 21782 components: - type: Transform - pos: -34.5,-15.5 + pos: 12.5,-6.5 parent: 1 - - uid: 21096 + - uid: 21783 components: - type: Transform - pos: -35.5,-15.5 + pos: 12.5,-7.5 parent: 1 - - uid: 21097 + - uid: 21784 components: - type: Transform - pos: -32.5,-15.5 + pos: 12.5,-8.5 parent: 1 - - uid: 21098 + - uid: 21785 components: - type: Transform - pos: -31.5,-15.5 + pos: 11.5,-8.5 parent: 1 - - uid: 21099 + - uid: 21786 components: - type: Transform - pos: -30.5,-15.5 + pos: 10.5,-8.5 parent: 1 - - uid: 21100 + - uid: 21787 components: - type: Transform - pos: -25.5,-22.5 + pos: 10.5,-9.5 parent: 1 - - uid: 21101 + - uid: 21788 components: - type: Transform - pos: -25.5,-23.5 + pos: 10.5,-10.5 parent: 1 - - uid: 21102 + - uid: 21789 components: - type: Transform - pos: -24.5,-23.5 + pos: 10.5,-11.5 parent: 1 - - uid: 21103 + - uid: 21790 components: - type: Transform - pos: -23.5,-23.5 + pos: 10.5,-12.5 parent: 1 - - uid: 21104 + - uid: 21791 components: - type: Transform - pos: -26.5,-23.5 + pos: 10.5,-13.5 parent: 1 - - uid: 21105 + - uid: 21792 components: - type: Transform - pos: -27.5,-23.5 + pos: 10.5,-14.5 parent: 1 - - uid: 21106 + - uid: 21793 components: - type: Transform - pos: -28.5,-23.5 + pos: -11.5,6.5 parent: 1 - - uid: 21107 + - uid: 21794 components: - type: Transform - pos: -29.5,-23.5 + pos: -12.5,6.5 parent: 1 - - uid: 21108 + - uid: 21795 components: - type: Transform - pos: -30.5,-23.5 + pos: -10.5,7.5 parent: 1 - - uid: 21109 + - uid: 21796 components: - type: Transform - pos: -31.5,-23.5 + pos: -10.5,8.5 parent: 1 - - uid: 21110 + - uid: 21797 components: - type: Transform - pos: -32.5,-23.5 + pos: -10.5,9.5 parent: 1 - - uid: 21111 + - uid: 21798 components: - type: Transform - pos: -33.5,-23.5 + pos: -6.5,7.5 parent: 1 - - uid: 21112 + - uid: 21799 components: - type: Transform - pos: -34.5,-23.5 + pos: -6.5,8.5 parent: 1 - - uid: 21113 + - uid: 21800 components: - type: Transform - pos: -35.5,-23.5 + pos: -6.5,9.5 parent: 1 - - uid: 21114 + - uid: 21801 components: - type: Transform - pos: -36.5,-23.5 + pos: -2.5,7.5 parent: 1 - - uid: 21115 + - uid: 21802 components: - type: Transform - pos: -27.5,-22.5 + pos: -2.5,8.5 parent: 1 - - uid: 21116 + - uid: 21803 components: - type: Transform - pos: -27.5,-21.5 + pos: -2.5,9.5 parent: 1 - - uid: 21117 + - uid: 21804 components: - type: Transform - pos: -26.5,-21.5 + pos: 1.5,7.5 parent: 1 - - uid: 21118 + - uid: 21805 components: - type: Transform - pos: -26.5,-20.5 + pos: 1.5,8.5 parent: 1 - - uid: 21119 + - uid: 21806 components: - type: Transform - pos: -25.5,-20.5 + pos: 1.5,9.5 parent: 1 - - uid: 21120 + - uid: 21807 components: - type: Transform - pos: -24.5,-20.5 + pos: 5.5,7.5 parent: 1 - - uid: 21121 + - uid: 21808 components: - type: Transform - pos: -23.5,-20.5 + pos: 5.5,8.5 parent: 1 - - uid: 21122 + - uid: 21809 components: - type: Transform - pos: -22.5,-20.5 + pos: 5.5,9.5 parent: 1 - - uid: 21131 + - uid: 21810 components: - type: Transform - pos: -31.5,0.5 + pos: 9.5,7.5 parent: 1 - - uid: 21132 + - uid: 21811 components: - type: Transform - pos: -32.5,0.5 + pos: 9.5,8.5 parent: 1 - - uid: 21133 + - uid: 21812 components: - type: Transform - pos: -33.5,0.5 + pos: 9.5,9.5 parent: 1 - - uid: 21134 + - uid: 21813 components: - type: Transform - pos: -33.5,1.5 + pos: -0.5,5.5 parent: 1 - - uid: 21135 + - uid: 21814 components: - type: Transform - pos: -33.5,2.5 + pos: -0.5,4.5 parent: 1 - - uid: 21136 + - uid: 21815 components: - type: Transform - pos: -33.5,3.5 + pos: -0.5,3.5 parent: 1 - - uid: 21137 + - uid: 21816 components: - type: Transform - pos: -33.5,4.5 + pos: -0.5,2.5 parent: 1 - - uid: 21138 + - uid: 21817 components: - type: Transform - pos: -33.5,5.5 + pos: -0.5,1.5 parent: 1 - - uid: 21139 + - uid: 21818 components: - type: Transform - pos: -33.5,6.5 + pos: -0.5,0.5 parent: 1 - - uid: 21149 + - uid: 21819 components: - type: Transform - pos: -33.5,-0.5 + pos: -0.5,-0.5 parent: 1 - - uid: 21150 + - uid: 21820 components: - type: Transform - pos: -33.5,-1.5 + pos: -0.5,-1.5 parent: 1 - - uid: 21151 + - uid: 21821 components: - type: Transform - pos: -33.5,-2.5 + pos: -0.5,-2.5 parent: 1 - - uid: 21152 + - uid: 21822 components: - type: Transform - pos: -33.5,-3.5 + pos: 2.5,-2.5 parent: 1 - - uid: 21153 + - uid: 21824 components: - type: Transform - pos: -32.5,-2.5 + pos: 1.5,-2.5 parent: 1 - - uid: 21154 + - uid: 21825 components: - type: Transform - pos: -33.5,-4.5 + pos: -4.5,-2.5 parent: 1 - - uid: 21155 + - uid: 21826 components: - type: Transform - pos: -33.5,-5.5 + pos: -5.5,-2.5 parent: 1 - - uid: 21156 + - uid: 21827 components: - type: Transform - pos: -33.5,-6.5 + pos: -6.5,-2.5 parent: 1 - - uid: 21157 + - uid: 21828 components: - type: Transform - pos: -33.5,-7.5 + pos: -7.5,-2.5 parent: 1 - - uid: 21158 + - uid: 21829 components: - type: Transform - pos: -32.5,-7.5 + pos: -8.5,-2.5 parent: 1 - - uid: 21159 + - uid: 21830 components: - type: Transform - pos: -31.5,-7.5 + pos: -9.5,-2.5 parent: 1 - - uid: 21160 + - uid: 21831 components: - type: Transform - pos: -34.5,-7.5 + pos: -9.5,-1.5 parent: 1 - - uid: 21161 + - uid: 21832 components: - type: Transform - pos: -35.5,-7.5 + pos: -9.5,-0.5 parent: 1 - - uid: 21162 + - uid: 21833 components: - type: Transform - pos: -36.5,-7.5 + pos: -9.5,0.5 parent: 1 - - uid: 21163 + - uid: 21834 components: - type: Transform - pos: -34.5,-4.5 + pos: -9.5,1.5 parent: 1 - - uid: 21164 + - uid: 21835 components: - type: Transform - pos: -35.5,-4.5 + pos: -9.5,2.5 parent: 1 - - uid: 21165 + - uid: 21836 components: - type: Transform - pos: -34.5,-0.5 + pos: -8.5,2.5 parent: 1 - - uid: 21166 + - uid: 21837 components: - type: Transform - pos: -35.5,-0.5 + pos: -7.5,2.5 parent: 1 - - uid: 21167 + - uid: 21838 components: - type: Transform - pos: -24.5,15.5 + pos: -6.5,2.5 parent: 1 - - uid: 21168 + - uid: 21839 components: - type: Transform - pos: -24.5,16.5 + pos: -5.5,2.5 parent: 1 - - uid: 21169 + - uid: 21840 components: - type: Transform - pos: -25.5,16.5 + pos: -4.5,2.5 parent: 1 - - uid: 21170 + - uid: 21841 components: - type: Transform - pos: -26.5,16.5 + pos: -4.5,1.5 parent: 1 - - uid: 21171 + - uid: 21842 components: - type: Transform - pos: -27.5,16.5 + pos: -4.5,0.5 parent: 1 - - uid: 21172 + - uid: 21843 components: - type: Transform - pos: -28.5,16.5 + pos: -4.5,-0.5 parent: 1 - - uid: 21173 + - uid: 21844 components: - type: Transform - pos: -29.5,16.5 + pos: -4.5,-1.5 parent: 1 - - uid: 21174 + - uid: 21845 components: - type: Transform - pos: -30.5,16.5 + pos: 0.5,-2.5 parent: 1 - - uid: 21175 + - uid: 21846 components: - type: Transform - pos: -31.5,16.5 + pos: -3.5,-2.5 parent: 1 - - uid: 21176 + - uid: 21848 components: - type: Transform - pos: -32.5,16.5 + pos: 3.5,-2.5 parent: 1 - - uid: 21177 + - uid: 21849 components: - type: Transform - pos: -33.5,16.5 + pos: 4.5,-2.5 parent: 1 - - uid: 21178 + - uid: 21850 components: - type: Transform - pos: -34.5,16.5 + pos: 5.5,-2.5 parent: 1 - - uid: 21179 + - uid: 21851 components: - type: Transform - pos: -35.5,16.5 + pos: 6.5,-2.5 parent: 1 - - uid: 21180 + - uid: 21852 components: - type: Transform - pos: -36.5,16.5 + pos: 7.5,-2.5 parent: 1 - - uid: 21181 + - uid: 21853 components: - type: Transform - pos: -36.5,15.5 + pos: 8.5,-2.5 parent: 1 - - uid: 21182 + - uid: 21854 components: - type: Transform - pos: -36.5,14.5 + pos: 8.5,-1.5 parent: 1 - - uid: 21183 + - uid: 21855 components: - type: Transform - pos: -36.5,13.5 + pos: 8.5,-0.5 parent: 1 - - uid: 21184 + - uid: 21856 components: - type: Transform - pos: -36.5,12.5 + pos: 8.5,0.5 parent: 1 - - uid: 21185 + - uid: 21857 components: - type: Transform - pos: -36.5,11.5 + pos: 8.5,1.5 parent: 1 - - uid: 21186 + - uid: 21858 components: - type: Transform - pos: -36.5,10.5 + pos: 8.5,2.5 parent: 1 - - uid: 21187 + - uid: 21859 components: - type: Transform - pos: -23.5,16.5 + pos: 7.5,2.5 parent: 1 - - uid: 21188 + - uid: 21860 components: - type: Transform - pos: -22.5,16.5 + pos: 6.5,2.5 parent: 1 - - uid: 21189 + - uid: 21861 components: - type: Transform - pos: -21.5,16.5 + pos: 5.5,2.5 parent: 1 - - uid: 21190 + - uid: 21862 components: - type: Transform - pos: -20.5,16.5 + pos: 4.5,2.5 parent: 1 - - uid: 21191 + - uid: 21863 components: - type: Transform - pos: -19.5,16.5 + pos: 3.5,2.5 parent: 1 - - uid: 21192 + - uid: 21864 components: - type: Transform - pos: -18.5,16.5 + pos: 3.5,1.5 parent: 1 - - uid: 21193 + - uid: 21865 components: - type: Transform - pos: -17.5,16.5 + pos: 3.5,0.5 parent: 1 - - uid: 21194 + - uid: 21866 components: - type: Transform - pos: -16.5,16.5 + pos: 3.5,-0.5 parent: 1 - - uid: 21195 + - uid: 21867 components: - type: Transform - pos: -16.5,17.5 + pos: 3.5,-1.5 parent: 1 - - uid: 21196 + - uid: 21868 components: - type: Transform - pos: -16.5,18.5 + pos: -1.5,-19.5 parent: 1 - - uid: 21197 + - uid: 21869 components: - type: Transform - pos: -16.5,19.5 + pos: -0.5,-19.5 parent: 1 - - uid: 21198 + - uid: 21870 components: - type: Transform - pos: -16.5,20.5 + pos: 0.5,-19.5 parent: 1 - - uid: 21199 + - uid: 21871 components: - type: Transform - pos: -15.5,19.5 + pos: -0.5,-18.5 parent: 1 - - uid: 21200 + - uid: 21872 components: - type: Transform - pos: -17.5,20.5 + pos: -0.5,-17.5 parent: 1 - - uid: 21201 + - uid: 21873 components: - type: Transform - pos: -17.5,21.5 + pos: -0.5,-16.5 parent: 1 - - uid: 21202 + - uid: 21874 components: - type: Transform - pos: -17.5,22.5 + pos: -0.5,-15.5 parent: 1 - - uid: 21203 + - uid: 21875 components: - type: Transform - pos: -17.5,23.5 + pos: -0.5,-14.5 parent: 1 - - uid: 21204 + - uid: 21876 components: - type: Transform - pos: -17.5,24.5 + pos: -1.5,-14.5 parent: 1 - - uid: 21205 + - uid: 21877 components: - type: Transform - pos: -17.5,25.5 + pos: -2.5,-14.5 parent: 1 - - uid: 21206 + - uid: 21878 components: - type: Transform - pos: -17.5,26.5 + pos: -3.5,-14.5 parent: 1 - - uid: 21219 + - uid: 21879 components: - type: Transform - pos: -24.5,14.5 + pos: -4.5,-14.5 parent: 1 - - uid: 21220 + - uid: 21880 components: - type: Transform - pos: -23.5,14.5 + pos: -5.5,-14.5 parent: 1 - - uid: 21221 + - uid: 21881 components: - type: Transform - pos: -22.5,14.5 + pos: -6.5,-14.5 parent: 1 - - uid: 21242 + - uid: 21882 components: - type: Transform - pos: -12.5,28.5 + pos: -7.5,-14.5 parent: 1 - - uid: 21243 + - uid: 21883 components: - type: Transform - pos: -12.5,27.5 + pos: -7.5,-13.5 parent: 1 - - uid: 21244 + - uid: 21884 components: - type: Transform - pos: -12.5,26.5 + pos: -7.5,-12.5 parent: 1 - - uid: 21245 + - uid: 21885 components: - type: Transform - pos: -12.5,25.5 + pos: -7.5,-11.5 parent: 1 - - uid: 21246 + - uid: 21886 components: - type: Transform - pos: -13.5,25.5 + pos: -7.5,-10.5 parent: 1 - - uid: 21247 + - uid: 21887 components: - type: Transform - pos: -12.5,24.5 + pos: -6.5,-10.5 parent: 1 - - uid: 21248 + - uid: 21888 components: - type: Transform - pos: -11.5,24.5 + pos: -5.5,-10.5 parent: 1 - - uid: 21249 + - uid: 21889 components: - type: Transform - pos: -10.5,24.5 + pos: -4.5,-10.5 parent: 1 - - uid: 21250 + - uid: 21890 components: - type: Transform - pos: -9.5,24.5 + pos: 0.5,-14.5 parent: 1 - - uid: 21251 + - uid: 21891 components: - type: Transform - pos: -8.5,24.5 + pos: 1.5,-14.5 parent: 1 - - uid: 21252 + - uid: 21892 components: - type: Transform - pos: -7.5,24.5 + pos: 2.5,-14.5 parent: 1 - - uid: 21253 + - uid: 21893 components: - type: Transform - pos: -6.5,24.5 + pos: 3.5,-14.5 parent: 1 - - uid: 21254 + - uid: 21894 components: - type: Transform - pos: -6.5,23.5 + pos: 4.5,-14.5 parent: 1 - - uid: 21255 + - uid: 21895 components: - type: Transform - pos: -5.5,23.5 + pos: 5.5,-14.5 parent: 1 - - uid: 21256 + - uid: 21896 components: - type: Transform - pos: -4.5,23.5 + pos: 6.5,-14.5 parent: 1 - - uid: 21257 + - uid: 21897 components: - type: Transform - pos: -4.5,24.5 + pos: 6.5,-13.5 parent: 1 - - uid: 21258 + - uid: 21898 components: - type: Transform - pos: -4.5,25.5 + pos: 6.5,-12.5 parent: 1 - - uid: 21259 + - uid: 21899 components: - type: Transform - pos: -4.5,26.5 + pos: 6.5,-11.5 parent: 1 - - uid: 21260 + - uid: 21900 components: - type: Transform - pos: -4.5,27.5 + pos: 6.5,-10.5 parent: 1 - - uid: 21262 + - uid: 21901 components: - type: Transform - pos: -15.5,16.5 + pos: 5.5,-10.5 parent: 1 - - uid: 21263 + - uid: 21902 components: - type: Transform - pos: -14.5,16.5 + pos: 4.5,-10.5 parent: 1 - - uid: 21264 + - uid: 21903 components: - type: Transform - pos: -14.5,15.5 + pos: 3.5,-10.5 parent: 1 - - uid: 21265 + - uid: 21904 components: - type: Transform - pos: -14.5,14.5 + pos: 18.5,4.5 parent: 1 - - uid: 21266 + - uid: 21905 components: - type: Transform - pos: -14.5,13.5 + pos: 18.5,5.5 parent: 1 - - uid: 21267 + - uid: 21906 components: - type: Transform - pos: -14.5,12.5 + pos: 18.5,6.5 parent: 1 - - uid: 21268 + - uid: 21907 components: - type: Transform - pos: -14.5,11.5 + pos: 17.5,6.5 parent: 1 - - uid: 21269 + - uid: 21908 components: - type: Transform - pos: -14.5,10.5 + pos: 16.5,6.5 parent: 1 - - uid: 21270 + - uid: 21909 components: - type: Transform - pos: -14.5,9.5 + pos: 16.5,7.5 parent: 1 - - uid: 21271 + - uid: 21910 components: - type: Transform - pos: -13.5,9.5 + pos: 16.5,8.5 parent: 1 - - uid: 21272 + - uid: 21911 components: - type: Transform - pos: -14.5,17.5 + pos: 17.5,8.5 parent: 1 - - uid: 21273 + - uid: 21912 components: - type: Transform - pos: -13.5,17.5 + pos: 17.5,9.5 parent: 1 - - uid: 21274 + - uid: 21913 components: - type: Transform - pos: -12.5,17.5 + pos: 16.5,9.5 parent: 1 - - uid: 21275 + - uid: 21914 components: - type: Transform - pos: -11.5,17.5 + pos: 19.5,8.5 parent: 1 - - uid: 21276 + - uid: 21922 components: - type: Transform - pos: -10.5,17.5 + pos: 20.5,8.5 parent: 1 - - uid: 21277 + - uid: 21923 components: - type: Transform - pos: -9.5,17.5 + pos: 24.5,7.5 parent: 1 - - uid: 21278 + - uid: 21924 components: - type: Transform - pos: -8.5,17.5 + pos: 24.5,8.5 parent: 1 - - uid: 21279 + - uid: 21925 components: - type: Transform - pos: -7.5,17.5 + pos: 24.5,9.5 parent: 1 - - uid: 21281 + - uid: 21926 components: - type: Transform - pos: -5.5,17.5 + pos: 24.5,10.5 parent: 1 - - uid: 21282 + - uid: 21927 components: - type: Transform - pos: -4.5,17.5 + pos: 24.5,11.5 parent: 1 - - uid: 21283 + - uid: 21928 components: - type: Transform - pos: -3.5,17.5 + pos: 24.5,12.5 parent: 1 - - uid: 21284 + - uid: 21929 components: - type: Transform - pos: -2.5,17.5 + pos: 24.5,13.5 parent: 1 - - uid: 21285 + - uid: 21930 components: - type: Transform - pos: -1.5,17.5 + pos: 24.5,14.5 parent: 1 - - uid: 21286 + - uid: 21941 components: - type: Transform - pos: -0.5,17.5 + pos: -0.5,18.5 parent: 1 - - uid: 21287 + - uid: 21948 components: - type: Transform - pos: 17.5,14.5 + pos: 18.5,3.5 parent: 1 - - uid: 21288 + - uid: 21949 components: - type: Transform - pos: 16.5,14.5 + pos: 18.5,2.5 parent: 1 - - uid: 21289 + - uid: 21950 components: - type: Transform - pos: 15.5,14.5 + pos: 17.5,2.5 parent: 1 - - uid: 21290 + - uid: 21951 components: - type: Transform - pos: 14.5,14.5 + pos: 17.5,1.5 parent: 1 - - uid: 21291 + - uid: 21952 components: - type: Transform - pos: 13.5,14.5 + pos: 17.5,0.5 parent: 1 - - uid: 21292 + - uid: 21953 components: - type: Transform - pos: 13.5,13.5 + pos: 17.5,-0.5 parent: 1 - - uid: 21293 + - uid: 21954 components: - type: Transform - pos: 13.5,12.5 + pos: 17.5,-1.5 parent: 1 - - uid: 21294 + - uid: 21955 components: - type: Transform - pos: 13.5,11.5 + pos: 17.5,-2.5 parent: 1 - - uid: 21295 + - uid: 21956 components: - type: Transform - pos: 13.5,15.5 + pos: 17.5,-3.5 parent: 1 - - uid: 21296 + - uid: 21957 components: - type: Transform - pos: 13.5,9.5 + pos: 17.5,-4.5 parent: 1 - - uid: 21297 + - uid: 21958 components: - type: Transform - pos: 13.5,10.5 + pos: 17.5,-5.5 parent: 1 - - uid: 21298 + - uid: 21959 components: - type: Transform - pos: 13.5,16.5 + pos: 17.5,-6.5 parent: 1 - - uid: 21299 + - uid: 21960 components: - type: Transform - pos: 13.5,21.5 + pos: 18.5,-6.5 parent: 1 - - uid: 21304 + - uid: 21961 components: - type: Transform - pos: 13.5,20.5 + pos: 19.5,-6.5 parent: 1 - - uid: 21305 + - uid: 21962 components: - type: Transform - pos: 13.5,17.5 + pos: 20.5,-6.5 parent: 1 - - uid: 21306 + - uid: 21963 components: - type: Transform - pos: 13.5,19.5 + pos: 13.5,-11.5 parent: 1 - - uid: 21307 + - uid: 21964 components: - type: Transform - pos: 13.5,18.5 + pos: 13.5,-10.5 parent: 1 - - uid: 21308 + - uid: 21965 components: - type: Transform - pos: 13.5,22.5 + pos: 13.5,-9.5 parent: 1 - - uid: 21309 + - uid: 21966 components: - type: Transform - pos: 12.5,17.5 + pos: 14.5,-9.5 parent: 1 - - uid: 21310 + - uid: 21967 components: - type: Transform - pos: 11.5,17.5 + pos: 15.5,-9.5 parent: 1 - - uid: 21311 + - uid: 21968 components: - type: Transform - pos: 10.5,17.5 + pos: 16.5,-9.5 parent: 1 - - uid: 21314 + - uid: 21969 components: - type: Transform - pos: 12.5,14.5 + pos: 17.5,-9.5 parent: 1 - - uid: 21315 + - uid: 21970 components: - type: Transform - pos: 11.5,14.5 + pos: 18.5,-9.5 parent: 1 - - uid: 21316 + - uid: 21971 components: - type: Transform - pos: 10.5,14.5 + pos: 19.5,-9.5 parent: 1 - - uid: 21317 + - uid: 21972 components: - type: Transform - pos: 9.5,14.5 + pos: 20.5,-9.5 parent: 1 - - uid: 21323 + - uid: 21973 components: - type: Transform - pos: 17.5,15.5 + pos: 21.5,-9.5 parent: 1 - - uid: 21324 + - uid: 21974 components: - type: Transform - pos: 17.5,16.5 + pos: 22.5,-9.5 parent: 1 - - uid: 21325 + - uid: 21975 components: - type: Transform - pos: 17.5,17.5 + pos: 23.5,-9.5 parent: 1 - - uid: 21326 + - uid: 21976 components: - type: Transform - pos: 17.5,18.5 + pos: 24.5,-9.5 parent: 1 - - uid: 21329 + - uid: 21977 components: - type: Transform - pos: 8.5,14.5 + pos: 25.5,-9.5 parent: 1 - - uid: 21330 + - uid: 21978 components: - type: Transform - pos: 7.5,14.5 + pos: 26.5,-9.5 parent: 1 - - uid: 21331 + - uid: 21979 components: - type: Transform - pos: 6.5,14.5 + pos: 27.5,-9.5 parent: 1 - - uid: 21332 + - uid: 21980 components: - type: Transform - pos: 5.5,14.5 + pos: 27.5,-10.5 parent: 1 - - uid: 21333 + - uid: 21981 components: - type: Transform - pos: 4.5,14.5 + pos: 27.5,-11.5 parent: 1 - - uid: 21334 + - uid: 21982 components: - type: Transform - pos: 3.5,14.5 + pos: 27.5,-12.5 parent: 1 - - uid: 21335 + - uid: 21983 components: - type: Transform - pos: 2.5,14.5 + pos: 27.5,-13.5 parent: 1 - - uid: 21336 + - uid: 21984 components: - type: Transform - pos: 1.5,14.5 + pos: 27.5,-14.5 parent: 1 - - uid: 21337 + - uid: 21985 components: - type: Transform - pos: 0.5,14.5 + pos: 27.5,-15.5 parent: 1 - - uid: 21338 + - uid: 21986 components: - type: Transform - pos: -0.5,14.5 + pos: 27.5,-16.5 parent: 1 - - uid: 21339 + - uid: 21987 components: - type: Transform - pos: -1.5,14.5 + pos: 27.5,-17.5 parent: 1 - - uid: 21340 + - uid: 21988 components: - type: Transform - pos: -2.5,14.5 + pos: 27.5,-18.5 parent: 1 - - uid: 21341 + - uid: 21989 components: - type: Transform - pos: -3.5,14.5 + pos: 27.5,-19.5 parent: 1 - - uid: 21342 + - uid: 21990 components: - type: Transform - pos: -4.5,14.5 + pos: 27.5,-20.5 parent: 1 - - uid: 21343 + - uid: 21991 components: - type: Transform - pos: -5.5,14.5 + pos: 27.5,-21.5 parent: 1 - - uid: 21344 + - uid: 21992 components: - type: Transform - pos: -6.5,14.5 + pos: 27.5,-22.5 parent: 1 - - uid: 21345 + - uid: 21993 components: - type: Transform - pos: -7.5,14.5 + pos: 13.5,-12.5 parent: 1 - - uid: 21346 + - uid: 21994 components: - type: Transform - pos: -8.5,14.5 + pos: 13.5,-13.5 parent: 1 - - uid: 21347 + - uid: 21995 components: - type: Transform - pos: -9.5,14.5 + pos: 14.5,-13.5 parent: 1 - - uid: 21348 + - uid: 21996 components: - type: Transform - pos: -10.5,14.5 + pos: 15.5,-13.5 parent: 1 - - uid: 21349 + - uid: 21997 components: - type: Transform - pos: -11.5,14.5 + pos: 15.5,-14.5 parent: 1 - - uid: 21395 + - uid: 21998 components: - type: Transform - pos: -55.5,-41.5 + pos: 16.5,-13.5 parent: 1 - - uid: 21465 + - uid: 21999 components: - type: Transform - pos: -19.5,7.5 + pos: 17.5,-13.5 parent: 1 - - uid: 21466 + - uid: 22000 components: - type: Transform - pos: -19.5,6.5 + pos: 18.5,-13.5 parent: 1 - - uid: 21467 + - uid: 22001 components: - type: Transform - pos: -19.5,5.5 + pos: 19.5,-13.5 parent: 1 - - uid: 21468 + - uid: 22002 components: - type: Transform - pos: -20.5,5.5 + pos: 20.5,-13.5 parent: 1 - - uid: 21469 + - uid: 22003 components: - type: Transform - pos: -21.5,5.5 + pos: 21.5,-13.5 parent: 1 - - uid: 21470 + - uid: 22004 components: - type: Transform - pos: -22.5,5.5 + pos: 22.5,-13.5 parent: 1 - - uid: 21471 + - uid: 22005 components: - type: Transform - pos: -22.5,4.5 + pos: 23.5,-13.5 parent: 1 - - uid: 21472 + - uid: 22006 components: - type: Transform - pos: -22.5,3.5 + pos: 15.5,-17.5 parent: 1 - - uid: 21473 + - uid: 22007 components: - type: Transform - pos: -22.5,2.5 + pos: 15.5,-18.5 parent: 1 - - uid: 21474 + - uid: 22008 components: - type: Transform - pos: -21.5,2.5 + pos: 16.5,-18.5 parent: 1 - - uid: 21475 + - uid: 22009 components: - type: Transform - pos: -20.5,2.5 + pos: 17.5,-18.5 parent: 1 - - uid: 21476 + - uid: 22010 components: - type: Transform - pos: -19.5,2.5 + pos: 18.5,-18.5 parent: 1 - - uid: 21477 + - uid: 22011 components: - type: Transform - pos: -18.5,2.5 + pos: 19.5,-18.5 parent: 1 - - uid: 21478 + - uid: 22012 components: - type: Transform - pos: -19.5,1.5 + pos: 20.5,-18.5 parent: 1 - - uid: 21479 + - uid: 22013 components: - type: Transform - pos: -19.5,0.5 + pos: 21.5,-18.5 parent: 1 - - uid: 21480 + - uid: 22014 components: - type: Transform - pos: -19.5,-0.5 + pos: 15.5,-19.5 parent: 1 - - uid: 21481 + - uid: 22015 components: - type: Transform - pos: -19.5,-1.5 + pos: 14.5,-19.5 parent: 1 - - uid: 21482 + - uid: 22016 components: - type: Transform - pos: -19.5,-2.5 + pos: 15.5,-20.5 parent: 1 - - uid: 21483 + - uid: 22017 components: - type: Transform - pos: -19.5,-3.5 + pos: 15.5,-21.5 parent: 1 - - uid: 21484 + - uid: 22018 components: - type: Transform - pos: -19.5,-4.5 + pos: 15.5,-22.5 parent: 1 - - uid: 21485 + - uid: 22037 components: - type: Transform - pos: -19.5,-5.5 + pos: 0.5,-33.5 parent: 1 - - uid: 21486 + - uid: 22038 components: - type: Transform - pos: -19.5,-6.5 + pos: 1.5,-33.5 parent: 1 - - uid: 21487 + - uid: 22039 components: - type: Transform - pos: -19.5,-7.5 + pos: 2.5,-33.5 parent: 1 - - uid: 21488 + - uid: 22040 components: - type: Transform - pos: -18.5,-6.5 + pos: 2.5,-32.5 parent: 1 - - uid: 21489 + - uid: 22041 components: - type: Transform - pos: -17.5,-6.5 + pos: 2.5,-31.5 parent: 1 - - uid: 21490 + - uid: 22042 components: - type: Transform - pos: -17.5,-5.5 + pos: 2.5,-30.5 parent: 1 - - uid: 21491 + - uid: 22043 components: - type: Transform - pos: -20.5,-6.5 + pos: 3.5,-30.5 parent: 1 - - uid: 21492 + - uid: 22044 components: - type: Transform - pos: -20.5,-1.5 + pos: 4.5,-30.5 parent: 1 - - uid: 21493 + - uid: 22045 components: - type: Transform - pos: -18.5,-1.5 + pos: 5.5,-30.5 parent: 1 - - uid: 21494 + - uid: 22046 components: - type: Transform - pos: -18.5,5.5 + pos: 6.5,-30.5 parent: 1 - - uid: 21495 + - uid: 22047 components: - type: Transform - pos: -17.5,5.5 + pos: 7.5,-30.5 parent: 1 - - uid: 21496 + - uid: 22048 components: - type: Transform - pos: -17.5,2.5 + pos: 7.5,-31.5 parent: 1 - - uid: 21497 + - uid: 22049 components: - type: Transform - pos: -17.5,3.5 + pos: 7.5,-32.5 parent: 1 - - uid: 21498 + - uid: 22050 components: - type: Transform - pos: -22.5,1.5 + pos: 7.5,-33.5 parent: 1 - - uid: 21499 + - uid: 22051 components: - type: Transform - pos: -23.5,1.5 + pos: 7.5,-34.5 parent: 1 - - uid: 21500 + - uid: 22052 components: - type: Transform - pos: -16.5,-16.5 + pos: 2.5,-34.5 parent: 1 - - uid: 21501 + - uid: 22053 components: - type: Transform - pos: -16.5,-15.5 + pos: 2.5,-35.5 parent: 1 - - uid: 21502 + - uid: 22054 components: - type: Transform - pos: -16.5,-14.5 + pos: 2.5,-36.5 parent: 1 - - uid: 21503 + - uid: 22055 components: - type: Transform - pos: -17.5,-14.5 + pos: 2.5,-37.5 parent: 1 - - uid: 21504 + - uid: 22056 components: - type: Transform - pos: -18.5,-14.5 + pos: 1.5,-37.5 parent: 1 - - uid: 21505 + - uid: 22057 components: - type: Transform - pos: -19.5,-14.5 + pos: 3.5,-37.5 parent: 1 - - uid: 21506 + - uid: 22058 components: - type: Transform - pos: -20.5,-14.5 + pos: 4.5,-37.5 parent: 1 - - uid: 21507 + - uid: 22059 components: - type: Transform - pos: -21.5,-14.5 + pos: 4.5,-38.5 parent: 1 - - uid: 21508 + - uid: 22060 components: - type: Transform - pos: -21.5,-13.5 + pos: -0.5,-33.5 parent: 1 - - uid: 21509 + - uid: 22061 components: - type: Transform - pos: -22.5,-13.5 + pos: -1.5,-33.5 parent: 1 - - uid: 21510 + - uid: 22062 components: - type: Transform - pos: -22.5,-12.5 + pos: -1.5,-34.5 parent: 1 - - uid: 21511 + - uid: 22063 components: - type: Transform - pos: -21.5,-12.5 + pos: -2.5,-34.5 parent: 1 - - uid: 21512 + - uid: 22064 components: - type: Transform - pos: -20.5,-12.5 + pos: -3.5,-34.5 parent: 1 - - uid: 21513 + - uid: 22065 components: - type: Transform - pos: -19.5,-12.5 + pos: -4.5,-34.5 parent: 1 - - uid: 21514 + - uid: 22066 components: - type: Transform - pos: -18.5,-12.5 + pos: -4.5,-35.5 parent: 1 - - uid: 21515 + - uid: 22067 components: - type: Transform - pos: -17.5,-12.5 + pos: -4.5,-36.5 parent: 1 - - uid: 21516 + - uid: 22068 components: - type: Transform - pos: -16.5,-12.5 + pos: -4.5,-37.5 parent: 1 - - uid: 21517 + - uid: 22069 components: - type: Transform - pos: -15.5,-12.5 + pos: -5.5,-35.5 parent: 1 - - uid: 21518 + - uid: 22070 components: - type: Transform - pos: -14.5,-12.5 + pos: -6.5,-35.5 parent: 1 - - uid: 21519 + - uid: 22071 components: - type: Transform - pos: -11.5,-21.5 + pos: -7.5,-35.5 parent: 1 - - uid: 21520 + - uid: 22072 components: - type: Transform - pos: -12.5,-21.5 + pos: -8.5,-35.5 parent: 1 - - uid: 21521 + - uid: 22073 components: - type: Transform - pos: -12.5,-20.5 + pos: -9.5,-35.5 parent: 1 - - uid: 21522 + - uid: 22074 components: - type: Transform - pos: -12.5,-19.5 + pos: -10.5,-35.5 parent: 1 - - uid: 21523 + - uid: 22075 components: - type: Transform - pos: -12.5,-18.5 + pos: -10.5,-34.5 parent: 1 - - uid: 21524 + - uid: 22076 components: - type: Transform - pos: -11.5,-22.5 + pos: -11.5,-34.5 parent: 1 - - uid: 21525 + - uid: 22077 components: - type: Transform - pos: -0.5,19.5 + pos: -11.5,-33.5 parent: 1 - - uid: 21526 + - uid: 22078 components: - type: Transform - pos: -0.5,20.5 + pos: -11.5,-32.5 parent: 1 - - uid: 21528 + - uid: 22079 components: - type: Transform - pos: -9.5,-21.5 + pos: -11.5,-31.5 parent: 1 - - uid: 21529 + - uid: 22080 components: - type: Transform - pos: -12.5,-26.5 + pos: -11.5,-30.5 parent: 1 - - uid: 21530 + - uid: 22081 components: - type: Transform - pos: -12.5,-27.5 + pos: -10.5,-30.5 parent: 1 - - uid: 21531 + - uid: 22082 components: - type: Transform - pos: -12.5,-25.5 + pos: -9.5,-30.5 parent: 1 - - uid: 21532 + - uid: 22083 components: - type: Transform - pos: -10.5,-21.5 + pos: -8.5,-30.5 parent: 1 - - uid: 21533 + - uid: 22084 components: - type: Transform - pos: -9.5,-20.5 + pos: -7.5,-30.5 parent: 1 - - uid: 21534 + - uid: 22085 components: - type: Transform - pos: -9.5,-19.5 + pos: -6.5,-30.5 parent: 1 - - uid: 21535 + - uid: 22086 components: - type: Transform - pos: -9.5,-22.5 + pos: -5.5,-30.5 parent: 1 - - uid: 21536 + - uid: 22087 components: - type: Transform - pos: -9.5,-23.5 + pos: -4.5,-30.5 parent: 1 - - uid: 21537 + - uid: 22088 components: - type: Transform - pos: -8.5,-23.5 + pos: -4.5,-31.5 parent: 1 - - uid: 21538 + - uid: 22089 components: - type: Transform - pos: -7.5,-23.5 + pos: -4.5,-32.5 parent: 1 - - uid: 21539 + - uid: 22090 components: - type: Transform - pos: -6.5,-23.5 + pos: -4.5,-33.5 parent: 1 - - uid: 21540 + - uid: 22091 components: - type: Transform - pos: -5.5,-23.5 + pos: -3.5,-30.5 parent: 1 - - uid: 21541 + - uid: 22092 components: - type: Transform - pos: -5.5,-24.5 + pos: -2.5,-30.5 parent: 1 - - uid: 21542 + - uid: 22093 components: - type: Transform - pos: -4.5,-24.5 + pos: -8.5,-29.5 parent: 1 - - uid: 21543 + - uid: 22094 components: - type: Transform - pos: -4.5,-25.5 + pos: -8.5,-28.5 parent: 1 - - uid: 21544 + - uid: 22095 components: - type: Transform - pos: -4.5,-26.5 + pos: -8.5,-27.5 parent: 1 - - uid: 21545 + - uid: 22096 components: - type: Transform - pos: -3.5,-26.5 + pos: -8.5,-26.5 parent: 1 - - uid: 21546 + - uid: 22097 components: - type: Transform - pos: -1.5,-26.5 + pos: -8.5,-36.5 parent: 1 - - uid: 21547 + - uid: 22098 components: - type: Transform - pos: -2.5,-26.5 + pos: -8.5,-37.5 parent: 1 - - uid: 21548 + - uid: 22099 components: - type: Transform - pos: -0.5,-26.5 + pos: -8.5,-38.5 parent: 1 - - uid: 21549 + - uid: 22100 components: - type: Transform - pos: 0.5,-26.5 + pos: -9.5,-38.5 parent: 1 - - uid: 21550 + - uid: 22101 components: - type: Transform - pos: 1.5,-26.5 + pos: -10.5,-38.5 parent: 1 - - uid: 21551 + - uid: 22102 components: - type: Transform - pos: 2.5,-26.5 + pos: -11.5,-38.5 parent: 1 - - uid: 21552 + - uid: 22103 components: - type: Transform - pos: 3.5,-26.5 + pos: -11.5,-39.5 parent: 1 - - uid: 21553 + - uid: 22181 components: - type: Transform - pos: 4.5,-26.5 + pos: -52.5,-32.5 parent: 1 - - uid: 21554 + - uid: 22182 components: - type: Transform - pos: 4.5,-25.5 + pos: -52.5,-31.5 parent: 1 - - uid: 21555 + - uid: 22183 components: - type: Transform - pos: 5.5,-25.5 + pos: -52.5,-30.5 parent: 1 - - uid: 21556 + - uid: 22184 components: - type: Transform - pos: 5.5,-24.5 + pos: -53.5,-30.5 parent: 1 - - uid: 21557 + - uid: 22185 components: - type: Transform - pos: 5.5,-23.5 + pos: -54.5,-30.5 parent: 1 - - uid: 21558 + - uid: 22186 components: - type: Transform - pos: 6.5,-23.5 + pos: -55.5,-30.5 parent: 1 - - uid: 21559 + - uid: 22187 components: - type: Transform - pos: 7.5,-23.5 + pos: -55.5,-29.5 parent: 1 - - uid: 21560 + - uid: 22233 components: - type: Transform - pos: 8.5,-23.5 + pos: -53.5,-41.5 parent: 1 - - uid: 21561 + - uid: 22250 components: - type: Transform - pos: 8.5,-24.5 + pos: -53.5,-39.5 parent: 1 - - uid: 21562 + - uid: 22252 components: - type: Transform - pos: 9.5,-23.5 + pos: -53.5,-38.5 parent: 1 - - uid: 21563 + - uid: 22272 components: - type: Transform - pos: 10.5,-23.5 + pos: -53.5,-34.5 parent: 1 - - uid: 21564 + - uid: 22273 components: - type: Transform - pos: 10.5,-24.5 + pos: -53.5,-35.5 parent: 1 - - uid: 21565 + - uid: 22274 components: - type: Transform - pos: 9.5,-22.5 + pos: -53.5,-36.5 parent: 1 - - uid: 21566 + - uid: 22382 components: - type: Transform - pos: 9.5,-21.5 + pos: 36.5,-10.5 parent: 1 - - uid: 21567 + - uid: 22506 components: - type: Transform - pos: 9.5,-20.5 + pos: 37.5,-10.5 parent: 1 - - uid: 21568 + - uid: 23055 components: - type: Transform - pos: 9.5,-19.5 + pos: -43.5,-28.5 parent: 1 - - uid: 21569 + - uid: 23446 components: - type: Transform - pos: 8.5,-19.5 + pos: -43.5,-29.5 parent: 1 - - uid: 21570 + - uid: 23500 components: - type: Transform - pos: 8.5,-18.5 + pos: -53.5,-42.5 parent: 1 - - uid: 21571 + - uid: 23554 components: - type: Transform - pos: 9.5,-18.5 + pos: -53.5,-43.5 parent: 1 - - uid: 21574 + - uid: 23555 components: - type: Transform - pos: 24.5,6.5 + pos: -53.5,-44.5 parent: 1 - - uid: 21578 + - uid: 23608 components: - type: Transform - pos: -43.5,-30.5 + pos: -112.5,1.5 parent: 1 - - uid: 21581 + - uid: 23610 components: - type: Transform - pos: -42.5,-32.5 + pos: -109.5,-0.5 parent: 1 - - uid: 21684 + - uid: 23611 components: - type: Transform - pos: 2.5,-20.5 + pos: -109.5,0.5 parent: 1 - - uid: 21685 + - uid: 23612 components: - type: Transform - pos: 1.5,-20.5 + pos: -55.5,-40.5 parent: 1 - - uid: 21686 + - uid: 24747 components: - type: Transform - pos: 1.5,-21.5 + pos: -80.5,-39.5 parent: 1 - - uid: 21687 + - uid: 24763 components: - type: Transform - pos: 0.5,-21.5 + pos: -96.5,-40.5 parent: 1 - - uid: 21688 + - uid: 24939 components: - type: Transform - pos: -0.5,-21.5 + pos: 24.5,5.5 parent: 1 - - uid: 21689 + - uid: 24940 components: - type: Transform - pos: -1.5,-21.5 + pos: 25.5,5.5 parent: 1 - - uid: 21691 + - uid: 24941 components: - type: Transform - pos: -2.5,-21.5 + pos: 26.5,5.5 parent: 1 - - uid: 21692 + - uid: 24942 components: - type: Transform - pos: -2.5,-20.5 + pos: 27.5,5.5 parent: 1 - - uid: 21693 + - uid: 24943 components: - type: Transform - pos: -2.5,-19.5 + pos: 27.5,6.5 parent: 1 - - uid: 21694 + - uid: 24944 components: - type: Transform - pos: -3.5,-19.5 + pos: 27.5,7.5 parent: 1 - - uid: 21695 + - uid: 26926 components: - type: Transform - pos: -4.5,-19.5 + pos: -6.5,17.5 parent: 1 - - uid: 21696 + - uid: 28649 components: - type: Transform - pos: -4.5,-18.5 + pos: -78.5,-39.5 parent: 1 - - uid: 21697 + - uid: 28676 components: - type: Transform - pos: 1.5,-19.5 + pos: -41.5,-47.5 parent: 1 - - uid: 21698 + - uid: 28677 components: - type: Transform - pos: 2.5,-19.5 + pos: -41.5,-46.5 parent: 1 - - uid: 21699 + - uid: 28678 components: - type: Transform - pos: 3.5,-19.5 + pos: -41.5,-45.5 parent: 1 - - uid: 21700 + - uid: 28679 components: - type: Transform - pos: 3.5,-18.5 + pos: -41.5,-44.5 parent: 1 - - uid: 21701 + - uid: 28680 components: - type: Transform - pos: -5.5,-18.5 + pos: -41.5,-43.5 parent: 1 - - uid: 21702 + - uid: 28681 components: - type: Transform - pos: -5.5,-19.5 + pos: -41.5,-42.5 parent: 1 - - uid: 21703 + - uid: 28682 components: - type: Transform - pos: 4.5,-18.5 + pos: -41.5,-41.5 parent: 1 - - uid: 21704 + - uid: 28685 components: - type: Transform - pos: 4.5,-19.5 + pos: -41.5,-40.5 parent: 1 - - uid: 21705 + - uid: 29284 components: - type: Transform - pos: -2.5,-12.5 + pos: -83.5,-39.5 parent: 1 - - uid: 21706 + - uid: 29316 components: - type: Transform - pos: -1.5,-12.5 + pos: -41.5,-39.5 parent: 1 - - uid: 21707 + - uid: 29317 components: - type: Transform - pos: -1.5,-11.5 + pos: -41.5,-38.5 parent: 1 - - uid: 21708 + - uid: 29328 components: - type: Transform - pos: -1.5,-10.5 + pos: -74.5,-13.5 parent: 1 - - uid: 21709 + - uid: 29329 components: - type: Transform - pos: -1.5,-9.5 + pos: -74.5,-12.5 parent: 1 - - uid: 21710 + - uid: 29330 components: - type: Transform - pos: -1.5,-8.5 + pos: -73.5,34.5 parent: 1 - - uid: 21711 + - uid: 29331 components: - type: Transform - pos: -1.5,-7.5 + pos: -73.5,33.5 parent: 1 - - uid: 21712 + - uid: 29332 components: - type: Transform - pos: -1.5,-6.5 + pos: -73.5,32.5 parent: 1 - - uid: 21713 + - uid: 29333 components: - type: Transform - pos: -2.5,-6.5 + pos: -61.5,9.5 parent: 1 - - uid: 21714 + - uid: 29334 components: - type: Transform - pos: -3.5,-6.5 + pos: -62.5,9.5 parent: 1 - - uid: 21715 + - uid: 29335 components: - type: Transform - pos: -4.5,-6.5 + pos: -63.5,9.5 parent: 1 - - uid: 21716 + - uid: 29336 components: - type: Transform - pos: -5.5,-6.5 + pos: -64.5,9.5 parent: 1 - - uid: 21717 + - uid: 29337 components: - type: Transform - pos: -6.5,-6.5 + pos: -65.5,9.5 parent: 1 - - uid: 21718 + - uid: 29338 components: - type: Transform - pos: -7.5,-6.5 + pos: -66.5,9.5 parent: 1 - - uid: 21719 + - uid: 29339 components: - type: Transform - pos: -8.5,-6.5 + pos: -67.5,9.5 parent: 1 - - uid: 21720 + - uid: 29340 components: - type: Transform - pos: -9.5,-6.5 + pos: -68.5,9.5 parent: 1 - - uid: 21721 + - uid: 29341 components: - type: Transform - pos: -10.5,-6.5 + pos: -69.5,9.5 parent: 1 - - uid: 21722 + - uid: 29342 components: - type: Transform - pos: -11.5,-6.5 + pos: -65.5,10.5 parent: 1 - - uid: 21723 + - uid: 29343 components: - type: Transform - pos: -11.5,-7.5 + pos: -65.5,11.5 parent: 1 - - uid: 21724 + - uid: 29344 components: - type: Transform - pos: -11.5,-8.5 + pos: -65.5,12.5 parent: 1 - - uid: 21725 + - uid: 29345 components: - type: Transform - pos: -11.5,-9.5 + pos: -65.5,13.5 parent: 1 - - uid: 21726 + - uid: 29346 components: - type: Transform - pos: -11.5,-10.5 + pos: -65.5,14.5 parent: 1 - - uid: 21727 + - uid: 29347 components: - type: Transform - pos: -11.5,-11.5 + pos: -65.5,15.5 parent: 1 - - uid: 21728 + - uid: 29348 components: - type: Transform - pos: -11.5,-12.5 + pos: -65.5,16.5 parent: 1 - - uid: 21729 + - uid: 30040 components: - type: Transform - pos: -11.5,-13.5 + pos: -81.5,-39.5 parent: 1 - - uid: 21730 + - uid: 30153 components: - type: Transform - pos: -11.5,-14.5 + pos: -21.5,-20.5 parent: 1 - - uid: 21731 + - uid: 30154 components: - type: Transform - pos: -12.5,-6.5 + pos: -20.5,-20.5 parent: 1 - - uid: 21732 + - uid: 30155 components: - type: Transform - pos: -13.5,-6.5 + pos: -20.5,-19.5 parent: 1 - - uid: 21733 + - uid: 30156 components: - type: Transform - pos: -13.5,-5.5 + pos: -20.5,-21.5 parent: 1 - - uid: 21734 + - uid: 30157 components: - type: Transform - pos: -13.5,-4.5 + pos: -20.5,-22.5 parent: 1 - - uid: 21735 + - uid: 30159 components: - type: Transform - pos: -13.5,-3.5 + pos: -12.5,-22.5 parent: 1 - - uid: 21736 + - uid: 30160 components: - type: Transform - pos: -13.5,-2.5 + pos: -13.5,-22.5 parent: 1 - - uid: 21737 + - uid: 30161 components: - type: Transform - pos: -13.5,-1.5 + pos: -14.5,-22.5 parent: 1 - - uid: 21738 + - uid: 30162 components: - type: Transform - pos: -13.5,-0.5 + pos: -15.5,-22.5 parent: 1 - - uid: 21739 + - uid: 30163 components: - type: Transform - pos: -13.5,0.5 + pos: -16.5,-22.5 parent: 1 - - uid: 21740 + - uid: 30164 components: - type: Transform - pos: -13.5,1.5 + pos: -17.5,-22.5 parent: 1 - - uid: 21741 + - uid: 30348 components: - type: Transform - pos: -13.5,2.5 + pos: -69.5,22.5 parent: 1 - - uid: 21742 + - uid: 30368 components: - type: Transform - pos: -13.5,3.5 + pos: -32.5,-65.5 parent: 1 - - uid: 21743 + - uid: 30369 components: - type: Transform - pos: -13.5,4.5 + pos: -33.5,-65.5 parent: 1 - - uid: 21744 + - uid: 30370 components: - type: Transform - pos: -13.5,5.5 + pos: -34.5,-65.5 parent: 1 - - uid: 21745 + - uid: 30371 components: - type: Transform - pos: -12.5,5.5 + pos: -35.5,-65.5 parent: 1 - - uid: 21746 + - uid: 30388 components: - type: Transform - pos: -9.5,6.5 + pos: -74.5,-5.5 parent: 1 - - uid: 21747 + - uid: 31056 components: - type: Transform - pos: -10.5,6.5 + pos: -99.5,-7.5 parent: 1 - - uid: 21748 + - uid: 31158 components: - type: Transform - pos: -8.5,6.5 + pos: -100.5,-7.5 parent: 1 - - uid: 21749 + - uid: 31160 components: - type: Transform - pos: -6.5,6.5 + pos: -117.5,-39.5 parent: 1 - - uid: 21750 + - uid: 31259 components: - type: Transform - pos: -7.5,6.5 + pos: -69.5,21.5 parent: 1 - - uid: 21751 + - uid: 31331 components: - type: Transform - pos: -5.5,6.5 + pos: -63.5,-13.5 parent: 1 - - uid: 21752 + - uid: 31356 components: - type: Transform - pos: -4.5,6.5 + pos: -63.5,-12.5 parent: 1 - - uid: 21753 + - uid: 32378 components: - type: Transform - pos: -3.5,6.5 + pos: -144.5,-0.5 parent: 1 - - uid: 21754 + - uid: 32405 components: - type: Transform - pos: -2.5,6.5 + pos: 0.5,-58.5 parent: 1 - - uid: 21755 + - uid: 32406 components: - type: Transform - pos: -1.5,6.5 + pos: 4.5,-60.5 parent: 1 - - uid: 21756 + - uid: 32407 components: - type: Transform - pos: -0.5,6.5 + pos: 2.5,-63.5 parent: 1 - - uid: 21757 + - uid: 32408 components: - type: Transform - pos: 0.5,6.5 + pos: 2.5,-61.5 parent: 1 - - uid: 21758 + - uid: 32409 components: - type: Transform - pos: 1.5,6.5 + pos: 2.5,-59.5 parent: 1 - - uid: 21759 + - uid: 32432 components: - type: Transform - pos: 2.5,6.5 + pos: 43.5,30.5 parent: 1 - - uid: 21760 + - uid: 32433 components: - type: Transform - pos: 3.5,6.5 + pos: 43.5,-1.5 parent: 1 - - uid: 21761 + - uid: 32437 components: - type: Transform - pos: 4.5,6.5 + pos: 43.5,-0.5 parent: 1 - - uid: 21762 + - uid: 32438 components: - type: Transform - pos: 5.5,6.5 + pos: 41.5,34.5 parent: 1 - - uid: 21763 + - uid: 32440 components: - type: Transform - pos: 6.5,6.5 + pos: 43.5,7.5 parent: 1 - - uid: 21764 + - uid: 32441 components: - type: Transform - pos: 7.5,6.5 + pos: 43.5,6.5 parent: 1 - - uid: 21765 + - uid: 32442 components: - type: Transform - pos: 8.5,6.5 + pos: 43.5,5.5 parent: 1 - - uid: 21766 + - uid: 32443 components: - type: Transform - pos: 9.5,6.5 + pos: 43.5,0.5 parent: 1 - - uid: 21767 + - uid: 32444 components: - type: Transform - pos: 10.5,6.5 + pos: 43.5,1.5 parent: 1 - - uid: 21768 + - uid: 32448 components: - type: Transform - pos: 11.5,6.5 + pos: 43.5,28.5 parent: 1 - - uid: 21769 + - uid: 32449 components: - type: Transform - pos: 12.5,6.5 + pos: 43.5,27.5 parent: 1 - - uid: 21770 + - uid: 32450 components: - type: Transform - pos: 12.5,5.5 + pos: 43.5,20.5 parent: 1 - - uid: 21771 + - uid: 32451 components: - type: Transform - pos: 12.5,4.5 + pos: 43.5,18.5 parent: 1 - - uid: 21772 + - uid: 32452 components: - type: Transform - pos: 12.5,3.5 + pos: 43.5,17.5 parent: 1 - - uid: 21773 + - uid: 32453 components: - type: Transform - pos: 12.5,2.5 + pos: 43.5,8.5 parent: 1 - - uid: 21774 + - uid: 32454 components: - type: Transform - pos: 12.5,1.5 + pos: 43.5,13.5 parent: 1 - - uid: 21775 + - uid: 32455 components: - type: Transform - pos: 12.5,0.5 + pos: 43.5,24.5 parent: 1 - - uid: 21776 + - uid: 32456 components: - type: Transform - pos: 12.5,-0.5 + pos: 43.5,22.5 parent: 1 - - uid: 21777 + - uid: 32457 components: - type: Transform - pos: 12.5,-1.5 + pos: 43.5,15.5 parent: 1 - - uid: 21778 + - uid: 32458 components: - type: Transform - pos: 12.5,-2.5 + pos: 43.5,16.5 parent: 1 - - uid: 21779 + - uid: 32459 components: - type: Transform - pos: 12.5,-3.5 + pos: 43.5,14.5 parent: 1 - - uid: 21780 + - uid: 32460 components: - type: Transform - pos: 12.5,-4.5 + pos: 43.5,11.5 parent: 1 - - uid: 21781 + - uid: 32461 components: - type: Transform - pos: 12.5,-5.5 + pos: 43.5,12.5 parent: 1 - - uid: 21782 + - uid: 32462 components: - type: Transform - pos: 12.5,-6.5 + pos: 43.5,10.5 parent: 1 - - uid: 21783 + - uid: 32463 components: - type: Transform - pos: 12.5,-7.5 + pos: 43.5,9.5 parent: 1 - - uid: 21784 + - uid: 32464 components: - type: Transform - pos: 12.5,-8.5 + pos: 43.5,3.5 parent: 1 - - uid: 21785 + - uid: 32465 components: - type: Transform - pos: 11.5,-8.5 + pos: 43.5,4.5 parent: 1 - - uid: 21786 + - uid: 32466 components: - type: Transform - pos: 10.5,-8.5 + pos: 43.5,2.5 parent: 1 - - uid: 21787 + - uid: 32474 components: - type: Transform - pos: 10.5,-9.5 + pos: -9.5,-51.5 parent: 1 - - uid: 21788 + - uid: 32475 components: - type: Transform - pos: 10.5,-10.5 + pos: -3.5,-61.5 parent: 1 - - uid: 21789 + - uid: 32476 components: - type: Transform - pos: 10.5,-11.5 + pos: 4.5,-63.5 parent: 1 - - uid: 21790 + - uid: 32481 components: - type: Transform - pos: 10.5,-12.5 + pos: 0.5,-55.5 parent: 1 - - uid: 21791 + - uid: 32482 components: - type: Transform - pos: 10.5,-13.5 + pos: 0.5,-56.5 parent: 1 - - uid: 21792 + - uid: 32483 components: - type: Transform - pos: 10.5,-14.5 + pos: 0.5,-57.5 parent: 1 - - uid: 21793 + - uid: 32484 components: - type: Transform - pos: -11.5,6.5 + pos: 1.5,-59.5 parent: 1 - - uid: 21794 + - uid: 32485 components: - type: Transform - pos: -12.5,6.5 + pos: 0.5,-59.5 parent: 1 - - uid: 21795 + - uid: 32486 components: - type: Transform - pos: -10.5,7.5 + pos: 4.5,-62.5 parent: 1 - - uid: 21796 + - uid: 32487 components: - type: Transform - pos: -10.5,8.5 + pos: 4.5,-61.5 parent: 1 - - uid: 21797 + - uid: 32488 components: - type: Transform - pos: -10.5,9.5 + pos: 4.5,-59.5 parent: 1 - - uid: 21798 + - uid: 32489 components: - type: Transform - pos: -6.5,7.5 + pos: 2.5,-62.5 parent: 1 - - uid: 21799 + - uid: 32490 components: - type: Transform - pos: -6.5,8.5 + pos: 2.5,-60.5 parent: 1 - - uid: 21800 + - uid: 32495 components: - type: Transform - pos: -6.5,9.5 + pos: 3.5,-59.5 parent: 1 - - uid: 21801 + - uid: 32496 components: - type: Transform - pos: -2.5,7.5 + pos: -3.5,-63.5 parent: 1 - - uid: 21802 + - uid: 32497 components: - type: Transform - pos: -2.5,8.5 + pos: -3.5,-62.5 parent: 1 - - uid: 21803 + - uid: 32498 components: - type: Transform - pos: -2.5,9.5 + pos: 3.5,-58.5 parent: 1 - - uid: 21804 + - uid: 32499 components: - type: Transform - pos: 1.5,7.5 + pos: -3.5,-60.5 parent: 1 - - uid: 21805 + - uid: 32500 components: - type: Transform - pos: 1.5,8.5 + pos: -5.5,-63.5 parent: 1 - - uid: 21806 + - uid: 32501 components: - type: Transform - pos: 1.5,9.5 + pos: -5.5,-62.5 parent: 1 - - uid: 21807 + - uid: 32502 components: - type: Transform - pos: 5.5,7.5 + pos: -5.5,-61.5 parent: 1 - - uid: 21808 + - uid: 32503 components: - type: Transform - pos: 5.5,8.5 + pos: 3.5,-57.5 parent: 1 - - uid: 21809 + - uid: 32504 components: - type: Transform - pos: 5.5,9.5 + pos: -4.5,-60.5 parent: 1 - - uid: 21810 + - uid: 32505 components: - type: Transform - pos: 9.5,7.5 + pos: -5.5,-60.5 parent: 1 - - uid: 21811 + - uid: 32506 components: - type: Transform - pos: 9.5,8.5 + pos: -5.5,-59.5 parent: 1 - - uid: 21812 + - uid: 32507 components: - type: Transform - pos: 9.5,9.5 + pos: -6.5,-59.5 parent: 1 - - uid: 21813 + - uid: 32508 components: - type: Transform - pos: -0.5,5.5 + pos: -7.5,-59.5 parent: 1 - - uid: 21814 + - uid: 32509 components: - type: Transform - pos: -0.5,4.5 + pos: -8.5,-59.5 parent: 1 - - uid: 21815 + - uid: 32510 components: - type: Transform - pos: -0.5,3.5 + pos: -9.5,-59.5 parent: 1 - - uid: 21816 + - uid: 32511 components: - type: Transform - pos: -0.5,2.5 + pos: -10.5,-59.5 parent: 1 - - uid: 21817 + - uid: 32512 components: - type: Transform - pos: -0.5,1.5 + pos: -11.5,-59.5 parent: 1 - - uid: 21818 + - uid: 32513 components: - type: Transform - pos: -0.5,0.5 + pos: -12.5,-59.5 parent: 1 - - uid: 21819 + - uid: 32514 components: - type: Transform - pos: -0.5,-0.5 + pos: -12.5,-58.5 parent: 1 - - uid: 21820 + - uid: 32515 components: - type: Transform - pos: -0.5,-1.5 + pos: -12.5,-57.5 parent: 1 - - uid: 21821 + - uid: 32718 components: - type: Transform - pos: -0.5,-2.5 + pos: -118.5,-36.5 parent: 1 - - uid: 21822 + - uid: 32724 components: - type: Transform - pos: 2.5,-2.5 + pos: -118.5,-37.5 parent: 1 - - uid: 21824 + - uid: 32725 components: - type: Transform - pos: 1.5,-2.5 + pos: -117.5,-37.5 parent: 1 - - uid: 21825 + - uid: 32729 components: - type: Transform - pos: -4.5,-2.5 + pos: -117.5,-38.5 parent: 1 - - uid: 21826 + - uid: 32730 components: - type: Transform - pos: -5.5,-2.5 + pos: -116.5,-38.5 parent: 1 - - uid: 21827 + - uid: 32731 components: - type: Transform - pos: -6.5,-2.5 + pos: -115.5,-38.5 parent: 1 - - uid: 21828 + - uid: 32732 components: - type: Transform - pos: -7.5,-2.5 + pos: -114.5,-38.5 parent: 1 - - uid: 21829 + - uid: 32733 components: - type: Transform - pos: -8.5,-2.5 + pos: -113.5,-38.5 parent: 1 - - uid: 21830 + - uid: 32734 components: - type: Transform - pos: -9.5,-2.5 + pos: -113.5,-37.5 parent: 1 - - uid: 21831 + - uid: 32742 components: - type: Transform - pos: -9.5,-1.5 + pos: -93.5,-11.5 parent: 1 - - uid: 21832 + - uid: 32772 components: - type: Transform - pos: -9.5,-0.5 + pos: -101.5,-7.5 parent: 1 - - uid: 21833 + - uid: 32773 components: - type: Transform - pos: -9.5,0.5 + pos: -102.5,-7.5 parent: 1 - - uid: 21834 + - uid: 33149 components: - type: Transform - pos: -9.5,1.5 + pos: -143.5,-0.5 parent: 1 - - uid: 21835 + - uid: 33159 components: - type: Transform - pos: -9.5,2.5 + pos: -77.5,-24.5 parent: 1 - - uid: 21836 + - uid: 33160 components: - type: Transform - pos: -8.5,2.5 + pos: -76.5,-24.5 parent: 1 - - uid: 21837 + - uid: 33161 components: - type: Transform - pos: -7.5,2.5 + pos: -75.5,-24.5 parent: 1 - - uid: 21838 + - uid: 33162 components: - type: Transform - pos: -6.5,2.5 + pos: -75.5,-23.5 parent: 1 - - uid: 21839 + - uid: 33370 components: - type: Transform - pos: -5.5,2.5 + pos: -142.5,-0.5 parent: 1 - - uid: 21840 + - uid: 33371 components: - type: Transform - pos: -4.5,2.5 + pos: -141.5,-0.5 parent: 1 - - uid: 21841 + - uid: 33372 components: - type: Transform - pos: -4.5,1.5 + pos: -140.5,-0.5 parent: 1 - - uid: 21842 + - uid: 33373 components: - type: Transform - pos: -4.5,0.5 + pos: -140.5,0.5 parent: 1 - - uid: 21843 + - uid: 33374 components: - type: Transform - pos: -4.5,-0.5 + pos: -140.5,1.5 parent: 1 - - uid: 21844 + - uid: 33375 components: - type: Transform - pos: -4.5,-1.5 + pos: -140.5,2.5 parent: 1 - - uid: 21845 + - uid: 33376 components: - type: Transform - pos: 0.5,-2.5 + pos: -140.5,3.5 parent: 1 - - uid: 21846 + - uid: 33377 components: - type: Transform - pos: -3.5,-2.5 + pos: -140.5,4.5 parent: 1 - - uid: 21848 + - uid: 33378 components: - type: Transform - pos: 3.5,-2.5 + pos: -140.5,5.5 parent: 1 - - uid: 21849 + - uid: 33379 components: - type: Transform - pos: 4.5,-2.5 + pos: -141.5,5.5 parent: 1 - - uid: 21850 + - uid: 33380 components: - type: Transform - pos: 5.5,-2.5 + pos: -142.5,5.5 parent: 1 - - uid: 21851 + - uid: 33381 components: - type: Transform - pos: 6.5,-2.5 + pos: -143.5,5.5 parent: 1 - - uid: 21852 + - uid: 33382 components: - type: Transform - pos: 7.5,-2.5 + pos: -144.5,5.5 parent: 1 - - uid: 21853 + - uid: 33383 components: - type: Transform - pos: 8.5,-2.5 + pos: -145.5,5.5 parent: 1 - - uid: 21854 + - uid: 33384 components: - type: Transform - pos: 8.5,-1.5 + pos: -146.5,5.5 parent: 1 - - uid: 21855 + - uid: 33385 components: - type: Transform - pos: 8.5,-0.5 + pos: -147.5,5.5 parent: 1 - - uid: 21856 + - uid: 33386 components: - type: Transform - pos: 8.5,0.5 + pos: -148.5,5.5 parent: 1 - - uid: 21857 + - uid: 33387 components: - type: Transform - pos: 8.5,1.5 + pos: -149.5,5.5 parent: 1 - - uid: 21858 + - uid: 33388 components: - type: Transform - pos: 8.5,2.5 + pos: -150.5,5.5 parent: 1 - - uid: 21859 + - uid: 33389 components: - type: Transform - pos: 7.5,2.5 + pos: -151.5,5.5 parent: 1 - - uid: 21860 + - uid: 33390 components: - type: Transform - pos: 6.5,2.5 + pos: -152.5,5.5 parent: 1 - - uid: 21861 + - uid: 33391 components: - type: Transform - pos: 5.5,2.5 + pos: -153.5,5.5 parent: 1 - - uid: 21862 + - uid: 33392 components: - type: Transform - pos: 4.5,2.5 + pos: -154.5,5.5 parent: 1 - - uid: 21863 + - uid: 33393 components: - type: Transform - pos: 3.5,2.5 + pos: -154.5,6.5 parent: 1 - - uid: 21864 + - uid: 33394 components: - type: Transform - pos: 3.5,1.5 + pos: -154.5,7.5 parent: 1 - - uid: 21865 + - uid: 33395 components: - type: Transform - pos: 3.5,0.5 + pos: -154.5,8.5 parent: 1 - - uid: 21866 + - uid: 33396 components: - type: Transform - pos: 3.5,-0.5 + pos: -154.5,9.5 parent: 1 - - uid: 21867 + - uid: 33397 components: - type: Transform - pos: 3.5,-1.5 + pos: -154.5,10.5 parent: 1 - - uid: 21868 + - uid: 33398 components: - type: Transform - pos: -1.5,-19.5 + pos: -154.5,11.5 parent: 1 - - uid: 21869 + - uid: 33399 components: - type: Transform - pos: -0.5,-19.5 + pos: -154.5,12.5 parent: 1 - - uid: 21870 + - uid: 33400 components: - type: Transform - pos: 0.5,-19.5 + pos: -154.5,13.5 parent: 1 - - uid: 21871 + - uid: 33401 components: - type: Transform - pos: -0.5,-18.5 + pos: -154.5,14.5 parent: 1 - - uid: 21872 + - uid: 33402 components: - type: Transform - pos: -0.5,-17.5 + pos: -154.5,15.5 parent: 1 - - uid: 21873 + - uid: 33403 components: - type: Transform - pos: -0.5,-16.5 + pos: -154.5,16.5 parent: 1 - - uid: 21874 + - uid: 33404 components: - type: Transform - pos: -0.5,-15.5 + pos: -154.5,17.5 parent: 1 - - uid: 21875 + - uid: 33405 components: - type: Transform - pos: -0.5,-14.5 + pos: -154.5,18.5 parent: 1 - - uid: 21876 + - uid: 33406 components: - type: Transform - pos: -1.5,-14.5 + pos: -154.5,19.5 parent: 1 - - uid: 21877 + - uid: 33407 components: - type: Transform - pos: -2.5,-14.5 + pos: -154.5,20.5 parent: 1 - - uid: 21878 + - uid: 33408 components: - type: Transform - pos: -3.5,-14.5 + pos: -154.5,21.5 parent: 1 - - uid: 21879 + - uid: 33409 components: - type: Transform - pos: -4.5,-14.5 + pos: -153.5,21.5 parent: 1 - - uid: 21880 + - uid: 33410 components: - type: Transform - pos: -5.5,-14.5 + pos: -152.5,21.5 parent: 1 - - uid: 21881 + - uid: 33411 components: - type: Transform - pos: -6.5,-14.5 + pos: -151.5,21.5 parent: 1 - - uid: 21882 + - uid: 33412 components: - type: Transform - pos: -7.5,-14.5 + pos: -150.5,21.5 parent: 1 - - uid: 21883 + - uid: 33413 components: - type: Transform - pos: -7.5,-13.5 + pos: -149.5,21.5 parent: 1 - - uid: 21884 + - uid: 33414 components: - type: Transform - pos: -7.5,-12.5 + pos: -148.5,21.5 parent: 1 - - uid: 21885 + - uid: 33415 components: - type: Transform - pos: -7.5,-11.5 + pos: -147.5,21.5 parent: 1 - - uid: 21886 + - uid: 33416 components: - type: Transform - pos: -7.5,-10.5 + pos: -146.5,21.5 parent: 1 - - uid: 21887 + - uid: 33417 components: - type: Transform - pos: -6.5,-10.5 + pos: -145.5,21.5 parent: 1 - - uid: 21888 + - uid: 33418 components: - type: Transform - pos: -5.5,-10.5 + pos: -144.5,16.5 parent: 1 - - uid: 21889 + - uid: 33419 components: - type: Transform - pos: -4.5,-10.5 + pos: -145.5,16.5 parent: 1 - - uid: 21890 + - uid: 33420 components: - type: Transform - pos: 0.5,-14.5 + pos: -146.5,16.5 parent: 1 - - uid: 21891 + - uid: 33421 components: - type: Transform - pos: 1.5,-14.5 + pos: -146.5,15.5 parent: 1 - - uid: 21892 + - uid: 33422 components: - type: Transform - pos: 2.5,-14.5 + pos: -147.5,15.5 parent: 1 - - uid: 21893 + - uid: 33423 components: - type: Transform - pos: 3.5,-14.5 + pos: -147.5,14.5 parent: 1 - - uid: 21894 + - uid: 33424 components: - type: Transform - pos: 4.5,-14.5 + pos: -148.5,14.5 parent: 1 - - uid: 21895 + - uid: 33425 components: - type: Transform - pos: 5.5,-14.5 + pos: -149.5,14.5 parent: 1 - - uid: 21896 + - uid: 33426 components: - type: Transform - pos: 6.5,-14.5 + pos: -149.5,13.5 parent: 1 - - uid: 21897 + - uid: 33427 components: - type: Transform - pos: 6.5,-13.5 + pos: -149.5,12.5 parent: 1 - - uid: 21898 + - uid: 33428 components: - type: Transform - pos: 6.5,-12.5 + pos: -149.5,11.5 parent: 1 - - uid: 21899 + - uid: 33429 components: - type: Transform - pos: 6.5,-11.5 + pos: -149.5,10.5 parent: 1 - - uid: 21900 + - uid: 33430 components: - type: Transform - pos: 6.5,-10.5 + pos: -148.5,10.5 parent: 1 - - uid: 21901 + - uid: 33431 components: - type: Transform - pos: 5.5,-10.5 + pos: -147.5,10.5 parent: 1 - - uid: 21902 + - uid: 33432 components: - type: Transform - pos: 4.5,-10.5 + pos: -147.5,9.5 parent: 1 - - uid: 21903 + - uid: 33433 components: - type: Transform - pos: 3.5,-10.5 + pos: -146.5,9.5 parent: 1 - - uid: 21904 + - uid: 33434 components: - type: Transform - pos: 18.5,4.5 + pos: -146.5,8.5 parent: 1 - - uid: 21905 + - uid: 33435 components: - type: Transform - pos: 18.5,5.5 + pos: -145.5,8.5 parent: 1 - - uid: 21906 + - uid: 33436 components: - type: Transform - pos: 18.5,6.5 + pos: -144.5,8.5 parent: 1 - - uid: 21907 + - uid: 33437 components: - type: Transform - pos: 17.5,6.5 + pos: -143.5,8.5 parent: 1 - - uid: 21908 + - uid: 33438 components: - type: Transform - pos: 16.5,6.5 + pos: -142.5,8.5 parent: 1 - - uid: 21909 + - uid: 33439 components: - type: Transform - pos: 16.5,7.5 + pos: -142.5,7.5 parent: 1 - - uid: 21910 + - uid: 33440 components: - type: Transform - pos: 16.5,8.5 + pos: -141.5,7.5 parent: 1 - - uid: 21911 + - uid: 33441 components: - type: Transform - pos: 17.5,8.5 + pos: -141.5,6.5 parent: 1 - - uid: 21912 + - uid: 33581 components: - type: Transform - pos: 17.5,9.5 + pos: 38.5,-10.5 parent: 1 - - uid: 21913 + - uid: 33598 components: - type: Transform - pos: 16.5,9.5 + pos: -104.5,-7.5 parent: 1 - - uid: 21914 + - uid: 33599 components: - type: Transform - pos: 19.5,8.5 + pos: -103.5,-7.5 parent: 1 - - uid: 21922 + - uid: 33773 components: - type: Transform - pos: 20.5,8.5 + pos: -99.5,39.5 parent: 1 - - uid: 21923 + - uid: 33774 components: - type: Transform - pos: 24.5,7.5 + pos: -80.5,37.5 parent: 1 - - uid: 21924 + - uid: 33775 components: - type: Transform - pos: 24.5,8.5 + pos: -81.5,37.5 parent: 1 - - uid: 21925 + - uid: 33776 components: - type: Transform - pos: 24.5,9.5 + pos: -82.5,37.5 parent: 1 - - uid: 21926 + - uid: 33777 components: - type: Transform - pos: 24.5,10.5 + pos: -83.5,37.5 parent: 1 - - uid: 21927 + - uid: 33778 components: - type: Transform - pos: 24.5,11.5 + pos: -84.5,37.5 parent: 1 - - uid: 21928 + - uid: 33779 components: - type: Transform - pos: 24.5,12.5 + pos: -85.5,37.5 parent: 1 - - uid: 21929 + - uid: 33780 components: - type: Transform - pos: 24.5,13.5 + pos: -85.5,38.5 parent: 1 - - uid: 21930 + - uid: 33781 components: - type: Transform - pos: 24.5,14.5 + pos: -85.5,39.5 parent: 1 - - uid: 21941 + - uid: 33782 components: - type: Transform - pos: -0.5,18.5 + pos: -85.5,40.5 parent: 1 - - uid: 21948 + - uid: 33783 components: - type: Transform - pos: 18.5,3.5 + pos: -85.5,41.5 parent: 1 - - uid: 21949 + - uid: 33784 components: - type: Transform - pos: 18.5,2.5 + pos: -85.5,42.5 parent: 1 - - uid: 21950 + - uid: 33785 components: - type: Transform - pos: 17.5,2.5 + pos: -85.5,43.5 parent: 1 - - uid: 21951 + - uid: 33786 components: - type: Transform - pos: 17.5,1.5 + pos: -85.5,44.5 parent: 1 - - uid: 21952 + - uid: 33787 components: - type: Transform - pos: 17.5,0.5 + pos: -84.5,40.5 parent: 1 - - uid: 21953 + - uid: 33788 components: - type: Transform - pos: 17.5,-0.5 + pos: -83.5,40.5 parent: 1 - - uid: 21954 + - uid: 33789 components: - type: Transform - pos: 17.5,-1.5 + pos: -82.5,40.5 parent: 1 - - uid: 21955 + - uid: 33790 components: - type: Transform - pos: 17.5,-2.5 + pos: -85.5,36.5 parent: 1 - - uid: 21956 + - uid: 33791 components: - type: Transform - pos: 17.5,-3.5 + pos: -85.5,35.5 parent: 1 - - uid: 21957 + - uid: 33792 components: - type: Transform - pos: 17.5,-4.5 + pos: -85.5,34.5 parent: 1 - - uid: 21958 + - uid: 33793 components: - type: Transform - pos: 17.5,-5.5 + pos: -85.5,33.5 parent: 1 - - uid: 21959 + - uid: 33794 components: - type: Transform - pos: 17.5,-6.5 + pos: -85.5,32.5 parent: 1 - - uid: 21960 + - uid: 33795 components: - type: Transform - pos: 18.5,-6.5 + pos: -85.5,31.5 parent: 1 - - uid: 21961 + - uid: 33796 components: - type: Transform - pos: 19.5,-6.5 + pos: -85.5,30.5 parent: 1 - - uid: 21962 + - uid: 33797 components: - type: Transform - pos: 20.5,-6.5 + pos: -84.5,33.5 parent: 1 - - uid: 21963 + - uid: 33798 components: - type: Transform - pos: 13.5,-11.5 + pos: -83.5,33.5 parent: 1 - - uid: 21964 + - uid: 33799 components: - type: Transform - pos: 13.5,-10.5 + pos: -82.5,33.5 parent: 1 - - uid: 21965 + - uid: 33800 components: - type: Transform - pos: 13.5,-9.5 + pos: -86.5,30.5 parent: 1 - - uid: 21966 + - uid: 33801 components: - type: Transform - pos: 14.5,-9.5 + pos: -87.5,30.5 parent: 1 - - uid: 21967 + - uid: 33802 components: - type: Transform - pos: 15.5,-9.5 + pos: -88.5,30.5 parent: 1 - - uid: 21968 + - uid: 33803 components: - type: Transform - pos: 16.5,-9.5 + pos: -89.5,30.5 parent: 1 - - uid: 21969 + - uid: 33804 components: - type: Transform - pos: 17.5,-9.5 + pos: -90.5,30.5 parent: 1 - - uid: 21970 + - uid: 33805 components: - type: Transform - pos: 18.5,-9.5 + pos: -91.5,30.5 parent: 1 - - uid: 21971 + - uid: 33806 components: - type: Transform - pos: 19.5,-9.5 + pos: -92.5,30.5 parent: 1 - - uid: 21972 + - uid: 33807 components: - type: Transform - pos: 20.5,-9.5 + pos: -93.5,30.5 parent: 1 - - uid: 21973 + - uid: 33808 components: - type: Transform - pos: 21.5,-9.5 + pos: -94.5,30.5 parent: 1 - - uid: 21974 + - uid: 33809 components: - type: Transform - pos: 22.5,-9.5 + pos: -95.5,30.5 parent: 1 - - uid: 21975 + - uid: 33810 components: - type: Transform - pos: 23.5,-9.5 + pos: -96.5,30.5 parent: 1 - - uid: 21976 + - uid: 33811 components: - type: Transform - pos: 24.5,-9.5 + pos: -97.5,30.5 parent: 1 - - uid: 21977 + - uid: 33812 components: - type: Transform - pos: 25.5,-9.5 + pos: -98.5,30.5 parent: 1 - - uid: 21978 + - uid: 33813 components: - type: Transform - pos: 26.5,-9.5 + pos: -99.5,30.5 parent: 1 - - uid: 21979 + - uid: 33814 components: - type: Transform - pos: 27.5,-9.5 + pos: -99.5,31.5 parent: 1 - - uid: 21980 + - uid: 33815 components: - type: Transform - pos: 27.5,-10.5 + pos: -99.5,32.5 parent: 1 - - uid: 21981 + - uid: 33816 components: - type: Transform - pos: 27.5,-11.5 + pos: -99.5,33.5 parent: 1 - - uid: 21982 + - uid: 33817 components: - type: Transform - pos: 27.5,-12.5 + pos: -99.5,34.5 parent: 1 - - uid: 21983 + - uid: 33818 components: - type: Transform - pos: 27.5,-13.5 + pos: -99.5,35.5 parent: 1 - - uid: 21984 + - uid: 33819 components: - type: Transform - pos: 27.5,-14.5 + pos: -99.5,36.5 parent: 1 - - uid: 21985 + - uid: 33820 components: - type: Transform - pos: 27.5,-15.5 + pos: -99.5,37.5 parent: 1 - - uid: 21986 + - uid: 33821 components: - type: Transform - pos: 27.5,-16.5 + pos: -99.5,38.5 parent: 1 - - uid: 21987 + - uid: 33822 components: - type: Transform - pos: 27.5,-17.5 + pos: -99.5,39.5 parent: 1 - - uid: 21988 + - uid: 33823 components: - type: Transform - pos: 27.5,-18.5 + pos: -99.5,40.5 parent: 1 - - uid: 21989 + - uid: 33824 components: - type: Transform - pos: 27.5,-19.5 + pos: -99.5,41.5 parent: 1 - - uid: 21990 + - uid: 33825 components: - type: Transform - pos: 27.5,-20.5 + pos: -99.5,42.5 parent: 1 - - uid: 21991 + - uid: 33826 components: - type: Transform - pos: 27.5,-21.5 + pos: -99.5,43.5 parent: 1 - - uid: 21992 + - uid: 33827 components: - type: Transform - pos: 27.5,-22.5 + pos: -99.5,44.5 parent: 1 - - uid: 21993 + - uid: 33844 components: - type: Transform - pos: 13.5,-12.5 + pos: -101.5,-24.5 parent: 1 - - uid: 21994 + - uid: 33845 components: - type: Transform - pos: 13.5,-13.5 + pos: -101.5,-23.5 parent: 1 - - uid: 21995 + - uid: 33846 components: - type: Transform - pos: 14.5,-13.5 + pos: -101.5,-22.5 parent: 1 - - uid: 21996 + - uid: 33847 components: - type: Transform - pos: 15.5,-13.5 + pos: -101.5,-21.5 parent: 1 - - uid: 21997 + - uid: 33864 components: - type: Transform - pos: 15.5,-14.5 + pos: -55.5,6.5 parent: 1 - - uid: 21998 + - uid: 34003 components: - type: Transform - pos: 16.5,-13.5 + pos: -100.5,44.5 parent: 1 - - uid: 21999 + - uid: 34008 components: - type: Transform - pos: 17.5,-13.5 + pos: -100.5,45.5 parent: 1 - - uid: 22000 + - uid: 34009 components: - type: Transform - pos: 18.5,-13.5 + pos: -100.5,46.5 parent: 1 - - uid: 22001 + - uid: 34010 components: - type: Transform - pos: 19.5,-13.5 + pos: -100.5,47.5 parent: 1 - - uid: 22002 + - uid: 34011 components: - type: Transform - pos: 20.5,-13.5 + pos: -100.5,48.5 parent: 1 - - uid: 22003 + - uid: 34012 components: - type: Transform - pos: 21.5,-13.5 + pos: -100.5,49.5 parent: 1 - - uid: 22004 + - uid: 34013 components: - type: Transform - pos: 22.5,-13.5 + pos: -100.5,50.5 parent: 1 - - uid: 22005 + - uid: 34014 components: - type: Transform - pos: 23.5,-13.5 + pos: -100.5,51.5 parent: 1 - - uid: 22006 + - uid: 34015 components: - type: Transform - pos: 15.5,-17.5 + pos: -100.5,52.5 parent: 1 - - uid: 22007 + - uid: 34016 components: - type: Transform - pos: 15.5,-18.5 + pos: -100.5,53.5 parent: 1 - - uid: 22008 + - uid: 34017 components: - type: Transform - pos: 16.5,-18.5 + pos: -100.5,54.5 parent: 1 - - uid: 22009 + - uid: 34018 components: - type: Transform - pos: 17.5,-18.5 + pos: -100.5,55.5 parent: 1 - - uid: 22010 + - uid: 34019 components: - type: Transform - pos: 18.5,-18.5 + pos: -100.5,56.5 parent: 1 - - uid: 22011 + - uid: 34020 components: - type: Transform - pos: 19.5,-18.5 + pos: -100.5,57.5 parent: 1 - - uid: 22012 + - uid: 34021 components: - type: Transform - pos: 20.5,-18.5 + pos: -100.5,58.5 parent: 1 - - uid: 22013 + - uid: 34022 components: - type: Transform - pos: 21.5,-18.5 + pos: -100.5,59.5 parent: 1 - - uid: 22014 + - uid: 34023 components: - type: Transform - pos: 15.5,-19.5 + pos: -100.5,60.5 parent: 1 - - uid: 22015 + - uid: 34024 components: - type: Transform - pos: 14.5,-19.5 + pos: -100.5,61.5 parent: 1 - - uid: 22016 + - uid: 34025 components: - type: Transform - pos: 15.5,-20.5 + pos: -100.5,62.5 parent: 1 - - uid: 22017 + - uid: 34026 components: - type: Transform - pos: 15.5,-21.5 + pos: -100.5,63.5 parent: 1 - - uid: 22018 + - uid: 34027 components: - type: Transform - pos: 15.5,-22.5 + pos: -84.5,44.5 parent: 1 - - uid: 22037 + - uid: 34028 components: - type: Transform - pos: 0.5,-33.5 + pos: -84.5,45.5 parent: 1 - - uid: 22038 + - uid: 34029 components: - type: Transform - pos: 1.5,-33.5 + pos: -84.5,46.5 parent: 1 - - uid: 22039 + - uid: 34030 components: - type: Transform - pos: 2.5,-33.5 + pos: -84.5,47.5 parent: 1 - - uid: 22040 + - uid: 34031 components: - type: Transform - pos: 2.5,-32.5 + pos: -84.5,48.5 parent: 1 - - uid: 22041 + - uid: 34032 components: - type: Transform - pos: 2.5,-31.5 + pos: -84.5,49.5 parent: 1 - - uid: 22042 + - uid: 34033 components: - type: Transform - pos: 2.5,-30.5 + pos: -84.5,50.5 parent: 1 - - uid: 22043 + - uid: 34034 components: - type: Transform - pos: 3.5,-30.5 + pos: -84.5,51.5 parent: 1 - - uid: 22044 + - uid: 34035 components: - type: Transform - pos: 4.5,-30.5 + pos: -84.5,52.5 parent: 1 - - uid: 22045 + - uid: 34036 components: - type: Transform - pos: 5.5,-30.5 + pos: -84.5,53.5 parent: 1 - - uid: 22046 + - uid: 34037 components: - type: Transform - pos: 6.5,-30.5 + pos: -84.5,54.5 parent: 1 - - uid: 22047 + - uid: 34038 components: - type: Transform - pos: 7.5,-30.5 + pos: -84.5,55.5 parent: 1 - - uid: 22048 + - uid: 34039 components: - type: Transform - pos: 7.5,-31.5 + pos: -84.5,56.5 parent: 1 - - uid: 22049 + - uid: 34040 components: - type: Transform - pos: 7.5,-32.5 + pos: -84.5,57.5 parent: 1 - - uid: 22050 + - uid: 34041 components: - type: Transform - pos: 7.5,-33.5 + pos: -84.5,58.5 parent: 1 - - uid: 22051 + - uid: 34042 components: - type: Transform - pos: 7.5,-34.5 + pos: -84.5,59.5 parent: 1 - - uid: 22052 + - uid: 34043 components: - type: Transform - pos: 2.5,-34.5 + pos: -84.5,60.5 parent: 1 - - uid: 22053 + - uid: 34044 components: - type: Transform - pos: 2.5,-35.5 + pos: -84.5,61.5 parent: 1 - - uid: 22054 + - uid: 34045 components: - type: Transform - pos: 2.5,-36.5 + pos: -84.5,62.5 parent: 1 - - uid: 22055 + - uid: 34046 components: - type: Transform - pos: 2.5,-37.5 + pos: -84.5,63.5 parent: 1 - - uid: 22056 + - uid: 34185 components: - type: Transform - pos: 1.5,-37.5 + pos: -96.5,-34.5 parent: 1 - - uid: 22057 + - uid: 34186 components: - type: Transform - pos: 3.5,-37.5 + pos: -96.5,-35.5 parent: 1 - - uid: 22058 + - uid: 34187 components: - type: Transform - pos: 4.5,-37.5 + pos: -96.5,-36.5 parent: 1 - - uid: 22059 + - uid: 34188 components: - type: Transform - pos: 4.5,-38.5 + pos: -96.5,-37.5 parent: 1 - - uid: 22060 + - uid: 34275 components: - type: Transform - pos: -0.5,-33.5 + pos: -96.5,-41.5 parent: 1 - - uid: 22061 + - uid: 34563 components: - type: Transform - pos: -1.5,-33.5 + pos: -96.5,-10.5 parent: 1 - - uid: 22062 + - uid: 34666 components: - type: Transform - pos: -1.5,-34.5 + pos: -12.5,-56.5 parent: 1 - - uid: 22063 + - uid: 34722 components: - type: Transform - pos: -2.5,-34.5 + pos: -0.5,21.5 parent: 1 - - uid: 22064 + - uid: 34752 components: - type: Transform - pos: -3.5,-34.5 + pos: -101.5,-18.5 parent: 1 - - uid: 22065 + - uid: 34753 components: - type: Transform - pos: -4.5,-34.5 + pos: -101.5,-16.5 parent: 1 - - uid: 22066 + - uid: 34765 components: - type: Transform - pos: -4.5,-35.5 + pos: -50.5,-75.5 parent: 1 - - uid: 22067 + - uid: 34766 components: - type: Transform - pos: -4.5,-36.5 + pos: -50.5,-76.5 parent: 1 - - uid: 22068 + - uid: 34767 components: - type: Transform - pos: -4.5,-37.5 + pos: -50.5,-77.5 parent: 1 - - uid: 22069 + - uid: 34768 components: - type: Transform - pos: -5.5,-35.5 + pos: -49.5,-77.5 parent: 1 - - uid: 22070 + - uid: 34769 components: - type: Transform - pos: -6.5,-35.5 + pos: -48.5,-77.5 parent: 1 - - uid: 22071 + - uid: 34770 components: - type: Transform - pos: -7.5,-35.5 + pos: -47.5,-77.5 parent: 1 - - uid: 22072 + - uid: 34771 components: - type: Transform - pos: -8.5,-35.5 + pos: -46.5,-77.5 parent: 1 - - uid: 22073 + - uid: 34772 components: - type: Transform - pos: -9.5,-35.5 + pos: -45.5,-77.5 parent: 1 - - uid: 22074 + - uid: 34773 components: - type: Transform - pos: -10.5,-35.5 + pos: -44.5,-77.5 parent: 1 - - uid: 22075 + - uid: 34774 components: - type: Transform - pos: -10.5,-34.5 + pos: -43.5,-77.5 parent: 1 - - uid: 22076 + - uid: 34775 components: - type: Transform - pos: -11.5,-34.5 + pos: -42.5,-77.5 parent: 1 - - uid: 22077 + - uid: 34776 components: - type: Transform - pos: -11.5,-33.5 + pos: -41.5,-77.5 parent: 1 - - uid: 22078 + - uid: 34777 components: - type: Transform - pos: -11.5,-32.5 + pos: -40.5,-77.5 parent: 1 - - uid: 22079 + - uid: 34780 components: - type: Transform - pos: -11.5,-31.5 + pos: -39.5,-75.5 parent: 1 - - uid: 22080 + - uid: 34858 components: - type: Transform - pos: -11.5,-30.5 + pos: -11.5,-26.5 parent: 1 - - uid: 22081 + - uid: 34859 components: - type: Transform - pos: -10.5,-30.5 + pos: -10.5,-26.5 parent: 1 - - uid: 22082 + - uid: 34860 components: - type: Transform - pos: -9.5,-30.5 + pos: -9.5,-26.5 parent: 1 - - uid: 22083 + - uid: 34967 components: - type: Transform - pos: -8.5,-30.5 + pos: -12.5,-55.5 parent: 1 - - uid: 22084 + - uid: 34968 components: - type: Transform - pos: -7.5,-30.5 + pos: -12.5,-54.5 parent: 1 - - uid: 22085 + - uid: 34969 components: - type: Transform - pos: -6.5,-30.5 + pos: -6.5,-54.5 parent: 1 - - uid: 22086 + - uid: 34970 components: - type: Transform - pos: -5.5,-30.5 + pos: -6.5,-53.5 parent: 1 - - uid: 22087 + - uid: 34971 components: - type: Transform - pos: -4.5,-30.5 + pos: -6.5,-52.5 parent: 1 - - uid: 22088 + - uid: 34972 components: - type: Transform - pos: -4.5,-31.5 + pos: -6.5,-51.5 parent: 1 - - uid: 22089 + - uid: 34973 components: - type: Transform - pos: -4.5,-32.5 + pos: -7.5,-51.5 parent: 1 - - uid: 22090 + - uid: 34974 components: - type: Transform - pos: -4.5,-33.5 + pos: -8.5,-51.5 parent: 1 - - uid: 22091 + - uid: 34975 components: - type: Transform - pos: -3.5,-30.5 + pos: -10.5,-51.5 parent: 1 - - uid: 22092 + - uid: 34976 components: - type: Transform - pos: -2.5,-30.5 + pos: -11.5,-51.5 parent: 1 - - uid: 22093 + - uid: 35007 components: - type: Transform - pos: -8.5,-29.5 + pos: -12.5,-51.5 parent: 1 - - uid: 22094 + - uid: 35008 components: - type: Transform - pos: -8.5,-28.5 + pos: -12.5,-52.5 parent: 1 - - uid: 22095 + - uid: 35009 components: - type: Transform - pos: -8.5,-27.5 + pos: -12.5,-53.5 parent: 1 - - uid: 22096 + - uid: 35010 components: - type: Transform - pos: -8.5,-26.5 + pos: -11.5,-53.5 parent: 1 - - uid: 22097 + - uid: 35011 components: - type: Transform - pos: -8.5,-36.5 + pos: -10.5,-53.5 parent: 1 - - uid: 22098 + - uid: 35496 components: - type: Transform - pos: -8.5,-37.5 + pos: -96.5,-38.5 parent: 1 - - uid: 22099 + - uid: 35566 components: - type: Transform - pos: -8.5,-38.5 + pos: -137.5,-21.5 parent: 1 - - uid: 22100 + - uid: 35569 components: - type: Transform - pos: -9.5,-38.5 + pos: -137.5,-22.5 parent: 1 - - uid: 22101 + - uid: 35571 components: - type: Transform - pos: -10.5,-38.5 + pos: -136.5,-22.5 parent: 1 - - uid: 22102 + - uid: 36550 components: - type: Transform - pos: -11.5,-38.5 + pos: -137.5,-20.5 parent: 1 - - uid: 22103 + - uid: 38378 components: - type: Transform - pos: -11.5,-39.5 + pos: -73.5,21.5 parent: 1 - - uid: 22181 + - uid: 38379 components: - type: Transform - pos: -52.5,-32.5 + pos: -37.5,20.5 parent: 1 - - uid: 22182 + - uid: 38380 components: - type: Transform - pos: -52.5,-31.5 + pos: -36.5,20.5 parent: 1 - - uid: 22183 + - uid: 38381 components: - type: Transform - pos: -52.5,-30.5 + pos: -35.5,20.5 parent: 1 - - uid: 22184 + - uid: 38382 components: - type: Transform - pos: -53.5,-30.5 + pos: -34.5,20.5 parent: 1 - - uid: 22185 + - uid: 38383 components: - type: Transform - pos: -54.5,-30.5 + pos: -33.5,20.5 parent: 1 - - uid: 22186 + - uid: 38384 components: - type: Transform - pos: -55.5,-30.5 + pos: -32.5,20.5 parent: 1 - - uid: 22187 + - uid: 38385 components: - type: Transform - pos: -55.5,-29.5 + pos: -31.5,20.5 parent: 1 - - uid: 22233 + - uid: 38386 components: - type: Transform - pos: -53.5,-41.5 + pos: -30.5,20.5 parent: 1 - - uid: 22250 + - uid: 38387 components: - type: Transform - pos: -53.5,-39.5 + pos: -30.5,24.5 parent: 1 - - uid: 22252 + - uid: 38388 components: - type: Transform - pos: -53.5,-38.5 + pos: -31.5,24.5 parent: 1 - - uid: 22272 + - uid: 38389 components: - type: Transform - pos: -53.5,-34.5 + pos: -32.5,24.5 parent: 1 - - uid: 22273 + - uid: 38390 components: - type: Transform - pos: -53.5,-35.5 + pos: -33.5,24.5 parent: 1 - - uid: 22274 + - uid: 38391 components: - type: Transform - pos: -53.5,-36.5 + pos: -34.5,24.5 parent: 1 - - uid: 22382 + - uid: 38392 components: - type: Transform - pos: 36.5,-10.5 + pos: -35.5,24.5 parent: 1 - - uid: 22506 + - uid: 38393 components: - type: Transform - pos: 37.5,-10.5 + pos: -36.5,24.5 parent: 1 - - uid: 23055 + - uid: 38394 components: - type: Transform - pos: -43.5,-28.5 + pos: -37.5,24.5 parent: 1 - - uid: 23446 + - uid: 38395 components: - type: Transform - pos: -43.5,-29.5 + pos: -38.5,24.5 parent: 1 - - uid: 23500 + - uid: 38396 components: - type: Transform - pos: -53.5,-42.5 + pos: -39.5,24.5 parent: 1 - - uid: 23554 + - uid: 38397 components: - type: Transform - pos: -53.5,-43.5 + pos: -40.5,24.5 parent: 1 - - uid: 23555 + - uid: 38398 components: - type: Transform - pos: -53.5,-44.5 + pos: -40.5,23.5 parent: 1 - - uid: 23608 + - uid: 38399 components: - type: Transform - pos: -112.5,1.5 + pos: -55.5,36.5 parent: 1 - - uid: 23610 + - uid: 38400 components: - type: Transform - pos: -109.5,-0.5 + pos: -54.5,36.5 parent: 1 - - uid: 23611 + - uid: 38401 components: - type: Transform - pos: -109.5,0.5 + pos: -53.5,36.5 parent: 1 - - uid: 23612 + - uid: 38402 components: - type: Transform - pos: -55.5,-40.5 + pos: -53.5,37.5 parent: 1 - - uid: 24747 + - uid: 38536 components: - type: Transform - pos: -80.5,-39.5 + pos: 5.5,36.5 parent: 1 - - uid: 24763 + - uid: 38539 components: - type: Transform - pos: -96.5,-40.5 + pos: -74.5,41.5 parent: 1 - - uid: 24939 + - uid: 38540 components: - type: Transform - pos: 24.5,5.5 + pos: -74.5,42.5 parent: 1 - - uid: 24940 + - uid: 38541 components: - type: Transform - pos: 25.5,5.5 + pos: -74.5,43.5 parent: 1 - - uid: 24941 + - uid: 38542 components: - type: Transform - pos: 26.5,5.5 + pos: -73.5,43.5 parent: 1 - - uid: 24942 + - uid: 38543 components: - type: Transform - pos: 27.5,5.5 + pos: -72.5,43.5 parent: 1 - - uid: 24943 + - uid: 38544 components: - type: Transform - pos: 27.5,6.5 + pos: -72.5,42.5 parent: 1 - - uid: 24944 + - uid: 38545 components: - type: Transform - pos: 27.5,7.5 + pos: -72.5,41.5 parent: 1 - - uid: 26926 + - uid: 38546 components: - type: Transform - pos: -6.5,17.5 + pos: -64.5,41.5 parent: 1 - - uid: 28649 + - uid: 38547 components: - type: Transform - pos: -78.5,-39.5 + pos: -64.5,42.5 parent: 1 - - uid: 28676 + - uid: 38548 components: - type: Transform - pos: -41.5,-47.5 + pos: -64.5,43.5 parent: 1 - - uid: 28677 + - uid: 38549 components: - type: Transform - pos: -41.5,-46.5 + pos: -64.5,43.5 parent: 1 - - uid: 28678 + - uid: 38550 components: - type: Transform - pos: -41.5,-45.5 + pos: -65.5,43.5 parent: 1 - - uid: 28679 + - uid: 38551 components: - type: Transform - pos: -41.5,-44.5 + pos: -66.5,43.5 parent: 1 - - uid: 28680 + - uid: 38552 components: - type: Transform - pos: -41.5,-43.5 + pos: -66.5,42.5 parent: 1 - - uid: 28681 + - uid: 38553 components: - type: Transform - pos: -41.5,-42.5 + pos: -66.5,41.5 parent: 1 - - uid: 28682 + - uid: 38555 components: - type: Transform - pos: -41.5,-41.5 + pos: -44.5,39.5 parent: 1 - - uid: 28685 + - uid: 38556 components: - type: Transform - pos: -41.5,-40.5 + pos: -44.5,38.5 parent: 1 - - uid: 29284 + - uid: 38557 components: - type: Transform - pos: -83.5,-39.5 + pos: -44.5,37.5 parent: 1 - - uid: 29316 + - uid: 38558 components: - type: Transform - pos: -41.5,-39.5 + pos: -44.5,36.5 parent: 1 - - uid: 29317 + - uid: 38559 components: - type: Transform - pos: -41.5,-38.5 + pos: -44.5,35.5 parent: 1 - - uid: 29328 + - uid: 38560 components: - type: Transform - pos: -74.5,-13.5 + pos: -44.5,34.5 parent: 1 - - uid: 29329 + - uid: 38561 components: - type: Transform - pos: -74.5,-12.5 + pos: -45.5,34.5 parent: 1 - - uid: 29330 + - uid: 38562 components: - type: Transform - pos: -73.5,34.5 + pos: -46.5,34.5 parent: 1 - - uid: 29331 + - uid: 38563 components: - type: Transform - pos: -73.5,33.5 + pos: -47.5,34.5 parent: 1 - - uid: 29332 + - uid: 38564 components: - type: Transform - pos: -73.5,32.5 + pos: -48.5,34.5 parent: 1 - - uid: 29333 + - uid: 38565 components: - type: Transform - pos: -61.5,9.5 + pos: -48.5,35.5 parent: 1 - - uid: 29334 + - uid: 38566 components: - type: Transform - pos: -62.5,9.5 + pos: -48.5,36.5 parent: 1 - - uid: 29335 + - uid: 38567 components: - type: Transform - pos: -63.5,9.5 + pos: -48.5,37.5 parent: 1 - - uid: 29336 + - uid: 38568 components: - type: Transform - pos: -64.5,9.5 + pos: -48.5,38.5 parent: 1 - - uid: 29337 + - uid: 38569 components: - type: Transform - pos: -65.5,9.5 + pos: -48.5,39.5 parent: 1 - - uid: 29338 + - uid: 38570 components: - type: Transform - pos: -66.5,9.5 + pos: -48.5,40.5 parent: 1 - - uid: 29339 + - uid: 38571 components: - type: Transform - pos: -67.5,9.5 + pos: -48.5,41.5 parent: 1 - - uid: 29340 + - uid: 38572 components: - type: Transform - pos: -68.5,9.5 + pos: -48.5,42.5 parent: 1 - - uid: 29341 + - uid: 38573 components: - type: Transform - pos: -69.5,9.5 + pos: -48.5,43.5 parent: 1 - - uid: 29342 + - uid: 38574 components: - type: Transform - pos: -65.5,10.5 + pos: -47.5,43.5 parent: 1 - - uid: 29343 + - uid: 38575 components: - type: Transform - pos: -65.5,11.5 + pos: -46.5,43.5 parent: 1 - - uid: 29344 + - uid: 38576 components: - type: Transform - pos: -65.5,12.5 + pos: -46.5,42.5 parent: 1 - - uid: 29345 + - uid: 38577 components: - type: Transform - pos: -65.5,13.5 + pos: -46.5,41.5 parent: 1 - - uid: 29346 + - uid: 38578 components: - type: Transform - pos: -65.5,14.5 + pos: -46.5,40.5 parent: 1 - - uid: 29347 + - uid: 38579 components: - type: Transform - pos: -65.5,15.5 + pos: -46.5,39.5 parent: 1 - - uid: 29348 + - uid: 38580 components: - type: Transform - pos: -65.5,16.5 + pos: -46.5,38.5 parent: 1 - - uid: 30040 + - uid: 38581 components: - type: Transform - pos: -81.5,-39.5 + pos: -46.5,37.5 parent: 1 - - uid: 30153 + - uid: 38582 components: - type: Transform - pos: -21.5,-20.5 + pos: -45.5,37.5 parent: 1 - - uid: 30154 + - uid: 38583 components: - type: Transform - pos: -20.5,-20.5 + pos: -47.5,37.5 parent: 1 - - uid: 30155 + - uid: 38584 components: - type: Transform - pos: -20.5,-19.5 + pos: -43.5,37.5 parent: 1 - - uid: 30156 + - uid: 38585 components: - type: Transform - pos: -20.5,-21.5 + pos: -42.5,37.5 parent: 1 - - uid: 30157 + - uid: 38586 components: - type: Transform - pos: -20.5,-22.5 + pos: -41.5,37.5 parent: 1 - - uid: 30159 + - uid: 38587 components: - type: Transform - pos: -12.5,-22.5 + pos: -40.5,37.5 parent: 1 - - uid: 30160 + - uid: 38588 components: - type: Transform - pos: -13.5,-22.5 + pos: -40.5,38.5 parent: 1 - - uid: 30161 + - uid: 38589 components: - type: Transform - pos: -14.5,-22.5 + pos: -40.5,39.5 parent: 1 - - uid: 30162 + - uid: 38590 components: - type: Transform - pos: -15.5,-22.5 + pos: -40.5,40.5 parent: 1 - - uid: 30163 + - uid: 38591 components: - type: Transform - pos: -16.5,-22.5 + pos: -40.5,41.5 parent: 1 - - uid: 30164 + - uid: 38592 components: - type: Transform - pos: -17.5,-22.5 + pos: -41.5,41.5 parent: 1 - - uid: 30348 + - uid: 38593 components: - type: Transform - pos: -69.5,22.5 + pos: -42.5,41.5 parent: 1 - - uid: 30368 + - uid: 38594 components: - type: Transform - pos: -32.5,-65.5 + pos: -43.5,41.5 parent: 1 - - uid: 30369 + - uid: 38595 components: - type: Transform - pos: -33.5,-65.5 + pos: -39.5,41.5 parent: 1 - - uid: 30370 + - uid: 38596 components: - type: Transform - pos: -34.5,-65.5 + pos: -38.5,41.5 parent: 1 - - uid: 30371 + - uid: 38597 components: - type: Transform - pos: -35.5,-65.5 + pos: -40.5,36.5 parent: 1 - - uid: 30388 + - uid: 38598 components: - type: Transform - pos: -74.5,-5.5 + pos: -40.5,35.5 parent: 1 - - uid: 31056 + - uid: 38599 components: - type: Transform - pos: -99.5,-7.5 + pos: -40.5,34.5 parent: 1 - - uid: 31158 + - uid: 38600 components: - type: Transform - pos: -100.5,-7.5 + pos: -39.5,34.5 parent: 1 - - uid: 31160 + - uid: 38601 components: - type: Transform - pos: -117.5,-39.5 + pos: -38.5,34.5 parent: 1 - - uid: 31259 + - uid: 38602 components: - type: Transform - pos: -69.5,21.5 + pos: -38.5,35.5 parent: 1 - - uid: 31331 + - uid: 38603 components: - type: Transform - pos: -63.5,-13.5 + pos: -38.5,35.5 parent: 1 - - uid: 31356 + - uid: 38604 components: - type: Transform - pos: -63.5,-12.5 + pos: -38.5,36.5 parent: 1 - - uid: 32378 + - uid: 38605 components: - type: Transform - pos: -144.5,-0.5 + pos: -38.5,37.5 parent: 1 - - uid: 32405 + - uid: 38606 components: - type: Transform - pos: 0.5,-58.5 + pos: -39.5,37.5 parent: 1 - - uid: 32406 + - uid: 38608 components: - type: Transform - pos: 4.5,-60.5 + pos: -25.5,38.5 parent: 1 - - uid: 32407 + - uid: 38609 components: - type: Transform - pos: 2.5,-63.5 + pos: -25.5,37.5 parent: 1 - - uid: 32408 + - uid: 38610 components: - type: Transform - pos: 2.5,-61.5 + pos: -25.5,36.5 parent: 1 - - uid: 32409 + - uid: 38611 components: - type: Transform - pos: 2.5,-59.5 + pos: -24.5,36.5 parent: 1 - - uid: 32432 + - uid: 38612 components: - type: Transform - pos: 43.5,30.5 + pos: -23.5,36.5 parent: 1 - - uid: 32433 + - uid: 38613 components: - type: Transform - pos: 43.5,-1.5 + pos: -22.5,36.5 parent: 1 - - uid: 32437 + - uid: 38614 components: - type: Transform - pos: 43.5,-0.5 + pos: -22.5,37.5 parent: 1 - - uid: 32438 + - uid: 38615 components: - type: Transform - pos: 41.5,34.5 + pos: -22.5,38.5 parent: 1 - - uid: 32440 + - uid: 38616 components: - type: Transform - pos: 43.5,7.5 + pos: -22.5,39.5 parent: 1 - - uid: 32441 + - uid: 38617 components: - type: Transform - pos: 43.5,6.5 + pos: -22.5,40.5 parent: 1 - - uid: 32442 + - uid: 38618 components: - type: Transform - pos: 43.5,5.5 + pos: -23.5,40.5 parent: 1 - - uid: 32443 + - uid: 38619 components: - type: Transform - pos: 43.5,0.5 + pos: -21.5,36.5 parent: 1 - - uid: 32444 + - uid: 38620 components: - type: Transform - pos: 43.5,1.5 + pos: -20.5,36.5 parent: 1 - - uid: 32448 + - uid: 38621 components: - type: Transform - pos: 43.5,28.5 + pos: -19.5,36.5 parent: 1 - - uid: 32449 + - uid: 38622 components: - type: Transform - pos: 43.5,27.5 + pos: -18.5,36.5 parent: 1 - - uid: 32450 + - uid: 38623 components: - type: Transform - pos: 43.5,20.5 + pos: -17.5,36.5 parent: 1 - - uid: 32451 + - uid: 38624 components: - type: Transform - pos: 43.5,18.5 + pos: -17.5,37.5 parent: 1 - - uid: 32452 + - uid: 38625 components: - type: Transform - pos: 43.5,17.5 + pos: -17.5,38.5 parent: 1 - - uid: 32453 + - uid: 38626 components: - type: Transform - pos: 43.5,8.5 + pos: -17.5,39.5 parent: 1 - - uid: 32454 + - uid: 38627 components: - type: Transform - pos: 43.5,13.5 + pos: -17.5,40.5 parent: 1 - - uid: 32455 + - uid: 38628 components: - type: Transform - pos: 43.5,24.5 + pos: -16.5,40.5 parent: 1 - - uid: 32456 + - uid: 38629 components: - type: Transform - pos: 43.5,22.5 + pos: -15.5,40.5 parent: 1 - - uid: 32457 + - uid: 38630 components: - type: Transform - pos: 43.5,15.5 + pos: -26.5,36.5 parent: 1 - - uid: 32458 + - uid: 38631 components: - type: Transform - pos: 43.5,16.5 + pos: -27.5,36.5 parent: 1 - - uid: 32459 + - uid: 38632 components: - type: Transform - pos: 43.5,14.5 + pos: -28.5,36.5 parent: 1 - - uid: 32460 + - uid: 38633 components: - type: Transform - pos: 43.5,11.5 + pos: -29.5,36.5 parent: 1 - - uid: 32461 + - uid: 38634 components: - type: Transform - pos: 43.5,12.5 + pos: -30.5,36.5 parent: 1 - - uid: 32462 + - uid: 38635 components: - type: Transform - pos: 43.5,10.5 + pos: -31.5,36.5 parent: 1 - - uid: 32463 + - uid: 38636 components: - type: Transform - pos: 43.5,9.5 + pos: -32.5,36.5 parent: 1 - - uid: 32464 + - uid: 38637 components: - type: Transform - pos: 43.5,3.5 + pos: -32.5,37.5 parent: 1 - - uid: 32465 + - uid: 38638 components: - type: Transform - pos: 43.5,4.5 + pos: -32.5,38.5 parent: 1 - - uid: 32466 + - uid: 38639 components: - type: Transform - pos: 43.5,2.5 + pos: -32.5,39.5 parent: 1 - - uid: 32474 + - uid: 38640 components: - type: Transform - pos: -9.5,-51.5 + pos: -32.5,40.5 parent: 1 - - uid: 32475 + - uid: 38641 components: - type: Transform - pos: -3.5,-61.5 + pos: -32.5,41.5 parent: 1 - - uid: 32476 + - uid: 38642 components: - type: Transform - pos: 4.5,-63.5 + pos: -28.5,37.5 parent: 1 - - uid: 32481 + - uid: 38643 components: - type: Transform - pos: 0.5,-55.5 + pos: -28.5,38.5 parent: 1 - - uid: 32482 + - uid: 38644 components: - type: Transform - pos: 0.5,-56.5 + pos: -28.5,39.5 parent: 1 - - uid: 32483 + - uid: 38645 components: - type: Transform - pos: 0.5,-57.5 + pos: -28.5,40.5 parent: 1 - - uid: 32484 + - uid: 38646 components: - type: Transform - pos: 1.5,-59.5 + pos: -32.5,35.5 parent: 1 - - uid: 32485 + - uid: 38647 components: - type: Transform - pos: 0.5,-59.5 + pos: -32.5,34.5 parent: 1 - - uid: 32486 + - uid: 38648 components: - type: Transform - pos: 4.5,-62.5 + pos: -32.5,33.5 parent: 1 - - uid: 32487 + - uid: 38649 components: - type: Transform - pos: 4.5,-61.5 + pos: -32.5,32.5 parent: 1 - - uid: 32488 + - uid: 38650 components: - type: Transform - pos: 4.5,-59.5 + pos: -32.5,31.5 parent: 1 - - uid: 32489 + - uid: 38651 components: - type: Transform - pos: 2.5,-62.5 + pos: -32.5,30.5 parent: 1 - - uid: 32490 + - uid: 38652 components: - type: Transform - pos: 2.5,-60.5 + pos: -33.5,30.5 parent: 1 - - uid: 32495 + - uid: 38653 components: - type: Transform - pos: 3.5,-59.5 + pos: -34.5,30.5 parent: 1 - - uid: 32496 + - uid: 38654 components: - type: Transform - pos: -3.5,-63.5 + pos: -35.5,30.5 parent: 1 - - uid: 32497 + - uid: 38655 components: - type: Transform - pos: -3.5,-62.5 + pos: -36.5,30.5 parent: 1 - - uid: 32498 + - uid: 38656 components: - type: Transform - pos: 3.5,-58.5 + pos: -37.5,30.5 parent: 1 - - uid: 32499 + - uid: 38657 components: - type: Transform - pos: -3.5,-60.5 + pos: -38.5,30.5 parent: 1 - - uid: 32500 + - uid: 38658 components: - type: Transform - pos: -5.5,-63.5 + pos: -39.5,30.5 parent: 1 - - uid: 32501 + - uid: 38659 components: - type: Transform - pos: -5.5,-62.5 + pos: -40.5,30.5 parent: 1 - - uid: 32502 + - uid: 38660 components: - type: Transform - pos: -5.5,-61.5 + pos: -34.5,29.5 parent: 1 - - uid: 32503 + - uid: 38661 components: - type: Transform - pos: 3.5,-57.5 + pos: -34.5,28.5 parent: 1 - - uid: 32504 + - uid: 38662 components: - type: Transform - pos: -4.5,-60.5 + pos: -34.5,27.5 parent: 1 - - uid: 32505 + - uid: 38663 components: - type: Transform - pos: -5.5,-60.5 + pos: -39.5,29.5 parent: 1 - - uid: 32506 + - uid: 38664 components: - type: Transform - pos: -5.5,-59.5 + pos: -39.5,28.5 parent: 1 - - uid: 32507 + - uid: 38665 components: - type: Transform - pos: -6.5,-59.5 + pos: -40.5,28.5 parent: 1 - - uid: 32508 + - uid: 38735 components: - type: Transform - pos: -7.5,-59.5 + pos: -11.5,34.5 parent: 1 - - uid: 32509 + - uid: 38736 components: - type: Transform - pos: -8.5,-59.5 + pos: -11.5,33.5 parent: 1 - - uid: 32510 + - uid: 38737 components: - type: Transform - pos: -9.5,-59.5 + pos: -11.5,32.5 parent: 1 - - uid: 32511 + - uid: 38738 components: - type: Transform - pos: -10.5,-59.5 + pos: -11.5,31.5 parent: 1 - - uid: 32512 + - uid: 38739 components: - type: Transform - pos: -11.5,-59.5 + pos: -10.5,31.5 parent: 1 - - uid: 32513 + - uid: 38740 components: - type: Transform - pos: -12.5,-59.5 + pos: -9.5,31.5 parent: 1 - - uid: 32514 + - uid: 38741 components: - type: Transform - pos: -12.5,-58.5 + pos: -11.5,30.5 parent: 1 - - uid: 32515 + - uid: 38742 components: - type: Transform - pos: -12.5,-57.5 + pos: -11.5,29.5 parent: 1 - - uid: 32718 + - uid: 38743 components: - type: Transform - pos: -118.5,-36.5 + pos: -10.5,29.5 parent: 1 - - uid: 32724 + - uid: 38744 components: - type: Transform - pos: -118.5,-37.5 + pos: -9.5,29.5 parent: 1 - - uid: 32725 + - uid: 38745 components: - type: Transform - pos: -117.5,-37.5 + pos: -12.5,31.5 parent: 1 - - uid: 32729 + - uid: 38746 components: - type: Transform - pos: -117.5,-38.5 + pos: -13.5,31.5 parent: 1 - - uid: 32730 + - uid: 38747 components: - type: Transform - pos: -116.5,-38.5 + pos: -14.5,31.5 parent: 1 - - uid: 32731 + - uid: 38748 components: - type: Transform - pos: -115.5,-38.5 + pos: -15.5,31.5 parent: 1 - - uid: 32732 + - uid: 38749 components: - type: Transform - pos: -114.5,-38.5 + pos: -16.5,31.5 parent: 1 - - uid: 32733 + - uid: 38750 components: - type: Transform - pos: -113.5,-38.5 + pos: -17.5,31.5 parent: 1 - - uid: 32734 + - uid: 38751 components: - type: Transform - pos: -113.5,-37.5 + pos: -17.5,30.5 parent: 1 - - uid: 32742 + - uid: 38752 components: - type: Transform - pos: -93.5,-11.5 + pos: -17.5,32.5 parent: 1 - - uid: 32772 + - uid: 38753 components: - type: Transform - pos: -101.5,-7.5 + pos: -11.5,34.5 parent: 1 - - uid: 32773 + - uid: 38754 components: - type: Transform - pos: -102.5,-7.5 + pos: -11.5,35.5 parent: 1 - - uid: 33149 + - uid: 38755 components: - type: Transform - pos: -143.5,-0.5 + pos: -11.5,36.5 parent: 1 - - uid: 33159 + - uid: 38756 components: - type: Transform - pos: -77.5,-24.5 + pos: -12.5,36.5 parent: 1 - - uid: 33160 + - uid: 38757 components: - type: Transform - pos: -76.5,-24.5 + pos: -13.5,36.5 parent: 1 - - uid: 33161 + - uid: 38758 components: - type: Transform - pos: -75.5,-24.5 + pos: 1.5,39.5 parent: 1 - - uid: 33162 + - uid: 38759 components: - type: Transform - pos: -75.5,-23.5 + pos: 1.5,38.5 parent: 1 - - uid: 33370 + - uid: 38760 components: - type: Transform - pos: -142.5,-0.5 + pos: 1.5,37.5 parent: 1 - - uid: 33371 + - uid: 38761 components: - type: Transform - pos: -141.5,-0.5 + pos: 1.5,36.5 parent: 1 - - uid: 33372 + - uid: 38762 components: - type: Transform - pos: -140.5,-0.5 + pos: 0.5,36.5 parent: 1 - - uid: 33373 + - uid: 38763 components: - type: Transform - pos: -140.5,0.5 + pos: -0.5,36.5 parent: 1 - - uid: 33374 + - uid: 38764 components: - type: Transform - pos: -140.5,1.5 + pos: -1.5,36.5 parent: 1 - - uid: 33375 + - uid: 38765 components: - type: Transform - pos: -140.5,2.5 + pos: -2.5,36.5 parent: 1 - - uid: 33376 + - uid: 38766 components: - type: Transform - pos: -140.5,3.5 + pos: -3.5,36.5 parent: 1 - - uid: 33377 + - uid: 38767 components: - type: Transform - pos: -140.5,4.5 + pos: -4.5,36.5 parent: 1 - - uid: 33378 + - uid: 38768 components: - type: Transform - pos: -140.5,5.5 + pos: -5.5,36.5 parent: 1 - - uid: 33379 + - uid: 38769 components: - type: Transform - pos: -141.5,5.5 + pos: -6.5,36.5 parent: 1 - - uid: 33380 + - uid: 38770 components: - type: Transform - pos: -142.5,5.5 + pos: -7.5,36.5 parent: 1 - - uid: 33381 + - uid: 38771 components: - type: Transform - pos: -143.5,5.5 + pos: -2.5,37.5 parent: 1 - - uid: 33382 + - uid: 38772 components: - type: Transform - pos: -144.5,5.5 + pos: -2.5,38.5 parent: 1 - - uid: 33383 + - uid: 38773 components: - type: Transform - pos: -145.5,5.5 + pos: -2.5,39.5 parent: 1 - - uid: 33384 + - uid: 38774 components: - type: Transform - pos: -146.5,5.5 + pos: -2.5,40.5 parent: 1 - - uid: 33385 + - uid: 38775 components: - type: Transform - pos: -147.5,5.5 + pos: -2.5,41.5 parent: 1 - - uid: 33386 + - uid: 38776 components: - type: Transform - pos: -148.5,5.5 + pos: -2.5,42.5 parent: 1 - - uid: 33387 + - uid: 38777 components: - type: Transform - pos: -149.5,5.5 + pos: -2.5,43.5 parent: 1 - - uid: 33388 + - uid: 38778 components: - type: Transform - pos: -150.5,5.5 + pos: -2.5,44.5 parent: 1 - - uid: 33389 + - uid: 38779 components: - type: Transform - pos: -151.5,5.5 + pos: -2.5,45.5 parent: 1 - - uid: 33390 + - uid: 38780 components: - type: Transform - pos: -152.5,5.5 + pos: -2.5,46.5 parent: 1 - - uid: 33391 + - uid: 38781 components: - type: Transform - pos: -153.5,5.5 + pos: -2.5,47.5 parent: 1 - - uid: 33392 + - uid: 38782 components: - type: Transform - pos: -154.5,5.5 + pos: -2.5,48.5 parent: 1 - - uid: 33393 + - uid: 38783 components: - type: Transform - pos: -154.5,6.5 + pos: -2.5,49.5 parent: 1 - - uid: 33394 + - uid: 38784 components: - type: Transform - pos: -154.5,7.5 + pos: -2.5,50.5 parent: 1 - - uid: 33395 + - uid: 38785 components: - type: Transform - pos: -154.5,8.5 + pos: -3.5,50.5 parent: 1 - - uid: 33396 + - uid: 38786 components: - type: Transform - pos: -154.5,9.5 + pos: -4.5,50.5 parent: 1 - - uid: 33397 + - uid: 38787 components: - type: Transform - pos: -154.5,10.5 + pos: -5.5,50.5 parent: 1 - - uid: 33398 + - uid: 38788 components: - type: Transform - pos: -154.5,11.5 + pos: -5.5,49.5 parent: 1 - - uid: 33399 + - uid: 38789 components: - type: Transform - pos: -154.5,12.5 + pos: -5.5,48.5 parent: 1 - - uid: 33400 + - uid: 38790 components: - type: Transform - pos: -154.5,13.5 + pos: -5.5,47.5 parent: 1 - - uid: 33401 + - uid: 38791 components: - type: Transform - pos: -154.5,14.5 + pos: -5.5,46.5 parent: 1 - - uid: 33402 + - uid: 38792 components: - type: Transform - pos: -154.5,15.5 + pos: -5.5,45.5 parent: 1 - - uid: 33403 + - uid: 38793 components: - type: Transform - pos: -154.5,16.5 + pos: -5.5,44.5 parent: 1 - - uid: 33404 + - uid: 38794 components: - type: Transform - pos: -154.5,17.5 + pos: -5.5,43.5 parent: 1 - - uid: 33405 + - uid: 38795 components: - type: Transform - pos: -154.5,18.5 + pos: -5.5,42.5 parent: 1 - - uid: 33406 + - uid: 38796 components: - type: Transform - pos: -154.5,19.5 + pos: -5.5,41.5 parent: 1 - - uid: 33407 + - uid: 38797 components: - type: Transform - pos: -154.5,20.5 + pos: -5.5,40.5 parent: 1 - - uid: 33408 + - uid: 38798 components: - type: Transform - pos: -154.5,21.5 + pos: -5.5,39.5 parent: 1 - - uid: 33409 + - uid: 38799 components: - type: Transform - pos: -153.5,21.5 + pos: -5.5,38.5 parent: 1 - - uid: 33410 + - uid: 38800 components: - type: Transform - pos: -152.5,21.5 + pos: -5.5,37.5 parent: 1 - - uid: 33411 + - uid: 38801 components: - type: Transform - pos: -151.5,21.5 + pos: 2.5,37.5 parent: 1 - - uid: 33412 + - uid: 38802 components: - type: Transform - pos: -150.5,21.5 + pos: 3.5,37.5 parent: 1 - - uid: 33413 + - uid: 38803 components: - type: Transform - pos: -149.5,21.5 + pos: 4.5,37.5 parent: 1 - - uid: 33414 + - uid: 38804 components: - type: Transform - pos: -148.5,21.5 + pos: 3.5,38.5 parent: 1 - - uid: 33415 + - uid: 38805 components: - type: Transform - pos: -147.5,21.5 + pos: 3.5,39.5 parent: 1 - - uid: 33416 + - uid: 38806 components: - type: Transform - pos: -146.5,21.5 + pos: 3.5,40.5 parent: 1 - - uid: 33417 + - uid: 38807 components: - type: Transform - pos: -145.5,21.5 + pos: 3.5,41.5 parent: 1 - - uid: 33418 + - uid: 38808 components: - type: Transform - pos: -144.5,16.5 + pos: 3.5,42.5 parent: 1 - - uid: 33419 + - uid: 38809 components: - type: Transform - pos: -145.5,16.5 + pos: 3.5,43.5 parent: 1 - - uid: 33420 + - uid: 38810 components: - type: Transform - pos: -146.5,16.5 + pos: 3.5,44.5 parent: 1 - - uid: 33421 + - uid: 38811 components: - type: Transform - pos: -146.5,15.5 + pos: 3.5,45.5 parent: 1 - - uid: 33422 + - uid: 38812 components: - type: Transform - pos: -147.5,15.5 + pos: 3.5,46.5 parent: 1 - - uid: 33423 + - uid: 38813 components: - type: Transform - pos: -147.5,14.5 + pos: 3.5,47.5 parent: 1 - - uid: 33424 + - uid: 38814 components: - type: Transform - pos: -148.5,14.5 + pos: 3.5,48.5 parent: 1 - - uid: 33425 + - uid: 38815 components: - type: Transform - pos: -149.5,14.5 + pos: 3.5,49.5 parent: 1 - - uid: 33426 + - uid: 38816 components: - type: Transform - pos: -149.5,13.5 + pos: 4.5,49.5 parent: 1 - - uid: 33427 + - uid: 38817 components: - type: Transform - pos: -149.5,12.5 + pos: 5.5,37.5 parent: 1 - - uid: 33428 + - uid: 38818 components: - type: Transform - pos: -149.5,11.5 + pos: 6.5,36.5 parent: 1 - - uid: 33429 + - uid: 38819 components: - type: Transform - pos: -149.5,10.5 + pos: 7.5,36.5 parent: 1 - - uid: 33430 + - uid: 38820 components: - type: Transform - pos: -148.5,10.5 + pos: 8.5,36.5 parent: 1 - - uid: 33431 + - uid: 38821 components: - type: Transform - pos: -147.5,10.5 + pos: 9.5,36.5 parent: 1 - - uid: 33432 + - uid: 38822 components: - type: Transform - pos: -147.5,9.5 + pos: 10.5,36.5 parent: 1 - - uid: 33433 + - uid: 38823 components: - type: Transform - pos: -146.5,9.5 + pos: 11.5,36.5 parent: 1 - - uid: 33434 + - uid: 38824 components: - type: Transform - pos: -146.5,8.5 + pos: 12.5,36.5 parent: 1 - - uid: 33435 + - uid: 38825 components: - type: Transform - pos: -145.5,8.5 + pos: 13.5,36.5 parent: 1 - - uid: 33436 + - uid: 38826 components: - type: Transform - pos: -144.5,8.5 + pos: 14.5,36.5 parent: 1 - - uid: 33437 + - uid: 38827 components: - type: Transform - pos: -143.5,8.5 + pos: 15.5,36.5 parent: 1 - - uid: 33438 + - uid: 38828 components: - type: Transform - pos: -142.5,8.5 + pos: 16.5,36.5 parent: 1 - - uid: 33439 + - uid: 38829 components: - type: Transform - pos: -142.5,7.5 + pos: 17.5,36.5 parent: 1 - - uid: 33440 + - uid: 38830 components: - type: Transform - pos: -141.5,7.5 + pos: 18.5,36.5 parent: 1 - - uid: 33441 + - uid: 38831 components: - type: Transform - pos: -141.5,6.5 + pos: 19.5,36.5 parent: 1 - - uid: 33581 + - uid: 38832 components: - type: Transform - pos: 38.5,-10.5 + pos: 20.5,36.5 parent: 1 - - uid: 33598 + - uid: 38833 components: - type: Transform - pos: -104.5,-7.5 + pos: 21.5,36.5 parent: 1 - - uid: 33599 + - uid: 38834 components: - type: Transform - pos: -103.5,-7.5 + pos: 22.5,36.5 parent: 1 - - uid: 33773 + - uid: 38835 components: - type: Transform - pos: -99.5,39.5 + pos: 23.5,36.5 parent: 1 - - uid: 33774 + - uid: 38836 components: - type: Transform - pos: -80.5,37.5 + pos: 24.5,36.5 parent: 1 - - uid: 33775 + - uid: 38837 components: - type: Transform - pos: -81.5,37.5 + pos: 25.5,36.5 parent: 1 - - uid: 33776 + - uid: 38838 components: - type: Transform - pos: -82.5,37.5 + pos: 26.5,36.5 parent: 1 - - uid: 33777 + - uid: 38839 components: - type: Transform - pos: -83.5,37.5 + pos: 27.5,36.5 parent: 1 - - uid: 33778 + - uid: 38840 components: - type: Transform - pos: -84.5,37.5 + pos: 28.5,36.5 parent: 1 - - uid: 33779 + - uid: 38841 components: - type: Transform - pos: -85.5,37.5 + pos: 29.5,36.5 parent: 1 - - uid: 33780 + - uid: 38842 components: - type: Transform - pos: -85.5,38.5 + pos: 30.5,36.5 parent: 1 - - uid: 33781 + - uid: 38843 components: - type: Transform - pos: -85.5,39.5 + pos: 31.5,36.5 parent: 1 - - uid: 33782 + - uid: 38844 components: - type: Transform - pos: -85.5,40.5 + pos: 32.5,36.5 parent: 1 - - uid: 33783 + - uid: 38845 components: - type: Transform - pos: -85.5,41.5 + pos: 33.5,36.5 parent: 1 - - uid: 33784 + - uid: 38846 components: - type: Transform - pos: -85.5,42.5 + pos: 34.5,36.5 parent: 1 - - uid: 33785 + - uid: 38847 components: - type: Transform - pos: -85.5,43.5 + pos: 35.5,36.5 parent: 1 - - uid: 33786 + - uid: 38848 components: - type: Transform - pos: -85.5,44.5 + pos: 36.5,36.5 parent: 1 - - uid: 33787 + - uid: 38849 components: - type: Transform - pos: -84.5,40.5 + pos: 37.5,36.5 parent: 1 - - uid: 33788 + - uid: 38850 components: - type: Transform - pos: -83.5,40.5 + pos: 38.5,36.5 parent: 1 - - uid: 33789 + - uid: 38851 components: - type: Transform - pos: -82.5,40.5 + pos: 39.5,36.5 parent: 1 - - uid: 33790 + - uid: 38852 components: - type: Transform - pos: -85.5,36.5 + pos: 40.5,36.5 parent: 1 - - uid: 33791 + - uid: 38853 components: - type: Transform - pos: -85.5,35.5 + pos: 41.5,36.5 parent: 1 - - uid: 33792 + - uid: 38854 components: - type: Transform - pos: -85.5,34.5 + pos: 42.5,36.5 parent: 1 - - uid: 33793 + - uid: 38855 components: - type: Transform - pos: -85.5,33.5 + pos: 43.5,36.5 parent: 1 - - uid: 33794 + - uid: 38856 components: - type: Transform - pos: -85.5,32.5 + pos: 44.5,36.5 parent: 1 - - uid: 33795 + - uid: 38857 components: - type: Transform - pos: -85.5,31.5 + pos: 45.5,36.5 parent: 1 - - uid: 33796 + - uid: 38858 components: - type: Transform - pos: -85.5,30.5 + pos: 46.5,36.5 parent: 1 - - uid: 33797 + - uid: 38859 components: - type: Transform - pos: -84.5,33.5 + pos: 47.5,36.5 parent: 1 - - uid: 33798 + - uid: 38860 components: - type: Transform - pos: -83.5,33.5 + pos: 48.5,36.5 parent: 1 - - uid: 33799 + - uid: 38861 components: - type: Transform - pos: -82.5,33.5 + pos: 49.5,36.5 parent: 1 - - uid: 33800 + - uid: 38862 components: - type: Transform - pos: -86.5,30.5 + pos: 50.5,36.5 parent: 1 - - uid: 33801 + - uid: 38863 components: - type: Transform - pos: -87.5,30.5 + pos: 51.5,36.5 parent: 1 - - uid: 33802 + - uid: 38864 components: - type: Transform - pos: -88.5,30.5 + pos: 52.5,36.5 parent: 1 - - uid: 33803 + - uid: 38865 components: - type: Transform - pos: -89.5,30.5 + pos: 53.5,36.5 parent: 1 - - uid: 33804 + - uid: 38866 components: - type: Transform - pos: -90.5,30.5 + pos: 53.5,35.5 parent: 1 - - uid: 33805 + - uid: 38867 components: - type: Transform - pos: -91.5,30.5 + pos: 52.5,35.5 parent: 1 - - uid: 33806 + - uid: 38868 components: - type: Transform - pos: -92.5,30.5 + pos: 42.5,35.5 parent: 1 - - uid: 33807 + - uid: 38869 components: - type: Transform - pos: -93.5,30.5 + pos: 42.5,34.5 parent: 1 - - uid: 33808 + - uid: 38907 components: - type: Transform - pos: -94.5,30.5 + pos: 3.5,36.5 parent: 1 - - uid: 33809 + - uid: 38908 components: - type: Transform - pos: -95.5,30.5 + pos: 3.5,35.5 parent: 1 - - uid: 33810 + - uid: 38909 components: - type: Transform - pos: -96.5,30.5 + pos: 3.5,34.5 parent: 1 - - uid: 33811 + - uid: 38910 components: - type: Transform - pos: -97.5,30.5 + pos: 3.5,33.5 parent: 1 - - uid: 33812 + - uid: 38911 components: - type: Transform - pos: -98.5,30.5 + pos: 3.5,32.5 parent: 1 - - uid: 33813 + - uid: 38912 components: - type: Transform - pos: -99.5,30.5 + pos: 3.5,31.5 parent: 1 - - uid: 33814 + - uid: 38917 components: - type: Transform - pos: -99.5,31.5 + pos: 4.5,31.5 parent: 1 - - uid: 33815 + - uid: 38918 components: - type: Transform - pos: -99.5,32.5 + pos: 6.5,31.5 parent: 1 - - uid: 33816 + - uid: 38919 components: - type: Transform - pos: -99.5,33.5 + pos: 5.5,31.5 parent: 1 - - uid: 33817 + - uid: 38990 components: - type: Transform - pos: -99.5,34.5 + pos: -117.5,-40.5 parent: 1 - - uid: 33818 + - uid: 38991 components: - type: Transform - pos: -99.5,35.5 + pos: -118.5,-40.5 parent: 1 - - uid: 33819 + - uid: 38992 components: - type: Transform - pos: -99.5,36.5 + pos: -118.5,-41.5 parent: 1 - - uid: 33820 + - uid: 38993 components: - type: Transform - pos: -99.5,37.5 + pos: -119.5,-41.5 parent: 1 - - uid: 33821 + - uid: 38994 components: - type: Transform - pos: -99.5,38.5 + pos: -120.5,-41.5 parent: 1 - - uid: 33822 + - uid: 38995 components: - type: Transform - pos: -99.5,39.5 + pos: -121.5,-41.5 parent: 1 - - uid: 33823 + - uid: 38996 components: - type: Transform - pos: -99.5,40.5 + pos: -122.5,-41.5 parent: 1 - - uid: 33824 + - uid: 38997 components: - type: Transform - pos: -99.5,41.5 + pos: -122.5,-40.5 parent: 1 - - uid: 33825 + - uid: 38998 components: - type: Transform - pos: -99.5,42.5 + pos: -123.5,-40.5 parent: 1 - - uid: 33826 + - uid: 38999 components: - type: Transform - pos: -99.5,43.5 + pos: -123.5,-39.5 parent: 1 - - uid: 33827 + - uid: 39000 components: - type: Transform - pos: -99.5,44.5 + pos: -119.5,-36.5 parent: 1 - - uid: 33844 + - uid: 39001 components: - type: Transform - pos: -101.5,-24.5 + pos: -120.5,-36.5 parent: 1 - - uid: 33845 + - uid: 39002 components: - type: Transform - pos: -101.5,-23.5 + pos: -121.5,-36.5 parent: 1 - - uid: 33846 + - uid: 39003 components: - type: Transform - pos: -101.5,-22.5 + pos: -122.5,-36.5 parent: 1 - - uid: 33847 + - uid: 39004 components: - type: Transform - pos: -101.5,-21.5 + pos: -122.5,-37.5 parent: 1 - - uid: 33864 + - uid: 39005 components: - type: Transform - pos: -55.5,6.5 + pos: -123.5,-37.5 parent: 1 - - uid: 34003 + - uid: 39006 components: - type: Transform - pos: -100.5,44.5 + pos: -123.5,-38.5 parent: 1 - - uid: 34008 + - uid: 39007 components: - type: Transform - pos: -100.5,45.5 + pos: -124.5,-38.5 parent: 1 - - uid: 34009 + - uid: 39008 components: - type: Transform - pos: -100.5,46.5 + pos: -125.5,-38.5 parent: 1 - - uid: 34010 + - uid: 39009 components: - type: Transform - pos: -100.5,47.5 + pos: -126.5,-38.5 parent: 1 - - uid: 34011 + - uid: 39010 components: - type: Transform - pos: -100.5,48.5 + pos: -126.5,-37.5 parent: 1 - - uid: 34012 + - uid: 39011 components: - type: Transform - pos: -100.5,49.5 + pos: -127.5,-37.5 parent: 1 - - uid: 34013 + - uid: 39012 components: - type: Transform - pos: -100.5,50.5 + pos: -127.5,-36.5 parent: 1 - - uid: 34014 + - uid: 39013 components: - type: Transform - pos: -100.5,51.5 + pos: -128.5,-36.5 parent: 1 - - uid: 34015 + - uid: 39014 components: - type: Transform - pos: -100.5,52.5 + pos: -128.5,-37.5 parent: 1 - - uid: 34016 + - uid: 39015 components: - type: Transform - pos: -100.5,53.5 + pos: -129.5,-37.5 parent: 1 - - uid: 34017 + - uid: 39016 components: - type: Transform - pos: -100.5,54.5 + pos: -129.5,-38.5 parent: 1 - - uid: 34018 + - uid: 39017 components: - type: Transform - pos: -100.5,55.5 + pos: -129.5,-39.5 parent: 1 - - uid: 34019 + - uid: 39018 components: - type: Transform - pos: -100.5,56.5 + pos: -129.5,-40.5 parent: 1 - - uid: 34020 + - uid: 39019 components: - type: Transform - pos: -100.5,57.5 + pos: -128.5,-40.5 parent: 1 - - uid: 34021 + - uid: 39020 components: - type: Transform - pos: -100.5,58.5 + pos: -128.5,-41.5 parent: 1 - - uid: 34022 + - uid: 39021 components: - type: Transform - pos: -100.5,59.5 + pos: -127.5,-41.5 parent: 1 - - uid: 34023 + - uid: 39022 components: - type: Transform - pos: -100.5,60.5 + pos: -127.5,-40.5 parent: 1 - - uid: 34024 + - uid: 39023 components: - type: Transform - pos: -100.5,61.5 + pos: -126.5,-40.5 parent: 1 - - uid: 34025 + - uid: 39024 components: - type: Transform - pos: -100.5,62.5 + pos: -126.5,-39.5 parent: 1 - - uid: 34026 + - uid: 39025 components: - type: Transform - pos: -100.5,63.5 + pos: -125.5,-39.5 parent: 1 - - uid: 34027 + - uid: 39026 components: - type: Transform - pos: -84.5,44.5 + pos: -124.5,-39.5 parent: 1 - - uid: 34028 + - uid: 39027 components: - type: Transform - pos: -84.5,45.5 + pos: -116.5,-39.5 parent: 1 - - uid: 34029 + - uid: 39028 components: - type: Transform - pos: -84.5,46.5 + pos: -115.5,-39.5 parent: 1 - - uid: 34030 + - uid: 39029 components: - type: Transform - pos: -84.5,47.5 + pos: -114.5,-39.5 parent: 1 - - uid: 34031 + - uid: 39030 components: - type: Transform - pos: -84.5,48.5 + pos: -113.5,-39.5 parent: 1 - - uid: 34032 + - uid: 39042 components: - type: Transform - pos: -84.5,49.5 + pos: -100.5,-18.5 parent: 1 - - uid: 34033 + - uid: 39043 components: - type: Transform - pos: -84.5,50.5 + pos: -100.5,-17.5 parent: 1 - - uid: 34034 + - uid: 39044 components: - type: Transform - pos: -84.5,51.5 + pos: -100.5,-16.5 parent: 1 - - uid: 34035 + - uid: 39045 components: - type: Transform - pos: -84.5,52.5 + pos: -99.5,-16.5 parent: 1 - - uid: 34036 + - uid: 39046 components: - type: Transform - pos: -84.5,53.5 + pos: -99.5,-15.5 parent: 1 - - uid: 34037 + - uid: 39047 components: - type: Transform - pos: -84.5,54.5 + pos: -105.5,-16.5 parent: 1 - - uid: 34038 + - uid: 39048 components: - type: Transform - pos: -84.5,55.5 + pos: -105.5,-15.5 parent: 1 - - uid: 34039 + - uid: 39049 components: - type: Transform - pos: -84.5,56.5 + pos: -105.5,-14.5 parent: 1 - - uid: 34040 + - uid: 39050 components: - type: Transform - pos: -84.5,57.5 + pos: -111.5,-13.5 parent: 1 - - uid: 34041 + - uid: 39051 components: - type: Transform - pos: -84.5,58.5 + pos: -111.5,-14.5 parent: 1 - - uid: 34042 + - uid: 39052 components: - type: Transform - pos: -84.5,59.5 + pos: -111.5,-15.5 parent: 1 - - uid: 34043 + - uid: 39053 components: - type: Transform - pos: -84.5,60.5 + pos: -111.5,-16.5 parent: 1 - - uid: 34044 + - uid: 39054 components: - type: Transform - pos: -84.5,61.5 + pos: -110.5,-16.5 parent: 1 - - uid: 34045 + - uid: 39055 components: - type: Transform - pos: -84.5,62.5 + pos: -112.5,-16.5 parent: 1 - - uid: 34046 + - uid: 39060 components: - type: Transform - pos: -84.5,63.5 + pos: -103.5,-29.5 parent: 1 - - uid: 34185 + - uid: 39061 components: - type: Transform - pos: -96.5,-34.5 + pos: -104.5,-29.5 parent: 1 - - uid: 34186 + - uid: 39062 components: - type: Transform - pos: -96.5,-35.5 + pos: -105.5,-29.5 parent: 1 - - uid: 34187 + - uid: 39063 components: - type: Transform - pos: -96.5,-36.5 + pos: -105.5,-30.5 parent: 1 - - uid: 34188 + - uid: 39064 components: - type: Transform - pos: -96.5,-37.5 + pos: -105.5,-31.5 parent: 1 - - uid: 34275 + - uid: 39065 components: - type: Transform - pos: -96.5,-41.5 + pos: -105.5,-32.5 parent: 1 - - uid: 34563 + - uid: 39066 components: - type: Transform - pos: -96.5,-10.5 + pos: -105.5,-33.5 parent: 1 - - uid: 34666 + - uid: 39067 components: - type: Transform - pos: -12.5,-56.5 + pos: -105.5,-34.5 parent: 1 - - uid: 34722 + - uid: 39068 components: - type: Transform - pos: -0.5,21.5 + pos: -106.5,-31.5 parent: 1 - - uid: 34752 + - uid: 39069 components: - type: Transform - pos: -101.5,-18.5 + pos: -107.5,-31.5 parent: 1 - - uid: 34753 + - uid: 39070 components: - type: Transform - pos: -101.5,-16.5 + pos: -107.5,-32.5 parent: 1 - - uid: 34765 + - uid: 39071 components: - type: Transform - pos: -50.5,-75.5 + pos: -106.5,-32.5 parent: 1 - - uid: 34766 + - uid: 39085 components: - type: Transform - pos: -50.5,-76.5 + pos: -114.5,-23.5 parent: 1 - - uid: 34767 + - uid: 39086 components: - type: Transform - pos: -50.5,-77.5 + pos: -114.5,-24.5 parent: 1 - - uid: 34768 + - uid: 39087 components: - type: Transform - pos: -49.5,-77.5 + pos: -113.5,-24.5 parent: 1 - - uid: 34769 + - uid: 39088 components: - type: Transform - pos: -48.5,-77.5 + pos: -112.5,-24.5 parent: 1 - - uid: 34770 + - uid: 39089 components: - type: Transform - pos: -47.5,-77.5 + pos: -111.5,-24.5 parent: 1 - - uid: 34771 + - uid: 39090 components: - type: Transform - pos: -46.5,-77.5 + pos: -110.5,-24.5 parent: 1 - - uid: 34772 + - uid: 39091 components: - type: Transform - pos: -45.5,-77.5 + pos: -109.5,-24.5 parent: 1 - - uid: 34773 + - uid: 39092 components: - type: Transform - pos: -44.5,-77.5 + pos: -109.5,-23.5 parent: 1 - - uid: 34774 + - uid: 39093 components: - type: Transform - pos: -43.5,-77.5 + pos: -109.5,-22.5 parent: 1 - - uid: 34775 + - uid: 39094 components: - type: Transform - pos: -42.5,-77.5 + pos: -108.5,-22.5 parent: 1 - - uid: 34776 + - uid: 39095 components: - type: Transform - pos: -41.5,-77.5 + pos: -108.5,-21.5 parent: 1 - - uid: 34777 + - uid: 39096 components: - type: Transform - pos: -40.5,-77.5 + pos: -108.5,-20.5 parent: 1 - - uid: 34780 + - uid: 39097 components: - type: Transform - pos: -39.5,-75.5 + pos: -108.5,-19.5 parent: 1 - - uid: 34858 + - uid: 39098 components: - type: Transform - pos: -11.5,-26.5 + pos: -109.5,-19.5 parent: 1 - - uid: 34859 + - uid: 39099 components: - type: Transform - pos: -10.5,-26.5 + pos: -110.5,-19.5 parent: 1 - - uid: 34860 + - uid: 39100 components: - type: Transform - pos: -9.5,-26.5 + pos: -111.5,-19.5 parent: 1 - - uid: 34967 + - uid: 39101 components: - type: Transform - pos: -12.5,-55.5 + pos: -112.5,-19.5 parent: 1 - - uid: 34968 + - uid: 39102 components: - type: Transform - pos: -12.5,-54.5 + pos: -113.5,-19.5 parent: 1 - - uid: 34969 + - uid: 39103 components: - type: Transform - pos: -6.5,-54.5 + pos: -114.5,-19.5 parent: 1 - - uid: 34970 + - uid: 39104 components: - type: Transform - pos: -6.5,-53.5 + pos: -114.5,-20.5 parent: 1 - - uid: 34971 + - uid: 39105 components: - type: Transform - pos: -6.5,-52.5 + pos: -114.5,-21.5 parent: 1 - - uid: 34972 + - uid: 39106 components: - type: Transform - pos: -6.5,-51.5 + pos: -114.5,-22.5 parent: 1 - - uid: 34973 + - uid: 39107 components: - type: Transform - pos: -7.5,-51.5 + pos: -110.5,-25.5 parent: 1 - - uid: 34974 + - uid: 39108 components: - type: Transform - pos: -8.5,-51.5 + pos: -110.5,-26.5 parent: 1 - - uid: 34975 + - uid: 39109 components: - type: Transform - pos: -10.5,-51.5 + pos: -110.5,-27.5 parent: 1 - - uid: 34976 + - uid: 39110 components: - type: Transform - pos: -11.5,-51.5 + pos: -111.5,-27.5 parent: 1 - - uid: 35007 + - uid: 39111 components: - type: Transform - pos: -12.5,-51.5 + pos: -112.5,-27.5 parent: 1 - - uid: 35008 + - uid: 39112 components: - type: Transform - pos: -12.5,-52.5 + pos: -112.5,-28.5 parent: 1 - - uid: 35009 + - uid: 39113 components: - type: Transform - pos: -12.5,-53.5 + pos: -112.5,-29.5 parent: 1 - - uid: 35010 + - uid: 39114 components: - type: Transform - pos: -11.5,-53.5 + pos: -112.5,-30.5 parent: 1 - - uid: 35011 + - uid: 39115 components: - type: Transform - pos: -10.5,-53.5 + pos: -112.5,-31.5 parent: 1 - - uid: 35496 + - uid: 39116 components: - type: Transform - pos: -96.5,-38.5 + pos: -112.5,-32.5 parent: 1 - - uid: 35566 + - uid: 39117 components: - type: Transform - pos: -137.5,-21.5 + pos: -112.5,-33.5 parent: 1 - - uid: 35569 + - uid: 39118 components: - type: Transform - pos: -137.5,-22.5 + pos: -113.5,-33.5 parent: 1 - - uid: 35571 + - uid: 39119 components: - type: Transform - pos: -136.5,-22.5 + pos: -111.5,-33.5 parent: 1 - - uid: 36550 + - uid: 39120 components: - type: Transform - pos: -137.5,-20.5 + pos: -111.5,-34.5 parent: 1 - - uid: 38378 + - uid: 39121 components: - type: Transform - pos: -73.5,21.5 + pos: -111.5,-35.5 parent: 1 - - uid: 38379 + - uid: 39122 components: - type: Transform - pos: -37.5,20.5 + pos: -110.5,-35.5 parent: 1 - - uid: 38380 + - uid: 39123 components: - type: Transform - pos: -36.5,20.5 + pos: -110.5,-36.5 parent: 1 - - uid: 38381 + - uid: 39124 components: - type: Transform - pos: -35.5,20.5 + pos: -110.5,-37.5 parent: 1 - - uid: 38382 + - uid: 39125 components: - type: Transform - pos: -34.5,20.5 + pos: -110.5,-38.5 parent: 1 - - uid: 38383 + - uid: 39126 components: - type: Transform - pos: -33.5,20.5 + pos: -110.5,-39.5 parent: 1 - - uid: 38384 + - uid: 39127 components: - type: Transform - pos: -32.5,20.5 + pos: -113.5,-29.5 parent: 1 - - uid: 38385 + - uid: 39128 components: - type: Transform - pos: -31.5,20.5 + pos: -114.5,-29.5 parent: 1 - - uid: 38386 + - uid: 39129 components: - type: Transform - pos: -30.5,20.5 + pos: -115.5,-29.5 parent: 1 - - uid: 38387 + - uid: 39130 components: - type: Transform - pos: -30.5,24.5 + pos: -116.5,-29.5 parent: 1 - - uid: 38388 + - uid: 39131 components: - type: Transform - pos: -31.5,24.5 + pos: -117.5,-29.5 parent: 1 - - uid: 38389 + - uid: 39132 components: - type: Transform - pos: -32.5,24.5 + pos: -118.5,-29.5 parent: 1 - - uid: 38390 + - uid: 39133 components: - type: Transform - pos: -33.5,24.5 + pos: -119.5,-29.5 parent: 1 - - uid: 38391 + - uid: 39134 components: - type: Transform - pos: -34.5,24.5 + pos: -120.5,-29.5 parent: 1 - - uid: 38392 + - uid: 39135 components: - type: Transform - pos: -35.5,24.5 + pos: -121.5,-29.5 parent: 1 - - uid: 38393 + - uid: 39136 components: - type: Transform - pos: -36.5,24.5 + pos: -121.5,-28.5 parent: 1 - - uid: 38394 + - uid: 39137 components: - type: Transform - pos: -37.5,24.5 + pos: -121.5,-27.5 parent: 1 - - uid: 38395 + - uid: 39138 components: - type: Transform - pos: -38.5,24.5 + pos: -121.5,-26.5 parent: 1 - - uid: 38396 + - uid: 39139 components: - type: Transform - pos: -39.5,24.5 + pos: -121.5,-25.5 parent: 1 - - uid: 38397 + - uid: 39140 components: - type: Transform - pos: -40.5,24.5 + pos: -121.5,-24.5 parent: 1 - - uid: 38398 + - uid: 39141 components: - type: Transform - pos: -40.5,23.5 + pos: -120.5,-24.5 parent: 1 - - uid: 38399 + - uid: 39142 components: - type: Transform - pos: -55.5,36.5 + pos: -119.5,-24.5 parent: 1 - - uid: 38400 + - uid: 39143 components: - type: Transform - pos: -54.5,36.5 + pos: -118.5,-24.5 parent: 1 - - uid: 38401 + - uid: 39144 components: - type: Transform - pos: -53.5,36.5 + pos: -117.5,-24.5 parent: 1 - - uid: 38402 + - uid: 39145 components: - type: Transform - pos: -53.5,37.5 + pos: -116.5,-24.5 parent: 1 - - uid: 38536 + - uid: 39146 components: - type: Transform - pos: 5.5,36.5 + pos: -115.5,-24.5 parent: 1 - - uid: 38539 + - uid: 39147 components: - type: Transform - pos: -74.5,41.5 + pos: -123.5,-28.5 parent: 1 - - uid: 38540 + - uid: 39148 components: - type: Transform - pos: -74.5,42.5 + pos: -122.5,-28.5 parent: 1 - - uid: 38541 + - uid: 39149 components: - type: Transform - pos: -74.5,43.5 + pos: -124.5,-28.5 parent: 1 - - uid: 38542 + - uid: 39150 components: - type: Transform - pos: -73.5,43.5 + pos: -125.5,-28.5 parent: 1 - - uid: 38543 + - uid: 39151 components: - type: Transform - pos: -72.5,43.5 + pos: -122.5,-30.5 parent: 1 - - uid: 38544 + - uid: 39152 components: - type: Transform - pos: -72.5,42.5 + pos: -123.5,-30.5 parent: 1 - - uid: 38545 + - uid: 39153 components: - type: Transform - pos: -72.5,41.5 + pos: -124.5,-30.5 parent: 1 - - uid: 38546 + - uid: 39154 components: - type: Transform - pos: -64.5,41.5 + pos: -125.5,-30.5 parent: 1 - - uid: 38547 + - uid: 39155 components: - type: Transform - pos: -64.5,42.5 + pos: -98.5,-82.5 parent: 1 - - uid: 38548 + - uid: 39156 components: - type: Transform - pos: -64.5,43.5 + pos: -83.5,-13.5 parent: 1 - - uid: 38549 + - uid: 39168 components: - type: Transform - pos: -64.5,43.5 + pos: -56.5,-41.5 parent: 1 - - uid: 38550 + - uid: 39169 components: - type: Transform - pos: -65.5,43.5 + pos: -57.5,-41.5 parent: 1 - - uid: 38551 + - uid: 39170 components: - type: Transform - pos: -66.5,43.5 + pos: -58.5,-41.5 parent: 1 - - uid: 38552 + - uid: 39175 components: - type: Transform - pos: -66.5,42.5 + pos: -140.5,-40.5 parent: 1 - - uid: 38553 + - uid: 39176 components: - type: Transform - pos: -66.5,41.5 + pos: -140.5,-39.5 parent: 1 - - uid: 38555 + - uid: 39177 components: - type: Transform - pos: -44.5,39.5 + pos: -140.5,-38.5 parent: 1 - - uid: 38556 + - uid: 39178 components: - type: Transform - pos: -44.5,38.5 + pos: -140.5,-37.5 parent: 1 - - uid: 38557 + - uid: 39179 components: - type: Transform - pos: -44.5,37.5 + pos: -141.5,-37.5 parent: 1 - - uid: 38558 + - uid: 39180 components: - type: Transform - pos: -44.5,36.5 + pos: -142.5,-37.5 parent: 1 - - uid: 38559 + - uid: 39181 components: - type: Transform - pos: -44.5,35.5 + pos: -143.5,-37.5 parent: 1 - - uid: 38560 + - uid: 39182 components: - type: Transform - pos: -44.5,34.5 + pos: -144.5,-37.5 parent: 1 - - uid: 38561 + - uid: 39183 components: - type: Transform - pos: -45.5,34.5 + pos: -145.5,-37.5 parent: 1 - - uid: 38562 + - uid: 39184 components: - type: Transform - pos: -46.5,34.5 + pos: -146.5,-37.5 parent: 1 - - uid: 38563 + - uid: 39185 components: - type: Transform - pos: -47.5,34.5 + pos: -147.5,-37.5 parent: 1 - - uid: 38564 + - uid: 39186 components: - type: Transform - pos: -48.5,34.5 + pos: -148.5,-37.5 parent: 1 - - uid: 38565 + - uid: 39187 components: - type: Transform - pos: -48.5,35.5 + pos: -149.5,-37.5 parent: 1 - - uid: 38566 + - uid: 39188 components: - type: Transform - pos: -48.5,36.5 + pos: -150.5,-37.5 parent: 1 - - uid: 38567 + - uid: 39189 components: - type: Transform - pos: -48.5,37.5 + pos: -148.5,-38.5 parent: 1 - - uid: 38568 + - uid: 39190 components: - type: Transform - pos: -48.5,38.5 + pos: -148.5,-39.5 parent: 1 - - uid: 38569 + - uid: 39191 components: - type: Transform - pos: -48.5,39.5 + pos: -148.5,-40.5 parent: 1 - - uid: 38570 + - uid: 39192 components: - type: Transform - pos: -48.5,40.5 + pos: -148.5,-41.5 parent: 1 - - uid: 38571 + - uid: 39193 components: - type: Transform - pos: -48.5,41.5 + pos: -148.5,-42.5 parent: 1 - - uid: 38572 + - uid: 39194 components: - type: Transform - pos: -48.5,42.5 + pos: -148.5,-43.5 parent: 1 - - uid: 38573 + - uid: 39195 components: - type: Transform - pos: -48.5,43.5 + pos: -147.5,-43.5 parent: 1 - - uid: 38574 + - uid: 39196 components: - type: Transform - pos: -47.5,43.5 + pos: -148.5,-36.5 parent: 1 - - uid: 38575 + - uid: 39197 components: - type: Transform - pos: -46.5,43.5 + pos: -148.5,-35.5 parent: 1 - - uid: 38576 + - uid: 39198 components: - type: Transform - pos: -46.5,42.5 + pos: -148.5,-34.5 parent: 1 - - uid: 38577 + - uid: 39199 components: - type: Transform - pos: -46.5,41.5 + pos: -148.5,-33.5 parent: 1 - - uid: 38578 + - uid: 39200 components: - type: Transform - pos: -46.5,40.5 + pos: -148.5,-32.5 parent: 1 - - uid: 38579 + - uid: 39201 components: - type: Transform - pos: -46.5,39.5 + pos: -149.5,-32.5 parent: 1 - - uid: 38580 + - uid: 39202 components: - type: Transform - pos: -46.5,38.5 + pos: -150.5,-32.5 parent: 1 - - uid: 38581 + - uid: 39203 components: - type: Transform - pos: -46.5,37.5 + pos: -151.5,-32.5 parent: 1 - - uid: 38582 + - uid: 39204 components: - type: Transform - pos: -45.5,37.5 + pos: -151.5,-33.5 parent: 1 - - uid: 38583 + - uid: 39205 components: - type: Transform - pos: -47.5,37.5 + pos: -139.5,-37.5 parent: 1 - - uid: 38584 + - uid: 39206 components: - type: Transform - pos: -43.5,37.5 + pos: -138.5,-37.5 parent: 1 - - uid: 38585 + - uid: 39207 components: - type: Transform - pos: -42.5,37.5 + pos: -137.5,-37.5 parent: 1 - - uid: 38586 + - uid: 39208 components: - type: Transform - pos: -41.5,37.5 + pos: -136.5,-37.5 parent: 1 - - uid: 38587 + - uid: 39209 components: - type: Transform - pos: -40.5,37.5 + pos: -135.5,-37.5 parent: 1 - - uid: 38588 + - uid: 39210 components: - type: Transform - pos: -40.5,38.5 + pos: -135.5,-36.5 parent: 1 - - uid: 38589 + - uid: 39211 components: - type: Transform - pos: -40.5,39.5 + pos: -135.5,-35.5 parent: 1 - - uid: 38590 + - uid: 39212 components: - type: Transform - pos: -40.5,40.5 + pos: -135.5,-34.5 parent: 1 - - uid: 38591 + - uid: 39213 components: - type: Transform - pos: -40.5,41.5 + pos: -134.5,-34.5 parent: 1 - - uid: 38592 + - uid: 39214 components: - type: Transform - pos: -41.5,41.5 + pos: -133.5,-34.5 parent: 1 - - uid: 38593 + - uid: 39215 components: - type: Transform - pos: -42.5,41.5 + pos: -133.5,-33.5 parent: 1 - - uid: 38594 + - uid: 39216 components: - type: Transform - pos: -43.5,41.5 + pos: -133.5,-32.5 parent: 1 - - uid: 38595 + - uid: 39217 components: - type: Transform - pos: -39.5,41.5 + pos: -133.5,-31.5 parent: 1 - - uid: 38596 + - uid: 39218 components: - type: Transform - pos: -38.5,41.5 + pos: -134.5,-31.5 parent: 1 - - uid: 38597 + - uid: 39219 components: - type: Transform - pos: -40.5,36.5 + pos: -135.5,-31.5 parent: 1 - - uid: 38598 + - uid: 39220 components: - type: Transform - pos: -40.5,35.5 + pos: -136.5,-31.5 parent: 1 - - uid: 38599 + - uid: 39221 components: - type: Transform - pos: -40.5,34.5 + pos: -137.5,-31.5 parent: 1 - - uid: 38600 + - uid: 39222 components: - type: Transform - pos: -39.5,34.5 + pos: -137.5,-30.5 parent: 1 - - uid: 38601 + - uid: 39223 components: - type: Transform - pos: -38.5,34.5 + pos: -132.5,-31.5 parent: 1 - - uid: 38602 + - uid: 39224 components: - type: Transform - pos: -38.5,35.5 + pos: -132.5,-30.5 parent: 1 - - uid: 38603 + - uid: 39225 components: - type: Transform - pos: -38.5,35.5 + pos: -132.5,-29.5 parent: 1 - - uid: 38604 + - uid: 39226 components: - type: Transform - pos: -38.5,36.5 + pos: -132.5,-28.5 parent: 1 - - uid: 38605 + - uid: 39227 components: - type: Transform - pos: -38.5,37.5 + pos: -132.5,-27.5 parent: 1 - - uid: 38606 + - uid: 39228 components: - type: Transform - pos: -39.5,37.5 + pos: -132.5,-26.5 parent: 1 - - uid: 38608 + - uid: 39229 components: - type: Transform - pos: -25.5,38.5 + pos: -132.5,-25.5 parent: 1 - - uid: 38609 + - uid: 39230 components: - type: Transform - pos: -25.5,37.5 + pos: -132.5,-24.5 parent: 1 - - uid: 38610 + - uid: 39231 components: - type: Transform - pos: -25.5,36.5 + pos: -133.5,-25.5 parent: 1 - - uid: 38611 + - uid: 39232 components: - type: Transform - pos: -24.5,36.5 + pos: -134.5,-25.5 parent: 1 - - uid: 38612 + - uid: 39233 components: - type: Transform - pos: -23.5,36.5 + pos: -135.5,-25.5 parent: 1 - - uid: 38613 + - uid: 39234 components: - type: Transform - pos: -22.5,36.5 + pos: -136.5,-25.5 parent: 1 - - uid: 38614 + - uid: 39235 components: - type: Transform - pos: -22.5,37.5 + pos: -136.5,-24.5 parent: 1 - - uid: 38615 + - uid: 39236 components: - type: Transform - pos: -22.5,38.5 + pos: -131.5,-24.5 parent: 1 - - uid: 38616 + - uid: 39237 components: - type: Transform - pos: -22.5,39.5 + pos: -130.5,-24.5 parent: 1 - - uid: 38617 + - uid: 39238 components: - type: Transform - pos: -22.5,40.5 + pos: -129.5,-24.5 parent: 1 - - uid: 38618 + - uid: 39239 components: - type: Transform - pos: -23.5,40.5 + pos: -128.5,-24.5 parent: 1 - - uid: 38619 + - uid: 39240 components: - type: Transform - pos: -21.5,36.5 + pos: -127.5,-24.5 parent: 1 - - uid: 38620 + - uid: 39241 components: - type: Transform - pos: -20.5,36.5 + pos: -126.5,-24.5 parent: 1 - - uid: 38621 + - uid: 39242 components: - type: Transform - pos: -19.5,36.5 + pos: -125.5,-24.5 parent: 1 - - uid: 38622 + - uid: 39243 components: - type: Transform - pos: -18.5,36.5 + pos: -124.5,-24.5 parent: 1 - - uid: 38623 + - uid: 39244 components: - type: Transform - pos: -17.5,36.5 + pos: -124.5,-23.5 parent: 1 - - uid: 38624 + - uid: 39245 components: - type: Transform - pos: -17.5,37.5 + pos: -124.5,-22.5 parent: 1 - - uid: 38625 + - uid: 39246 components: - type: Transform - pos: -17.5,38.5 + pos: -124.5,-21.5 parent: 1 - - uid: 38626 + - uid: 39247 components: - type: Transform - pos: -17.5,39.5 + pos: -123.5,-21.5 parent: 1 - - uid: 38627 + - uid: 39248 components: - type: Transform - pos: -17.5,40.5 + pos: -122.5,-21.5 parent: 1 - - uid: 38628 + - uid: 39249 components: - type: Transform - pos: -16.5,40.5 + pos: -122.5,-20.5 parent: 1 - - uid: 38629 + - uid: 39250 components: - type: Transform - pos: -15.5,40.5 + pos: -122.5,-19.5 parent: 1 - - uid: 38630 + - uid: 39251 components: - type: Transform - pos: -26.5,36.5 + pos: -122.5,-18.5 parent: 1 - - uid: 38631 + - uid: 39252 components: - type: Transform - pos: -27.5,36.5 + pos: -122.5,-17.5 parent: 1 - - uid: 38632 + - uid: 39253 components: - type: Transform - pos: -28.5,36.5 + pos: -121.5,-17.5 parent: 1 - - uid: 38633 + - uid: 39254 components: - type: Transform - pos: -29.5,36.5 + pos: -120.5,-17.5 parent: 1 - - uid: 38634 + - uid: 39255 components: - type: Transform - pos: -30.5,36.5 + pos: -119.5,-17.5 parent: 1 - - uid: 38635 + - uid: 39256 components: - type: Transform - pos: -31.5,36.5 + pos: -118.5,-17.5 parent: 1 - - uid: 38636 + - uid: 39257 components: - type: Transform - pos: -32.5,36.5 + pos: -117.5,-17.5 parent: 1 - - uid: 38637 + - uid: 39258 components: - type: Transform - pos: -32.5,37.5 + pos: -117.5,-12.5 parent: 1 - - uid: 38638 + - uid: 39259 components: - type: Transform - pos: -32.5,38.5 + pos: -117.5,-13.5 parent: 1 - - uid: 38639 + - uid: 39260 components: - type: Transform - pos: -32.5,39.5 + pos: -117.5,-14.5 parent: 1 - - uid: 38640 + - uid: 39261 components: - type: Transform - pos: -32.5,40.5 + pos: -117.5,-15.5 parent: 1 - - uid: 38641 + - uid: 39262 components: - type: Transform - pos: -32.5,41.5 + pos: -117.5,-16.5 parent: 1 - - uid: 38642 + - uid: 39263 components: - type: Transform - pos: -28.5,37.5 + pos: -135.5,-38.5 parent: 1 - - uid: 38643 + - uid: 39264 components: - type: Transform - pos: -28.5,38.5 + pos: -135.5,-39.5 parent: 1 - - uid: 38644 + - uid: 39265 components: - type: Transform - pos: -28.5,39.5 + pos: -135.5,-40.5 parent: 1 - - uid: 38645 + - uid: 39266 components: - type: Transform - pos: -28.5,40.5 + pos: -134.5,-40.5 parent: 1 - - uid: 38646 + - uid: 39267 components: - type: Transform - pos: -32.5,35.5 + pos: -134.5,-41.5 parent: 1 - - uid: 38647 + - uid: 39268 components: - type: Transform - pos: -32.5,34.5 + pos: -134.5,-42.5 parent: 1 - - uid: 38648 + - uid: 39269 components: - type: Transform - pos: -32.5,33.5 + pos: -134.5,-43.5 parent: 1 - - uid: 38649 + - uid: 39270 components: - type: Transform - pos: -32.5,32.5 + pos: -134.5,-44.5 parent: 1 - - uid: 38650 + - uid: 39271 components: - type: Transform - pos: -32.5,31.5 + pos: -134.5,-45.5 parent: 1 - - uid: 38651 + - uid: 39272 components: - type: Transform - pos: -32.5,30.5 + pos: -134.5,-46.5 parent: 1 - - uid: 38652 + - uid: 39273 components: - type: Transform - pos: -33.5,30.5 + pos: -133.5,-46.5 parent: 1 - - uid: 38653 + - uid: 39274 components: - type: Transform - pos: -34.5,30.5 + pos: -132.5,-46.5 parent: 1 - - uid: 38654 + - uid: 39275 components: - type: Transform - pos: -35.5,30.5 + pos: -131.5,-46.5 parent: 1 - - uid: 38655 + - uid: 39276 components: - type: Transform - pos: -36.5,30.5 + pos: -130.5,-46.5 parent: 1 - - uid: 38656 + - uid: 39277 components: - type: Transform - pos: -37.5,30.5 + pos: -129.5,-46.5 parent: 1 - - uid: 38657 + - uid: 39278 components: - type: Transform - pos: -38.5,30.5 + pos: -128.5,-46.5 parent: 1 - - uid: 38658 + - uid: 39279 components: - type: Transform - pos: -39.5,30.5 + pos: -127.5,-46.5 parent: 1 - - uid: 38659 + - uid: 39280 components: - type: Transform - pos: -40.5,30.5 + pos: -126.5,-46.5 parent: 1 - - uid: 38660 + - uid: 39281 components: - type: Transform - pos: -34.5,29.5 + pos: -125.5,-46.5 parent: 1 - - uid: 38661 + - uid: 39282 components: - type: Transform - pos: -34.5,28.5 + pos: -124.5,-46.5 parent: 1 - - uid: 38662 + - uid: 39283 components: - type: Transform - pos: -34.5,27.5 + pos: -123.5,-46.5 parent: 1 - - uid: 38663 + - uid: 39284 components: - type: Transform - pos: -39.5,29.5 + pos: -122.5,-46.5 parent: 1 - - uid: 38664 + - uid: 39285 components: - type: Transform - pos: -39.5,28.5 + pos: -121.5,-46.5 parent: 1 - - uid: 38665 + - uid: 39286 components: - type: Transform - pos: -40.5,28.5 + pos: -120.5,-46.5 parent: 1 - - uid: 38735 + - uid: 39287 components: - type: Transform - pos: -11.5,34.5 + pos: -119.5,-46.5 parent: 1 - - uid: 38736 + - uid: 39288 components: - type: Transform - pos: -11.5,33.5 + pos: -118.5,-46.5 parent: 1 - - uid: 38737 + - uid: 39289 components: - type: Transform - pos: -11.5,32.5 + pos: -117.5,-46.5 parent: 1 - - uid: 38738 + - uid: 39290 components: - type: Transform - pos: -11.5,31.5 + pos: -116.5,-46.5 parent: 1 - - uid: 38739 + - uid: 39291 components: - type: Transform - pos: -10.5,31.5 + pos: -115.5,-46.5 parent: 1 - - uid: 38740 + - uid: 39292 components: - type: Transform - pos: -9.5,31.5 + pos: -114.5,-46.5 parent: 1 - - uid: 38741 + - uid: 39293 components: - type: Transform - pos: -11.5,30.5 + pos: -113.5,-46.5 parent: 1 - - uid: 38742 + - uid: 39294 components: - type: Transform - pos: -11.5,29.5 + pos: -112.5,-46.5 parent: 1 - - uid: 38743 + - uid: 39295 components: - type: Transform - pos: -10.5,29.5 + pos: -111.5,-46.5 parent: 1 - - uid: 38744 + - uid: 39296 components: - type: Transform - pos: -9.5,29.5 + pos: -110.5,-46.5 parent: 1 - - uid: 38745 + - uid: 39297 components: - type: Transform - pos: -12.5,31.5 + pos: -110.5,-45.5 parent: 1 - - uid: 38746 + - uid: 39298 components: - type: Transform - pos: -13.5,31.5 + pos: -110.5,-44.5 parent: 1 - - uid: 38747 + - uid: 39299 components: - type: Transform - pos: -14.5,31.5 + pos: -110.5,-43.5 parent: 1 - - uid: 38748 + - uid: 39300 components: - type: Transform - pos: -15.5,31.5 + pos: -109.5,-43.5 parent: 1 - - uid: 38749 + - uid: 39301 components: - type: Transform - pos: -16.5,31.5 + pos: -108.5,-43.5 parent: 1 - - uid: 38750 + - uid: 39302 components: - type: Transform - pos: -17.5,31.5 + pos: -107.5,-43.5 parent: 1 - - uid: 38751 + - uid: 39303 components: - type: Transform - pos: -17.5,30.5 + pos: -101.5,-34.5 parent: 1 - - uid: 38752 + - uid: 39304 components: - type: Transform - pos: -17.5,32.5 + pos: -101.5,-35.5 parent: 1 - - uid: 38753 + - uid: 39305 components: - type: Transform - pos: -11.5,34.5 + pos: -101.5,-36.5 parent: 1 - - uid: 38754 + - uid: 39306 components: - type: Transform - pos: -11.5,35.5 + pos: -101.5,-37.5 parent: 1 - - uid: 38755 + - uid: 39307 components: - type: Transform - pos: -11.5,36.5 + pos: -101.5,-38.5 parent: 1 - - uid: 38756 + - uid: 39308 components: - type: Transform - pos: -12.5,36.5 + pos: -102.5,-38.5 parent: 1 - - uid: 38757 + - uid: 39309 components: - type: Transform - pos: -13.5,36.5 + pos: -103.5,-38.5 parent: 1 - - uid: 38758 + - uid: 39310 components: - type: Transform - pos: 1.5,39.5 + pos: -104.5,-38.5 parent: 1 - - uid: 38759 + - uid: 39311 components: - type: Transform - pos: 1.5,38.5 + pos: -105.5,-38.5 parent: 1 - - uid: 38760 + - uid: 39312 components: - type: Transform - pos: 1.5,37.5 + pos: -106.5,-38.5 parent: 1 - - uid: 38761 + - uid: 39313 components: - type: Transform - pos: 1.5,36.5 + pos: -106.5,-43.5 parent: 1 - - uid: 38762 + - uid: 39314 components: - type: Transform - pos: 0.5,36.5 + pos: -106.5,-42.5 parent: 1 - - uid: 38763 + - uid: 39315 components: - type: Transform - pos: -0.5,36.5 + pos: -106.5,-41.5 parent: 1 - - uid: 38764 + - uid: 39316 components: - type: Transform - pos: -1.5,36.5 + pos: -106.5,-40.5 parent: 1 - - uid: 38765 + - uid: 39317 components: - type: Transform - pos: -2.5,36.5 + pos: -106.5,-39.5 parent: 1 - - uid: 38766 + - uid: 39355 components: - type: Transform - pos: -3.5,36.5 + pos: -96.5,-43.5 parent: 1 - - uid: 38767 + - uid: 39356 components: - type: Transform - pos: -4.5,36.5 + pos: -96.5,-44.5 parent: 1 - - uid: 38768 + - uid: 39357 components: - type: Transform - pos: -5.5,36.5 + pos: -96.5,-45.5 parent: 1 - - uid: 38769 + - uid: 39358 components: - type: Transform - pos: -6.5,36.5 + pos: -97.5,-45.5 parent: 1 - - uid: 38770 + - uid: 39382 components: - type: Transform - pos: -7.5,36.5 + pos: -99.5,-41.5 parent: 1 - - uid: 38771 + - uid: 39383 components: - type: Transform - pos: -2.5,37.5 + pos: -98.5,-41.5 parent: 1 - - uid: 38772 + - uid: 39384 components: - type: Transform - pos: -2.5,38.5 + pos: -97.5,-41.5 parent: 1 - - uid: 38773 + - uid: 39385 components: - type: Transform - pos: -2.5,39.5 + pos: -104.5,-46.5 parent: 1 - - uid: 38774 + - uid: 39386 components: - type: Transform - pos: -2.5,40.5 + pos: -103.5,-46.5 parent: 1 - - uid: 38775 + - uid: 39387 components: - type: Transform - pos: -2.5,41.5 + pos: -102.5,-46.5 parent: 1 - - uid: 38776 + - uid: 39388 components: - type: Transform - pos: -2.5,42.5 + pos: -101.5,-46.5 parent: 1 - - uid: 38777 + - uid: 39389 components: - type: Transform - pos: -2.5,43.5 + pos: -100.5,-46.5 parent: 1 - - uid: 38778 + - uid: 39390 components: - type: Transform - pos: -2.5,44.5 + pos: -99.5,-46.5 parent: 1 - - uid: 38779 + - uid: 39391 components: - type: Transform - pos: -2.5,45.5 + pos: -98.5,-46.5 parent: 1 - - uid: 38780 + - uid: 39392 components: - type: Transform - pos: -2.5,46.5 + pos: -97.5,-46.5 parent: 1 - - uid: 38781 + - uid: 39393 components: - type: Transform - pos: -2.5,47.5 + pos: -100.5,-41.5 parent: 1 - - uid: 38782 + - uid: 39394 components: - type: Transform - pos: -2.5,48.5 + pos: -101.5,-41.5 parent: 1 - - uid: 38783 + - uid: 39395 components: - type: Transform - pos: -2.5,49.5 + pos: -102.5,-41.5 parent: 1 - - uid: 38784 + - uid: 39396 components: - type: Transform - pos: -2.5,50.5 + pos: -97.5,-47.5 parent: 1 - - uid: 38785 + - uid: 39397 components: - type: Transform - pos: -3.5,50.5 + pos: -97.5,-48.5 parent: 1 - - uid: 38786 + - uid: 39398 components: - type: Transform - pos: -4.5,50.5 + pos: -97.5,-49.5 parent: 1 - - uid: 38787 + - uid: 39399 components: - type: Transform - pos: -5.5,50.5 + pos: -97.5,-50.5 parent: 1 - - uid: 38788 + - uid: 39400 components: - type: Transform - pos: -5.5,49.5 + pos: -97.5,-51.5 parent: 1 - - uid: 38789 + - uid: 39401 components: - type: Transform - pos: -5.5,48.5 + pos: -97.5,-52.5 parent: 1 - - uid: 38790 + - uid: 39402 components: - type: Transform - pos: -5.5,47.5 + pos: -97.5,-53.5 parent: 1 - - uid: 38791 + - uid: 39403 components: - type: Transform - pos: -5.5,46.5 + pos: -96.5,-53.5 parent: 1 - - uid: 38792 + - uid: 39404 components: - type: Transform - pos: -5.5,45.5 + pos: -96.5,-54.5 parent: 1 - - uid: 38793 + - uid: 39405 components: - type: Transform - pos: -5.5,44.5 + pos: -96.5,-55.5 parent: 1 - - uid: 38794 + - uid: 39406 components: - type: Transform - pos: -5.5,43.5 + pos: -96.5,-56.5 parent: 1 - - uid: 38795 + - uid: 39407 components: - type: Transform - pos: -5.5,42.5 + pos: -96.5,-57.5 parent: 1 - - uid: 38796 + - uid: 39408 components: - type: Transform - pos: -5.5,41.5 + pos: -96.5,-58.5 parent: 1 - - uid: 38797 + - uid: 39409 components: - type: Transform - pos: -5.5,40.5 + pos: -96.5,-59.5 parent: 1 - - uid: 38798 + - uid: 39410 components: - type: Transform - pos: -5.5,39.5 + pos: -96.5,-60.5 parent: 1 - - uid: 38799 + - uid: 39411 components: - type: Transform - pos: -5.5,38.5 + pos: -96.5,-61.5 parent: 1 - - uid: 38800 + - uid: 39412 components: - type: Transform - pos: -5.5,37.5 + pos: -96.5,-62.5 parent: 1 - - uid: 38801 + - uid: 39413 components: - type: Transform - pos: 2.5,37.5 + pos: -96.5,-63.5 parent: 1 - - uid: 38802 + - uid: 39414 components: - type: Transform - pos: 3.5,37.5 + pos: -96.5,-64.5 parent: 1 - - uid: 38803 + - uid: 39415 components: - type: Transform - pos: 4.5,37.5 + pos: -96.5,-65.5 parent: 1 - - uid: 38804 + - uid: 39416 components: - type: Transform - pos: 3.5,38.5 + pos: -96.5,-66.5 parent: 1 - - uid: 38805 + - uid: 39417 components: - type: Transform - pos: 3.5,39.5 + pos: -96.5,-67.5 parent: 1 - - uid: 38806 + - uid: 39418 components: - type: Transform - pos: 3.5,40.5 + pos: -96.5,-68.5 parent: 1 - - uid: 38807 + - uid: 39419 components: - type: Transform - pos: 3.5,41.5 + pos: -95.5,-68.5 parent: 1 - - uid: 38808 + - uid: 39420 components: - type: Transform - pos: 3.5,42.5 + pos: -95.5,-69.5 parent: 1 - - uid: 38809 + - uid: 39421 components: - type: Transform - pos: 3.5,43.5 + pos: -95.5,-70.5 parent: 1 - - uid: 38810 + - uid: 39422 components: - type: Transform - pos: 3.5,44.5 + pos: -95.5,-71.5 parent: 1 - - uid: 38811 + - uid: 39423 components: - type: Transform - pos: 3.5,45.5 + pos: -97.5,-68.5 parent: 1 - - uid: 38812 + - uid: 39424 components: - type: Transform - pos: 3.5,46.5 + pos: -97.5,-69.5 parent: 1 - - uid: 38813 + - uid: 39425 components: - type: Transform - pos: 3.5,47.5 + pos: -97.5,-70.5 parent: 1 - - uid: 38814 + - uid: 39426 components: - type: Transform - pos: 3.5,48.5 + pos: -97.5,-71.5 parent: 1 - - uid: 38815 + - uid: 39427 components: - type: Transform - pos: 3.5,49.5 + pos: -98.5,-53.5 parent: 1 - - uid: 38816 + - uid: 39428 components: - type: Transform - pos: 4.5,49.5 + pos: -99.5,-53.5 parent: 1 - - uid: 38817 + - uid: 39429 components: - type: Transform - pos: 5.5,37.5 + pos: -100.5,-53.5 parent: 1 - - uid: 38818 + - uid: 39430 components: - type: Transform - pos: 6.5,36.5 + pos: -101.5,-53.5 parent: 1 - - uid: 38819 + - uid: 39431 components: - type: Transform - pos: 7.5,36.5 + pos: -102.5,-53.5 parent: 1 - - uid: 38820 + - uid: 39432 components: - type: Transform - pos: 8.5,36.5 + pos: -103.5,-53.5 parent: 1 - - uid: 38821 + - uid: 39433 components: - type: Transform - pos: 9.5,36.5 + pos: -104.5,-53.5 parent: 1 - - uid: 38822 + - uid: 39434 components: - type: Transform - pos: 10.5,36.5 + pos: -105.5,-53.5 parent: 1 - - uid: 38823 + - uid: 39435 components: - type: Transform - pos: 11.5,36.5 + pos: -106.5,-53.5 parent: 1 - - uid: 38824 + - uid: 39436 components: - type: Transform - pos: 12.5,36.5 + pos: -107.5,-53.5 parent: 1 - - uid: 38825 + - uid: 39437 components: - type: Transform - pos: 13.5,36.5 + pos: -107.5,-52.5 parent: 1 - - uid: 38826 + - uid: 39438 components: - type: Transform - pos: 14.5,36.5 + pos: -106.5,-55.5 parent: 1 - - uid: 38827 + - uid: 39439 components: - type: Transform - pos: 15.5,36.5 + pos: -105.5,-55.5 parent: 1 - - uid: 38828 + - uid: 39440 components: - type: Transform - pos: 16.5,36.5 + pos: -105.5,-54.5 parent: 1 - - uid: 38829 + - uid: 39441 components: - type: Transform - pos: 17.5,36.5 + pos: -106.5,-56.5 parent: 1 - - uid: 38830 + - uid: 39442 components: - type: Transform - pos: 18.5,36.5 + pos: -106.5,-57.5 parent: 1 - - uid: 38831 + - uid: 39443 components: - type: Transform - pos: 19.5,36.5 + pos: -106.5,-58.5 parent: 1 - - uid: 38832 + - uid: 39444 components: - type: Transform - pos: 20.5,36.5 + pos: -106.5,-59.5 parent: 1 - - uid: 38833 + - uid: 39445 components: - type: Transform - pos: 21.5,36.5 + pos: -106.5,-60.5 parent: 1 - - uid: 38834 + - uid: 39446 components: - type: Transform - pos: 22.5,36.5 + pos: -106.5,-61.5 parent: 1 - - uid: 38835 + - uid: 39447 components: - type: Transform - pos: 23.5,36.5 + pos: -106.5,-62.5 parent: 1 - - uid: 38836 + - uid: 39448 components: - type: Transform - pos: 24.5,36.5 + pos: -106.5,-63.5 parent: 1 - - uid: 38837 + - uid: 39449 components: - type: Transform - pos: 25.5,36.5 + pos: -106.5,-64.5 parent: 1 - - uid: 38838 + - uid: 39450 components: - type: Transform - pos: 26.5,36.5 + pos: -107.5,-55.5 parent: 1 - - uid: 38839 + - uid: 39451 components: - type: Transform - pos: 27.5,36.5 + pos: -108.5,-55.5 parent: 1 - - uid: 38840 + - uid: 39452 components: - type: Transform - pos: 28.5,36.5 + pos: -107.5,-59.5 parent: 1 - - uid: 38841 + - uid: 39453 components: - type: Transform - pos: 29.5,36.5 + pos: -108.5,-59.5 parent: 1 - - uid: 38842 + - uid: 39454 components: - type: Transform - pos: 30.5,36.5 + pos: -106.5,-65.5 parent: 1 - - uid: 38843 + - uid: 39455 components: - type: Transform - pos: 31.5,36.5 + pos: -107.5,-65.5 parent: 1 - - uid: 38844 + - uid: 39456 components: - type: Transform - pos: 32.5,36.5 + pos: -108.5,-65.5 parent: 1 - - uid: 38845 + - uid: 39457 components: - type: Transform - pos: 33.5,36.5 + pos: -109.5,-65.5 parent: 1 - - uid: 38846 + - uid: 39458 components: - type: Transform - pos: 34.5,36.5 + pos: -110.5,-65.5 parent: 1 - - uid: 38847 + - uid: 39459 components: - type: Transform - pos: 35.5,36.5 + pos: -111.5,-65.5 parent: 1 - - uid: 38848 + - uid: 39460 components: - type: Transform - pos: 36.5,36.5 + pos: -110.5,-66.5 parent: 1 - - uid: 38849 + - uid: 39461 components: - type: Transform - pos: 37.5,36.5 + pos: -110.5,-67.5 parent: 1 - - uid: 38850 + - uid: 39462 components: - type: Transform - pos: 38.5,36.5 + pos: -109.5,-67.5 parent: 1 - - uid: 38851 + - uid: 39463 components: - type: Transform - pos: 39.5,36.5 + pos: -111.5,-67.5 parent: 1 - - uid: 38852 + - uid: 39464 components: - type: Transform - pos: 40.5,36.5 + pos: -111.5,-68.5 parent: 1 - - uid: 38853 + - uid: 39465 components: - type: Transform - pos: 41.5,36.5 + pos: -111.5,-69.5 parent: 1 - - uid: 38854 + - uid: 39466 components: - type: Transform - pos: 42.5,36.5 + pos: -111.5,-70.5 parent: 1 - - uid: 38855 + - uid: 39467 components: - type: Transform - pos: 43.5,36.5 + pos: -111.5,-71.5 parent: 1 - - uid: 38856 + - uid: 39468 components: - type: Transform - pos: 44.5,36.5 + pos: -111.5,-72.5 parent: 1 - - uid: 38857 + - uid: 39469 components: - type: Transform - pos: 45.5,36.5 + pos: -111.5,-73.5 parent: 1 - - uid: 38858 + - uid: 39470 components: - type: Transform - pos: 46.5,36.5 + pos: -111.5,-74.5 parent: 1 - - uid: 38859 + - uid: 39471 components: - type: Transform - pos: 47.5,36.5 + pos: -111.5,-75.5 parent: 1 - - uid: 38860 + - uid: 39472 components: - type: Transform - pos: 48.5,36.5 + pos: -111.5,-76.5 parent: 1 - - uid: 38861 + - uid: 39473 components: - type: Transform - pos: 49.5,36.5 + pos: -110.5,-73.5 parent: 1 - - uid: 38862 + - uid: 39474 components: - type: Transform - pos: 50.5,36.5 + pos: -109.5,-73.5 parent: 1 - - uid: 38863 + - uid: 39475 components: - type: Transform - pos: 51.5,36.5 + pos: -108.5,-73.5 parent: 1 - - uid: 38864 + - uid: 39476 components: - type: Transform - pos: 52.5,36.5 + pos: -108.5,-74.5 parent: 1 - - uid: 38865 + - uid: 39477 components: - type: Transform - pos: 53.5,36.5 + pos: -108.5,-75.5 parent: 1 - - uid: 38866 + - uid: 39478 components: - type: Transform - pos: 53.5,35.5 + pos: -107.5,-75.5 parent: 1 - - uid: 38867 + - uid: 39479 components: - type: Transform - pos: 52.5,35.5 + pos: -106.5,-75.5 parent: 1 - - uid: 38868 + - uid: 39480 components: - type: Transform - pos: 42.5,35.5 + pos: -105.5,-75.5 parent: 1 - - uid: 38869 + - uid: 39481 components: - type: Transform - pos: 42.5,34.5 + pos: -104.5,-75.5 parent: 1 - - uid: 38907 + - uid: 39482 components: - type: Transform - pos: 3.5,36.5 + pos: -103.5,-75.5 parent: 1 - - uid: 38908 + - uid: 39483 components: - type: Transform - pos: 3.5,35.5 + pos: -102.5,-75.5 parent: 1 - - uid: 38909 + - uid: 39484 components: - type: Transform - pos: 3.5,34.5 + pos: -102.5,-54.5 parent: 1 - - uid: 38910 + - uid: 39485 components: - type: Transform - pos: 3.5,33.5 + pos: -102.5,-55.5 parent: 1 - - uid: 38911 + - uid: 39486 components: - type: Transform - pos: 3.5,32.5 + pos: -102.5,-56.5 parent: 1 - - uid: 38912 + - uid: 39487 components: - type: Transform - pos: 3.5,31.5 + pos: -102.5,-57.5 parent: 1 - - uid: 38917 + - uid: 39488 components: - type: Transform - pos: 4.5,31.5 + pos: -102.5,-58.5 parent: 1 - - uid: 38918 + - uid: 39489 components: - type: Transform - pos: 6.5,31.5 + pos: -102.5,-59.5 parent: 1 - - uid: 38919 + - uid: 39490 components: - type: Transform - pos: 5.5,31.5 + pos: -102.5,-60.5 parent: 1 - - uid: 38990 + - uid: 39491 components: - type: Transform - pos: -117.5,-40.5 + pos: -102.5,-61.5 parent: 1 - - uid: 38991 + - uid: 39492 components: - type: Transform - pos: -118.5,-40.5 + pos: -102.5,-62.5 parent: 1 - - uid: 38992 + - uid: 39493 components: - type: Transform - pos: -118.5,-41.5 + pos: -102.5,-63.5 parent: 1 - - uid: 38993 + - uid: 39494 components: - type: Transform - pos: -119.5,-41.5 + pos: -102.5,-64.5 parent: 1 - - uid: 38994 + - uid: 39495 components: - type: Transform - pos: -120.5,-41.5 + pos: -102.5,-65.5 parent: 1 - - uid: 38995 + - uid: 39496 components: - type: Transform - pos: -121.5,-41.5 + pos: -103.5,-65.5 parent: 1 - - uid: 38996 + - uid: 39497 components: - type: Transform - pos: -122.5,-41.5 + pos: -104.5,-65.5 parent: 1 - - uid: 38997 + - uid: 39498 components: - type: Transform - pos: -122.5,-40.5 + pos: -105.5,-65.5 parent: 1 - - uid: 38998 + - uid: 39499 components: - type: Transform - pos: -123.5,-40.5 + pos: -101.5,-64.5 parent: 1 - - uid: 38999 + - uid: 39500 components: - type: Transform - pos: -123.5,-39.5 + pos: -100.5,-64.5 parent: 1 - - uid: 39000 + - uid: 39501 components: - type: Transform - pos: -119.5,-36.5 + pos: -99.5,-64.5 parent: 1 - - uid: 39001 + - uid: 39502 components: - type: Transform - pos: -120.5,-36.5 + pos: -99.5,-63.5 parent: 1 - - uid: 39002 + - uid: 39503 components: - type: Transform - pos: -121.5,-36.5 + pos: -98.5,-63.5 parent: 1 - - uid: 39003 + - uid: 39504 components: - type: Transform - pos: -122.5,-36.5 + pos: -97.5,-63.5 parent: 1 - - uid: 39004 + - uid: 39505 components: - type: Transform - pos: -122.5,-37.5 + pos: -95.5,-61.5 parent: 1 - - uid: 39005 + - uid: 39506 components: - type: Transform - pos: -123.5,-37.5 + pos: -94.5,-61.5 parent: 1 - - uid: 39006 + - uid: 39507 components: - type: Transform - pos: -123.5,-38.5 + pos: -93.5,-61.5 parent: 1 - - uid: 39007 + - uid: 39508 components: - type: Transform - pos: -124.5,-38.5 + pos: -96.5,-77.5 parent: 1 - - uid: 39008 + - uid: 39509 components: - type: Transform - pos: -125.5,-38.5 + pos: -97.5,-77.5 parent: 1 - - uid: 39009 + - uid: 39510 components: - type: Transform - pos: -126.5,-38.5 + pos: -97.5,-78.5 parent: 1 - - uid: 39010 + - uid: 39511 components: - type: Transform - pos: -126.5,-37.5 + pos: -97.5,-79.5 parent: 1 - - uid: 39011 + - uid: 39512 components: - type: Transform - pos: -127.5,-37.5 + pos: -97.5,-80.5 parent: 1 - - uid: 39012 + - uid: 39513 components: - type: Transform - pos: -127.5,-36.5 + pos: -96.5,-80.5 parent: 1 - - uid: 39013 + - uid: 39514 components: - type: Transform - pos: -128.5,-36.5 + pos: -95.5,-80.5 parent: 1 - - uid: 39014 + - uid: 39515 components: - type: Transform - pos: -128.5,-37.5 + pos: -94.5,-80.5 parent: 1 - - uid: 39015 + - uid: 39516 components: - type: Transform - pos: -129.5,-37.5 + pos: -93.5,-80.5 parent: 1 - - uid: 39016 + - uid: 39517 components: - type: Transform - pos: -129.5,-38.5 + pos: -92.5,-80.5 parent: 1 - - uid: 39017 + - uid: 39518 components: - type: Transform - pos: -129.5,-39.5 + pos: -91.5,-80.5 parent: 1 - - uid: 39018 + - uid: 39519 components: - type: Transform - pos: -129.5,-40.5 + pos: -92.5,-81.5 parent: 1 - - uid: 39019 + - uid: 39520 components: - type: Transform - pos: -128.5,-40.5 + pos: -92.5,-82.5 parent: 1 - - uid: 39020 + - uid: 39521 components: - type: Transform - pos: -128.5,-41.5 + pos: -92.5,-83.5 parent: 1 - - uid: 39021 + - uid: 39522 components: - type: Transform - pos: -127.5,-41.5 + pos: -92.5,-84.5 parent: 1 - - uid: 39022 + - uid: 39523 components: - type: Transform - pos: -127.5,-40.5 + pos: -92.5,-85.5 parent: 1 - - uid: 39023 + - uid: 39524 components: - type: Transform - pos: -126.5,-40.5 + pos: -92.5,-86.5 parent: 1 - - uid: 39024 + - uid: 39525 components: - type: Transform - pos: -126.5,-39.5 + pos: -92.5,-87.5 parent: 1 - - uid: 39025 + - uid: 39526 components: - type: Transform - pos: -125.5,-39.5 + pos: -93.5,-87.5 parent: 1 - - uid: 39026 + - uid: 39527 components: - type: Transform - pos: -124.5,-39.5 + pos: -94.5,-87.5 parent: 1 - - uid: 39027 + - uid: 39528 components: - type: Transform - pos: -116.5,-39.5 + pos: -95.5,-87.5 parent: 1 - - uid: 39028 + - uid: 39529 components: - type: Transform - pos: -115.5,-39.5 + pos: -95.5,-86.5 parent: 1 - - uid: 39029 + - uid: 39530 components: - type: Transform - pos: -114.5,-39.5 + pos: -95.5,-85.5 parent: 1 - - uid: 39030 + - uid: 39531 components: - type: Transform - pos: -113.5,-39.5 + pos: -95.5,-84.5 parent: 1 - - uid: 39042 + - uid: 39532 components: - type: Transform - pos: -100.5,-18.5 + pos: -95.5,-83.5 parent: 1 - - uid: 39043 + - uid: 39533 components: - type: Transform - pos: -100.5,-17.5 + pos: -94.5,-83.5 parent: 1 - - uid: 39044 + - uid: 39534 components: - type: Transform - pos: -100.5,-16.5 + pos: -93.5,-83.5 parent: 1 - - uid: 39045 + - uid: 39537 components: - type: Transform - pos: -99.5,-16.5 + pos: -98.5,-80.5 parent: 1 - - uid: 39046 + - uid: 39538 components: - type: Transform - pos: -99.5,-15.5 + pos: -98.5,-81.5 parent: 1 - - uid: 39047 + - uid: 39539 components: - type: Transform - pos: -105.5,-16.5 + pos: -99.5,-82.5 parent: 1 - - uid: 39048 + - uid: 39540 components: - type: Transform - pos: -105.5,-15.5 + pos: -100.5,-82.5 parent: 1 - - uid: 39049 + - uid: 39541 components: - type: Transform - pos: -105.5,-14.5 + pos: -101.5,-82.5 parent: 1 - - uid: 39050 + - uid: 39542 components: - type: Transform - pos: -111.5,-13.5 + pos: -102.5,-82.5 parent: 1 - - uid: 39051 + - uid: 39543 components: - type: Transform - pos: -111.5,-14.5 + pos: -103.5,-82.5 parent: 1 - - uid: 39052 + - uid: 39544 components: - type: Transform - pos: -111.5,-15.5 + pos: -104.5,-82.5 parent: 1 - - uid: 39053 + - uid: 39545 components: - type: Transform - pos: -111.5,-16.5 + pos: -105.5,-82.5 parent: 1 - - uid: 39054 + - uid: 39546 components: - type: Transform - pos: -110.5,-16.5 + pos: -106.5,-82.5 parent: 1 - - uid: 39055 + - uid: 39547 components: - type: Transform - pos: -112.5,-16.5 + pos: -107.5,-82.5 parent: 1 - - uid: 39060 + - uid: 39549 components: - type: Transform - pos: -103.5,-29.5 + pos: -107.5,-83.5 parent: 1 - - uid: 39061 + - uid: 39550 components: - type: Transform - pos: -104.5,-29.5 + pos: -107.5,-84.5 parent: 1 - - uid: 39062 + - uid: 39551 components: - type: Transform - pos: -105.5,-29.5 + pos: -107.5,-85.5 parent: 1 - - uid: 39063 + - uid: 39552 components: - type: Transform - pos: -105.5,-30.5 + pos: -107.5,-86.5 parent: 1 - - uid: 39064 + - uid: 39553 components: - type: Transform - pos: -105.5,-31.5 + pos: -107.5,-87.5 parent: 1 - - uid: 39065 + - uid: 39554 components: - type: Transform - pos: -105.5,-32.5 + pos: -108.5,-87.5 parent: 1 - - uid: 39066 + - uid: 39555 components: - type: Transform - pos: -105.5,-33.5 + pos: -109.5,-87.5 parent: 1 - - uid: 39067 + - uid: 39556 components: - type: Transform - pos: -105.5,-34.5 + pos: -110.5,-87.5 parent: 1 - - uid: 39068 + - uid: 39557 components: - type: Transform - pos: -106.5,-31.5 + pos: -111.5,-87.5 parent: 1 - - uid: 39069 + - uid: 39558 components: - type: Transform - pos: -107.5,-31.5 + pos: -112.5,-87.5 parent: 1 - - uid: 39070 + - uid: 39559 components: - type: Transform - pos: -107.5,-32.5 + pos: -113.5,-87.5 parent: 1 - - uid: 39071 + - uid: 39560 components: - type: Transform - pos: -106.5,-32.5 + pos: -114.5,-87.5 parent: 1 - - uid: 39085 + - uid: 39561 components: - type: Transform - pos: -114.5,-23.5 + pos: -115.5,-87.5 parent: 1 - - uid: 39086 + - uid: 39562 components: - type: Transform - pos: -114.5,-24.5 + pos: -108.5,-82.5 parent: 1 - - uid: 39087 + - uid: 39563 components: - type: Transform - pos: -113.5,-24.5 + pos: -109.5,-82.5 parent: 1 - - uid: 39088 + - uid: 39564 components: - type: Transform - pos: -112.5,-24.5 + pos: -110.5,-82.5 parent: 1 - - uid: 39089 + - uid: 39565 components: - type: Transform - pos: -111.5,-24.5 + pos: -111.5,-82.5 parent: 1 - - uid: 39090 + - uid: 39566 components: - type: Transform - pos: -110.5,-24.5 + pos: -112.5,-82.5 parent: 1 - - uid: 39091 + - uid: 39567 components: - type: Transform - pos: -109.5,-24.5 + pos: -113.5,-82.5 parent: 1 - - uid: 39092 + - uid: 39568 components: - type: Transform - pos: -109.5,-23.5 + pos: -114.5,-82.5 parent: 1 - - uid: 39093 + - uid: 39569 components: - type: Transform - pos: -109.5,-22.5 + pos: -114.5,-81.5 parent: 1 - - uid: 39094 + - uid: 39570 components: - type: Transform - pos: -108.5,-22.5 + pos: -114.5,-80.5 parent: 1 - - uid: 39095 + - uid: 39571 components: - type: Transform - pos: -108.5,-21.5 + pos: -114.5,-79.5 parent: 1 - - uid: 39096 + - uid: 39572 components: - type: Transform - pos: -108.5,-20.5 + pos: -114.5,-78.5 parent: 1 - - uid: 39097 + - uid: 39573 components: - type: Transform - pos: -108.5,-19.5 + pos: -114.5,-77.5 parent: 1 - - uid: 39098 + - uid: 39574 components: - type: Transform - pos: -109.5,-19.5 + pos: -114.5,-76.5 parent: 1 - - uid: 39099 + - uid: 39575 components: - type: Transform - pos: -110.5,-19.5 + pos: -114.5,-75.5 parent: 1 - - uid: 39100 + - uid: 39576 components: - type: Transform - pos: -111.5,-19.5 + pos: -114.5,-74.5 parent: 1 - - uid: 39101 + - uid: 39577 components: - type: Transform - pos: -112.5,-19.5 + pos: -114.5,-73.5 parent: 1 - - uid: 39102 + - uid: 39578 components: - type: Transform - pos: -113.5,-19.5 + pos: -115.5,-73.5 parent: 1 - - uid: 39103 + - uid: 39579 components: - type: Transform - pos: -114.5,-19.5 + pos: -116.5,-73.5 parent: 1 - - uid: 39104 + - uid: 39580 components: - type: Transform - pos: -114.5,-20.5 + pos: -116.5,-72.5 parent: 1 - - uid: 39105 + - uid: 39581 components: - type: Transform - pos: -114.5,-21.5 + pos: -116.5,-71.5 parent: 1 - - uid: 39106 + - uid: 39582 components: - type: Transform - pos: -114.5,-22.5 + pos: -116.5,-70.5 parent: 1 - - uid: 39107 + - uid: 39583 components: - type: Transform - pos: -110.5,-25.5 + pos: -116.5,-69.5 parent: 1 - - uid: 39108 + - uid: 39584 components: - type: Transform - pos: -110.5,-26.5 + pos: -116.5,-68.5 parent: 1 - - uid: 39109 + - uid: 39585 components: - type: Transform - pos: -110.5,-27.5 + pos: -116.5,-67.5 parent: 1 - - uid: 39110 + - uid: 39586 components: - type: Transform - pos: -111.5,-27.5 + pos: -117.5,-67.5 parent: 1 - - uid: 39111 + - uid: 39587 components: - type: Transform - pos: -112.5,-27.5 + pos: -118.5,-67.5 parent: 1 - - uid: 39112 + - uid: 39588 components: - type: Transform - pos: -112.5,-28.5 + pos: -118.5,-66.5 parent: 1 - - uid: 39113 + - uid: 39589 components: - type: Transform - pos: -112.5,-29.5 + pos: -118.5,-65.5 parent: 1 - - uid: 39114 + - uid: 39590 components: - type: Transform - pos: -112.5,-30.5 + pos: -118.5,-64.5 parent: 1 - - uid: 39115 + - uid: 39591 components: - type: Transform - pos: -112.5,-31.5 + pos: -118.5,-63.5 parent: 1 - - uid: 39116 + - uid: 39592 components: - type: Transform - pos: -112.5,-32.5 + pos: -118.5,-62.5 parent: 1 - - uid: 39117 + - uid: 39593 components: - type: Transform - pos: -112.5,-33.5 + pos: -118.5,-61.5 parent: 1 - - uid: 39118 + - uid: 39594 components: - type: Transform - pos: -113.5,-33.5 + pos: -118.5,-60.5 parent: 1 - - uid: 39119 + - uid: 39595 components: - type: Transform - pos: -111.5,-33.5 + pos: -118.5,-59.5 parent: 1 - - uid: 39120 + - uid: 39596 components: - type: Transform - pos: -111.5,-34.5 + pos: -119.5,-59.5 parent: 1 - - uid: 39121 + - uid: 39597 components: - type: Transform - pos: -111.5,-35.5 + pos: -119.5,-58.5 parent: 1 - - uid: 39122 + - uid: 39598 components: - type: Transform - pos: -110.5,-35.5 + pos: -119.5,-57.5 parent: 1 - - uid: 39123 + - uid: 39599 components: - type: Transform - pos: -110.5,-36.5 + pos: -117.5,-62.5 parent: 1 - - uid: 39124 + - uid: 39600 components: - type: Transform - pos: -110.5,-37.5 + pos: -116.5,-62.5 parent: 1 - - uid: 39125 + - uid: 39601 components: - type: Transform - pos: -110.5,-38.5 + pos: -116.5,-61.5 parent: 1 - - uid: 39126 + - uid: 39602 components: - type: Transform - pos: -110.5,-39.5 + pos: -116.5,-60.5 parent: 1 - - uid: 39127 + - uid: 39603 components: - type: Transform - pos: -113.5,-29.5 + pos: -116.5,-59.5 parent: 1 - - uid: 39128 + - uid: 39604 components: - type: Transform - pos: -114.5,-29.5 + pos: -116.5,-58.5 parent: 1 - - uid: 39129 + - uid: 39605 components: - type: Transform - pos: -115.5,-29.5 + pos: -116.5,-57.5 parent: 1 - - uid: 39130 + - uid: 39606 components: - type: Transform - pos: -116.5,-29.5 + pos: -116.5,-56.5 parent: 1 - - uid: 39131 + - uid: 39607 components: - type: Transform - pos: -117.5,-29.5 + pos: -116.5,-55.5 parent: 1 - - uid: 39132 + - uid: 39608 components: - type: Transform - pos: -118.5,-29.5 + pos: -116.5,-54.5 parent: 1 - - uid: 39133 + - uid: 39609 components: - type: Transform - pos: -119.5,-29.5 + pos: -116.5,-53.5 parent: 1 - - uid: 39134 + - uid: 39610 components: - type: Transform - pos: -120.5,-29.5 + pos: -117.5,-53.5 parent: 1 - - uid: 39135 + - uid: 39611 components: - type: Transform - pos: -121.5,-29.5 + pos: -118.5,-53.5 parent: 1 - - uid: 39136 + - uid: 39612 components: - type: Transform - pos: -121.5,-28.5 + pos: -119.5,-53.5 parent: 1 - - uid: 39137 + - uid: 39613 components: - type: Transform - pos: -121.5,-27.5 + pos: -120.5,-53.5 parent: 1 - - uid: 39138 + - uid: 39614 components: - type: Transform - pos: -121.5,-26.5 + pos: -121.5,-53.5 parent: 1 - - uid: 39139 + - uid: 39615 components: - type: Transform - pos: -121.5,-25.5 + pos: -122.5,-53.5 parent: 1 - - uid: 39140 + - uid: 39616 components: - type: Transform - pos: -121.5,-24.5 + pos: -116.5,-47.5 parent: 1 - - uid: 39141 + - uid: 39617 components: - type: Transform - pos: -120.5,-24.5 + pos: -116.5,-48.5 parent: 1 - - uid: 39142 + - uid: 39618 components: - type: Transform - pos: -119.5,-24.5 + pos: -117.5,-48.5 parent: 1 - - uid: 39143 + - uid: 39619 components: - type: Transform - pos: -118.5,-24.5 + pos: -118.5,-48.5 parent: 1 - - uid: 39144 + - uid: 39620 components: - type: Transform - pos: -117.5,-24.5 + pos: -119.5,-48.5 parent: 1 - - uid: 39145 + - uid: 39621 components: - type: Transform - pos: -116.5,-24.5 + pos: -119.5,-47.5 parent: 1 - - uid: 39146 + - uid: 39638 components: - type: Transform - pos: -115.5,-24.5 + pos: 42.5,-1.5 parent: 1 - - uid: 39147 + - uid: 39644 components: - type: Transform - pos: -123.5,-28.5 + pos: -28.5,-52.5 parent: 1 - - uid: 39148 + - uid: 39645 components: - type: Transform - pos: -122.5,-28.5 + pos: -29.5,-52.5 parent: 1 - - uid: 39149 + - uid: 39646 components: - type: Transform - pos: -124.5,-28.5 + pos: -29.5,-51.5 parent: 1 - - uid: 39150 + - uid: 39647 components: - type: Transform - pos: -125.5,-28.5 + pos: -27.5,-52.5 parent: 1 - - uid: 39151 + - uid: 39653 components: - type: Transform - pos: -122.5,-30.5 + pos: -20.5,-46.5 parent: 1 - - uid: 39152 + - uid: 39654 components: - type: Transform - pos: -123.5,-30.5 + pos: -20.5,-47.5 parent: 1 - - uid: 39153 + - uid: 39655 components: - type: Transform - pos: -124.5,-30.5 + pos: -20.5,-48.5 parent: 1 - - uid: 39154 + - uid: 39656 components: - type: Transform - pos: -125.5,-30.5 + pos: -21.5,-48.5 parent: 1 - - uid: 39155 + - uid: 39657 components: - type: Transform - pos: -98.5,-82.5 + pos: -22.5,-48.5 parent: 1 - - uid: 39156 + - uid: 39658 components: - type: Transform - pos: -83.5,-13.5 + pos: -23.5,-48.5 parent: 1 - - uid: 39168 + - uid: 39659 components: - type: Transform - pos: -56.5,-41.5 + pos: -23.5,-49.5 parent: 1 - - uid: 39169 + - uid: 39660 components: - type: Transform - pos: -57.5,-41.5 + pos: -20.5,-49.5 parent: 1 - - uid: 39170 + - uid: 39661 components: - type: Transform - pos: -58.5,-41.5 + pos: 26.5,-34.5 parent: 1 - - uid: 39175 + - uid: 39662 components: - type: Transform - pos: -140.5,-40.5 + pos: 26.5,-35.5 parent: 1 - - uid: 39176 + - uid: 39663 components: - type: Transform - pos: -140.5,-39.5 + pos: 26.5,-36.5 parent: 1 - - uid: 39177 + - uid: 39664 components: - type: Transform - pos: -140.5,-38.5 + pos: 26.5,-37.5 parent: 1 - - uid: 39178 + - uid: 39665 components: - type: Transform - pos: -140.5,-37.5 + pos: 26.5,-38.5 parent: 1 - - uid: 39179 + - uid: 39666 components: - type: Transform - pos: -141.5,-37.5 + pos: 25.5,-38.5 parent: 1 - - uid: 39180 + - uid: 39667 components: - type: Transform - pos: -142.5,-37.5 + pos: 24.5,-38.5 parent: 1 - - uid: 39181 + - uid: 39668 components: - type: Transform - pos: -143.5,-37.5 + pos: 27.5,-38.5 parent: 1 - - uid: 39182 + - uid: 39669 components: - type: Transform - pos: -144.5,-37.5 + pos: 27.5,-39.5 parent: 1 - - uid: 39183 + - uid: 39670 components: - type: Transform - pos: -145.5,-37.5 + pos: 27.5,-40.5 parent: 1 - - uid: 39184 + - uid: 39671 components: - type: Transform - pos: -146.5,-37.5 + pos: 20.5,-37.5 parent: 1 - - uid: 39185 + - uid: 39672 components: - type: Transform - pos: -147.5,-37.5 + pos: 20.5,-38.5 parent: 1 - - uid: 39186 + - uid: 39673 components: - type: Transform - pos: -148.5,-37.5 + pos: 20.5,-39.5 parent: 1 - - uid: 39187 + - uid: 39674 components: - type: Transform - pos: -149.5,-37.5 + pos: 20.5,-40.5 parent: 1 - - uid: 39188 + - uid: 39675 components: - type: Transform - pos: -150.5,-37.5 + pos: 20.5,-41.5 parent: 1 - - uid: 39189 + - uid: 39676 components: - type: Transform - pos: -148.5,-38.5 + pos: 21.5,-41.5 parent: 1 - - uid: 39190 + - uid: 39677 components: - type: Transform - pos: -148.5,-39.5 + pos: 22.5,-41.5 parent: 1 - - uid: 39191 + - uid: 39678 components: - type: Transform - pos: -148.5,-40.5 + pos: 19.5,-41.5 parent: 1 - - uid: 39192 + - uid: 39679 components: - type: Transform - pos: -148.5,-41.5 + pos: -25.5,-56.5 parent: 1 - - uid: 39193 + - uid: 39680 components: - type: Transform - pos: -148.5,-42.5 + pos: -24.5,-56.5 parent: 1 - - uid: 39194 + - uid: 39681 components: - type: Transform - pos: -148.5,-43.5 + pos: -23.5,-56.5 parent: 1 - - uid: 39195 + - uid: 39682 components: - type: Transform - pos: -147.5,-43.5 + pos: -22.5,-56.5 parent: 1 - - uid: 39196 + - uid: 39683 components: - type: Transform - pos: -148.5,-36.5 + pos: -21.5,-56.5 parent: 1 - - uid: 39197 + - uid: 39684 components: - type: Transform - pos: -148.5,-35.5 + pos: -20.5,-56.5 parent: 1 - - uid: 39198 + - uid: 39685 components: - type: Transform - pos: -148.5,-34.5 + pos: -19.5,-56.5 parent: 1 - - uid: 39199 + - uid: 39686 components: - type: Transform - pos: -148.5,-33.5 + pos: -18.5,-56.5 parent: 1 - - uid: 39200 + - uid: 39687 components: - type: Transform - pos: -148.5,-32.5 + pos: -17.5,-56.5 parent: 1 - - uid: 39201 + - uid: 39688 components: - type: Transform - pos: -149.5,-32.5 + pos: -17.5,-55.5 parent: 1 - - uid: 39202 + - uid: 39689 components: - type: Transform - pos: -150.5,-32.5 + pos: -17.5,-54.5 parent: 1 - - uid: 39203 + - uid: 39690 components: - type: Transform - pos: -151.5,-32.5 + pos: -17.5,-53.5 parent: 1 - - uid: 39204 + - uid: 39691 components: - type: Transform - pos: -151.5,-33.5 + pos: -17.5,-52.5 parent: 1 - - uid: 39205 + - uid: 39692 components: - type: Transform - pos: -139.5,-37.5 + pos: -16.5,-52.5 parent: 1 - - uid: 39206 + - uid: 39693 components: - type: Transform - pos: -138.5,-37.5 + pos: -17.5,-57.5 parent: 1 - - uid: 39207 + - uid: 39694 components: - type: Transform - pos: -137.5,-37.5 + pos: -17.5,-58.5 parent: 1 - - uid: 39208 + - uid: 39695 components: - type: Transform - pos: -136.5,-37.5 + pos: -17.5,-59.5 parent: 1 - - uid: 39209 + - uid: 39696 components: - type: Transform - pos: -135.5,-37.5 + pos: -17.5,-60.5 parent: 1 - - uid: 39210 + - uid: 39697 components: - type: Transform - pos: -135.5,-36.5 + pos: -16.5,-60.5 parent: 1 - - uid: 39211 + - uid: 39698 components: - type: Transform - pos: -135.5,-35.5 + pos: -16.5,-61.5 parent: 1 - - uid: 39212 + - uid: 39699 components: - type: Transform - pos: -135.5,-34.5 + pos: -16.5,-62.5 parent: 1 - - uid: 39213 + - uid: 39700 components: - type: Transform - pos: -134.5,-34.5 + pos: -16.5,-63.5 parent: 1 - - uid: 39214 + - uid: 39701 components: - type: Transform - pos: -133.5,-34.5 + pos: -16.5,-64.5 parent: 1 - - uid: 39215 + - uid: 39702 components: - type: Transform - pos: -133.5,-33.5 + pos: -16.5,-65.5 parent: 1 - - uid: 39216 + - uid: 39703 components: - type: Transform - pos: -133.5,-32.5 + pos: -16.5,-66.5 parent: 1 - - uid: 39217 + - uid: 39704 components: - type: Transform - pos: -133.5,-31.5 + pos: -16.5,-67.5 parent: 1 - - uid: 39218 + - uid: 39705 components: - type: Transform - pos: -134.5,-31.5 + pos: -16.5,-68.5 parent: 1 - - uid: 39219 + - uid: 39706 components: - type: Transform - pos: -135.5,-31.5 + pos: -16.5,-69.5 parent: 1 - - uid: 39220 + - uid: 39707 components: - type: Transform - pos: -136.5,-31.5 + pos: -16.5,-70.5 parent: 1 - - uid: 39221 + - uid: 39708 components: - type: Transform - pos: -137.5,-31.5 + pos: -27.5,-70.5 parent: 1 - - uid: 39222 + - uid: 39709 components: - type: Transform - pos: -137.5,-30.5 + pos: -26.5,-70.5 parent: 1 - - uid: 39223 + - uid: 39710 components: - type: Transform - pos: -132.5,-31.5 + pos: -25.5,-70.5 parent: 1 - - uid: 39224 + - uid: 39711 components: - type: Transform - pos: -132.5,-30.5 + pos: -24.5,-70.5 parent: 1 - - uid: 39225 + - uid: 39712 components: - type: Transform - pos: -132.5,-29.5 + pos: -23.5,-70.5 parent: 1 - - uid: 39226 + - uid: 39713 components: - type: Transform - pos: -132.5,-28.5 + pos: -22.5,-70.5 parent: 1 - - uid: 39227 + - uid: 39714 components: - type: Transform - pos: -132.5,-27.5 + pos: -19.5,-62.5 parent: 1 - - uid: 39228 + - uid: 39715 components: - type: Transform - pos: -132.5,-26.5 + pos: -18.5,-62.5 parent: 1 - - uid: 39229 + - uid: 39716 components: - type: Transform - pos: -132.5,-25.5 + pos: -17.5,-62.5 parent: 1 - - uid: 39230 + - uid: 39732 components: - type: Transform - pos: -132.5,-24.5 + pos: 44.5,-10.5 parent: 1 - - uid: 39231 + - uid: 39733 components: - type: Transform - pos: -133.5,-25.5 + pos: 43.5,-10.5 parent: 1 - - uid: 39232 + - uid: 39734 components: - type: Transform - pos: -134.5,-25.5 + pos: 42.5,-10.5 parent: 1 - - uid: 39233 + - uid: 39735 components: - type: Transform - pos: -135.5,-25.5 + pos: 41.5,-10.5 parent: 1 - - uid: 39234 + - uid: 39736 components: - type: Transform - pos: -136.5,-25.5 + pos: 40.5,-10.5 parent: 1 - - uid: 39235 + - uid: 39737 components: - type: Transform - pos: -136.5,-24.5 + pos: 39.5,-10.5 parent: 1 - - uid: 39236 + - uid: 39738 components: - type: Transform - pos: -131.5,-24.5 + pos: 41.5,-7.5 parent: 1 - - uid: 39237 + - uid: 39739 components: - type: Transform - pos: -130.5,-24.5 + pos: 41.5,-8.5 parent: 1 - - uid: 39238 + - uid: 39740 components: - type: Transform - pos: -129.5,-24.5 + pos: 45.5,-10.5 parent: 1 - - uid: 39239 + - uid: 39741 components: - type: Transform - pos: -128.5,-24.5 + pos: 46.5,-10.5 parent: 1 - - uid: 39240 + - uid: 39742 components: - type: Transform - pos: -127.5,-24.5 + pos: 41.5,-6.5 parent: 1 - - uid: 39241 + - uid: 39750 components: - type: Transform - pos: -126.5,-24.5 + pos: 30.5,-8.5 parent: 1 - - uid: 39242 + - uid: 39751 components: - type: Transform - pos: -125.5,-24.5 + pos: 30.5,-9.5 parent: 1 - - uid: 39243 + - uid: 39767 components: - type: Transform - pos: -124.5,-24.5 + pos: 46.5,-9.5 parent: 1 - - uid: 39244 + - uid: 39768 components: - type: Transform - pos: -124.5,-23.5 + pos: 47.5,-9.5 parent: 1 - - uid: 39245 + - uid: 39769 components: - type: Transform - pos: -124.5,-22.5 + pos: 48.5,-9.5 parent: 1 - - uid: 39246 + - uid: 39770 components: - type: Transform - pos: -124.5,-21.5 + pos: 49.5,-9.5 parent: 1 - - uid: 39247 + - uid: 39771 components: - type: Transform - pos: -123.5,-21.5 + pos: 50.5,-9.5 parent: 1 - - uid: 39248 + - uid: 39772 components: - type: Transform - pos: -122.5,-21.5 + pos: 51.5,-9.5 parent: 1 - - uid: 39249 + - uid: 39773 components: - type: Transform - pos: -122.5,-20.5 + pos: 52.5,-9.5 parent: 1 - - uid: 39250 + - uid: 39774 components: - type: Transform - pos: -122.5,-19.5 + pos: 53.5,-9.5 parent: 1 - - uid: 39251 + - uid: 39775 components: - type: Transform - pos: -122.5,-18.5 + pos: 49.5,-10.5 parent: 1 - - uid: 39252 + - uid: 39776 components: - type: Transform - pos: -122.5,-17.5 + pos: 49.5,-11.5 parent: 1 - - uid: 39253 + - uid: 39777 components: - type: Transform - pos: -121.5,-17.5 + pos: 49.5,-12.5 parent: 1 - - uid: 39254 + - uid: 39778 components: - type: Transform - pos: -120.5,-17.5 + pos: 49.5,-13.5 parent: 1 - - uid: 39255 + - uid: 39779 components: - type: Transform - pos: -119.5,-17.5 + pos: 49.5,-14.5 parent: 1 - - uid: 39256 + - uid: 39780 components: - type: Transform - pos: -118.5,-17.5 + pos: 50.5,-14.5 parent: 1 - - uid: 39257 + - uid: 39781 components: - type: Transform - pos: -117.5,-17.5 + pos: 51.5,-14.5 parent: 1 - - uid: 39258 + - uid: 39782 components: - type: Transform - pos: -117.5,-12.5 + pos: 51.5,-13.5 parent: 1 - - uid: 39259 + - uid: 39783 components: - type: Transform - pos: -117.5,-13.5 + pos: 35.5,-4.5 parent: 1 - - uid: 39260 + - uid: 39784 components: - type: Transform - pos: -117.5,-14.5 + pos: 51.5,-12.5 parent: 1 - - uid: 39261 + - uid: 39785 components: - type: Transform - pos: -117.5,-15.5 + pos: 51.5,-11.5 parent: 1 - - uid: 39262 + - uid: 39786 components: - type: Transform - pos: -117.5,-16.5 + pos: 51.5,-10.5 parent: 1 - - uid: 39263 + - uid: 39787 components: - type: Transform - pos: -135.5,-38.5 + pos: 36.5,-4.5 parent: 1 - - uid: 39264 + - uid: 39788 components: - type: Transform - pos: -135.5,-39.5 + pos: 37.5,-4.5 parent: 1 - - uid: 39265 + - uid: 39789 components: - type: Transform - pos: -135.5,-40.5 + pos: 38.5,-4.5 parent: 1 - - uid: 39266 + - uid: 39790 components: - type: Transform - pos: -134.5,-40.5 + pos: 39.5,-4.5 parent: 1 - - uid: 39267 + - uid: 39791 components: - type: Transform - pos: -134.5,-41.5 + pos: 40.5,-4.5 parent: 1 - - uid: 39268 + - uid: 39792 components: - type: Transform - pos: -134.5,-42.5 + pos: 41.5,-4.5 parent: 1 - - uid: 39269 + - uid: 39793 components: - type: Transform - pos: -134.5,-43.5 + pos: 42.5,-4.5 parent: 1 - - uid: 39270 + - uid: 39794 components: - type: Transform - pos: -134.5,-44.5 + pos: 43.5,-4.5 parent: 1 - - uid: 39271 + - uid: 39795 components: - type: Transform - pos: -134.5,-45.5 + pos: 44.5,-4.5 parent: 1 - - uid: 39272 + - uid: 39796 components: - type: Transform - pos: -134.5,-46.5 + pos: 37.5,-2.5 parent: 1 - - uid: 39273 + - uid: 39797 components: - type: Transform - pos: -133.5,-46.5 + pos: 38.5,-2.5 parent: 1 - - uid: 39274 + - uid: 39798 components: - type: Transform - pos: -132.5,-46.5 + pos: 39.5,-2.5 parent: 1 - - uid: 39275 + - uid: 39799 components: - type: Transform - pos: -131.5,-46.5 + pos: 40.5,-2.5 parent: 1 - - uid: 39276 + - uid: 39800 components: - type: Transform - pos: -130.5,-46.5 + pos: 40.5,-3.5 parent: 1 - - uid: 39277 + - uid: 39801 components: - type: Transform - pos: -129.5,-46.5 + pos: 44.5,-3.5 parent: 1 - - uid: 39278 + - uid: 39802 components: - type: Transform - pos: -128.5,-46.5 + pos: 45.5,-3.5 parent: 1 - - uid: 39279 + - uid: 39803 components: - type: Transform - pos: -127.5,-46.5 + pos: 46.5,-3.5 parent: 1 - - uid: 39280 + - uid: 39804 components: - type: Transform - pos: -126.5,-46.5 + pos: 47.5,-3.5 parent: 1 - - uid: 39281 + - uid: 39805 components: - type: Transform - pos: -125.5,-46.5 + pos: 48.5,-3.5 parent: 1 - - uid: 39282 + - uid: 39806 components: - type: Transform - pos: -124.5,-46.5 + pos: 49.5,-3.5 parent: 1 - - uid: 39283 + - uid: 39807 components: - type: Transform - pos: -123.5,-46.5 + pos: 50.5,-3.5 parent: 1 - - uid: 39284 + - uid: 39808 components: - type: Transform - pos: -122.5,-46.5 + pos: 51.5,-3.5 parent: 1 - - uid: 39285 + - uid: 39821 components: - type: Transform - pos: -121.5,-46.5 + pos: 28.5,-13.5 parent: 1 - - uid: 39286 + - uid: 39822 components: - type: Transform - pos: -120.5,-46.5 + pos: 29.5,-13.5 parent: 1 - - uid: 39287 + - uid: 39823 components: - type: Transform - pos: -119.5,-46.5 + pos: 30.5,-13.5 parent: 1 - - uid: 39288 + - uid: 39824 components: - type: Transform - pos: -118.5,-46.5 + pos: 31.5,-13.5 parent: 1 - - uid: 39289 + - uid: 39825 components: - type: Transform - pos: -117.5,-46.5 + pos: 32.5,-13.5 parent: 1 - - uid: 39290 + - uid: 39826 components: - type: Transform - pos: -116.5,-46.5 + pos: 32.5,-14.5 parent: 1 - - uid: 39291 + - uid: 39827 components: - type: Transform - pos: -115.5,-46.5 + pos: 32.5,-15.5 parent: 1 - - uid: 39292 + - uid: 39828 components: - type: Transform - pos: -114.5,-46.5 + pos: 32.5,-16.5 parent: 1 - - uid: 39293 + - uid: 39829 components: - type: Transform - pos: -113.5,-46.5 + pos: 32.5,-17.5 parent: 1 - - uid: 39294 + - uid: 39830 components: - type: Transform - pos: -112.5,-46.5 + pos: 32.5,-18.5 parent: 1 - - uid: 39295 + - uid: 39831 components: - type: Transform - pos: -111.5,-46.5 + pos: 32.5,-19.5 parent: 1 - - uid: 39296 + - uid: 39832 components: - type: Transform - pos: -110.5,-46.5 + pos: 32.5,-20.5 parent: 1 - - uid: 39297 + - uid: 39833 components: - type: Transform - pos: -110.5,-45.5 + pos: 33.5,-20.5 parent: 1 - - uid: 39298 + - uid: 39834 components: - type: Transform - pos: -110.5,-44.5 + pos: 33.5,-21.5 parent: 1 - - uid: 39299 + - uid: 39835 components: - type: Transform - pos: -110.5,-43.5 + pos: 33.5,-22.5 parent: 1 - - uid: 39300 + - uid: 39836 components: - type: Transform - pos: -109.5,-43.5 + pos: 33.5,-23.5 parent: 1 - - uid: 39301 + - uid: 39837 components: - type: Transform - pos: -108.5,-43.5 + pos: 33.5,-24.5 parent: 1 - - uid: 39302 + - uid: 39838 components: - type: Transform - pos: -107.5,-43.5 + pos: 33.5,-25.5 parent: 1 - - uid: 39303 + - uid: 39839 components: - type: Transform - pos: -101.5,-34.5 + pos: 33.5,-26.5 parent: 1 - - uid: 39304 + - uid: 39840 components: - type: Transform - pos: -101.5,-35.5 + pos: 33.5,-27.5 parent: 1 - - uid: 39305 + - uid: 39841 components: - type: Transform - pos: -101.5,-36.5 + pos: 33.5,-28.5 parent: 1 - - uid: 39306 + - uid: 39842 components: - type: Transform - pos: -101.5,-37.5 + pos: 33.5,-29.5 parent: 1 - - uid: 39307 + - uid: 39843 components: - type: Transform - pos: -101.5,-38.5 + pos: 33.5,-30.5 parent: 1 - - uid: 39308 + - uid: 39844 components: - type: Transform - pos: -102.5,-38.5 + pos: 33.5,-31.5 parent: 1 - - uid: 39309 + - uid: 39845 components: - type: Transform - pos: -103.5,-38.5 + pos: 33.5,-32.5 parent: 1 - - uid: 39310 + - uid: 39846 components: - type: Transform - pos: -104.5,-38.5 + pos: 33.5,-33.5 parent: 1 - - uid: 39311 + - uid: 39847 components: - type: Transform - pos: -105.5,-38.5 + pos: 34.5,-33.5 parent: 1 - - uid: 39312 + - uid: 39848 components: - type: Transform - pos: -106.5,-38.5 + pos: 35.5,-33.5 parent: 1 - - uid: 39313 + - uid: 39849 components: - type: Transform - pos: -106.5,-43.5 + pos: 36.5,-33.5 parent: 1 - - uid: 39314 + - uid: 39850 components: - type: Transform - pos: -106.5,-42.5 + pos: 36.5,-32.5 parent: 1 - - uid: 39315 + - uid: 39851 components: - type: Transform - pos: -106.5,-41.5 + pos: 36.5,-31.5 parent: 1 - - uid: 39316 + - uid: 39852 components: - type: Transform - pos: -106.5,-40.5 + pos: 37.5,-31.5 parent: 1 - - uid: 39317 + - uid: 39853 components: - type: Transform - pos: -106.5,-39.5 + pos: 33.5,-34.5 parent: 1 - - uid: 39355 + - uid: 39854 components: - type: Transform - pos: -96.5,-43.5 + pos: 33.5,-35.5 parent: 1 - - uid: 39356 + - uid: 39855 components: - type: Transform - pos: -96.5,-44.5 + pos: 33.5,-36.5 parent: 1 - - uid: 39357 + - uid: 39856 components: - type: Transform - pos: -96.5,-45.5 + pos: 33.5,-37.5 parent: 1 - - uid: 39358 + - uid: 39857 components: - type: Transform - pos: -97.5,-45.5 + pos: 33.5,-38.5 parent: 1 - - uid: 39382 + - uid: 39858 components: - type: Transform - pos: -99.5,-41.5 + pos: 33.5,-39.5 parent: 1 - - uid: 39383 + - uid: 39859 components: - type: Transform - pos: -98.5,-41.5 + pos: 33.5,-40.5 parent: 1 - - uid: 39384 + - uid: 39860 components: - type: Transform - pos: -97.5,-41.5 + pos: 33.5,-41.5 parent: 1 - - uid: 39385 + - uid: 39861 components: - type: Transform - pos: -104.5,-46.5 + pos: 33.5,-42.5 parent: 1 - - uid: 39386 + - uid: 39862 components: - type: Transform - pos: -103.5,-46.5 + pos: 33.5,-43.5 parent: 1 - - uid: 39387 + - uid: 39863 components: - type: Transform - pos: -102.5,-46.5 + pos: 33.5,-44.5 parent: 1 - - uid: 39388 + - uid: 39864 components: - type: Transform - pos: -101.5,-46.5 + pos: 33.5,-45.5 parent: 1 - - uid: 39389 + - uid: 39865 components: - type: Transform - pos: -100.5,-46.5 + pos: 32.5,-45.5 parent: 1 - - uid: 39390 + - uid: 39866 components: - type: Transform - pos: -99.5,-46.5 + pos: 34.5,-45.5 parent: 1 - - uid: 39391 + - uid: 39867 components: - type: Transform - pos: -98.5,-46.5 + pos: 34.5,-46.5 parent: 1 - - uid: 39392 + - uid: 39868 components: - type: Transform - pos: -97.5,-46.5 + pos: 34.5,-47.5 parent: 1 - - uid: 39393 + - uid: 39869 components: - type: Transform - pos: -100.5,-41.5 + pos: 34.5,-48.5 parent: 1 - - uid: 39394 + - uid: 39870 components: - type: Transform - pos: -101.5,-41.5 + pos: 34.5,-49.5 parent: 1 - - uid: 39395 + - uid: 39871 components: - type: Transform - pos: -102.5,-41.5 + pos: 35.5,-49.5 parent: 1 - - uid: 39396 + - uid: 39872 components: - type: Transform - pos: -97.5,-47.5 + pos: 36.5,-49.5 parent: 1 - - uid: 39397 + - uid: 39873 components: - type: Transform - pos: -97.5,-48.5 + pos: 37.5,-49.5 parent: 1 - - uid: 39398 + - uid: 39874 components: - type: Transform - pos: -97.5,-49.5 + pos: 38.5,-49.5 parent: 1 - - uid: 39399 + - uid: 39875 components: - type: Transform - pos: -97.5,-50.5 + pos: 39.5,-49.5 parent: 1 - - uid: 39400 + - uid: 39876 components: - type: Transform - pos: -97.5,-51.5 + pos: 40.5,-49.5 parent: 1 - - uid: 39401 + - uid: 39882 components: - type: Transform - pos: -97.5,-52.5 + pos: 58.5,-52.5 parent: 1 - - uid: 39402 + - uid: 39891 components: - type: Transform - pos: -97.5,-53.5 + pos: 58.5,-53.5 parent: 1 - - uid: 39403 + - uid: 39892 components: - type: Transform - pos: -96.5,-53.5 + pos: 58.5,-54.5 parent: 1 - - uid: 39404 + - uid: 39893 components: - type: Transform - pos: -96.5,-54.5 + pos: 57.5,-54.5 parent: 1 - - uid: 39405 + - uid: 39894 components: - type: Transform - pos: -96.5,-55.5 + pos: 59.5,-54.5 parent: 1 - - uid: 39406 + - uid: 39895 components: - type: Transform - pos: -96.5,-56.5 + pos: 60.5,-54.5 parent: 1 - - uid: 39407 + - uid: 39896 components: - type: Transform - pos: -96.5,-57.5 + pos: 61.5,-54.5 parent: 1 - - uid: 39408 + - uid: 39897 components: - type: Transform - pos: -96.5,-58.5 + pos: 58.5,-51.5 parent: 1 - - uid: 39409 + - uid: 39898 components: - type: Transform - pos: -96.5,-59.5 + pos: 58.5,-50.5 parent: 1 - - uid: 39410 + - uid: 39899 components: - type: Transform - pos: -96.5,-60.5 + pos: 58.5,-49.5 parent: 1 - - uid: 39411 + - uid: 39900 components: - type: Transform - pos: -96.5,-61.5 + pos: 59.5,-49.5 parent: 1 - - uid: 39412 + - uid: 39901 components: - type: Transform - pos: -96.5,-62.5 + pos: 60.5,-49.5 parent: 1 - - uid: 39413 + - uid: 39902 components: - type: Transform - pos: -96.5,-63.5 + pos: 61.5,-49.5 parent: 1 - - uid: 39414 + - uid: 39903 components: - type: Transform - pos: -96.5,-64.5 + pos: 61.5,-48.5 parent: 1 - - uid: 39415 + - uid: 39904 components: - type: Transform - pos: -96.5,-65.5 + pos: 61.5,-47.5 parent: 1 - - uid: 39416 + - uid: 39905 components: - type: Transform - pos: -96.5,-66.5 + pos: 61.5,-46.5 parent: 1 - - uid: 39417 + - uid: 39906 components: - type: Transform - pos: -96.5,-67.5 + pos: 61.5,-45.5 parent: 1 - - uid: 39418 + - uid: 39907 components: - type: Transform - pos: -96.5,-68.5 + pos: 61.5,-44.5 parent: 1 - - uid: 39419 + - uid: 39908 components: - type: Transform - pos: -95.5,-68.5 + pos: 60.5,-44.5 parent: 1 - - uid: 39420 + - uid: 39909 components: - type: Transform - pos: -95.5,-69.5 + pos: 59.5,-44.5 parent: 1 - - uid: 39421 + - uid: 39910 components: - type: Transform - pos: -95.5,-70.5 + pos: 58.5,-44.5 parent: 1 - - uid: 39422 + - uid: 39911 components: - type: Transform - pos: -95.5,-71.5 + pos: 57.5,-44.5 parent: 1 - - uid: 39423 + - uid: 39912 components: - type: Transform - pos: -97.5,-68.5 + pos: 56.5,-44.5 parent: 1 - - uid: 39424 + - uid: 39913 components: - type: Transform - pos: -97.5,-69.5 + pos: 56.5,-45.5 parent: 1 - - uid: 39425 + - uid: 39914 components: - type: Transform - pos: -97.5,-70.5 + pos: 56.5,-46.5 parent: 1 - - uid: 39426 + - uid: 39915 components: - type: Transform - pos: -97.5,-71.5 + pos: 56.5,-47.5 parent: 1 - - uid: 39427 + - uid: 39916 components: - type: Transform - pos: -98.5,-53.5 + pos: 56.5,-48.5 parent: 1 - - uid: 39428 + - uid: 39917 components: - type: Transform - pos: -99.5,-53.5 + pos: 56.5,-49.5 parent: 1 - - uid: 39429 + - uid: 39918 components: - type: Transform - pos: -100.5,-53.5 + pos: 57.5,-49.5 parent: 1 - - uid: 39430 + - uid: 39919 components: - type: Transform - pos: -101.5,-53.5 + pos: 55.5,-48.5 parent: 1 - - uid: 39431 + - uid: 39920 components: - type: Transform - pos: -102.5,-53.5 + pos: 54.5,-48.5 parent: 1 - - uid: 39432 + - uid: 39921 components: - type: Transform - pos: -103.5,-53.5 + pos: 53.5,-48.5 parent: 1 - - uid: 39433 + - uid: 39922 components: - type: Transform - pos: -104.5,-53.5 + pos: 52.5,-48.5 parent: 1 - - uid: 39434 + - uid: 39923 components: - type: Transform - pos: -105.5,-53.5 + pos: 51.5,-48.5 parent: 1 - - uid: 39435 + - uid: 39924 components: - type: Transform - pos: -106.5,-53.5 + pos: 55.5,-44.5 parent: 1 - - uid: 39436 + - uid: 39925 components: - type: Transform - pos: -107.5,-53.5 + pos: 54.5,-44.5 parent: 1 - - uid: 39437 + - uid: 39926 components: - type: Transform - pos: -107.5,-52.5 + pos: 53.5,-44.5 parent: 1 - - uid: 39438 + - uid: 39927 components: - type: Transform - pos: -106.5,-55.5 + pos: 52.5,-44.5 parent: 1 - - uid: 39439 + - uid: 39928 components: - type: Transform - pos: -105.5,-55.5 + pos: 51.5,-44.5 parent: 1 - - uid: 39440 + - uid: 39929 components: - type: Transform - pos: -105.5,-54.5 + pos: 56.5,-43.5 parent: 1 - - uid: 39441 + - uid: 39930 components: - type: Transform - pos: -106.5,-56.5 + pos: 56.5,-42.5 parent: 1 - - uid: 39442 + - uid: 39931 components: - type: Transform - pos: -106.5,-57.5 + pos: 56.5,-41.5 parent: 1 - - uid: 39443 + - uid: 39932 components: - type: Transform - pos: -106.5,-58.5 + pos: 56.5,-40.5 parent: 1 - - uid: 39444 + - uid: 39933 components: - type: Transform - pos: -106.5,-59.5 + pos: 56.5,-39.5 parent: 1 - - uid: 39445 + - uid: 39934 components: - type: Transform - pos: -106.5,-60.5 + pos: 57.5,-39.5 parent: 1 - - uid: 39446 + - uid: 39935 components: - type: Transform - pos: -106.5,-61.5 + pos: 58.5,-39.5 parent: 1 - - uid: 39447 + - uid: 39936 components: - type: Transform - pos: -106.5,-62.5 + pos: 59.5,-39.5 parent: 1 - - uid: 39448 + - uid: 39937 components: - type: Transform - pos: -106.5,-63.5 + pos: 60.5,-39.5 parent: 1 - - uid: 39449 + - uid: 39938 components: - type: Transform - pos: -106.5,-64.5 + pos: 60.5,-40.5 parent: 1 - - uid: 39450 + - uid: 39939 components: - type: Transform - pos: -107.5,-55.5 + pos: 55.5,-40.5 parent: 1 - - uid: 39451 + - uid: 39940 components: - type: Transform - pos: -108.5,-55.5 + pos: 54.5,-40.5 parent: 1 - - uid: 39452 + - uid: 39941 components: - type: Transform - pos: -107.5,-59.5 + pos: 53.5,-40.5 parent: 1 - - uid: 39453 + - uid: 39942 components: - type: Transform - pos: -108.5,-59.5 + pos: 52.5,-40.5 parent: 1 - - uid: 39454 + - uid: 39943 components: - type: Transform - pos: -106.5,-65.5 + pos: 51.5,-40.5 parent: 1 - - uid: 39455 + - uid: 39944 components: - type: Transform - pos: -107.5,-65.5 + pos: 50.5,-40.5 parent: 1 - - uid: 39456 + - uid: 39945 components: - type: Transform - pos: -108.5,-65.5 + pos: 49.5,-40.5 parent: 1 - - uid: 39457 + - uid: 39946 components: - type: Transform - pos: -109.5,-65.5 + pos: 48.5,-40.5 parent: 1 - - uid: 39458 + - uid: 39947 components: - type: Transform - pos: -110.5,-65.5 + pos: 47.5,-40.5 parent: 1 - - uid: 39459 + - uid: 39948 components: - type: Transform - pos: -111.5,-65.5 + pos: 46.5,-40.5 parent: 1 - - uid: 39460 + - uid: 39949 components: - type: Transform - pos: -110.5,-66.5 + pos: 45.5,-40.5 parent: 1 - - uid: 39461 + - uid: 39950 components: - type: Transform - pos: -110.5,-67.5 + pos: 44.5,-40.5 parent: 1 - - uid: 39462 + - uid: 39951 components: - type: Transform - pos: -109.5,-67.5 + pos: 43.5,-40.5 parent: 1 - - uid: 39463 + - uid: 39952 components: - type: Transform - pos: -111.5,-67.5 + pos: 42.5,-40.5 parent: 1 - - uid: 39464 + - uid: 39953 components: - type: Transform - pos: -111.5,-68.5 + pos: 41.5,-40.5 parent: 1 - - uid: 39465 + - uid: 39954 components: - type: Transform - pos: -111.5,-69.5 + pos: 40.5,-40.5 parent: 1 - - uid: 39466 + - uid: 40068 components: - type: Transform - pos: -111.5,-70.5 + pos: 58.5,-38.5 parent: 1 - - uid: 39467 + - uid: 40152 components: - type: Transform - pos: -111.5,-71.5 + pos: 48.5,-56.5 parent: 1 - - uid: 39468 + - uid: 40153 components: - type: Transform - pos: -111.5,-72.5 + pos: 47.5,-56.5 parent: 1 - - uid: 39469 + - uid: 40154 components: - type: Transform - pos: -111.5,-73.5 + pos: 46.5,-56.5 parent: 1 - - uid: 39470 + - uid: 40155 components: - type: Transform - pos: -111.5,-74.5 + pos: 46.5,-57.5 parent: 1 - - uid: 39471 + - uid: 40156 components: - type: Transform - pos: -111.5,-75.5 + pos: 46.5,-58.5 parent: 1 - - uid: 39472 + - uid: 40157 components: - type: Transform - pos: -111.5,-76.5 + pos: 46.5,-59.5 parent: 1 - - uid: 39473 + - uid: 40158 components: - type: Transform - pos: -110.5,-73.5 + pos: 46.5,-60.5 parent: 1 - - uid: 39474 + - uid: 40159 components: - type: Transform - pos: -109.5,-73.5 + pos: 47.5,-60.5 parent: 1 - - uid: 39475 + - uid: 40160 components: - type: Transform - pos: -108.5,-73.5 + pos: 48.5,-60.5 parent: 1 - - uid: 39476 + - uid: 40161 components: - type: Transform - pos: -108.5,-74.5 + pos: 49.5,-60.5 parent: 1 - - uid: 39477 + - uid: 40162 components: - type: Transform - pos: -108.5,-75.5 + pos: 50.5,-60.5 parent: 1 - - uid: 39478 + - uid: 40163 components: - type: Transform - pos: -107.5,-75.5 + pos: 51.5,-60.5 parent: 1 - - uid: 39479 + - uid: 40164 components: - type: Transform - pos: -106.5,-75.5 + pos: 52.5,-60.5 parent: 1 - - uid: 39480 + - uid: 40165 components: - type: Transform - pos: -105.5,-75.5 + pos: 53.5,-60.5 parent: 1 - - uid: 39481 + - uid: 40166 components: - type: Transform - pos: -104.5,-75.5 + pos: 53.5,-59.5 parent: 1 - - uid: 39482 + - uid: 40167 components: - type: Transform - pos: -103.5,-75.5 + pos: 46.5,-61.5 parent: 1 - - uid: 39483 + - uid: 40168 components: - type: Transform - pos: -102.5,-75.5 + pos: 46.5,-62.5 parent: 1 - - uid: 39484 + - uid: 40169 components: - type: Transform - pos: -102.5,-54.5 + pos: 46.5,-63.5 parent: 1 - - uid: 39485 + - uid: 40170 components: - type: Transform - pos: -102.5,-55.5 + pos: 48.5,-61.5 parent: 1 - - uid: 39486 + - uid: 40171 components: - type: Transform - pos: -102.5,-56.5 + pos: 48.5,-62.5 parent: 1 - - uid: 39487 + - uid: 40172 components: - type: Transform - pos: -102.5,-57.5 + pos: 48.5,-63.5 parent: 1 - - uid: 39488 + - uid: 40173 components: - type: Transform - pos: -102.5,-58.5 + pos: 46.5,-55.5 parent: 1 - - uid: 39489 + - uid: 40174 components: - type: Transform - pos: -102.5,-59.5 + pos: 46.5,-54.5 parent: 1 - - uid: 39490 + - uid: 40175 components: - type: Transform - pos: -102.5,-60.5 + pos: 47.5,-54.5 parent: 1 - - uid: 39491 + - uid: 40176 components: - type: Transform - pos: -102.5,-61.5 + pos: 48.5,-54.5 parent: 1 - - uid: 39492 + - uid: 40177 components: - type: Transform - pos: -102.5,-62.5 + pos: 49.5,-54.5 parent: 1 - - uid: 39493 + - uid: 40178 components: - type: Transform - pos: -102.5,-63.5 + pos: 50.5,-54.5 parent: 1 - - uid: 39494 + - uid: 40179 components: - type: Transform - pos: -102.5,-64.5 + pos: 51.5,-54.5 parent: 1 - - uid: 39495 + - uid: 40180 components: - type: Transform - pos: -102.5,-65.5 + pos: 52.5,-54.5 parent: 1 - - uid: 39496 + - uid: 40181 components: - type: Transform - pos: -103.5,-65.5 + pos: 46.5,-53.5 parent: 1 - - uid: 39497 + - uid: 40182 components: - type: Transform - pos: -104.5,-65.5 + pos: 46.5,-52.5 parent: 1 - - uid: 39498 + - uid: 40183 components: - type: Transform - pos: -105.5,-65.5 + pos: 46.5,-51.5 parent: 1 - - uid: 39499 + - uid: 40184 components: - type: Transform - pos: -101.5,-64.5 + pos: 46.5,-50.5 parent: 1 - - uid: 39500 + - uid: 40185 components: - type: Transform - pos: -100.5,-64.5 + pos: 46.5,-49.5 parent: 1 - - uid: 39501 + - uid: 40186 components: - type: Transform - pos: -99.5,-64.5 + pos: 46.5,-48.5 parent: 1 - - uid: 39502 + - uid: 40187 components: - type: Transform - pos: -99.5,-63.5 + pos: 46.5,-47.5 parent: 1 - - uid: 39503 + - uid: 40188 components: - type: Transform - pos: -98.5,-63.5 + pos: 46.5,-46.5 parent: 1 - - uid: 39504 + - uid: 40189 components: - type: Transform - pos: -97.5,-63.5 + pos: 46.5,-45.5 parent: 1 - - uid: 39505 + - uid: 40190 components: - type: Transform - pos: -95.5,-61.5 + pos: 46.5,-44.5 parent: 1 - - uid: 39506 + - uid: 40191 components: - type: Transform - pos: -94.5,-61.5 + pos: 45.5,-44.5 parent: 1 - - uid: 39507 + - uid: 40192 components: - type: Transform - pos: -93.5,-61.5 + pos: 44.5,-44.5 parent: 1 - - uid: 39508 + - uid: 40193 components: - type: Transform - pos: -96.5,-77.5 + pos: 43.5,-44.5 parent: 1 - - uid: 39509 + - uid: 40194 components: - type: Transform - pos: -97.5,-77.5 + pos: 42.5,-44.5 parent: 1 - - uid: 39510 + - uid: 40195 components: - type: Transform - pos: -97.5,-78.5 + pos: 41.5,-44.5 parent: 1 - - uid: 39511 + - uid: 40196 components: - type: Transform - pos: -97.5,-79.5 + pos: 40.5,-44.5 parent: 1 - - uid: 39512 + - uid: 40197 components: - type: Transform - pos: -97.5,-80.5 + pos: 39.5,-44.5 parent: 1 - - uid: 39513 + - uid: 40198 components: - type: Transform - pos: -96.5,-80.5 + pos: 36.5,-52.5 parent: 1 - - uid: 39514 + - uid: 40199 components: - type: Transform - pos: -95.5,-80.5 + pos: 36.5,-53.5 parent: 1 - - uid: 39515 + - uid: 40200 components: - type: Transform - pos: -94.5,-80.5 + pos: 35.5,-53.5 parent: 1 - - uid: 39516 + - uid: 40201 components: - type: Transform - pos: -93.5,-80.5 + pos: 34.5,-53.5 parent: 1 - - uid: 39517 + - uid: 40202 components: - type: Transform - pos: -92.5,-80.5 + pos: 37.5,-53.5 parent: 1 - - uid: 39518 + - uid: 40203 components: - type: Transform - pos: -91.5,-80.5 + pos: 38.5,-53.5 parent: 1 - - uid: 39519 + - uid: 40204 components: - type: Transform - pos: -92.5,-81.5 + pos: 39.5,-53.5 parent: 1 - - uid: 39520 + - uid: 40205 components: - type: Transform - pos: -92.5,-82.5 + pos: 40.5,-53.5 parent: 1 - - uid: 39521 + - uid: 40206 components: - type: Transform - pos: -92.5,-83.5 + pos: 41.5,-53.5 parent: 1 - - uid: 39522 + - uid: 40207 components: - type: Transform - pos: -92.5,-84.5 + pos: 37.5,-54.5 parent: 1 - - uid: 39523 + - uid: 40208 components: - type: Transform - pos: -92.5,-85.5 + pos: 37.5,-55.5 parent: 1 - - uid: 39524 + - uid: 40209 components: - type: Transform - pos: -92.5,-86.5 + pos: 36.5,-55.5 parent: 1 - - uid: 39525 + - uid: 40210 components: - type: Transform - pos: -92.5,-87.5 + pos: 35.5,-55.5 parent: 1 - - uid: 39526 + - uid: 40211 components: - type: Transform - pos: -93.5,-87.5 + pos: 34.5,-55.5 parent: 1 - - uid: 39527 + - uid: 40212 components: - type: Transform - pos: -94.5,-87.5 + pos: 38.5,-55.5 parent: 1 - - uid: 39528 + - uid: 40213 components: - type: Transform - pos: -95.5,-87.5 + pos: 39.5,-55.5 parent: 1 - - uid: 39529 + - uid: 40214 components: - type: Transform - pos: -95.5,-86.5 + pos: 40.5,-55.5 parent: 1 - - uid: 39530 + - uid: 40215 components: - type: Transform - pos: -95.5,-85.5 + pos: 41.5,-55.5 parent: 1 - - uid: 39531 + - uid: 40216 components: - type: Transform - pos: -95.5,-84.5 + pos: 37.5,-56.5 parent: 1 - - uid: 39532 + - uid: 40217 components: - type: Transform - pos: -95.5,-83.5 + pos: 37.5,-57.5 parent: 1 - - uid: 39533 + - uid: 40218 components: - type: Transform - pos: -94.5,-83.5 + pos: 37.5,-58.5 parent: 1 - - uid: 39534 + - uid: 40219 components: - type: Transform - pos: -93.5,-83.5 + pos: 37.5,-59.5 parent: 1 - - uid: 39537 + - uid: 40220 components: - type: Transform - pos: -98.5,-80.5 + pos: 37.5,-60.5 parent: 1 - - uid: 39538 + - uid: 40221 components: - type: Transform - pos: -98.5,-81.5 + pos: 38.5,-60.5 parent: 1 - - uid: 39539 + - uid: 40222 components: - type: Transform - pos: -99.5,-82.5 + pos: 39.5,-60.5 parent: 1 - - uid: 39540 + - uid: 40223 components: - type: Transform - pos: -100.5,-82.5 + pos: 40.5,-60.5 parent: 1 - - uid: 39541 + - uid: 40224 components: - type: Transform - pos: -101.5,-82.5 + pos: 41.5,-60.5 parent: 1 - - uid: 39542 + - uid: 40225 components: - type: Transform - pos: -102.5,-82.5 + pos: 40.5,-61.5 parent: 1 - - uid: 39543 + - uid: 40226 components: - type: Transform - pos: -103.5,-82.5 + pos: 40.5,-62.5 parent: 1 - - uid: 39544 + - uid: 40227 components: - type: Transform - pos: -104.5,-82.5 + pos: 40.5,-63.5 parent: 1 - - uid: 39545 + - uid: 40228 components: - type: Transform - pos: -105.5,-82.5 + pos: 38.5,-61.5 parent: 1 - - uid: 39546 + - uid: 40229 components: - type: Transform - pos: -106.5,-82.5 + pos: 38.5,-62.5 parent: 1 - - uid: 39547 + - uid: 40230 components: - type: Transform - pos: -107.5,-82.5 + pos: 38.5,-63.5 parent: 1 - - uid: 39549 + - uid: 40231 components: - type: Transform - pos: -107.5,-83.5 + pos: 36.5,-60.5 parent: 1 - - uid: 39550 + - uid: 40232 components: - type: Transform - pos: -107.5,-84.5 + pos: 35.5,-60.5 parent: 1 - - uid: 39551 + - uid: 40233 components: - type: Transform - pos: -107.5,-85.5 + pos: 34.5,-60.5 parent: 1 - - uid: 39552 + - uid: 40234 components: - type: Transform - pos: -107.5,-86.5 + pos: 33.5,-60.5 parent: 1 - - uid: 39553 + - uid: 40235 components: - type: Transform - pos: -107.5,-87.5 + pos: 32.5,-60.5 parent: 1 - - uid: 39554 + - uid: 40236 components: - type: Transform - pos: -108.5,-87.5 + pos: 31.5,-60.5 parent: 1 - - uid: 39555 + - uid: 40237 components: - type: Transform - pos: -109.5,-87.5 + pos: 30.5,-60.5 parent: 1 - - uid: 39556 + - uid: 40238 components: - type: Transform - pos: -110.5,-87.5 + pos: 29.5,-60.5 parent: 1 - - uid: 39557 + - uid: 40239 components: - type: Transform - pos: -111.5,-87.5 + pos: 28.5,-60.5 parent: 1 - - uid: 39558 + - uid: 40240 components: - type: Transform - pos: -112.5,-87.5 + pos: 27.5,-60.5 parent: 1 - - uid: 39559 + - uid: 40241 components: - type: Transform - pos: -113.5,-87.5 + pos: 26.5,-60.5 parent: 1 - - uid: 39560 + - uid: 40242 components: - type: Transform - pos: -114.5,-87.5 + pos: 25.5,-60.5 parent: 1 - - uid: 39561 + - uid: 40243 components: - type: Transform - pos: -115.5,-87.5 + pos: 24.5,-60.5 parent: 1 - - uid: 39562 + - uid: 40244 components: - type: Transform - pos: -108.5,-82.5 + pos: 24.5,-61.5 parent: 1 - - uid: 39563 + - uid: 40245 components: - type: Transform - pos: -109.5,-82.5 + pos: 24.5,-62.5 parent: 1 - - uid: 39564 + - uid: 40246 components: - type: Transform - pos: -110.5,-82.5 + pos: 24.5,-63.5 parent: 1 - - uid: 39565 + - uid: 40247 components: - type: Transform - pos: -111.5,-82.5 + pos: 26.5,-61.5 parent: 1 - - uid: 39566 + - uid: 40248 components: - type: Transform - pos: -112.5,-82.5 + pos: 26.5,-62.5 parent: 1 - - uid: 39567 + - uid: 40249 components: - type: Transform - pos: -113.5,-82.5 + pos: 26.5,-63.5 parent: 1 - - uid: 39568 + - uid: 40250 components: - type: Transform - pos: -114.5,-82.5 + pos: 16.5,-45.5 parent: 1 - - uid: 39569 + - uid: 40251 components: - type: Transform - pos: -114.5,-81.5 + pos: 17.5,-45.5 parent: 1 - - uid: 39570 + - uid: 40252 components: - type: Transform - pos: -114.5,-80.5 + pos: 18.5,-45.5 parent: 1 - - uid: 39571 + - uid: 40253 components: - type: Transform - pos: -114.5,-79.5 + pos: 19.5,-45.5 parent: 1 - - uid: 39572 + - uid: 40254 components: - type: Transform - pos: -114.5,-78.5 + pos: 20.5,-45.5 parent: 1 - - uid: 39573 + - uid: 40255 components: - type: Transform - pos: -114.5,-77.5 + pos: 21.5,-45.5 parent: 1 - - uid: 39574 + - uid: 40256 components: - type: Transform - pos: -114.5,-76.5 + pos: 22.5,-45.5 parent: 1 - - uid: 39575 + - uid: 40257 components: - type: Transform - pos: -114.5,-75.5 + pos: 23.5,-45.5 parent: 1 - - uid: 39576 + - uid: 40258 components: - type: Transform - pos: -114.5,-74.5 + pos: 24.5,-45.5 parent: 1 - - uid: 39577 + - uid: 40259 components: - type: Transform - pos: -114.5,-73.5 + pos: 25.5,-45.5 parent: 1 - - uid: 39578 + - uid: 40260 components: - type: Transform - pos: -115.5,-73.5 + pos: 26.5,-45.5 parent: 1 - - uid: 39579 + - uid: 40261 components: - type: Transform - pos: -116.5,-73.5 + pos: 26.5,-54.5 parent: 1 - - uid: 39580 + - uid: 40262 components: - type: Transform - pos: -116.5,-72.5 + pos: 26.5,-55.5 parent: 1 - - uid: 39581 + - uid: 40263 components: - type: Transform - pos: -116.5,-71.5 + pos: 26.5,-56.5 parent: 1 - - uid: 39582 + - uid: 40264 components: - type: Transform - pos: -116.5,-70.5 + pos: 26.5,-57.5 parent: 1 - - uid: 39583 + - uid: 40265 components: - type: Transform - pos: -116.5,-69.5 + pos: 26.5,-58.5 parent: 1 - - uid: 39584 + - uid: 40266 components: - type: Transform - pos: -116.5,-68.5 + pos: 26.5,-59.5 parent: 1 - - uid: 39585 + - uid: 40306 components: - type: Transform - pos: -116.5,-67.5 + pos: 0.5,-54.5 parent: 1 - - uid: 39586 + - uid: 40307 components: - type: Transform - pos: -117.5,-67.5 + pos: 0.5,-53.5 parent: 1 - - uid: 39587 + - uid: 40308 components: - type: Transform - pos: -118.5,-67.5 + pos: 0.5,-52.5 parent: 1 - - uid: 39588 + - uid: 40309 components: - type: Transform - pos: -118.5,-66.5 + pos: 0.5,-51.5 parent: 1 - - uid: 39589 + - uid: 40310 components: - type: Transform - pos: -118.5,-65.5 + pos: 0.5,-50.5 parent: 1 - - uid: 39590 + - uid: 40311 components: - type: Transform - pos: -118.5,-64.5 + pos: 1.5,-50.5 parent: 1 - - uid: 39591 + - uid: 40312 components: - type: Transform - pos: -118.5,-63.5 + pos: 1.5,-53.5 parent: 1 - - uid: 39592 + - uid: 40313 components: - type: Transform - pos: -118.5,-62.5 + pos: 5.5,-59.5 parent: 1 - - uid: 39593 + - uid: 40314 components: - type: Transform - pos: -118.5,-61.5 + pos: 6.5,-59.5 parent: 1 - - uid: 39594 + - uid: 40315 components: - type: Transform - pos: -118.5,-60.5 + pos: 7.5,-59.5 parent: 1 - - uid: 39595 + - uid: 40316 components: - type: Transform - pos: -118.5,-59.5 + pos: 8.5,-59.5 parent: 1 - - uid: 39596 + - uid: 40317 components: - type: Transform - pos: -119.5,-59.5 + pos: 9.5,-59.5 parent: 1 - - uid: 39597 + - uid: 40318 components: - type: Transform - pos: -119.5,-58.5 + pos: 10.5,-59.5 parent: 1 - - uid: 39598 + - uid: 40319 components: - type: Transform - pos: -119.5,-57.5 + pos: 11.5,-59.5 parent: 1 - - uid: 39599 + - uid: 40320 components: - type: Transform - pos: -117.5,-62.5 + pos: 12.5,-59.5 parent: 1 - - uid: 39600 + - uid: 40321 components: - type: Transform - pos: -116.5,-62.5 + pos: 13.5,-59.5 parent: 1 - - uid: 39601 + - uid: 40322 components: - type: Transform - pos: -116.5,-61.5 + pos: 14.5,-59.5 parent: 1 - - uid: 39602 + - uid: 40323 components: - type: Transform - pos: -116.5,-60.5 + pos: 15.5,-59.5 parent: 1 - - uid: 39603 + - uid: 40324 components: - type: Transform - pos: -116.5,-59.5 + pos: 16.5,-59.5 parent: 1 - - uid: 39604 + - uid: 40325 components: - type: Transform - pos: -116.5,-58.5 + pos: 17.5,-59.5 parent: 1 - - uid: 39605 + - uid: 40326 components: - type: Transform - pos: -116.5,-57.5 + pos: 18.5,-59.5 parent: 1 - - uid: 39606 + - uid: 40327 components: - type: Transform - pos: -116.5,-56.5 + pos: 19.5,-59.5 parent: 1 - - uid: 39607 + - uid: 40328 components: - type: Transform - pos: -116.5,-55.5 + pos: 20.5,-59.5 parent: 1 - - uid: 39608 + - uid: 40329 components: - type: Transform - pos: -116.5,-54.5 + pos: 20.5,-60.5 parent: 1 - - uid: 39609 + - uid: 40330 components: - type: Transform - pos: -116.5,-53.5 + pos: 18.5,-60.5 parent: 1 - - uid: 39610 + - uid: 40331 components: - type: Transform - pos: -117.5,-53.5 + pos: 18.5,-61.5 parent: 1 - - uid: 39611 + - uid: 40332 components: - type: Transform - pos: -118.5,-53.5 + pos: 18.5,-62.5 parent: 1 - - uid: 39612 + - uid: 40333 components: - type: Transform - pos: -119.5,-53.5 + pos: 18.5,-63.5 parent: 1 - - uid: 39613 + - uid: 40334 components: - type: Transform - pos: -120.5,-53.5 + pos: 16.5,-60.5 parent: 1 - - uid: 39614 + - uid: 40335 components: - type: Transform - pos: -121.5,-53.5 + pos: 16.5,-61.5 parent: 1 - - uid: 39615 + - uid: 40336 components: - type: Transform - pos: -122.5,-53.5 + pos: 16.5,-62.5 parent: 1 - - uid: 39616 + - uid: 40337 components: - type: Transform - pos: -116.5,-47.5 + pos: 16.5,-63.5 parent: 1 - - uid: 39617 + - uid: 40338 components: - type: Transform - pos: -116.5,-48.5 + pos: 10.5,-58.5 parent: 1 - - uid: 39618 + - uid: 40339 components: - type: Transform - pos: -117.5,-48.5 + pos: 10.5,-57.5 parent: 1 - - uid: 39619 + - uid: 40340 components: - type: Transform - pos: -118.5,-48.5 + pos: 10.5,-56.5 parent: 1 - - uid: 39620 + - uid: 40341 components: - type: Transform - pos: -119.5,-48.5 + pos: 10.5,-55.5 parent: 1 - - uid: 39621 + - uid: 40342 components: - type: Transform - pos: -119.5,-47.5 + pos: 10.5,-54.5 parent: 1 - - uid: 39638 + - uid: 40343 components: - type: Transform - pos: 42.5,-1.5 + pos: 10.5,-53.5 parent: 1 - - uid: 39644 + - uid: 40344 components: - type: Transform - pos: -28.5,-52.5 + pos: 10.5,-52.5 parent: 1 - - uid: 39645 + - uid: 40345 components: - type: Transform - pos: -29.5,-52.5 + pos: 10.5,-51.5 parent: 1 - - uid: 39646 + - uid: 40346 components: - type: Transform - pos: -29.5,-51.5 + pos: 10.5,-50.5 parent: 1 - - uid: 39647 + - uid: 40347 components: - type: Transform - pos: -27.5,-52.5 + pos: 11.5,-50.5 parent: 1 - - uid: 39653 + - uid: 40348 components: - type: Transform - pos: -20.5,-46.5 + pos: 12.5,-50.5 parent: 1 - - uid: 39654 + - uid: 40349 components: - type: Transform - pos: -20.5,-47.5 + pos: 13.5,-50.5 parent: 1 - - uid: 39655 + - uid: 40350 components: - type: Transform - pos: -20.5,-48.5 + pos: 14.5,-50.5 parent: 1 - - uid: 39656 + - uid: 40351 components: - type: Transform - pos: -21.5,-48.5 + pos: 14.5,-51.5 parent: 1 - - uid: 39657 + - uid: 40352 components: - type: Transform - pos: -22.5,-48.5 + pos: 14.5,-52.5 parent: 1 - - uid: 39658 + - uid: 40353 components: - type: Transform - pos: -23.5,-48.5 + pos: 14.5,-53.5 parent: 1 - - uid: 39659 + - uid: 40354 components: - type: Transform - pos: -23.5,-49.5 + pos: 14.5,-54.5 parent: 1 - - uid: 39660 + - uid: 40355 components: - type: Transform - pos: -20.5,-49.5 + pos: 14.5,-55.5 parent: 1 - - uid: 39661 + - uid: 40356 components: - type: Transform - pos: 26.5,-34.5 + pos: 14.5,-56.5 parent: 1 - - uid: 39662 + - uid: 40357 components: - type: Transform - pos: 26.5,-35.5 + pos: 13.5,-56.5 parent: 1 - - uid: 39663 + - uid: 40358 components: - type: Transform - pos: 26.5,-36.5 + pos: 12.5,-56.5 parent: 1 - - uid: 39664 + - uid: 40359 components: - type: Transform - pos: 26.5,-37.5 + pos: 11.5,-56.5 parent: 1 - - uid: 39665 + - uid: 40360 components: - type: Transform - pos: 26.5,-38.5 + pos: 15.5,-54.5 parent: 1 - - uid: 39666 + - uid: 40361 components: - type: Transform - pos: 25.5,-38.5 + pos: 16.5,-54.5 parent: 1 - - uid: 39667 + - uid: 40362 components: - type: Transform - pos: 24.5,-38.5 + pos: 17.5,-54.5 parent: 1 - - uid: 39668 + - uid: 40363 components: - type: Transform - pos: 27.5,-38.5 + pos: 18.5,-54.5 parent: 1 - - uid: 39669 + - uid: 40364 components: - type: Transform - pos: 27.5,-39.5 + pos: 18.5,-55.5 parent: 1 - - uid: 39670 + - uid: 40365 components: - type: Transform - pos: 27.5,-40.5 + pos: 6.5,28.5 parent: 1 - - uid: 39671 + - uid: 40366 components: - type: Transform - pos: 20.5,-37.5 + pos: 7.5,28.5 parent: 1 - - uid: 39672 + - uid: 40367 components: - type: Transform - pos: 20.5,-38.5 + pos: 8.5,28.5 parent: 1 - - uid: 39673 + - uid: 40368 components: - type: Transform - pos: 20.5,-39.5 + pos: 9.5,28.5 parent: 1 - - uid: 39674 + - uid: 40369 components: - type: Transform - pos: 20.5,-40.5 + pos: 10.5,28.5 parent: 1 - - uid: 39675 + - uid: 40370 components: - type: Transform - pos: 20.5,-41.5 + pos: 11.5,28.5 parent: 1 - - uid: 39676 + - uid: 40371 components: - type: Transform - pos: 21.5,-41.5 + pos: 12.5,28.5 parent: 1 - - uid: 39677 + - uid: 40372 components: - type: Transform - pos: 22.5,-41.5 + pos: 13.5,28.5 parent: 1 - - uid: 39678 + - uid: 40373 components: - type: Transform - pos: 19.5,-41.5 + pos: 14.5,28.5 parent: 1 - - uid: 39679 + - uid: 40374 components: - type: Transform - pos: -25.5,-56.5 + pos: 15.5,28.5 parent: 1 - - uid: 39680 + - uid: 40375 components: - type: Transform - pos: -24.5,-56.5 + pos: 16.5,28.5 parent: 1 - - uid: 39681 + - uid: 40376 components: - type: Transform - pos: -23.5,-56.5 + pos: 17.5,28.5 parent: 1 - - uid: 39682 + - uid: 40377 components: - type: Transform - pos: -22.5,-56.5 + pos: 18.5,28.5 parent: 1 - - uid: 39683 + - uid: 40378 components: - type: Transform - pos: -21.5,-56.5 + pos: 19.5,28.5 parent: 1 - - uid: 39684 + - uid: 40379 components: - type: Transform - pos: -20.5,-56.5 + pos: 20.5,28.5 parent: 1 - - uid: 39685 + - uid: 40380 components: - type: Transform - pos: -19.5,-56.5 + pos: 21.5,28.5 parent: 1 - - uid: 39686 + - uid: 40381 components: - type: Transform - pos: -18.5,-56.5 + pos: 22.5,28.5 parent: 1 - - uid: 39687 + - uid: 40382 components: - type: Transform - pos: -17.5,-56.5 + pos: 23.5,28.5 parent: 1 - - uid: 39688 + - uid: 40383 components: - type: Transform - pos: -17.5,-55.5 + pos: 24.5,28.5 parent: 1 - - uid: 39689 + - uid: 40384 components: - type: Transform - pos: -17.5,-54.5 + pos: 25.5,28.5 parent: 1 - - uid: 39690 + - uid: 40385 components: - type: Transform - pos: -17.5,-53.5 + pos: 26.5,28.5 parent: 1 - - uid: 39691 + - uid: 40386 components: - type: Transform - pos: -17.5,-52.5 + pos: 27.5,28.5 parent: 1 - - uid: 39692 + - uid: 40387 components: - type: Transform - pos: -16.5,-52.5 + pos: 28.5,28.5 parent: 1 - - uid: 39693 + - uid: 40388 components: - type: Transform - pos: -17.5,-57.5 + pos: 29.5,28.5 parent: 1 - - uid: 39694 + - uid: 40389 components: - type: Transform - pos: -17.5,-58.5 + pos: 30.5,28.5 parent: 1 - - uid: 39695 + - uid: 40390 components: - type: Transform - pos: -17.5,-59.5 + pos: 31.5,28.5 parent: 1 - - uid: 39696 + - uid: 40391 components: - type: Transform - pos: -17.5,-60.5 + pos: 32.5,28.5 parent: 1 - - uid: 39697 + - uid: 40392 components: - type: Transform - pos: -16.5,-60.5 + pos: 33.5,28.5 parent: 1 - - uid: 39698 + - uid: 40393 components: - type: Transform - pos: -16.5,-61.5 + pos: 34.5,28.5 parent: 1 - - uid: 39699 + - uid: 40394 components: - type: Transform - pos: -16.5,-62.5 + pos: 34.5,27.5 parent: 1 - - uid: 39700 + - uid: 40395 components: - type: Transform - pos: -16.5,-63.5 + pos: 34.5,26.5 parent: 1 - - uid: 39701 + - uid: 40396 components: - type: Transform - pos: -16.5,-64.5 + pos: 33.5,26.5 parent: 1 - - uid: 39702 + - uid: 40397 components: - type: Transform - pos: -16.5,-65.5 + pos: 32.5,26.5 parent: 1 - - uid: 39703 + - uid: 40398 components: - type: Transform - pos: -16.5,-66.5 + pos: 31.5,26.5 parent: 1 - - uid: 39704 + - uid: 40399 components: - type: Transform - pos: -16.5,-67.5 + pos: 30.5,26.5 parent: 1 - - uid: 39705 + - uid: 40400 components: - type: Transform - pos: -16.5,-68.5 + pos: 29.5,26.5 parent: 1 - - uid: 39706 + - uid: 40401 components: - type: Transform - pos: -16.5,-69.5 + pos: 28.5,26.5 parent: 1 - - uid: 39707 + - uid: 40402 components: - type: Transform - pos: -16.5,-70.5 + pos: 27.5,26.5 parent: 1 - - uid: 39708 + - uid: 40403 components: - type: Transform - pos: -27.5,-70.5 + pos: 26.5,26.5 parent: 1 - - uid: 39709 + - uid: 40404 components: - type: Transform - pos: -26.5,-70.5 + pos: 25.5,26.5 parent: 1 - - uid: 39710 + - uid: 40405 components: - type: Transform - pos: -25.5,-70.5 + pos: 24.5,26.5 parent: 1 - - uid: 39711 + - uid: 40406 components: - type: Transform - pos: -24.5,-70.5 + pos: 23.5,26.5 parent: 1 - - uid: 39712 + - uid: 40407 components: - type: Transform - pos: -23.5,-70.5 + pos: 22.5,26.5 parent: 1 - - uid: 39713 + - uid: 40408 components: - type: Transform - pos: -22.5,-70.5 + pos: 21.5,26.5 parent: 1 - - uid: 39714 + - uid: 40409 components: - type: Transform - pos: -19.5,-62.5 + pos: 20.5,26.5 parent: 1 - - uid: 39715 + - uid: 40410 components: - type: Transform - pos: -18.5,-62.5 + pos: 19.5,26.5 parent: 1 - - uid: 39716 + - uid: 40411 components: - type: Transform - pos: -17.5,-62.5 + pos: 18.5,26.5 parent: 1 - - uid: 39732 + - uid: 40412 components: - type: Transform - pos: 44.5,-10.5 + pos: 17.5,26.5 parent: 1 - - uid: 39733 + - uid: 40413 components: - type: Transform - pos: 43.5,-10.5 + pos: 16.5,26.5 parent: 1 - - uid: 39734 + - uid: 40414 components: - type: Transform - pos: 42.5,-10.5 + pos: 15.5,26.5 parent: 1 - - uid: 39735 + - uid: 40415 components: - type: Transform - pos: 41.5,-10.5 + pos: 14.5,26.5 parent: 1 - - uid: 39736 + - uid: 40416 components: - type: Transform - pos: 40.5,-10.5 + pos: 13.5,26.5 parent: 1 - - uid: 39737 + - uid: 40417 components: - type: Transform - pos: 39.5,-10.5 + pos: 12.5,26.5 parent: 1 - - uid: 39738 + - uid: 40418 components: - type: Transform - pos: 41.5,-7.5 + pos: 11.5,26.5 parent: 1 - - uid: 39739 + - uid: 40419 components: - type: Transform - pos: 41.5,-8.5 + pos: 10.5,26.5 parent: 1 - - uid: 39740 + - uid: 40420 components: - type: Transform - pos: 45.5,-10.5 + pos: 9.5,26.5 parent: 1 - - uid: 39741 + - uid: 40421 components: - type: Transform - pos: 46.5,-10.5 + pos: 8.5,26.5 parent: 1 - - uid: 39742 + - uid: 40422 components: - type: Transform - pos: 41.5,-6.5 + pos: 7.5,26.5 parent: 1 - - uid: 39750 + - uid: 40423 components: - type: Transform - pos: 30.5,-8.5 + pos: 6.5,26.5 parent: 1 - - uid: 39751 + - uid: 40424 components: - type: Transform - pos: 30.5,-9.5 + pos: 5.5,26.5 parent: 1 - - uid: 39767 + - uid: 40425 components: - type: Transform - pos: 46.5,-9.5 + pos: 5.5,27.5 parent: 1 - - uid: 39768 + - uid: 40426 components: - type: Transform - pos: 47.5,-9.5 + pos: 5.5,28.5 parent: 1 - - uid: 39769 + - uid: 40500 components: - type: Transform - pos: 48.5,-9.5 + pos: 35.5,26.5 parent: 1 - - uid: 39770 + - uid: 40501 components: - type: Transform - pos: 49.5,-9.5 + pos: 35.5,25.5 parent: 1 - - uid: 39771 + - uid: 40502 components: - type: Transform - pos: 50.5,-9.5 + pos: 35.5,24.5 parent: 1 - - uid: 39772 + - uid: 40503 components: - type: Transform - pos: 51.5,-9.5 + pos: 35.5,23.5 parent: 1 - - uid: 39773 + - uid: 40504 components: - type: Transform - pos: 52.5,-9.5 + pos: 35.5,22.5 parent: 1 - - uid: 39774 + - uid: 40505 components: - type: Transform - pos: 53.5,-9.5 + pos: 35.5,21.5 parent: 1 - - uid: 39775 + - uid: 40506 components: - type: Transform - pos: 49.5,-10.5 + pos: 35.5,20.5 parent: 1 - - uid: 39776 + - uid: 40507 components: - type: Transform - pos: 49.5,-11.5 + pos: 35.5,19.5 parent: 1 - - uid: 39777 + - uid: 40508 components: - type: Transform - pos: 49.5,-12.5 + pos: 35.5,18.5 parent: 1 - - uid: 39778 + - uid: 40509 components: - type: Transform - pos: 49.5,-13.5 + pos: 35.5,17.5 parent: 1 - - uid: 39779 + - uid: 40510 components: - type: Transform - pos: 49.5,-14.5 + pos: 35.5,16.5 parent: 1 - - uid: 39780 + - uid: 40511 components: - type: Transform - pos: 50.5,-14.5 + pos: 35.5,15.5 parent: 1 - - uid: 39781 + - uid: 40512 components: - type: Transform - pos: 51.5,-14.5 + pos: 35.5,14.5 parent: 1 - - uid: 39782 + - uid: 40513 components: - type: Transform - pos: 51.5,-13.5 + pos: 35.5,13.5 parent: 1 - - uid: 39783 + - uid: 40514 components: - type: Transform - pos: 35.5,-4.5 + pos: 35.5,12.5 parent: 1 - - uid: 39784 + - uid: 40515 components: - type: Transform - pos: 51.5,-12.5 + pos: 35.5,11.5 parent: 1 - - uid: 39785 + - uid: 40516 components: - type: Transform - pos: 51.5,-11.5 + pos: 35.5,10.5 parent: 1 - - uid: 39786 + - uid: 40517 components: - type: Transform - pos: 51.5,-10.5 + pos: 35.5,9.5 parent: 1 - - uid: 39787 + - uid: 40518 components: - type: Transform - pos: 36.5,-4.5 + pos: 35.5,8.5 parent: 1 - - uid: 39788 + - uid: 40519 components: - type: Transform - pos: 37.5,-4.5 + pos: 35.5,7.5 parent: 1 - - uid: 39789 + - uid: 40520 components: - type: Transform - pos: 38.5,-4.5 + pos: 35.5,6.5 parent: 1 - - uid: 39790 + - uid: 40521 components: - type: Transform - pos: 39.5,-4.5 + pos: 35.5,5.5 parent: 1 - - uid: 39791 + - uid: 40522 components: - type: Transform - pos: 40.5,-4.5 + pos: 35.5,4.5 parent: 1 - - uid: 39792 + - uid: 40523 components: - type: Transform - pos: 41.5,-4.5 + pos: 35.5,3.5 parent: 1 - - uid: 39793 + - uid: 40524 components: - type: Transform - pos: 42.5,-4.5 + pos: 36.5,3.5 parent: 1 - - uid: 39794 + - uid: 40525 components: - type: Transform - pos: 43.5,-4.5 + pos: 37.5,3.5 parent: 1 - - uid: 39795 + - uid: 40526 components: - type: Transform - pos: 44.5,-4.5 + pos: 37.5,4.5 parent: 1 - - uid: 39796 + - uid: 40527 components: - type: Transform - pos: 37.5,-2.5 + pos: 37.5,5.5 parent: 1 - - uid: 39797 + - uid: 40528 components: - type: Transform - pos: 38.5,-2.5 + pos: 37.5,6.5 parent: 1 - - uid: 39798 + - uid: 40529 components: - type: Transform - pos: 39.5,-2.5 + pos: 37.5,7.5 parent: 1 - - uid: 39799 + - uid: 40530 components: - type: Transform - pos: 40.5,-2.5 + pos: 37.5,8.5 parent: 1 - - uid: 39800 + - uid: 40531 components: - type: Transform - pos: 40.5,-3.5 + pos: 37.5,9.5 parent: 1 - - uid: 39801 + - uid: 40532 components: - type: Transform - pos: 44.5,-3.5 + pos: 37.5,10.5 parent: 1 - - uid: 39802 + - uid: 40533 components: - type: Transform - pos: 45.5,-3.5 + pos: 37.5,11.5 parent: 1 - - uid: 39803 + - uid: 40534 components: - type: Transform - pos: 46.5,-3.5 + pos: 37.5,12.5 parent: 1 - - uid: 39804 + - uid: 40535 components: - type: Transform - pos: 47.5,-3.5 + pos: 37.5,13.5 parent: 1 - - uid: 39805 + - uid: 40536 components: - type: Transform - pos: 48.5,-3.5 + pos: 37.5,14.5 parent: 1 - - uid: 39806 + - uid: 40537 components: - type: Transform - pos: 49.5,-3.5 + pos: 37.5,15.5 parent: 1 - - uid: 39807 + - uid: 40538 components: - type: Transform - pos: 50.5,-3.5 + pos: 37.5,16.5 parent: 1 - - uid: 39808 + - uid: 40539 components: - type: Transform - pos: 51.5,-3.5 + pos: 37.5,17.5 parent: 1 - - uid: 39821 + - uid: 40540 components: - type: Transform - pos: 28.5,-13.5 + pos: 37.5,18.5 parent: 1 - - uid: 39822 + - uid: 40541 components: - type: Transform - pos: 29.5,-13.5 + pos: 37.5,19.5 parent: 1 - - uid: 39823 + - uid: 40542 components: - type: Transform - pos: 30.5,-13.5 + pos: 37.5,20.5 parent: 1 - - uid: 39824 + - uid: 40543 components: - type: Transform - pos: 31.5,-13.5 + pos: 37.5,21.5 parent: 1 - - uid: 39825 + - uid: 40544 components: - type: Transform - pos: 32.5,-13.5 + pos: 37.5,22.5 parent: 1 - - uid: 39826 + - uid: 40545 components: - type: Transform - pos: 32.5,-14.5 + pos: 37.5,23.5 parent: 1 - - uid: 39827 + - uid: 40546 components: - type: Transform - pos: 32.5,-15.5 + pos: 37.5,24.5 parent: 1 - - uid: 39828 + - uid: 40547 components: - type: Transform - pos: 32.5,-16.5 + pos: 37.5,25.5 parent: 1 - - uid: 39829 + - uid: 40548 components: - type: Transform - pos: 32.5,-17.5 + pos: 36.5,25.5 parent: 1 - - uid: 39830 + - uid: 40549 components: - type: Transform - pos: 32.5,-18.5 + pos: 35.5,2.5 parent: 1 - - uid: 39831 + - uid: 40550 components: - type: Transform - pos: 32.5,-19.5 + pos: 34.5,2.5 parent: 1 - - uid: 39832 + - uid: 40551 components: - type: Transform - pos: 32.5,-20.5 + pos: 33.5,2.5 parent: 1 - - uid: 39833 + - uid: 40552 components: - type: Transform - pos: 33.5,-20.5 + pos: 32.5,2.5 parent: 1 - - uid: 39834 + - uid: 40553 components: - type: Transform - pos: 33.5,-21.5 + pos: 34.5,1.5 parent: 1 - - uid: 39835 + - uid: 40554 components: - type: Transform - pos: 33.5,-22.5 + pos: 34.5,0.5 parent: 1 - - uid: 39836 + - uid: 40555 components: - type: Transform - pos: 33.5,-23.5 + pos: 33.5,0.5 parent: 1 - - uid: 39837 + - uid: 40557 components: - type: Transform - pos: 33.5,-24.5 + pos: 31.5,0.5 parent: 1 - - uid: 39838 + - uid: 40614 components: - type: Transform - pos: 33.5,-25.5 + pos: 43.5,31.5 parent: 1 - - uid: 39839 + - uid: 40622 components: - type: Transform - pos: 33.5,-26.5 + pos: 43.5,32.5 parent: 1 - - uid: 39840 + - uid: 40623 components: - type: Transform - pos: 33.5,-27.5 + pos: 43.5,33.5 parent: 1 - - uid: 39841 + - uid: 40624 components: - type: Transform - pos: 33.5,-28.5 + pos: 43.5,34.5 parent: 1 - - uid: 39842 + - uid: 40625 components: - type: Transform - pos: 33.5,-29.5 + pos: 41.5,33.5 parent: 1 - - uid: 39843 + - uid: 40626 components: - type: Transform - pos: 33.5,-30.5 + pos: 41.5,32.5 parent: 1 - - uid: 39844 + - uid: 40627 components: - type: Transform - pos: 33.5,-31.5 + pos: 41.5,31.5 parent: 1 - - uid: 39845 + - uid: 40628 components: - type: Transform - pos: 33.5,-32.5 + pos: 41.5,30.5 parent: 1 - - uid: 39846 + - uid: 40629 components: - type: Transform - pos: 33.5,-33.5 + pos: 41.5,29.5 parent: 1 - - uid: 39847 + - uid: 40630 components: - type: Transform - pos: 34.5,-33.5 + pos: 41.5,28.5 parent: 1 - - uid: 39848 + - uid: 40631 components: - type: Transform - pos: 35.5,-33.5 + pos: 41.5,27.5 parent: 1 - - uid: 39849 + - uid: 40632 components: - type: Transform - pos: 36.5,-33.5 + pos: 41.5,26.5 parent: 1 - - uid: 39850 + - uid: 40633 components: - type: Transform - pos: 36.5,-32.5 + pos: 41.5,25.5 parent: 1 - - uid: 39851 + - uid: 40634 components: - type: Transform - pos: 36.5,-31.5 + pos: 41.5,24.5 parent: 1 - - uid: 39852 + - uid: 40635 components: - type: Transform - pos: 37.5,-31.5 + pos: 41.5,23.5 parent: 1 - - uid: 39853 + - uid: 40636 components: - type: Transform - pos: 33.5,-34.5 + pos: 41.5,22.5 parent: 1 - - uid: 39854 + - uid: 40637 components: - type: Transform - pos: 33.5,-35.5 + pos: 41.5,21.5 parent: 1 - - uid: 39855 + - uid: 40638 components: - type: Transform - pos: 33.5,-36.5 + pos: 41.5,20.5 parent: 1 - - uid: 39856 + - uid: 40639 components: - type: Transform - pos: 33.5,-37.5 + pos: 41.5,19.5 parent: 1 - - uid: 39857 + - uid: 40640 components: - type: Transform - pos: 33.5,-38.5 + pos: 41.5,18.5 parent: 1 - - uid: 39858 + - uid: 40641 components: - type: Transform - pos: 33.5,-39.5 + pos: 41.5,17.5 parent: 1 - - uid: 39859 + - uid: 40642 components: - type: Transform - pos: 33.5,-40.5 + pos: 41.5,16.5 parent: 1 - - uid: 39860 + - uid: 40643 components: - type: Transform - pos: 33.5,-41.5 + pos: 41.5,15.5 parent: 1 - - uid: 39861 + - uid: 40644 components: - type: Transform - pos: 33.5,-42.5 + pos: 41.5,14.5 parent: 1 - - uid: 39862 + - uid: 40645 components: - type: Transform - pos: 33.5,-43.5 + pos: 41.5,13.5 parent: 1 - - uid: 39863 + - uid: 40646 components: - type: Transform - pos: 33.5,-44.5 + pos: 41.5,12.5 parent: 1 - - uid: 39864 + - uid: 40647 components: - type: Transform - pos: 33.5,-45.5 + pos: 41.5,11.5 parent: 1 - - uid: 39865 + - uid: 40648 components: - type: Transform - pos: 32.5,-45.5 + pos: 41.5,10.5 parent: 1 - - uid: 39866 + - uid: 40649 components: - type: Transform - pos: 34.5,-45.5 + pos: 41.5,9.5 parent: 1 - - uid: 39867 + - uid: 40650 components: - type: Transform - pos: 34.5,-46.5 + pos: 41.5,8.5 parent: 1 - - uid: 39868 + - uid: 40651 components: - type: Transform - pos: 34.5,-47.5 + pos: 41.5,7.5 parent: 1 - - uid: 39869 + - uid: 40652 components: - type: Transform - pos: 34.5,-48.5 + pos: 41.5,6.5 parent: 1 - - uid: 39870 + - uid: 40653 components: - type: Transform - pos: 34.5,-49.5 + pos: 41.5,5.5 parent: 1 - - uid: 39871 + - uid: 40654 components: - type: Transform - pos: 35.5,-49.5 + pos: 41.5,4.5 parent: 1 - - uid: 39872 + - uid: 40655 components: - type: Transform - pos: 36.5,-49.5 + pos: 41.5,3.5 parent: 1 - - uid: 39873 + - uid: 40656 components: - type: Transform - pos: 37.5,-49.5 + pos: 41.5,2.5 parent: 1 - - uid: 39874 + - uid: 40657 components: - type: Transform - pos: 38.5,-49.5 + pos: 41.5,1.5 parent: 1 - - uid: 39875 + - uid: 40658 components: - type: Transform - pos: 39.5,-49.5 + pos: 41.5,0.5 parent: 1 - - uid: 39876 + - uid: 40659 components: - type: Transform - pos: 40.5,-49.5 + pos: 41.5,-0.5 parent: 1 - - uid: 39882 + - uid: 40660 components: - type: Transform - pos: 58.5,-52.5 + pos: 41.5,-1.5 parent: 1 - - uid: 39891 + - uid: 40877 components: - type: Transform - pos: 58.5,-53.5 + pos: 42.5,-6.5 parent: 1 - - uid: 39892 + - uid: 40878 components: - type: Transform - pos: 58.5,-54.5 + pos: 42.5,-5.5 parent: 1 - - uid: 39893 + - uid: 41268 components: - type: Transform - pos: 57.5,-54.5 + pos: -137.5,-19.5 parent: 1 - - uid: 39894 + - uid: 41269 components: - type: Transform - pos: 59.5,-54.5 + pos: -138.5,-19.5 parent: 1 - - uid: 39895 + - uid: 41270 components: - type: Transform - pos: 60.5,-54.5 + pos: -139.5,-19.5 parent: 1 - - uid: 39896 + - uid: 41271 components: - type: Transform - pos: 61.5,-54.5 + pos: -140.5,-19.5 parent: 1 - - uid: 39897 + - uid: 41272 components: - type: Transform - pos: 58.5,-51.5 + pos: -141.5,-19.5 parent: 1 - - uid: 39898 + - uid: 41273 components: - type: Transform - pos: 58.5,-50.5 + pos: -142.5,-19.5 parent: 1 - - uid: 39899 + - uid: 41274 components: - type: Transform - pos: 58.5,-49.5 + pos: -143.5,-19.5 parent: 1 - - uid: 39900 + - uid: 41275 components: - type: Transform - pos: 59.5,-49.5 + pos: -144.5,-19.5 parent: 1 - - uid: 39901 + - uid: 41276 components: - type: Transform - pos: 60.5,-49.5 + pos: -145.5,-19.5 parent: 1 - - uid: 39902 + - uid: 41277 components: - type: Transform - pos: 61.5,-49.5 + pos: -146.5,-19.5 parent: 1 - - uid: 39903 + - uid: 41278 components: - type: Transform - pos: 61.5,-48.5 + pos: -147.5,-19.5 parent: 1 - - uid: 39904 + - uid: 41279 components: - type: Transform - pos: 61.5,-47.5 + pos: -148.5,-19.5 parent: 1 - - uid: 39905 + - uid: 41280 components: - type: Transform - pos: 61.5,-46.5 + pos: -149.5,-19.5 parent: 1 - - uid: 39906 + - uid: 41281 components: - type: Transform - pos: 61.5,-45.5 + pos: -150.5,-19.5 parent: 1 - - uid: 39907 + - uid: 41282 components: - type: Transform - pos: 61.5,-44.5 + pos: -151.5,-19.5 parent: 1 - - uid: 39908 + - uid: 41283 components: - type: Transform - pos: 60.5,-44.5 + pos: -152.5,-19.5 parent: 1 - - uid: 39909 + - uid: 41287 components: - type: Transform - pos: 59.5,-44.5 + pos: -151.5,-31.5 parent: 1 - - uid: 39910 + - uid: 41288 components: - type: Transform - pos: 58.5,-44.5 + pos: -151.5,-30.5 parent: 1 - - uid: 39911 + - uid: 41289 components: - type: Transform - pos: 57.5,-44.5 + pos: -152.5,-30.5 parent: 1 - - uid: 39912 + - uid: 41290 components: - type: Transform - pos: 56.5,-44.5 + pos: -152.5,-29.5 parent: 1 - - uid: 39913 + - uid: 41381 components: - type: Transform - pos: 56.5,-45.5 + pos: -91.5,-87.5 parent: 1 - - uid: 39914 + - uid: 41382 components: - type: Transform - pos: 56.5,-46.5 + pos: -91.5,-88.5 parent: 1 - - uid: 39915 + - uid: 41383 components: - type: Transform - pos: 56.5,-47.5 + pos: -92.5,-88.5 parent: 1 - - uid: 39916 + - uid: 41886 components: - type: Transform - pos: 56.5,-48.5 + pos: 22.5,8.5 parent: 1 - - uid: 39917 + - uid: 41887 components: - type: Transform - pos: 56.5,-49.5 + pos: 23.5,8.5 parent: 1 - - uid: 39918 + - uid: 41888 components: - type: Transform - pos: 57.5,-49.5 + pos: 21.5,8.5 parent: 1 - - uid: 39919 + - uid: 42055 components: - type: Transform - pos: 55.5,-48.5 + pos: -123.5,22.5 parent: 1 - - uid: 39920 + - uid: 42056 components: - type: Transform - pos: 54.5,-48.5 + pos: -123.5,23.5 parent: 1 - - uid: 39921 + - uid: 42057 components: - type: Transform - pos: 53.5,-48.5 + pos: -123.5,24.5 parent: 1 - - uid: 39922 + - uid: 42058 components: - type: Transform - pos: 52.5,-48.5 + pos: -123.5,25.5 parent: 1 - - uid: 39923 + - uid: 42155 components: - type: Transform - pos: 51.5,-48.5 + pos: -56.5,37.5 parent: 1 - - uid: 39924 + - uid: 42156 components: - type: Transform - pos: 55.5,-44.5 + pos: -56.5,38.5 parent: 1 - - uid: 39925 + - uid: 42157 components: - type: Transform - pos: 54.5,-44.5 + pos: -56.5,39.5 parent: 1 - - uid: 39926 + - uid: 42158 components: - type: Transform - pos: 53.5,-44.5 + pos: -56.5,40.5 parent: 1 - - uid: 39927 + - uid: 42159 components: - type: Transform - pos: 52.5,-44.5 + pos: -56.5,41.5 parent: 1 - - uid: 39928 + - uid: 42160 components: - type: Transform - pos: 51.5,-44.5 + pos: -56.5,42.5 parent: 1 - - uid: 39929 + - uid: 42451 components: - type: Transform - pos: 56.5,-43.5 + pos: 12.5,13.5 parent: 1 - - uid: 39930 +- proto: CableApcStack + entities: + - uid: 8848 components: - type: Transform - pos: 56.5,-42.5 + pos: -99.68037,-1.3461936 parent: 1 - - uid: 39931 + - uid: 9784 components: - type: Transform - pos: 56.5,-41.5 + rot: -1.5707963267948966 rad + pos: -104.89818,-31.395166 parent: 1 - - uid: 39932 + - uid: 12255 components: - type: Transform - pos: 56.5,-40.5 + rot: -1.5707963267948966 rad + pos: -20.989914,-41.351067 parent: 1 - - uid: 39933 + - uid: 19431 components: - type: Transform - pos: 56.5,-39.5 + rot: 3.141592653589793 rad + pos: -106.45831,-3.414914 parent: 1 - - uid: 39934 + - uid: 34110 components: - type: Transform - pos: 57.5,-39.5 + pos: -94.48165,-42.474792 parent: 1 - - uid: 39935 + - uid: 34290 components: - type: Transform - pos: 58.5,-39.5 + pos: -139.6468,-35.37442 parent: 1 - - uid: 39936 +- proto: CableApcStack1 + entities: + - uid: 36681 components: - type: Transform - pos: 59.5,-39.5 + pos: -90.42774,-78.24702 parent: 1 - - uid: 39937 + - uid: 36682 components: - type: Transform - pos: 60.5,-39.5 + pos: -89.81525,-77.79671 parent: 1 - - uid: 39938 +- proto: CableApcStack10 + entities: + - uid: 36402 components: - type: Transform - pos: 60.5,-40.5 + pos: -135.48181,-49.51148 parent: 1 - - uid: 39939 +- proto: CableHV + entities: + - uid: 1119 components: - type: Transform - pos: 55.5,-40.5 + pos: 23.5,8.5 parent: 1 - - uid: 39940 + - uid: 1120 components: - type: Transform - pos: 54.5,-40.5 + pos: 24.5,6.5 parent: 1 - - uid: 39941 + - uid: 1121 components: - type: Transform - pos: 53.5,-40.5 + pos: 24.5,8.5 parent: 1 - - uid: 39942 + - uid: 1122 components: - type: Transform - pos: 52.5,-40.5 + pos: 24.5,5.5 parent: 1 - - uid: 39943 + - uid: 1127 components: - type: Transform - pos: 51.5,-40.5 + pos: 22.5,5.5 parent: 1 - - uid: 39944 + - uid: 1128 components: - type: Transform - pos: 50.5,-40.5 + pos: 24.5,7.5 parent: 1 - - uid: 39945 + - uid: 1129 components: - type: Transform - pos: 49.5,-40.5 + pos: 16.5,22.5 parent: 1 - - uid: 39946 + - uid: 1135 components: - type: Transform - pos: 48.5,-40.5 + pos: -75.5,-39.5 parent: 1 - - uid: 39947 + - uid: 2400 components: - type: Transform - pos: 47.5,-40.5 + pos: -105.5,8.5 parent: 1 - - uid: 39948 + - uid: 4249 components: - type: Transform - pos: 46.5,-40.5 + pos: -63.5,-39.5 parent: 1 - - uid: 39949 + - uid: 4281 components: - type: Transform - pos: 45.5,-40.5 + pos: -63.5,-40.5 parent: 1 - - uid: 39950 + - uid: 4657 components: - type: Transform - pos: 44.5,-40.5 + pos: -65.5,-37.5 parent: 1 - - uid: 39951 + - uid: 4660 components: - type: Transform - pos: 43.5,-40.5 + pos: -64.5,-35.5 parent: 1 - - uid: 39952 + - uid: 4669 components: - type: Transform - pos: 42.5,-40.5 + pos: -65.5,-36.5 parent: 1 - - uid: 39953 + - uid: 4670 components: - type: Transform - pos: 41.5,-40.5 + pos: -65.5,-35.5 parent: 1 - - uid: 39954 + - uid: 4684 components: - type: Transform - pos: 40.5,-40.5 + pos: -85.5,-38.5 parent: 1 - - uid: 40068 + - uid: 4732 components: - type: Transform - pos: 58.5,-38.5 + pos: -85.5,-37.5 parent: 1 - - uid: 40152 + - uid: 4733 components: - type: Transform - pos: 48.5,-56.5 + pos: -85.5,-39.5 parent: 1 - - uid: 40153 + - uid: 4775 components: - type: Transform - pos: 47.5,-56.5 + pos: -82.5,-39.5 parent: 1 - - uid: 40154 + - uid: 4779 components: - type: Transform - pos: 46.5,-56.5 + pos: -84.5,-39.5 parent: 1 - - uid: 40155 + - uid: 5121 components: - type: Transform - pos: 46.5,-57.5 + pos: -106.5,-20.5 parent: 1 - - uid: 40156 + - uid: 5364 components: - type: Transform - pos: 46.5,-58.5 + pos: -110.5,-20.5 parent: 1 - - uid: 40157 + - uid: 5838 components: - type: Transform - pos: 46.5,-59.5 + pos: -115.5,-26.5 parent: 1 - - uid: 40158 + - uid: 5840 components: - type: Transform - pos: 46.5,-60.5 + pos: -109.5,-20.5 parent: 1 - - uid: 40159 + - uid: 5853 components: - type: Transform - pos: 47.5,-60.5 + pos: -118.5,-26.5 parent: 1 - - uid: 40160 + - uid: 5854 components: - type: Transform - pos: 48.5,-60.5 + pos: -116.5,-26.5 parent: 1 - - uid: 40161 + - uid: 5856 components: - type: Transform - pos: 49.5,-60.5 + pos: -109.5,-26.5 parent: 1 - - uid: 40162 + - uid: 5860 components: - type: Transform - pos: 50.5,-60.5 + pos: -111.5,-22.5 parent: 1 - - uid: 40163 + - uid: 5861 components: - type: Transform - pos: 51.5,-60.5 + pos: -109.5,-23.5 parent: 1 - - uid: 40164 + - uid: 5862 components: - type: Transform - pos: 52.5,-60.5 + pos: -109.5,-24.5 parent: 1 - - uid: 40165 + - uid: 5868 components: - type: Transform - pos: 53.5,-60.5 + pos: -110.5,-22.5 parent: 1 - - uid: 40166 + - uid: 5870 components: - type: Transform - pos: 53.5,-59.5 + pos: -109.5,-22.5 parent: 1 - - uid: 40167 + - uid: 5942 components: - type: Transform - pos: 46.5,-61.5 + pos: -106.5,9.5 parent: 1 - - uid: 40168 + - uid: 5943 components: - type: Transform - pos: 46.5,-62.5 + pos: -106.5,10.5 parent: 1 - - uid: 40169 + - uid: 5944 components: - type: Transform - pos: 46.5,-63.5 + pos: -106.5,11.5 parent: 1 - - uid: 40170 + - uid: 5945 components: - type: Transform - pos: 48.5,-61.5 + pos: -106.5,12.5 parent: 1 - - uid: 40171 + - uid: 5998 components: - type: Transform - pos: 48.5,-62.5 + pos: -111.5,-9.5 parent: 1 - - uid: 40172 + - uid: 6000 components: - type: Transform - pos: 48.5,-63.5 + pos: -108.5,-11.5 parent: 1 - - uid: 40173 + - uid: 6003 components: - type: Transform - pos: 46.5,-55.5 + pos: -105.5,-11.5 parent: 1 - - uid: 40174 + - uid: 6188 components: - type: Transform - pos: 46.5,-54.5 + pos: 16.5,21.5 parent: 1 - - uid: 40175 + - uid: 8456 components: - type: Transform - pos: 47.5,-54.5 + pos: 33.5,-35.5 parent: 1 - - uid: 40176 + - uid: 8503 components: - type: Transform - pos: 48.5,-54.5 + pos: -15.5,-49.5 parent: 1 - - uid: 40177 + - uid: 8504 components: - type: Transform - pos: 49.5,-54.5 + pos: -15.5,-48.5 parent: 1 - - uid: 40178 + - uid: 8899 components: - type: Transform - pos: 50.5,-54.5 + pos: -107.5,-20.5 parent: 1 - - uid: 40179 + - uid: 8934 components: - type: Transform - pos: 51.5,-54.5 + pos: -110.5,-26.5 parent: 1 - - uid: 40180 + - uid: 8948 components: - type: Transform - pos: 52.5,-54.5 + pos: -112.5,-26.5 parent: 1 - - uid: 40181 + - uid: 8965 components: - type: Transform - pos: 46.5,-53.5 + pos: -105.5,-19.5 parent: 1 - - uid: 40182 + - uid: 8993 components: - type: Transform - pos: 46.5,-52.5 + pos: -105.5,-18.5 parent: 1 - - uid: 40183 + - uid: 9003 components: - type: Transform - pos: 46.5,-51.5 + pos: -105.5,-17.5 parent: 1 - - uid: 40184 + - uid: 9024 components: - type: Transform - pos: 46.5,-50.5 + pos: -111.5,-21.5 parent: 1 - - uid: 40185 + - uid: 9031 components: - type: Transform - pos: 46.5,-49.5 + pos: -111.5,-20.5 parent: 1 - - uid: 40186 + - uid: 9032 components: - type: Transform - pos: 46.5,-48.5 + pos: -111.5,-26.5 parent: 1 - - uid: 40187 + - uid: 9033 components: - type: Transform - pos: 46.5,-47.5 + pos: -112.5,-20.5 parent: 1 - - uid: 40188 + - uid: 9034 components: - type: Transform - pos: 46.5,-46.5 + pos: -120.5,-26.5 parent: 1 - - uid: 40189 + - uid: 9159 components: - type: Transform - pos: 46.5,-45.5 + pos: -81.5,-39.5 parent: 1 - - uid: 40190 + - uid: 9567 components: - type: Transform - pos: 46.5,-44.5 + pos: -105.5,-16.5 parent: 1 - - uid: 40191 + - uid: 9570 components: - type: Transform - pos: 45.5,-44.5 + pos: -105.5,-15.5 parent: 1 - - uid: 40192 + - uid: 9671 components: - type: Transform - pos: 44.5,-44.5 + pos: -105.5,-14.5 parent: 1 - - uid: 40193 + - uid: 9859 components: - type: Transform - pos: 43.5,-44.5 + pos: -62.5,-40.5 parent: 1 - - uid: 40194 + - uid: 10921 components: - type: Transform - pos: 42.5,-44.5 + pos: 33.5,-36.5 parent: 1 - - uid: 40195 + - uid: 10922 components: - type: Transform - pos: 41.5,-44.5 + pos: 33.5,-37.5 parent: 1 - - uid: 40196 + - uid: 10923 components: - type: Transform - pos: 40.5,-44.5 + pos: 33.5,-38.5 parent: 1 - - uid: 40197 + - uid: 10924 components: - type: Transform - pos: 39.5,-44.5 + pos: 33.5,-39.5 parent: 1 - - uid: 40198 + - uid: 10925 components: - type: Transform - pos: 36.5,-52.5 + pos: 33.5,-41.5 parent: 1 - - uid: 40199 + - uid: 10926 components: - type: Transform - pos: 36.5,-53.5 + pos: 33.5,-42.5 parent: 1 - - uid: 40200 + - uid: 10927 components: - type: Transform - pos: 35.5,-53.5 + pos: 33.5,-43.5 parent: 1 - - uid: 40201 + - uid: 10930 components: - type: Transform - pos: 34.5,-53.5 + pos: 34.5,-39.5 parent: 1 - - uid: 40202 + - uid: 10931 components: - type: Transform - pos: 37.5,-53.5 + pos: 35.5,-39.5 parent: 1 - - uid: 40203 + - uid: 10932 components: - type: Transform - pos: 38.5,-53.5 + pos: 34.5,-41.5 parent: 1 - - uid: 40204 + - uid: 10933 components: - type: Transform - pos: 39.5,-53.5 + pos: 35.5,-41.5 parent: 1 - - uid: 40205 + - uid: 11304 components: - type: Transform - pos: 40.5,-53.5 + pos: -25.5,19.5 parent: 1 - - uid: 40206 + - uid: 11305 components: - type: Transform - pos: 41.5,-53.5 + pos: -25.5,20.5 parent: 1 - - uid: 40207 + - uid: 11379 components: - type: Transform - pos: 37.5,-54.5 + pos: 16.5,23.5 parent: 1 - - uid: 40208 + - uid: 11381 components: - type: Transform - pos: 37.5,-55.5 + pos: 16.5,20.5 parent: 1 - - uid: 40209 + - uid: 11382 components: - type: Transform - pos: 36.5,-55.5 + pos: 16.5,19.5 parent: 1 - - uid: 40210 + - uid: 11738 components: - type: Transform - pos: 35.5,-55.5 + pos: -105.5,-13.5 parent: 1 - - uid: 40211 + - uid: 11758 components: - type: Transform - pos: 34.5,-55.5 + pos: -110.5,-0.5 parent: 1 - - uid: 40212 + - uid: 11759 components: - type: Transform - pos: 38.5,-55.5 + pos: -109.5,-0.5 parent: 1 - - uid: 40213 + - uid: 11760 components: - type: Transform - pos: 39.5,-55.5 + pos: -110.5,0.5 parent: 1 - - uid: 40214 + - uid: 11761 components: - type: Transform - pos: 40.5,-55.5 + pos: -110.5,1.5 parent: 1 - - uid: 40215 + - uid: 11762 components: - type: Transform - pos: 41.5,-55.5 + pos: -110.5,2.5 parent: 1 - - uid: 40216 + - uid: 11763 components: - type: Transform - pos: 37.5,-56.5 + pos: -108.5,-0.5 parent: 1 - - uid: 40217 + - uid: 11764 components: - type: Transform - pos: 37.5,-57.5 + pos: -108.5,0.5 parent: 1 - - uid: 40218 + - uid: 13195 components: - type: Transform - pos: 37.5,-58.5 + pos: -105.5,-12.5 parent: 1 - - uid: 40219 + - uid: 13216 components: - type: Transform - pos: 37.5,-59.5 + pos: -110.5,-21.5 parent: 1 - - uid: 40220 + - uid: 13217 components: - type: Transform - pos: 37.5,-60.5 + pos: -113.5,-26.5 parent: 1 - - uid: 40221 + - uid: 13223 components: - type: Transform - pos: 38.5,-60.5 + pos: -119.5,-26.5 parent: 1 - - uid: 40222 + - uid: 13293 components: - type: Transform - pos: 39.5,-60.5 + pos: -107.5,-11.5 parent: 1 - - uid: 40223 + - uid: 13566 components: - type: Transform - pos: 40.5,-60.5 + pos: -111.5,-11.5 parent: 1 - - uid: 40224 + - uid: 14177 components: - type: Transform - pos: 41.5,-60.5 + pos: 73.5,-57.5 parent: 1 - - uid: 40225 + - uid: 14178 components: - type: Transform - pos: 40.5,-61.5 + pos: 73.5,-39.5 parent: 1 - - uid: 40226 + - uid: 14179 components: - type: Transform - pos: 40.5,-62.5 + pos: 74.5,-39.5 parent: 1 - - uid: 40227 + - uid: 14180 components: - type: Transform - pos: 40.5,-63.5 + pos: 75.5,-39.5 parent: 1 - - uid: 40228 + - uid: 14181 components: - type: Transform - pos: 38.5,-61.5 + pos: 76.5,-39.5 parent: 1 - - uid: 40229 + - uid: 14182 components: - type: Transform - pos: 38.5,-62.5 + pos: 77.5,-39.5 parent: 1 - - uid: 40230 + - uid: 14183 components: - type: Transform - pos: 38.5,-63.5 + pos: 78.5,-39.5 parent: 1 - - uid: 40231 + - uid: 14184 components: - type: Transform - pos: 36.5,-60.5 + pos: 79.5,-39.5 parent: 1 - - uid: 40232 + - uid: 14185 components: - type: Transform - pos: 35.5,-60.5 + pos: 80.5,-39.5 parent: 1 - - uid: 40233 + - uid: 14186 components: - type: Transform - pos: 34.5,-60.5 + pos: 81.5,-39.5 parent: 1 - - uid: 40234 + - uid: 14187 components: - type: Transform - pos: 33.5,-60.5 + pos: 81.5,-38.5 parent: 1 - - uid: 40235 + - uid: 14188 components: - type: Transform - pos: 32.5,-60.5 + pos: 81.5,-37.5 parent: 1 - - uid: 40236 + - uid: 14189 components: - type: Transform - pos: 31.5,-60.5 + pos: 82.5,-37.5 parent: 1 - - uid: 40237 + - uid: 14190 components: - type: Transform - pos: 30.5,-60.5 + pos: 83.5,-37.5 parent: 1 - - uid: 40238 + - uid: 14191 components: - type: Transform - pos: 29.5,-60.5 + pos: 84.5,-37.5 parent: 1 - - uid: 40239 + - uid: 14192 components: - type: Transform - pos: 28.5,-60.5 + pos: 85.5,-37.5 parent: 1 - - uid: 40240 + - uid: 14193 components: - type: Transform - pos: 27.5,-60.5 + pos: 86.5,-37.5 parent: 1 - - uid: 40241 + - uid: 14194 components: - type: Transform - pos: 26.5,-60.5 + pos: 87.5,-37.5 parent: 1 - - uid: 40242 + - uid: 14195 components: - type: Transform - pos: 25.5,-60.5 + pos: 87.5,-38.5 parent: 1 - - uid: 40243 + - uid: 14196 components: - type: Transform - pos: 24.5,-60.5 + pos: 87.5,-39.5 parent: 1 - - uid: 40244 + - uid: 14197 components: - type: Transform - pos: 24.5,-61.5 + pos: 87.5,-40.5 parent: 1 - - uid: 40245 + - uid: 14198 components: - type: Transform - pos: 24.5,-62.5 + pos: 87.5,-41.5 parent: 1 - - uid: 40246 + - uid: 14199 components: - type: Transform - pos: 24.5,-63.5 + pos: 87.5,-42.5 parent: 1 - - uid: 40247 + - uid: 14200 components: - type: Transform - pos: 26.5,-61.5 + pos: 87.5,-43.5 parent: 1 - - uid: 40248 + - uid: 14201 components: - type: Transform - pos: 26.5,-62.5 + pos: 87.5,-44.5 parent: 1 - - uid: 40249 + - uid: 14202 components: - type: Transform - pos: 26.5,-63.5 + pos: 87.5,-45.5 parent: 1 - - uid: 40250 + - uid: 14203 components: - type: Transform - pos: 16.5,-45.5 + pos: 87.5,-46.5 parent: 1 - - uid: 40251 + - uid: 14204 components: - type: Transform - pos: 17.5,-45.5 + pos: 87.5,-47.5 parent: 1 - - uid: 40252 + - uid: 14205 components: - type: Transform - pos: 18.5,-45.5 + pos: 87.5,-48.5 parent: 1 - - uid: 40253 + - uid: 14206 components: - type: Transform - pos: 19.5,-45.5 + pos: 87.5,-49.5 parent: 1 - - uid: 40254 + - uid: 14207 components: - type: Transform - pos: 20.5,-45.5 + pos: 87.5,-50.5 parent: 1 - - uid: 40255 + - uid: 14208 components: - type: Transform - pos: 21.5,-45.5 + pos: 87.5,-51.5 parent: 1 - - uid: 40256 + - uid: 14209 components: - type: Transform - pos: 22.5,-45.5 + pos: 87.5,-52.5 parent: 1 - - uid: 40257 + - uid: 14210 components: - type: Transform - pos: 23.5,-45.5 + pos: 87.5,-53.5 parent: 1 - - uid: 40258 + - uid: 14211 components: - type: Transform - pos: 24.5,-45.5 + pos: 87.5,-54.5 parent: 1 - - uid: 40259 + - uid: 14212 components: - type: Transform - pos: 25.5,-45.5 + pos: 87.5,-55.5 parent: 1 - - uid: 40260 + - uid: 14213 components: - type: Transform - pos: 26.5,-45.5 + pos: 87.5,-56.5 parent: 1 - - uid: 40261 + - uid: 14214 components: - type: Transform - pos: 26.5,-54.5 + pos: 87.5,-57.5 parent: 1 - - uid: 40262 + - uid: 14215 components: - type: Transform - pos: 26.5,-55.5 + pos: 86.5,-57.5 parent: 1 - - uid: 40263 + - uid: 14216 components: - type: Transform - pos: 26.5,-56.5 + pos: 85.5,-57.5 parent: 1 - - uid: 40264 + - uid: 14217 components: - type: Transform - pos: 26.5,-57.5 + pos: 84.5,-57.5 parent: 1 - - uid: 40265 + - uid: 14218 components: - type: Transform - pos: 26.5,-58.5 + pos: 83.5,-57.5 parent: 1 - - uid: 40266 + - uid: 14219 components: - type: Transform - pos: 26.5,-59.5 + pos: 82.5,-57.5 parent: 1 - - uid: 40306 + - uid: 14220 components: - type: Transform - pos: 0.5,-54.5 + pos: 81.5,-57.5 parent: 1 - - uid: 40307 + - uid: 14221 components: - type: Transform - pos: 0.5,-53.5 + pos: 81.5,-56.5 parent: 1 - - uid: 40308 + - uid: 14222 components: - type: Transform - pos: 0.5,-52.5 + pos: 81.5,-55.5 parent: 1 - - uid: 40309 + - uid: 14223 components: - type: Transform - pos: 0.5,-51.5 + pos: 80.5,-55.5 parent: 1 - - uid: 40310 + - uid: 14224 components: - type: Transform - pos: 0.5,-50.5 + pos: 79.5,-55.5 parent: 1 - - uid: 40311 + - uid: 14225 components: - type: Transform - pos: 1.5,-50.5 + pos: 78.5,-55.5 parent: 1 - - uid: 40312 + - uid: 14226 components: - type: Transform - pos: 1.5,-53.5 + pos: 77.5,-55.5 parent: 1 - - uid: 40313 + - uid: 14227 components: - type: Transform - pos: 5.5,-59.5 + pos: 76.5,-55.5 parent: 1 - - uid: 40314 + - uid: 14228 components: - type: Transform - pos: 6.5,-59.5 + pos: 75.5,-55.5 parent: 1 - - uid: 40315 + - uid: 14229 components: - type: Transform - pos: 7.5,-59.5 + pos: 74.5,-55.5 parent: 1 - - uid: 40316 + - uid: 14230 components: - type: Transform - pos: 8.5,-59.5 + pos: 73.5,-55.5 parent: 1 - - uid: 40317 + - uid: 14231 components: - type: Transform - pos: 9.5,-59.5 + pos: 73.5,-56.5 parent: 1 - - uid: 40318 + - uid: 14232 components: - type: Transform - pos: 10.5,-59.5 + pos: 72.5,-57.5 parent: 1 - - uid: 40319 + - uid: 14233 components: - type: Transform - pos: 11.5,-59.5 + pos: 71.5,-57.5 parent: 1 - - uid: 40320 + - uid: 14234 components: - type: Transform - pos: 12.5,-59.5 + pos: 70.5,-57.5 parent: 1 - - uid: 40321 + - uid: 14235 components: - type: Transform - pos: 13.5,-59.5 + pos: 69.5,-57.5 parent: 1 - - uid: 40322 + - uid: 14236 components: - type: Transform - pos: 14.5,-59.5 + pos: 68.5,-57.5 parent: 1 - - uid: 40323 + - uid: 14237 components: - type: Transform - pos: 15.5,-59.5 + pos: 67.5,-57.5 parent: 1 - - uid: 40324 + - uid: 14238 components: - type: Transform - pos: 16.5,-59.5 + pos: 66.5,-57.5 parent: 1 - - uid: 40325 + - uid: 14239 components: - type: Transform - pos: 17.5,-59.5 + pos: 65.5,-57.5 parent: 1 - - uid: 40326 + - uid: 14240 components: - type: Transform - pos: 18.5,-59.5 + pos: 64.5,-57.5 parent: 1 - - uid: 40327 + - uid: 14242 components: - type: Transform - pos: 19.5,-59.5 + pos: 63.5,-57.5 parent: 1 - - uid: 40328 + - uid: 14243 components: - type: Transform - pos: 20.5,-59.5 + pos: 63.5,-56.5 parent: 1 - - uid: 40329 + - uid: 14244 components: - type: Transform - pos: 20.5,-60.5 + pos: 63.5,-55.5 parent: 1 - - uid: 40330 + - uid: 14245 components: - type: Transform - pos: 18.5,-60.5 + pos: 62.5,-55.5 parent: 1 - - uid: 40331 + - uid: 14246 components: - type: Transform - pos: 18.5,-61.5 + pos: 61.5,-55.5 parent: 1 - - uid: 40332 + - uid: 14247 components: - type: Transform - pos: 18.5,-62.5 + pos: 61.5,-56.5 parent: 1 - - uid: 40333 + - uid: 14248 components: - type: Transform - pos: 18.5,-63.5 + pos: 60.5,-56.5 parent: 1 - - uid: 40334 + - uid: 14249 components: - type: Transform - pos: 16.5,-60.5 + pos: 59.5,-56.5 parent: 1 - - uid: 40335 + - uid: 14250 components: - type: Transform - pos: 16.5,-61.5 + pos: 59.5,-55.5 parent: 1 - - uid: 40336 + - uid: 14251 components: - type: Transform - pos: 16.5,-62.5 + pos: 59.5,-54.5 parent: 1 - - uid: 40337 + - uid: 14252 components: - type: Transform - pos: 16.5,-63.5 + pos: 73.5,-38.5 parent: 1 - - uid: 40338 + - uid: 14253 components: - type: Transform - pos: 10.5,-58.5 + pos: 58.5,-54.5 parent: 1 - - uid: 40339 + - uid: 14254 components: - type: Transform - pos: 10.5,-57.5 + pos: 57.5,-54.5 parent: 1 - - uid: 40340 + - uid: 14255 components: - type: Transform - pos: 10.5,-56.5 + pos: 57.5,-53.5 parent: 1 - - uid: 40341 + - uid: 14256 components: - type: Transform - pos: 10.5,-55.5 + pos: 57.5,-52.5 parent: 1 - - uid: 40342 + - uid: 14257 components: - type: Transform - pos: 10.5,-54.5 + pos: 57.5,-51.5 parent: 1 - - uid: 40343 + - uid: 14674 components: - type: Transform - pos: 10.5,-53.5 + pos: -135.5,-37.5 parent: 1 - - uid: 40344 + - uid: 14675 components: - type: Transform - pos: 10.5,-52.5 + pos: 57.5,-50.5 parent: 1 - - uid: 40345 + - uid: 14677 components: - type: Transform - pos: 10.5,-51.5 + pos: -135.5,-34.5 parent: 1 - - uid: 40346 + - uid: 14679 components: - type: Transform - pos: 10.5,-50.5 + pos: -133.5,-32.5 parent: 1 - - uid: 40347 + - uid: 14965 components: - type: Transform - pos: 11.5,-50.5 + pos: 57.5,-49.5 parent: 1 - - uid: 40348 + - uid: 14966 components: - type: Transform - pos: 12.5,-50.5 + pos: 58.5,-49.5 parent: 1 - - uid: 40349 + - uid: 14971 components: - type: Transform - pos: 13.5,-50.5 + pos: 59.5,-49.5 parent: 1 - - uid: 40350 + - uid: 14973 components: - type: Transform - pos: 14.5,-50.5 + pos: 18.5,16.5 parent: 1 - - uid: 40351 + - uid: 14974 components: - type: Transform - pos: 14.5,-51.5 + pos: 18.5,17.5 parent: 1 - - uid: 40352 + - uid: 14975 components: - type: Transform - pos: 14.5,-52.5 + pos: 18.5,18.5 parent: 1 - - uid: 40353 + - uid: 14976 components: - type: Transform - pos: 14.5,-53.5 + pos: 17.5,18.5 parent: 1 - - uid: 40354 + - uid: 14977 components: - type: Transform - pos: 14.5,-54.5 + pos: 16.5,18.5 parent: 1 - - uid: 40355 + - uid: 14978 components: - type: Transform - pos: 14.5,-55.5 + pos: 15.5,18.5 parent: 1 - - uid: 40356 + - uid: 14979 components: - type: Transform - pos: 14.5,-56.5 + pos: 15.5,17.5 parent: 1 - - uid: 40357 + - uid: 14980 components: - type: Transform - pos: 13.5,-56.5 + pos: 15.5,16.5 parent: 1 - - uid: 40358 + - uid: 14984 components: - type: Transform - pos: 12.5,-56.5 + pos: 56.5,-49.5 parent: 1 - - uid: 40359 + - uid: 14985 components: - type: Transform - pos: 11.5,-56.5 + pos: 56.5,-48.5 parent: 1 - - uid: 40360 + - uid: 15067 components: - type: Transform - pos: 15.5,-54.5 + pos: -107.5,8.5 parent: 1 - - uid: 40361 + - uid: 15171 components: - type: Transform - pos: 16.5,-54.5 + pos: 56.5,-47.5 parent: 1 - - uid: 40362 + - uid: 15172 components: - type: Transform - pos: 17.5,-54.5 + pos: 56.5,-46.5 parent: 1 - - uid: 40363 + - uid: 15173 components: - type: Transform - pos: 18.5,-54.5 + pos: 56.5,-45.5 parent: 1 - - uid: 40364 + - uid: 15174 components: - type: Transform - pos: 18.5,-55.5 + pos: 56.5,-44.5 parent: 1 - - uid: 40365 + - uid: 15176 components: - type: Transform - pos: 6.5,28.5 + pos: 56.5,-43.5 parent: 1 - - uid: 40366 + - uid: 15177 components: - type: Transform - pos: 7.5,28.5 + pos: 56.5,-42.5 parent: 1 - - uid: 40367 + - uid: 15206 components: - type: Transform - pos: 8.5,28.5 + pos: 56.5,-41.5 parent: 1 - - uid: 40368 + - uid: 15210 components: - type: Transform - pos: 9.5,28.5 + pos: 56.5,-40.5 parent: 1 - - uid: 40369 + - uid: 15225 components: - type: Transform - pos: 10.5,28.5 + pos: 57.5,-46.5 parent: 1 - - uid: 40370 + - uid: 15247 components: - type: Transform - pos: 11.5,28.5 + pos: 58.5,-46.5 parent: 1 - - uid: 40371 + - uid: 15249 components: - type: Transform - pos: 12.5,28.5 + pos: 59.5,-46.5 parent: 1 - - uid: 40372 + - uid: 15256 components: - type: Transform - pos: 13.5,28.5 + pos: 60.5,-46.5 parent: 1 - - uid: 40373 + - uid: 15259 components: - type: Transform - pos: 14.5,28.5 + pos: 60.5,-45.5 parent: 1 - - uid: 40374 + - uid: 15265 components: - type: Transform - pos: 15.5,28.5 + pos: 60.5,-47.5 parent: 1 - - uid: 40375 + - uid: 15270 components: - type: Transform - pos: 16.5,28.5 + pos: 73.5,-37.5 parent: 1 - - uid: 40376 + - uid: 15273 components: - type: Transform - pos: 17.5,28.5 + pos: 72.5,-37.5 parent: 1 - - uid: 40377 + - uid: 15274 components: - type: Transform - pos: 18.5,28.5 + pos: 71.5,-37.5 parent: 1 - - uid: 40378 + - uid: 15275 components: - type: Transform - pos: 19.5,28.5 + pos: 70.5,-37.5 parent: 1 - - uid: 40379 + - uid: 15276 components: - type: Transform - pos: 20.5,28.5 + pos: 69.5,-37.5 parent: 1 - - uid: 40380 + - uid: 15278 components: - type: Transform - pos: 21.5,28.5 + pos: 68.5,-37.5 parent: 1 - - uid: 40381 + - uid: 15287 components: - type: Transform - pos: 22.5,28.5 + pos: 67.5,-37.5 parent: 1 - - uid: 40382 + - uid: 15291 components: - type: Transform - pos: 23.5,28.5 + pos: 66.5,-37.5 parent: 1 - - uid: 40383 + - uid: 15297 components: - type: Transform - pos: 24.5,28.5 + pos: 65.5,-37.5 parent: 1 - - uid: 40384 + - uid: 15299 components: - type: Transform - pos: 25.5,28.5 + pos: 64.5,-37.5 parent: 1 - - uid: 40385 + - uid: 15300 components: - type: Transform - pos: 26.5,28.5 + pos: 63.5,-37.5 parent: 1 - - uid: 40386 + - uid: 15307 components: - type: Transform - pos: 27.5,28.5 + pos: 63.5,-38.5 parent: 1 - - uid: 40387 + - uid: 15311 components: - type: Transform - pos: 28.5,28.5 + pos: 63.5,-39.5 parent: 1 - - uid: 40388 + - uid: 15314 components: - type: Transform - pos: 29.5,28.5 + pos: 63.5,-40.5 parent: 1 - - uid: 40389 + - uid: 15322 components: - type: Transform - pos: 30.5,28.5 + pos: 63.5,-41.5 parent: 1 - - uid: 40390 + - uid: 15324 components: - type: Transform - pos: 31.5,28.5 + pos: 63.5,-42.5 parent: 1 - - uid: 40391 + - uid: 15325 components: - type: Transform - pos: 32.5,28.5 + pos: 63.5,-43.5 parent: 1 - - uid: 40392 + - uid: 15328 components: - type: Transform - pos: 33.5,28.5 + pos: 63.5,-44.5 parent: 1 - - uid: 40393 + - uid: 15336 components: - type: Transform - pos: 34.5,28.5 + pos: 63.5,-45.5 parent: 1 - - uid: 40394 + - uid: 15340 components: - type: Transform - pos: 34.5,27.5 + pos: 63.5,-46.5 parent: 1 - - uid: 40395 + - uid: 15342 components: - type: Transform - pos: 34.5,26.5 + pos: 63.5,-47.5 parent: 1 - - uid: 40396 + - uid: 15345 components: - type: Transform - pos: 33.5,26.5 + pos: 63.5,-48.5 parent: 1 - - uid: 40397 + - uid: 15367 components: - type: Transform - pos: 32.5,26.5 + pos: 63.5,-49.5 parent: 1 - - uid: 40398 + - uid: 15374 components: - type: Transform - pos: 31.5,26.5 + pos: 63.5,-50.5 parent: 1 - - uid: 40399 + - uid: 15391 components: - type: Transform - pos: 30.5,26.5 + pos: 63.5,-51.5 parent: 1 - - uid: 40400 + - uid: 15393 components: - type: Transform - pos: 29.5,26.5 + pos: 63.5,-52.5 parent: 1 - - uid: 40401 + - uid: 15394 components: - type: Transform - pos: 28.5,26.5 + pos: 63.5,-53.5 parent: 1 - - uid: 40402 + - uid: 15395 components: - type: Transform - pos: 27.5,26.5 + pos: 63.5,-54.5 parent: 1 - - uid: 40403 + - uid: 15472 components: - type: Transform - pos: 26.5,26.5 + pos: -133.5,-34.5 parent: 1 - - uid: 40404 + - uid: 15586 components: - type: Transform - pos: 25.5,26.5 + pos: -112.5,-21.5 parent: 1 - - uid: 40405 + - uid: 15593 components: - type: Transform - pos: 24.5,26.5 + pos: 8.5,-37.5 parent: 1 - - uid: 40406 + - uid: 15594 components: - type: Transform - pos: 23.5,26.5 + pos: 8.5,-38.5 parent: 1 - - uid: 40407 + - uid: 15600 components: - type: Transform - pos: 22.5,26.5 + pos: -117.5,-26.5 parent: 1 - - uid: 40408 + - uid: 15646 components: - type: Transform - pos: 21.5,26.5 + pos: -114.5,-26.5 parent: 1 - - uid: 40409 + - uid: 15808 components: - type: Transform - pos: 20.5,26.5 + pos: 55.5,-40.5 parent: 1 - - uid: 40410 + - uid: 15809 components: - type: Transform - pos: 19.5,26.5 + pos: 54.5,-40.5 parent: 1 - - uid: 40411 + - uid: 15810 components: - type: Transform - pos: 18.5,26.5 + pos: 53.5,-40.5 parent: 1 - - uid: 40412 + - uid: 15811 components: - type: Transform - pos: 17.5,26.5 + pos: 52.5,-40.5 parent: 1 - - uid: 40413 + - uid: 15812 components: - type: Transform - pos: 16.5,26.5 + pos: 51.5,-40.5 parent: 1 - - uid: 40414 + - uid: 15813 components: - type: Transform - pos: 15.5,26.5 + pos: 50.5,-40.5 parent: 1 - - uid: 40415 + - uid: 15814 components: - type: Transform - pos: 14.5,26.5 + pos: 49.5,-40.5 parent: 1 - - uid: 40416 + - uid: 15815 components: - type: Transform - pos: 13.5,26.5 + pos: 48.5,-40.5 parent: 1 - - uid: 40417 + - uid: 15816 components: - type: Transform - pos: 12.5,26.5 + pos: 47.5,-40.5 parent: 1 - - uid: 40418 + - uid: 15817 components: - type: Transform - pos: 11.5,26.5 + pos: 46.5,-40.5 parent: 1 - - uid: 40419 + - uid: 15818 components: - type: Transform - pos: 10.5,26.5 + pos: 45.5,-40.5 parent: 1 - - uid: 40420 + - uid: 15819 components: - type: Transform - pos: 9.5,26.5 + pos: 44.5,-40.5 parent: 1 - - uid: 40421 + - uid: 15820 components: - type: Transform - pos: 8.5,26.5 + pos: 43.5,-40.5 parent: 1 - - uid: 40422 + - uid: 15821 components: - type: Transform - pos: 7.5,26.5 + pos: 42.5,-40.5 parent: 1 - - uid: 40423 + - uid: 15822 components: - type: Transform - pos: 6.5,26.5 + pos: 41.5,-40.5 parent: 1 - - uid: 40424 + - uid: 15823 components: - type: Transform - pos: 5.5,26.5 + pos: 40.5,-40.5 parent: 1 - - uid: 40425 + - uid: 15824 components: - type: Transform - pos: 5.5,27.5 + pos: 39.5,-40.5 parent: 1 - - uid: 40426 + - uid: 15825 components: - type: Transform - pos: 5.5,28.5 + pos: 37.5,-39.5 parent: 1 - - uid: 40500 + - uid: 15826 components: - type: Transform - pos: 35.5,26.5 + pos: 36.5,-39.5 parent: 1 - - uid: 40501 + - uid: 15827 components: + - type: MetaData + name: Prison HV power cable - type: Transform - pos: 35.5,25.5 + pos: 38.5,-39.5 parent: 1 - - uid: 40502 + - uid: 15828 components: - type: Transform - pos: 35.5,24.5 + pos: 36.5,-41.5 parent: 1 - - uid: 40503 + - uid: 15829 components: - type: Transform - pos: 35.5,23.5 + pos: 37.5,-41.5 parent: 1 - - uid: 40504 + - uid: 15830 components: + - type: MetaData + name: Station HV power cable - type: Transform - pos: 35.5,22.5 + pos: 38.5,-41.5 parent: 1 - - uid: 40505 + - uid: 16240 components: - type: Transform - pos: 35.5,21.5 + pos: -112.5,-22.5 parent: 1 - - uid: 40506 + - uid: 16242 components: - type: Transform - pos: 35.5,20.5 + pos: -109.5,-25.5 parent: 1 - - uid: 40507 + - uid: 16252 components: - type: Transform - pos: 35.5,19.5 + pos: -110.5,7.5 parent: 1 - - uid: 40508 + - uid: 16253 components: - type: Transform - pos: 35.5,18.5 + pos: -111.5,8.5 parent: 1 - - uid: 40509 + - uid: 16258 components: - type: Transform - pos: 35.5,17.5 + pos: -109.5,7.5 parent: 1 - - uid: 40510 + - uid: 16260 components: - type: Transform - pos: 35.5,16.5 + pos: -108.5,7.5 parent: 1 - - uid: 40511 + - uid: 16269 components: - type: Transform - pos: 35.5,15.5 + pos: -107.5,7.5 parent: 1 - - uid: 40512 + - uid: 16507 components: - type: Transform - pos: 35.5,14.5 + pos: -122.5,-20.5 parent: 1 - - uid: 40513 + - uid: 16508 components: - type: Transform - pos: 35.5,13.5 + pos: -12.5,-47.5 parent: 1 - - uid: 40514 + - uid: 16509 components: - type: Transform - pos: 35.5,12.5 + pos: -13.5,-47.5 parent: 1 - - uid: 40515 + - uid: 16510 components: - type: Transform - pos: 35.5,11.5 + pos: -14.5,-47.5 parent: 1 - - uid: 40516 + - uid: 16511 components: - type: Transform - pos: 35.5,10.5 + pos: -15.5,-47.5 parent: 1 - - uid: 40517 + - uid: 16512 components: - type: Transform - pos: 35.5,9.5 + pos: -120.5,-20.5 parent: 1 - - uid: 40518 + - uid: 16537 components: - type: Transform - pos: 35.5,8.5 + pos: -118.5,-20.5 parent: 1 - - uid: 40519 + - uid: 16538 components: - type: Transform - pos: 35.5,7.5 + pos: -26.5,-56.5 parent: 1 - - uid: 40520 + - uid: 16539 components: - type: Transform - pos: 35.5,6.5 + pos: -27.5,-56.5 parent: 1 - - uid: 40521 + - uid: 16540 components: - type: Transform - pos: 35.5,5.5 + pos: -28.5,-56.5 parent: 1 - - uid: 40522 + - uid: 16541 components: - type: Transform - pos: 35.5,4.5 + pos: -29.5,-56.5 parent: 1 - - uid: 40523 + - uid: 16542 components: - type: Transform - pos: 35.5,3.5 + pos: -30.5,-56.5 parent: 1 - - uid: 40524 + - uid: 16543 components: - type: Transform - pos: 36.5,3.5 + pos: -30.5,-57.5 parent: 1 - - uid: 40525 + - uid: 16544 components: - type: Transform - pos: 37.5,3.5 + pos: -31.5,-57.5 parent: 1 - - uid: 40526 + - uid: 16545 components: - type: Transform - pos: 37.5,4.5 + pos: -31.5,-58.5 parent: 1 - - uid: 40527 + - uid: 16546 components: - type: Transform - pos: 37.5,5.5 + pos: -31.5,-59.5 parent: 1 - - uid: 40528 + - uid: 16547 components: - type: Transform - pos: 37.5,6.5 + pos: -31.5,-60.5 parent: 1 - - uid: 40529 + - uid: 16548 components: - type: Transform - pos: 37.5,7.5 + pos: -31.5,-61.5 parent: 1 - - uid: 40530 + - uid: 16549 components: - type: Transform - pos: 37.5,8.5 + pos: -31.5,-62.5 parent: 1 - - uid: 40531 + - uid: 16550 components: - type: Transform - pos: 37.5,9.5 + pos: -31.5,-63.5 parent: 1 - - uid: 40532 + - uid: 16551 components: - type: Transform - pos: 37.5,10.5 + pos: -31.5,-64.5 parent: 1 - - uid: 40533 + - uid: 16552 components: - type: Transform - pos: 37.5,11.5 + pos: -31.5,-65.5 parent: 1 - - uid: 40534 + - uid: 16553 components: - type: Transform - pos: 37.5,12.5 + pos: -31.5,-66.5 parent: 1 - - uid: 40535 + - uid: 16554 components: - type: Transform - pos: 37.5,13.5 + pos: -31.5,-67.5 parent: 1 - - uid: 40536 + - uid: 16555 components: - type: Transform - pos: 37.5,14.5 + pos: -31.5,-68.5 parent: 1 - - uid: 40537 + - uid: 16556 components: - type: Transform - pos: 37.5,15.5 + pos: -31.5,-69.5 parent: 1 - - uid: 40538 + - uid: 16557 components: - type: Transform - pos: 37.5,16.5 + pos: -31.5,-70.5 parent: 1 - - uid: 40539 + - uid: 16558 components: - type: Transform - pos: 37.5,17.5 + pos: -30.5,-70.5 parent: 1 - - uid: 40540 + - uid: 16559 components: - type: Transform - pos: 37.5,18.5 + pos: -29.5,-70.5 parent: 1 - - uid: 40541 + - uid: 16560 components: - type: Transform - pos: 37.5,19.5 + pos: -28.5,-70.5 parent: 1 - - uid: 40542 + - uid: 16561 components: - type: Transform - pos: 37.5,20.5 + pos: -28.5,-71.5 parent: 1 - - uid: 40543 + - uid: 16562 components: - type: Transform - pos: 37.5,21.5 + pos: -28.5,-72.5 parent: 1 - - uid: 40544 + - uid: 16563 components: - type: Transform - pos: 37.5,22.5 + pos: -28.5,-73.5 parent: 1 - - uid: 40545 + - uid: 16564 components: - type: Transform - pos: 37.5,23.5 + pos: -28.5,-74.5 parent: 1 - - uid: 40546 + - uid: 16597 components: - type: Transform - pos: 37.5,24.5 + pos: -74.5,-53.5 parent: 1 - - uid: 40547 + - uid: 16636 components: - type: Transform - pos: 37.5,25.5 + pos: -2.5,-47.5 parent: 1 - - uid: 40548 + - uid: 16637 components: - type: Transform - pos: 36.5,25.5 + pos: -3.5,-47.5 parent: 1 - - uid: 40549 + - uid: 16638 components: - type: Transform - pos: 35.5,2.5 + pos: -4.5,-47.5 parent: 1 - - uid: 40550 + - uid: 16639 components: - type: Transform - pos: 34.5,2.5 + pos: -5.5,-47.5 parent: 1 - - uid: 40551 + - uid: 16640 components: - type: Transform - pos: 33.5,2.5 + pos: -6.5,-47.5 parent: 1 - - uid: 40552 + - uid: 16641 components: - type: Transform - pos: 32.5,2.5 + pos: -7.5,-47.5 parent: 1 - - uid: 40553 + - uid: 16642 components: - type: Transform - pos: 34.5,1.5 + pos: -8.5,-47.5 parent: 1 - - uid: 40554 + - uid: 16643 components: - type: Transform - pos: 34.5,0.5 + pos: -9.5,-47.5 parent: 1 - - uid: 40555 + - uid: 16644 components: - type: Transform - pos: 33.5,0.5 + pos: -10.5,-47.5 parent: 1 - - uid: 40557 + - uid: 16645 components: - type: Transform - pos: 31.5,0.5 + pos: -11.5,-47.5 parent: 1 - - uid: 40614 + - uid: 16655 components: - type: Transform - pos: 43.5,31.5 + pos: -2.5,-46.5 parent: 1 - - uid: 40622 + - uid: 16656 components: - type: Transform - pos: 43.5,32.5 + pos: -2.5,-45.5 parent: 1 - - uid: 40623 + - uid: 16657 components: - type: Transform - pos: 43.5,33.5 + pos: -2.5,-44.5 parent: 1 - - uid: 40624 + - uid: 16658 components: - type: Transform - pos: 43.5,34.5 + pos: -2.5,-43.5 parent: 1 - - uid: 40625 + - uid: 16659 components: - type: Transform - pos: 41.5,33.5 + pos: -1.5,-43.5 parent: 1 - - uid: 40626 + - uid: 16660 components: - type: Transform - pos: 41.5,32.5 + pos: -0.5,-43.5 parent: 1 - - uid: 40627 + - uid: 16661 components: - type: Transform - pos: 41.5,31.5 + pos: 0.5,-43.5 parent: 1 - - uid: 40628 + - uid: 16662 components: - type: Transform - pos: 41.5,30.5 + pos: 1.5,-43.5 parent: 1 - - uid: 40629 + - uid: 16663 components: - type: Transform - pos: 41.5,29.5 + pos: 2.5,-43.5 parent: 1 - - uid: 40630 + - uid: 16664 components: - type: Transform - pos: 41.5,28.5 + pos: 3.5,-43.5 parent: 1 - - uid: 40631 + - uid: 16665 components: - type: Transform - pos: 41.5,27.5 + pos: 4.5,-43.5 parent: 1 - - uid: 40632 + - uid: 16666 components: - type: Transform - pos: 41.5,26.5 + pos: 5.5,-43.5 parent: 1 - - uid: 40633 + - uid: 16667 components: - type: Transform - pos: 41.5,25.5 + pos: 6.5,-43.5 parent: 1 - - uid: 40634 + - uid: 16668 components: - type: Transform - pos: 41.5,24.5 + pos: 7.5,-43.5 parent: 1 - - uid: 40635 + - uid: 16669 components: - type: Transform - pos: 41.5,23.5 + pos: 8.5,-43.5 parent: 1 - - uid: 40636 + - uid: 16670 components: - type: Transform - pos: 41.5,22.5 + pos: 9.5,-43.5 parent: 1 - - uid: 40637 + - uid: 16671 components: - type: Transform - pos: 41.5,21.5 + pos: 10.5,-43.5 parent: 1 - - uid: 40638 + - uid: 16672 components: - type: Transform - pos: 41.5,20.5 + pos: 10.5,-42.5 parent: 1 - - uid: 40639 + - uid: 16673 components: - type: Transform - pos: 41.5,19.5 + pos: 10.5,-41.5 parent: 1 - - uid: 40640 + - uid: 16674 components: - type: Transform - pos: 41.5,18.5 + pos: 10.5,-40.5 parent: 1 - - uid: 40641 + - uid: 16675 components: - type: Transform - pos: 41.5,17.5 + pos: 10.5,-39.5 parent: 1 - - uid: 40642 + - uid: 16676 components: - type: Transform - pos: 41.5,16.5 + pos: 10.5,-38.5 parent: 1 - - uid: 40643 + - uid: 16677 components: - type: Transform - pos: 41.5,15.5 + pos: 10.5,-37.5 parent: 1 - - uid: 40644 + - uid: 16678 components: - type: Transform - pos: 41.5,14.5 + pos: 10.5,-36.5 parent: 1 - - uid: 40645 + - uid: 16679 components: - type: Transform - pos: 41.5,13.5 + pos: 10.5,-35.5 parent: 1 - - uid: 40646 + - uid: 16680 components: - type: Transform - pos: 41.5,12.5 + pos: 10.5,-34.5 parent: 1 - - uid: 40647 + - uid: 16681 components: - type: Transform - pos: 41.5,11.5 + pos: 10.5,-33.5 parent: 1 - - uid: 40648 + - uid: 16682 components: - type: Transform - pos: 41.5,10.5 + pos: 10.5,-32.5 parent: 1 - - uid: 40649 + - uid: 16683 components: - type: Transform - pos: 41.5,9.5 + pos: 10.5,-31.5 parent: 1 - - uid: 40650 + - uid: 16684 components: - type: Transform - pos: 41.5,8.5 + pos: 10.5,-30.5 parent: 1 - - uid: 40651 + - uid: 16685 components: - type: Transform - pos: 41.5,7.5 + pos: 10.5,-29.5 parent: 1 - - uid: 40652 + - uid: 16686 components: - type: Transform - pos: 41.5,6.5 + pos: 11.5,-29.5 parent: 1 - - uid: 40653 + - uid: 16688 components: - type: Transform - pos: 41.5,5.5 + pos: 12.5,-29.5 parent: 1 - - uid: 40654 + - uid: 16689 components: - type: Transform - pos: 41.5,4.5 + pos: 13.5,-29.5 parent: 1 - - uid: 40655 + - uid: 16690 components: - type: Transform - pos: 41.5,3.5 + pos: 13.5,-28.5 parent: 1 - - uid: 40656 + - uid: 16691 components: - type: Transform - pos: 41.5,2.5 + pos: 13.5,-27.5 parent: 1 - - uid: 40657 + - uid: 16692 components: - type: Transform - pos: 41.5,1.5 + pos: 13.5,-26.5 parent: 1 - - uid: 40658 + - uid: 16693 components: - type: Transform - pos: 41.5,0.5 + pos: 14.5,-26.5 parent: 1 - - uid: 40659 + - uid: 16694 components: - type: Transform - pos: 41.5,-0.5 + pos: 14.5,-25.5 parent: 1 - - uid: 40660 + - uid: 16696 components: - type: Transform - pos: 41.5,-1.5 + pos: -31.5,-71.5 parent: 1 - - uid: 40877 + - uid: 16697 components: - type: Transform - pos: 42.5,-6.5 + pos: -32.5,-71.5 parent: 1 - - uid: 40878 + - uid: 16698 components: - type: Transform - pos: 42.5,-5.5 + pos: -33.5,-71.5 parent: 1 - - uid: 41268 + - uid: 16699 components: - type: Transform - pos: -137.5,-19.5 + pos: -34.5,-71.5 parent: 1 - - uid: 41269 + - uid: 16700 components: - type: Transform - pos: -138.5,-19.5 + pos: -34.5,-72.5 parent: 1 - - uid: 41270 + - uid: 16701 components: - type: Transform - pos: -139.5,-19.5 + pos: -34.5,-73.5 parent: 1 - - uid: 41271 + - uid: 16702 components: - type: Transform - pos: -140.5,-19.5 + pos: -34.5,-74.5 parent: 1 - - uid: 41272 + - uid: 16703 components: - type: Transform - pos: -141.5,-19.5 + pos: -35.5,-74.5 parent: 1 - - uid: 41273 + - uid: 16704 components: - type: Transform - pos: -142.5,-19.5 + pos: -36.5,-74.5 parent: 1 - - uid: 41274 + - uid: 16705 components: - type: Transform - pos: -143.5,-19.5 + pos: -37.5,-74.5 parent: 1 - - uid: 41275 + - uid: 16706 components: - type: Transform - pos: -144.5,-19.5 + pos: -38.5,-74.5 parent: 1 - - uid: 41276 + - uid: 16707 components: - type: Transform - pos: -145.5,-19.5 + pos: -39.5,-74.5 parent: 1 - - uid: 41277 + - uid: 16708 components: - type: Transform - pos: -146.5,-19.5 + pos: -40.5,-74.5 parent: 1 - - uid: 41278 + - uid: 16709 components: - type: Transform - pos: -147.5,-19.5 + pos: -41.5,-74.5 parent: 1 - - uid: 41279 + - uid: 16710 components: - type: Transform - pos: -148.5,-19.5 + pos: -42.5,-74.5 parent: 1 - - uid: 41280 + - uid: 16711 components: - type: Transform - pos: -149.5,-19.5 + pos: -43.5,-74.5 parent: 1 - - uid: 41281 + - uid: 16712 components: - type: Transform - pos: -150.5,-19.5 + pos: -44.5,-74.5 parent: 1 - - uid: 41282 + - uid: 16713 components: - type: Transform - pos: -151.5,-19.5 + pos: -45.5,-74.5 parent: 1 - - uid: 41283 + - uid: 16714 components: - type: Transform - pos: -152.5,-19.5 + pos: -46.5,-74.5 parent: 1 - - uid: 41287 + - uid: 16715 components: - type: Transform - pos: -151.5,-31.5 + pos: -47.5,-74.5 parent: 1 - - uid: 41288 + - uid: 16716 components: - type: Transform - pos: -151.5,-30.5 + pos: -48.5,-74.5 parent: 1 - - uid: 41289 + - uid: 16717 components: - type: Transform - pos: -152.5,-30.5 + pos: -49.5,-74.5 parent: 1 - - uid: 41290 + - uid: 16718 components: - type: Transform - pos: -152.5,-29.5 + pos: -50.5,-74.5 parent: 1 - - uid: 41381 + - uid: 16719 components: - type: Transform - pos: -91.5,-87.5 + pos: -51.5,-74.5 parent: 1 - - uid: 41382 + - uid: 16720 components: - type: Transform - pos: -91.5,-88.5 + pos: -52.5,-74.5 parent: 1 - - uid: 41383 + - uid: 16721 components: - type: Transform - pos: -92.5,-88.5 + pos: -53.5,-74.5 parent: 1 - - uid: 41886 + - uid: 16722 components: - type: Transform - pos: 22.5,8.5 + pos: -53.5,-73.5 parent: 1 - - uid: 41887 + - uid: 16723 components: - type: Transform - pos: 23.5,8.5 + pos: -53.5,-72.5 parent: 1 - - uid: 41888 + - uid: 16724 components: - type: Transform - pos: 21.5,8.5 + pos: -53.5,-71.5 parent: 1 - - uid: 42055 + - uid: 16725 components: - type: Transform - pos: -123.5,22.5 + pos: -53.5,-70.5 parent: 1 - - uid: 42056 + - uid: 16726 components: - type: Transform - pos: -123.5,23.5 + pos: -53.5,-69.5 parent: 1 - - uid: 42057 + - uid: 16727 components: - type: Transform - pos: -123.5,24.5 + pos: -53.5,-68.5 parent: 1 - - uid: 42058 + - uid: 16728 components: - type: Transform - pos: -123.5,25.5 + pos: -53.5,-67.5 parent: 1 - - uid: 42155 + - uid: 16729 components: - type: Transform - pos: -56.5,37.5 + pos: -53.5,-66.5 parent: 1 - - uid: 42156 + - uid: 16730 components: - type: Transform - pos: -56.5,38.5 + pos: -53.5,-65.5 parent: 1 - - uid: 42157 + - uid: 16731 components: - type: Transform - pos: -56.5,39.5 + pos: -54.5,-65.5 parent: 1 - - uid: 42158 + - uid: 16732 components: - type: Transform - pos: -56.5,40.5 + pos: -55.5,-65.5 parent: 1 - - uid: 42159 + - uid: 16733 components: - type: Transform - pos: -56.5,41.5 + pos: -56.5,-65.5 parent: 1 - - uid: 42160 + - uid: 16734 components: - type: Transform - pos: -56.5,42.5 + pos: -57.5,-65.5 parent: 1 -- proto: CableApcStack - entities: - - uid: 8848 + - uid: 16735 components: - type: Transform - pos: -99.68037,-1.3461936 + pos: -58.5,-65.5 parent: 1 - - uid: 9784 + - uid: 16736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.89818,-31.395166 + pos: -59.5,-65.5 parent: 1 - - uid: 12255 + - uid: 16737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.989914,-41.351067 + pos: -60.5,-65.5 parent: 1 - - uid: 19431 + - uid: 16738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.45831,-3.414914 + pos: -61.5,-65.5 parent: 1 - - uid: 34110 + - uid: 16739 components: - type: Transform - pos: -94.48165,-42.474792 + pos: -62.5,-65.5 parent: 1 - - uid: 34290 + - uid: 16740 components: - type: Transform - pos: -139.6468,-35.37442 + pos: -63.5,-65.5 parent: 1 -- proto: CableApcStack1 - entities: - - uid: 36681 + - uid: 16741 components: - type: Transform - pos: -90.42774,-78.24702 + pos: -63.5,-64.5 parent: 1 - - uid: 36682 + - uid: 16742 components: - type: Transform - pos: -89.81525,-77.79671 + pos: -63.5,-63.5 parent: 1 -- proto: CableApcStack10 - entities: - - uid: 36402 + - uid: 16743 components: - type: Transform - pos: -135.48181,-49.51148 + pos: -63.5,-62.5 parent: 1 -- proto: CableHV - entities: - - uid: 1119 + - uid: 16744 components: - type: Transform - pos: 23.5,8.5 + pos: -63.5,-61.5 parent: 1 - - uid: 1120 + - uid: 16745 components: - type: Transform - pos: 24.5,6.5 + pos: -63.5,-60.5 parent: 1 - - uid: 1121 + - uid: 16746 components: - type: Transform - pos: 24.5,8.5 + pos: -63.5,-59.5 parent: 1 - - uid: 1122 + - uid: 16747 components: - type: Transform - pos: 24.5,5.5 + pos: -63.5,-58.5 parent: 1 - - uid: 1127 + - uid: 16748 components: - type: Transform - pos: 22.5,5.5 + pos: -63.5,-57.5 parent: 1 - - uid: 1128 + - uid: 16749 components: - type: Transform - pos: 24.5,7.5 + pos: -63.5,-56.5 parent: 1 - - uid: 1129 + - uid: 16750 components: - type: Transform - pos: 16.5,22.5 + pos: -64.5,-56.5 parent: 1 - - uid: 1135 + - uid: 16751 components: - type: Transform - pos: -75.5,-39.5 + pos: -65.5,-56.5 parent: 1 - - uid: 2400 + - uid: 16752 components: - type: Transform - pos: -105.5,8.5 + pos: -66.5,-56.5 parent: 1 - - uid: 4249 + - uid: 16753 components: - type: Transform - pos: -63.5,-39.5 + pos: -67.5,-56.5 parent: 1 - - uid: 4281 + - uid: 16754 components: - type: Transform - pos: -63.5,-40.5 + pos: -68.5,-56.5 parent: 1 - - uid: 4657 + - uid: 16755 components: - type: Transform - pos: -65.5,-37.5 + pos: -69.5,-56.5 parent: 1 - - uid: 4660 + - uid: 16756 components: - type: Transform - pos: -64.5,-35.5 + pos: -69.5,-55.5 parent: 1 - - uid: 4669 + - uid: 16757 components: - type: Transform - pos: -65.5,-36.5 + pos: -69.5,-54.5 parent: 1 - - uid: 4670 + - uid: 16758 components: - type: Transform - pos: -65.5,-35.5 + pos: -70.5,-54.5 parent: 1 - - uid: 4684 + - uid: 16759 components: - type: Transform - pos: -85.5,-38.5 + pos: -71.5,-54.5 parent: 1 - - uid: 4732 + - uid: 16760 components: - type: Transform - pos: -85.5,-37.5 + pos: -72.5,-54.5 parent: 1 - - uid: 4733 + - uid: 16761 components: - type: Transform - pos: -85.5,-39.5 + pos: -73.5,-54.5 parent: 1 - - uid: 4775 + - uid: 16762 components: - type: Transform - pos: -82.5,-39.5 + pos: -74.5,-54.5 parent: 1 - - uid: 4779 + - uid: 16763 components: - type: Transform - pos: -84.5,-39.5 + pos: -74.5,-52.5 parent: 1 - - uid: 5121 + - uid: 16764 components: - type: Transform - pos: -106.5,-20.5 + pos: -74.5,-51.5 parent: 1 - - uid: 5364 + - uid: 16765 components: - type: Transform - pos: -110.5,-20.5 + pos: -74.5,-50.5 parent: 1 - - uid: 5838 + - uid: 16766 components: - type: Transform - pos: -115.5,-26.5 + pos: -74.5,-49.5 parent: 1 - - uid: 5840 + - uid: 16767 components: - type: Transform - pos: -109.5,-20.5 + pos: -74.5,-48.5 parent: 1 - - uid: 5853 + - uid: 16768 components: - type: Transform - pos: -118.5,-26.5 + pos: -74.5,-47.5 parent: 1 - - uid: 5854 + - uid: 16769 components: - type: Transform - pos: -116.5,-26.5 + pos: -74.5,-46.5 parent: 1 - - uid: 5856 + - uid: 16770 components: - type: Transform - pos: -109.5,-26.5 + pos: -74.5,-45.5 parent: 1 - - uid: 5860 + - uid: 16771 components: - type: Transform - pos: -111.5,-22.5 + pos: -74.5,-44.5 parent: 1 - - uid: 5861 + - uid: 16772 components: - type: Transform - pos: -109.5,-23.5 + pos: -74.5,-43.5 parent: 1 - - uid: 5862 + - uid: 16773 components: - type: Transform - pos: -109.5,-24.5 + pos: -74.5,-42.5 parent: 1 - - uid: 5868 + - uid: 16774 components: - type: Transform - pos: -110.5,-22.5 + pos: -74.5,-41.5 parent: 1 - - uid: 5870 + - uid: 16775 components: - type: Transform - pos: -109.5,-22.5 + pos: -74.5,-40.5 parent: 1 - - uid: 5942 + - uid: 16776 components: - type: Transform - pos: -106.5,9.5 + pos: -74.5,-39.5 parent: 1 - - uid: 5943 + - uid: 16777 components: - type: Transform - pos: -106.5,10.5 + pos: -74.5,-38.5 parent: 1 - - uid: 5944 + - uid: 16778 components: - type: Transform - pos: -106.5,11.5 + pos: -73.5,-38.5 parent: 1 - - uid: 5945 + - uid: 16779 components: - type: Transform - pos: -106.5,12.5 + pos: -72.5,-38.5 parent: 1 - - uid: 5998 + - uid: 16780 components: - type: Transform - pos: -111.5,-9.5 + pos: -71.5,-38.5 parent: 1 - - uid: 6000 + - uid: 16781 components: - type: Transform - pos: -108.5,-11.5 + pos: -70.5,-38.5 parent: 1 - - uid: 6003 + - uid: 16782 components: - type: Transform - pos: -105.5,-11.5 + pos: -69.5,-38.5 parent: 1 - - uid: 6188 + - uid: 16783 components: - type: Transform - pos: 16.5,21.5 + pos: -68.5,-38.5 parent: 1 - - uid: 8456 + - uid: 16784 components: - type: Transform - pos: 33.5,-35.5 + pos: -67.5,-38.5 parent: 1 - - uid: 8503 + - uid: 16785 components: - type: Transform - pos: -15.5,-49.5 + pos: -66.5,-38.5 parent: 1 - - uid: 8504 + - uid: 16786 components: - type: Transform - pos: -15.5,-48.5 + pos: -65.5,-38.5 parent: 1 - - uid: 8899 + - uid: 16787 components: - type: Transform - pos: -107.5,-20.5 + pos: -64.5,-38.5 parent: 1 - - uid: 8934 + - uid: 16788 components: - type: Transform - pos: -110.5,-26.5 + pos: -63.5,-38.5 parent: 1 - - uid: 8948 + - uid: 16789 components: - type: Transform - pos: -112.5,-26.5 + pos: -62.5,-38.5 parent: 1 - - uid: 8965 + - uid: 16790 components: - type: Transform - pos: -105.5,-19.5 + pos: -61.5,-38.5 parent: 1 - - uid: 8993 + - uid: 16791 components: - type: Transform - pos: -105.5,-18.5 + pos: -60.5,-38.5 parent: 1 - - uid: 9003 + - uid: 16800 components: - type: Transform - pos: -105.5,-17.5 + pos: -76.5,-39.5 parent: 1 - - uid: 9024 + - uid: 16801 components: - type: Transform - pos: -111.5,-21.5 + pos: -77.5,-39.5 parent: 1 - - uid: 9031 + - uid: 16812 components: - type: Transform - pos: -111.5,-20.5 + pos: -83.5,-39.5 parent: 1 - - uid: 9032 + - uid: 16813 components: - type: Transform - pos: -111.5,-26.5 + pos: -85.5,-35.5 parent: 1 - - uid: 9033 + - uid: 16814 components: - type: Transform - pos: -112.5,-20.5 + pos: -86.5,-35.5 parent: 1 - - uid: 9034 + - uid: 16815 components: - type: Transform - pos: -120.5,-26.5 + pos: -87.5,-35.5 parent: 1 - - uid: 9159 + - uid: 16816 components: - type: Transform - pos: -81.5,-39.5 + pos: -88.5,-35.5 parent: 1 - - uid: 9567 + - uid: 16820 components: - type: Transform - pos: -105.5,-16.5 + pos: -117.5,-19.5 parent: 1 - - uid: 9570 + - uid: 16821 components: - type: Transform - pos: -105.5,-15.5 + pos: -88.5,-34.5 parent: 1 - - uid: 9671 + - uid: 16822 components: - type: Transform - pos: -105.5,-14.5 + pos: -88.5,-33.5 parent: 1 - - uid: 9859 + - uid: 16823 components: - type: Transform - pos: -62.5,-40.5 + pos: -89.5,-33.5 parent: 1 - - uid: 10921 + - uid: 16824 components: - type: Transform - pos: 33.5,-36.5 + pos: -90.5,-33.5 parent: 1 - - uid: 10922 + - uid: 16825 components: - type: Transform - pos: 33.5,-37.5 + pos: -91.5,-33.5 parent: 1 - - uid: 10923 + - uid: 16826 components: - type: Transform - pos: 33.5,-38.5 + pos: -91.5,-32.5 parent: 1 - - uid: 10924 + - uid: 16827 components: - type: Transform - pos: 33.5,-39.5 + pos: -91.5,-31.5 parent: 1 - - uid: 10925 + - uid: 16828 components: - type: Transform - pos: 33.5,-41.5 + pos: -91.5,-30.5 parent: 1 - - uid: 10926 + - uid: 16829 components: - type: Transform - pos: 33.5,-42.5 + pos: -91.5,-29.5 parent: 1 - - uid: 10927 + - uid: 16830 components: - type: Transform - pos: 33.5,-43.5 + pos: -92.5,-29.5 parent: 1 - - uid: 10930 + - uid: 16831 components: - type: Transform - pos: 34.5,-39.5 + pos: -93.5,-29.5 parent: 1 - - uid: 10931 + - uid: 16832 components: - type: Transform - pos: 35.5,-39.5 + pos: -94.5,-29.5 parent: 1 - - uid: 10932 + - uid: 16833 components: - type: Transform - pos: 34.5,-41.5 + pos: -95.5,-29.5 parent: 1 - - uid: 10933 + - uid: 16834 components: - type: Transform - pos: 35.5,-41.5 + pos: -96.5,-29.5 parent: 1 - - uid: 11304 + - uid: 16835 components: - type: Transform - pos: -25.5,19.5 + pos: -96.5,-28.5 parent: 1 - - uid: 11305 + - uid: 16836 components: - type: Transform - pos: -25.5,20.5 + pos: -96.5,-27.5 parent: 1 - - uid: 11379 + - uid: 16837 components: - type: Transform - pos: 16.5,23.5 + pos: -96.5,-26.5 parent: 1 - - uid: 11381 + - uid: 16838 components: - type: Transform - pos: 16.5,20.5 + pos: -96.5,-25.5 parent: 1 - - uid: 11382 + - uid: 16839 components: - type: Transform - pos: 16.5,19.5 + pos: -96.5,-24.5 parent: 1 - - uid: 11738 + - uid: 16840 components: - type: Transform - pos: -105.5,-13.5 + pos: -96.5,-23.5 parent: 1 - - uid: 11758 + - uid: 16841 components: - type: Transform - pos: -110.5,-0.5 + pos: -96.5,-22.5 parent: 1 - - uid: 11759 + - uid: 16842 components: - type: Transform - pos: -109.5,-0.5 + pos: -96.5,-21.5 parent: 1 - - uid: 11760 + - uid: 16843 components: - type: Transform - pos: -110.5,0.5 + pos: -117.5,-17.5 parent: 1 - - uid: 11761 + - uid: 16844 components: - type: Transform - pos: -110.5,1.5 + pos: -117.5,-15.5 parent: 1 - - uid: 11762 + - uid: 16845 components: - type: Transform - pos: -110.5,2.5 + pos: -117.5,-13.5 parent: 1 - - uid: 11763 + - uid: 16851 components: - type: Transform - pos: -108.5,-0.5 + pos: -108.5,-20.5 parent: 1 - - uid: 11764 + - uid: 16860 components: - type: Transform - pos: -108.5,0.5 + pos: -117.5,-12.5 parent: 1 - - uid: 13195 + - uid: 16865 components: - type: Transform - pos: -105.5,-12.5 + pos: -117.5,-14.5 parent: 1 - - uid: 13216 + - uid: 16866 components: - type: Transform - pos: -110.5,-21.5 + pos: -106.5,-7.5 parent: 1 - - uid: 13217 + - uid: 16867 components: - type: Transform - pos: -113.5,-26.5 + pos: -106.5,-6.5 parent: 1 - - uid: 13223 + - uid: 16868 components: - type: Transform - pos: -119.5,-26.5 + pos: -106.5,-5.5 parent: 1 - - uid: 13293 + - uid: 16869 components: - type: Transform - pos: -107.5,-11.5 + pos: -106.5,-4.5 parent: 1 - - uid: 13566 + - uid: 16870 components: - type: Transform - pos: -111.5,-11.5 + pos: -106.5,-3.5 parent: 1 - - uid: 14177 + - uid: 16871 components: - type: Transform - pos: 73.5,-57.5 + pos: -105.5,-3.5 parent: 1 - - uid: 14178 + - uid: 16873 components: - type: Transform - pos: 73.5,-39.5 + pos: -107.5,-7.5 parent: 1 - - uid: 14179 + - uid: 16874 components: - type: Transform - pos: 74.5,-39.5 + pos: -108.5,-7.5 parent: 1 - - uid: 14180 + - uid: 16875 components: - type: Transform - pos: 75.5,-39.5 + pos: -109.5,-7.5 parent: 1 - - uid: 14181 + - uid: 16876 components: - type: Transform - pos: 76.5,-39.5 + pos: -110.5,-7.5 parent: 1 - - uid: 14182 + - uid: 16877 components: - type: Transform - pos: 77.5,-39.5 + pos: -111.5,-7.5 parent: 1 - - uid: 14183 + - uid: 16878 components: - type: Transform - pos: 78.5,-39.5 + pos: -112.5,-7.5 parent: 1 - - uid: 14184 + - uid: 16879 components: - type: Transform - pos: 79.5,-39.5 + pos: -113.5,-7.5 parent: 1 - - uid: 14185 + - uid: 16880 components: - type: Transform - pos: 80.5,-39.5 + pos: -114.5,-7.5 parent: 1 - - uid: 14186 + - uid: 16881 components: - type: Transform - pos: 81.5,-39.5 + pos: -115.5,-7.5 parent: 1 - - uid: 14187 + - uid: 16882 components: - type: Transform - pos: 81.5,-38.5 + pos: -116.5,-7.5 parent: 1 - - uid: 14188 + - uid: 16883 components: - type: Transform - pos: 81.5,-37.5 + pos: -117.5,-7.5 parent: 1 - - uid: 14189 + - uid: 16884 components: - type: Transform - pos: 82.5,-37.5 + pos: -118.5,-7.5 parent: 1 - - uid: 14190 + - uid: 16885 components: - type: Transform - pos: 83.5,-37.5 + pos: -119.5,-7.5 parent: 1 - - uid: 14191 + - uid: 16886 components: - type: Transform - pos: 84.5,-37.5 + pos: -120.5,-7.5 parent: 1 - - uid: 14192 + - uid: 16887 components: - type: Transform - pos: 85.5,-37.5 + pos: -121.5,-7.5 parent: 1 - - uid: 14193 + - uid: 16888 components: - type: Transform - pos: 86.5,-37.5 + pos: -122.5,-7.5 parent: 1 - - uid: 14194 + - uid: 16889 components: - type: Transform - pos: 87.5,-37.5 + pos: -122.5,-6.5 parent: 1 - - uid: 14195 + - uid: 16890 components: - type: Transform - pos: 87.5,-38.5 + pos: -122.5,-5.5 parent: 1 - - uid: 14196 + - uid: 16891 components: - type: Transform - pos: 87.5,-39.5 + pos: -122.5,-4.5 parent: 1 - - uid: 14197 + - uid: 16892 components: - type: Transform - pos: 87.5,-40.5 + pos: -122.5,-3.5 parent: 1 - - uid: 14198 + - uid: 16893 components: - type: Transform - pos: 87.5,-41.5 + pos: -122.5,-2.5 parent: 1 - - uid: 14199 + - uid: 16894 components: - type: Transform - pos: 87.5,-42.5 + pos: -122.5,-1.5 parent: 1 - - uid: 14200 + - uid: 16895 components: - type: Transform - pos: 87.5,-43.5 + pos: -122.5,-0.5 parent: 1 - - uid: 14201 + - uid: 16896 components: - type: Transform - pos: 87.5,-44.5 + pos: -122.5,0.5 parent: 1 - - uid: 14202 + - uid: 16897 components: - type: Transform - pos: 87.5,-45.5 + pos: -122.5,1.5 parent: 1 - - uid: 14203 + - uid: 16898 components: - type: Transform - pos: 87.5,-46.5 + pos: -122.5,2.5 parent: 1 - - uid: 14204 + - uid: 16899 components: - type: Transform - pos: 87.5,-47.5 + pos: -122.5,3.5 parent: 1 - - uid: 14205 + - uid: 16900 components: - type: Transform - pos: 87.5,-48.5 + pos: -122.5,4.5 parent: 1 - - uid: 14206 + - uid: 16901 components: - type: Transform - pos: 87.5,-49.5 + pos: -122.5,5.5 parent: 1 - - uid: 14207 + - uid: 16902 components: - type: Transform - pos: 87.5,-50.5 + pos: -122.5,6.5 parent: 1 - - uid: 14208 + - uid: 16903 components: - type: Transform - pos: 87.5,-51.5 + pos: -122.5,7.5 parent: 1 - - uid: 14209 + - uid: 16904 components: - type: Transform - pos: 87.5,-52.5 + pos: -122.5,8.5 parent: 1 - - uid: 14210 + - uid: 16905 components: - type: Transform - pos: 87.5,-53.5 + pos: -122.5,9.5 parent: 1 - - uid: 14211 + - uid: 16906 components: - type: Transform - pos: 87.5,-54.5 + pos: -122.5,10.5 parent: 1 - - uid: 14212 + - uid: 16907 components: - type: Transform - pos: 87.5,-55.5 + pos: -122.5,11.5 parent: 1 - - uid: 14213 + - uid: 16908 components: - type: Transform - pos: 87.5,-56.5 + pos: -122.5,12.5 parent: 1 - - uid: 14214 + - uid: 16909 components: - type: Transform - pos: 87.5,-57.5 + pos: -122.5,13.5 parent: 1 - - uid: 14215 + - uid: 16910 components: - type: Transform - pos: 86.5,-57.5 + pos: -122.5,14.5 parent: 1 - - uid: 14216 + - uid: 16911 components: - type: Transform - pos: 85.5,-57.5 + pos: -122.5,15.5 parent: 1 - - uid: 14217 + - uid: 16912 components: - type: Transform - pos: 84.5,-57.5 + pos: -122.5,16.5 parent: 1 - - uid: 14218 + - uid: 16913 components: - type: Transform - pos: 83.5,-57.5 + pos: -122.5,17.5 parent: 1 - - uid: 14219 + - uid: 16914 components: - type: Transform - pos: 82.5,-57.5 + pos: -122.5,18.5 parent: 1 - - uid: 14220 + - uid: 16915 components: - type: Transform - pos: 81.5,-57.5 + pos: -122.5,19.5 parent: 1 - - uid: 14221 + - uid: 16916 components: - type: Transform - pos: 81.5,-56.5 + pos: -122.5,20.5 parent: 1 - - uid: 14222 + - uid: 16917 components: - type: Transform - pos: 81.5,-55.5 + pos: -122.5,21.5 parent: 1 - - uid: 14223 + - uid: 16918 components: - type: Transform - pos: 80.5,-55.5 + pos: -122.5,22.5 parent: 1 - - uid: 14224 + - uid: 16919 components: - type: Transform - pos: 79.5,-55.5 + pos: -121.5,22.5 parent: 1 - - uid: 14225 + - uid: 16920 components: - type: Transform - pos: 78.5,-55.5 + pos: -120.5,22.5 parent: 1 - - uid: 14226 + - uid: 16921 components: - type: Transform - pos: 77.5,-55.5 + pos: -119.5,22.5 parent: 1 - - uid: 14227 + - uid: 16922 components: - type: Transform - pos: 76.5,-55.5 + pos: -118.5,22.5 parent: 1 - - uid: 14228 + - uid: 16923 components: - type: Transform - pos: 75.5,-55.5 + pos: -117.5,22.5 parent: 1 - - uid: 14229 + - uid: 16924 components: - type: Transform - pos: 74.5,-55.5 + pos: -116.5,22.5 parent: 1 - - uid: 14230 + - uid: 16925 components: - type: Transform - pos: 73.5,-55.5 + pos: -115.5,22.5 parent: 1 - - uid: 14231 + - uid: 16926 components: - type: Transform - pos: 73.5,-56.5 + pos: -114.5,22.5 parent: 1 - - uid: 14232 + - uid: 16927 components: - type: Transform - pos: 72.5,-57.5 + pos: -113.5,22.5 parent: 1 - - uid: 14233 + - uid: 16928 components: - type: Transform - pos: 71.5,-57.5 + pos: -112.5,22.5 parent: 1 - - uid: 14234 + - uid: 16929 components: - type: Transform - pos: 70.5,-57.5 + pos: -111.5,22.5 parent: 1 - - uid: 14235 + - uid: 16930 components: - type: Transform - pos: 69.5,-57.5 + pos: -110.5,22.5 parent: 1 - - uid: 14236 + - uid: 16931 components: - type: Transform - pos: 68.5,-57.5 + pos: -109.5,22.5 parent: 1 - - uid: 14237 + - uid: 16932 components: - type: Transform - pos: 67.5,-57.5 + pos: -108.5,22.5 parent: 1 - - uid: 14238 + - uid: 16933 components: - type: Transform - pos: 66.5,-57.5 + pos: -107.5,22.5 parent: 1 - - uid: 14239 + - uid: 16934 components: - type: Transform - pos: 65.5,-57.5 + pos: -106.5,22.5 parent: 1 - - uid: 14240 + - uid: 16935 components: - type: Transform - pos: 64.5,-57.5 + pos: -105.5,22.5 parent: 1 - - uid: 14242 + - uid: 16936 components: - type: Transform - pos: 63.5,-57.5 + pos: -104.5,22.5 parent: 1 - - uid: 14243 + - uid: 16937 components: - type: Transform - pos: 63.5,-56.5 + pos: -103.5,22.5 parent: 1 - - uid: 14244 + - uid: 16938 components: - type: Transform - pos: 63.5,-55.5 + pos: -102.5,22.5 parent: 1 - - uid: 14245 + - uid: 16939 components: - type: Transform - pos: 62.5,-55.5 + pos: -101.5,22.5 parent: 1 - - uid: 14246 + - uid: 16940 components: - type: Transform - pos: 61.5,-55.5 + pos: -100.5,22.5 parent: 1 - - uid: 14247 + - uid: 16941 components: - type: Transform - pos: 61.5,-56.5 + pos: -99.5,22.5 parent: 1 - - uid: 14248 + - uid: 16942 components: - type: Transform - pos: 60.5,-56.5 + pos: -98.5,22.5 parent: 1 - - uid: 14249 + - uid: 16943 components: - type: Transform - pos: 59.5,-56.5 + pos: -98.5,23.5 parent: 1 - - uid: 14250 + - uid: 16944 components: - type: Transform - pos: 59.5,-55.5 + pos: -98.5,24.5 parent: 1 - - uid: 14251 + - uid: 16945 components: - type: Transform - pos: 59.5,-54.5 + pos: -98.5,25.5 parent: 1 - - uid: 14252 + - uid: 16946 components: - type: Transform - pos: 73.5,-38.5 + pos: -98.5,4.5 parent: 1 - - uid: 14253 + - uid: 16947 components: - type: Transform - pos: 58.5,-54.5 + pos: -98.5,5.5 parent: 1 - - uid: 14254 + - uid: 16948 components: - type: Transform - pos: 57.5,-54.5 + pos: -98.5,6.5 parent: 1 - - uid: 14255 + - uid: 16949 components: - type: Transform - pos: 57.5,-53.5 + pos: -98.5,7.5 parent: 1 - - uid: 14256 + - uid: 16950 components: - type: Transform - pos: 57.5,-52.5 + pos: -98.5,8.5 parent: 1 - - uid: 14257 + - uid: 16951 components: - type: Transform - pos: 57.5,-51.5 + pos: -98.5,9.5 parent: 1 - - uid: 14674 + - uid: 16952 components: - type: Transform - pos: -135.5,-37.5 + pos: -98.5,10.5 parent: 1 - - uid: 14675 + - uid: 16953 components: - type: Transform - pos: 57.5,-50.5 + pos: -98.5,11.5 parent: 1 - - uid: 14677 + - uid: 16954 components: - type: Transform - pos: -135.5,-34.5 + pos: -98.5,12.5 parent: 1 - - uid: 14679 + - uid: 16955 components: - type: Transform - pos: -133.5,-32.5 + pos: -98.5,13.5 parent: 1 - - uid: 14965 + - uid: 16956 components: - type: Transform - pos: 57.5,-49.5 + pos: -98.5,14.5 parent: 1 - - uid: 14966 + - uid: 16957 components: - type: Transform - pos: 58.5,-49.5 + pos: -98.5,15.5 parent: 1 - - uid: 14971 + - uid: 16958 components: - type: Transform - pos: 59.5,-49.5 + pos: -98.5,16.5 parent: 1 - - uid: 14973 + - uid: 16959 components: - type: Transform - pos: 18.5,16.5 + pos: -98.5,17.5 parent: 1 - - uid: 14974 + - uid: 16960 components: - type: Transform - pos: 18.5,17.5 + pos: -98.5,18.5 parent: 1 - - uid: 14975 + - uid: 16961 components: - type: Transform - pos: 18.5,18.5 + pos: -98.5,19.5 parent: 1 - - uid: 14976 + - uid: 16962 components: - type: Transform - pos: 17.5,18.5 + pos: -98.5,20.5 parent: 1 - - uid: 14977 + - uid: 16963 components: - type: Transform - pos: 16.5,18.5 + pos: -98.5,21.5 parent: 1 - - uid: 14978 + - uid: 16966 components: - type: Transform - pos: 15.5,18.5 + pos: -99.5,25.5 parent: 1 - - uid: 14979 + - uid: 16967 components: - type: Transform - pos: 15.5,17.5 + pos: -97.5,25.5 parent: 1 - - uid: 14980 + - uid: 16968 components: - type: Transform - pos: 15.5,16.5 + pos: -97.5,21.5 parent: 1 - - uid: 14984 + - uid: 16969 components: - type: Transform - pos: 56.5,-49.5 + pos: -96.5,21.5 parent: 1 - - uid: 14985 + - uid: 16970 components: - type: Transform - pos: 56.5,-48.5 + pos: -95.5,21.5 parent: 1 - - uid: 15067 + - uid: 16971 components: - type: Transform - pos: -107.5,8.5 + pos: -94.5,21.5 parent: 1 - - uid: 15171 + - uid: 16972 components: - type: Transform - pos: 56.5,-47.5 + pos: -93.5,21.5 parent: 1 - - uid: 15172 + - uid: 16973 components: - type: Transform - pos: 56.5,-46.5 + pos: -92.5,21.5 parent: 1 - - uid: 15173 + - uid: 16974 components: - type: Transform - pos: 56.5,-45.5 + pos: -91.5,21.5 parent: 1 - - uid: 15174 + - uid: 16975 components: - type: Transform - pos: 56.5,-44.5 + pos: -90.5,21.5 parent: 1 - - uid: 15176 + - uid: 16976 components: - type: Transform - pos: 56.5,-43.5 + pos: -89.5,21.5 parent: 1 - - uid: 15177 + - uid: 16977 components: - type: Transform - pos: 56.5,-42.5 + pos: -88.5,21.5 parent: 1 - - uid: 15206 + - uid: 16978 components: - type: Transform - pos: 56.5,-41.5 + pos: -87.5,21.5 parent: 1 - - uid: 15210 + - uid: 16979 components: - type: Transform - pos: 56.5,-40.5 + pos: -86.5,21.5 parent: 1 - - uid: 15225 + - uid: 16980 components: - type: Transform - pos: 57.5,-46.5 + pos: -85.5,21.5 parent: 1 - - uid: 15247 + - uid: 16981 components: - type: Transform - pos: 58.5,-46.5 + pos: -84.5,21.5 parent: 1 - - uid: 15249 + - uid: 16982 components: - type: Transform - pos: 59.5,-46.5 + pos: -83.5,21.5 parent: 1 - - uid: 15256 + - uid: 16983 components: - type: Transform - pos: 60.5,-46.5 + pos: -82.5,21.5 parent: 1 - - uid: 15259 + - uid: 16984 components: - type: Transform - pos: 60.5,-45.5 + pos: -81.5,21.5 parent: 1 - - uid: 15265 + - uid: 16985 components: - type: Transform - pos: 60.5,-47.5 + pos: -80.5,21.5 parent: 1 - - uid: 15270 + - uid: 16986 components: - type: Transform - pos: 73.5,-37.5 + pos: -79.5,21.5 parent: 1 - - uid: 15273 + - uid: 16987 components: - type: Transform - pos: 72.5,-37.5 + pos: -78.5,21.5 parent: 1 - - uid: 15274 + - uid: 16988 components: - type: Transform - pos: 71.5,-37.5 + pos: -77.5,21.5 parent: 1 - - uid: 15275 + - uid: 16989 components: - type: Transform - pos: 70.5,-37.5 + pos: -76.5,21.5 parent: 1 - - uid: 15276 + - uid: 16990 components: - type: Transform - pos: 69.5,-37.5 + pos: -75.5,21.5 parent: 1 - - uid: 15278 + - uid: 16991 components: - type: Transform - pos: 68.5,-37.5 + pos: -74.5,21.5 parent: 1 - - uid: 15287 + - uid: 16992 components: - type: Transform - pos: 67.5,-37.5 + pos: -74.5,20.5 parent: 1 - - uid: 15291 + - uid: 16993 components: - type: Transform - pos: 66.5,-37.5 + pos: -74.5,19.5 parent: 1 - - uid: 15297 + - uid: 16994 components: - type: Transform - pos: 65.5,-37.5 + pos: -74.5,18.5 parent: 1 - - uid: 15299 + - uid: 16995 components: - type: Transform - pos: 64.5,-37.5 + pos: -74.5,17.5 parent: 1 - - uid: 15300 + - uid: 16996 components: - type: Transform - pos: 63.5,-37.5 + pos: -74.5,16.5 parent: 1 - - uid: 15307 + - uid: 16997 components: - type: Transform - pos: 63.5,-38.5 + pos: -74.5,15.5 parent: 1 - - uid: 15311 + - uid: 16998 components: - type: Transform - pos: 63.5,-39.5 + pos: -74.5,14.5 parent: 1 - - uid: 15314 + - uid: 16999 components: - type: Transform - pos: 63.5,-40.5 + pos: -74.5,13.5 parent: 1 - - uid: 15322 + - uid: 17000 components: - type: Transform - pos: 63.5,-41.5 + pos: -74.5,12.5 parent: 1 - - uid: 15324 + - uid: 17001 components: - type: Transform - pos: 63.5,-42.5 + pos: -74.5,11.5 parent: 1 - - uid: 15325 + - uid: 17002 components: - type: Transform - pos: 63.5,-43.5 + pos: -74.5,10.5 parent: 1 - - uid: 15328 + - uid: 17003 components: - type: Transform - pos: 63.5,-44.5 + pos: -74.5,9.5 parent: 1 - - uid: 15336 + - uid: 17004 components: - type: Transform - pos: 63.5,-45.5 + pos: -73.5,9.5 parent: 1 - - uid: 15340 + - uid: 17005 components: - type: Transform - pos: 63.5,-46.5 + pos: -72.5,9.5 parent: 1 - - uid: 15342 + - uid: 17006 components: - type: Transform - pos: 63.5,-47.5 + pos: -71.5,9.5 parent: 1 - - uid: 15345 + - uid: 17007 components: - type: Transform - pos: 63.5,-48.5 + pos: -70.5,9.5 parent: 1 - - uid: 15367 + - uid: 17008 components: - type: Transform - pos: 63.5,-49.5 + pos: -69.5,9.5 parent: 1 - - uid: 15374 + - uid: 17009 components: - type: Transform - pos: 63.5,-50.5 + pos: -68.5,9.5 parent: 1 - - uid: 15391 + - uid: 17010 components: - type: Transform - pos: 63.5,-51.5 + pos: -67.5,9.5 parent: 1 - - uid: 15393 + - uid: 17011 components: - type: Transform - pos: 63.5,-52.5 + pos: -66.5,9.5 parent: 1 - - uid: 15394 + - uid: 17012 components: - type: Transform - pos: 63.5,-53.5 + pos: -65.5,9.5 parent: 1 - - uid: 15395 + - uid: 17013 components: - type: Transform - pos: 63.5,-54.5 + pos: -64.5,9.5 parent: 1 - - uid: 15472 + - uid: 17014 components: - type: Transform - pos: -133.5,-34.5 + pos: -63.5,9.5 parent: 1 - - uid: 15586 + - uid: 17015 components: - type: Transform - pos: -112.5,-21.5 + pos: -62.5,9.5 parent: 1 - - uid: 15593 + - uid: 17016 components: - type: Transform - pos: 8.5,-37.5 + pos: -61.5,9.5 parent: 1 - - uid: 15594 + - uid: 17017 components: - type: Transform - pos: 8.5,-38.5 + pos: -60.5,9.5 parent: 1 - - uid: 15600 + - uid: 17018 components: - type: Transform - pos: -117.5,-26.5 + pos: -59.5,9.5 parent: 1 - - uid: 15646 + - uid: 17019 components: - type: Transform - pos: -114.5,-26.5 + pos: -58.5,9.5 parent: 1 - - uid: 15808 + - uid: 17020 components: - type: Transform - pos: 55.5,-40.5 + pos: -57.5,9.5 parent: 1 - - uid: 15809 + - uid: 17021 components: - type: Transform - pos: 54.5,-40.5 + pos: -56.5,9.5 parent: 1 - - uid: 15810 + - uid: 17022 components: - type: Transform - pos: 53.5,-40.5 + pos: -55.5,9.5 parent: 1 - - uid: 15811 + - uid: 17023 components: - type: Transform - pos: 52.5,-40.5 + pos: -54.5,9.5 parent: 1 - - uid: 15812 + - uid: 17024 components: - type: Transform - pos: 51.5,-40.5 + pos: -53.5,9.5 parent: 1 - - uid: 15813 + - uid: 17025 components: - type: Transform - pos: 50.5,-40.5 + pos: -52.5,9.5 parent: 1 - - uid: 15814 + - uid: 17026 components: - type: Transform - pos: 49.5,-40.5 + pos: -51.5,9.5 parent: 1 - - uid: 15815 + - uid: 17027 components: - type: Transform - pos: 48.5,-40.5 + pos: -51.5,10.5 parent: 1 - - uid: 15816 + - uid: 17028 components: - type: Transform - pos: 47.5,-40.5 + pos: -51.5,11.5 parent: 1 - - uid: 15817 + - uid: 17029 components: - type: Transform - pos: 46.5,-40.5 + pos: -51.5,12.5 parent: 1 - - uid: 15818 + - uid: 17030 components: - type: Transform - pos: 45.5,-40.5 + pos: -51.5,13.5 parent: 1 - - uid: 15819 + - uid: 17031 components: - type: Transform - pos: 44.5,-40.5 + pos: -50.5,13.5 parent: 1 - - uid: 15820 + - uid: 17032 components: - type: Transform - pos: 43.5,-40.5 + pos: -52.5,13.5 parent: 1 - - uid: 15821 + - uid: 17035 components: - type: Transform - pos: 42.5,-40.5 + pos: -50.5,9.5 parent: 1 - - uid: 15822 + - uid: 17036 components: - type: Transform - pos: 41.5,-40.5 + pos: -49.5,9.5 parent: 1 - - uid: 15823 + - uid: 17037 components: - type: Transform - pos: 40.5,-40.5 + pos: -48.5,9.5 parent: 1 - - uid: 15824 + - uid: 17038 components: - type: Transform - pos: 39.5,-40.5 + pos: -47.5,9.5 parent: 1 - - uid: 15825 + - uid: 17039 components: - type: Transform - pos: 37.5,-39.5 + pos: -46.5,9.5 parent: 1 - - uid: 15826 + - uid: 17040 components: - type: Transform - pos: 36.5,-39.5 + pos: -45.5,9.5 parent: 1 - - uid: 15827 + - uid: 17041 components: - - type: MetaData - name: Prison HV power cable - type: Transform - pos: 38.5,-39.5 + pos: -44.5,9.5 parent: 1 - - uid: 15828 + - uid: 17042 components: - type: Transform - pos: 36.5,-41.5 + pos: -43.5,9.5 parent: 1 - - uid: 15829 + - uid: 17043 components: - type: Transform - pos: 37.5,-41.5 + pos: -42.5,9.5 parent: 1 - - uid: 15830 + - uid: 17044 components: - - type: MetaData - name: Station HV power cable - type: Transform - pos: 38.5,-41.5 + pos: -41.5,9.5 parent: 1 - - uid: 16240 + - uid: 17045 components: - type: Transform - pos: -112.5,-22.5 + pos: -40.5,9.5 parent: 1 - - uid: 16242 + - uid: 17046 components: - type: Transform - pos: -109.5,-25.5 + pos: -39.5,9.5 parent: 1 - - uid: 16252 + - uid: 17047 components: - type: Transform - pos: -110.5,7.5 + pos: -39.5,8.5 parent: 1 - - uid: 16253 + - uid: 17048 components: - type: Transform - pos: -111.5,8.5 + pos: -39.5,7.5 parent: 1 - - uid: 16258 + - uid: 17049 components: - type: Transform - pos: -109.5,7.5 + pos: -38.5,7.5 parent: 1 - - uid: 16260 + - uid: 17050 components: - type: Transform - pos: -108.5,7.5 + pos: -37.5,7.5 parent: 1 - - uid: 16269 + - uid: 17051 components: - type: Transform - pos: -107.5,7.5 + pos: -36.5,7.5 parent: 1 - - uid: 16507 + - uid: 17052 components: - type: Transform - pos: -122.5,-20.5 + pos: -36.5,8.5 parent: 1 - - uid: 16508 + - uid: 17053 components: - type: Transform - pos: -12.5,-47.5 + pos: -36.5,9.5 parent: 1 - - uid: 16509 + - uid: 17054 components: - type: Transform - pos: -13.5,-47.5 + pos: -36.5,10.5 parent: 1 - - uid: 16510 + - uid: 17055 components: - type: Transform - pos: -14.5,-47.5 + pos: -36.5,11.5 parent: 1 - - uid: 16511 + - uid: 17056 components: - type: Transform - pos: -15.5,-47.5 + pos: -36.5,12.5 parent: 1 - - uid: 16512 + - uid: 17057 components: - type: Transform - pos: -120.5,-20.5 + pos: -36.5,13.5 parent: 1 - - uid: 16537 + - uid: 17058 components: - type: Transform - pos: -118.5,-20.5 + pos: -36.5,14.5 parent: 1 - - uid: 16538 + - uid: 17059 components: - type: Transform - pos: -26.5,-56.5 + pos: -36.5,15.5 parent: 1 - - uid: 16539 + - uid: 17060 components: - type: Transform - pos: -27.5,-56.5 + pos: -36.5,16.5 parent: 1 - - uid: 16540 + - uid: 17061 components: - type: Transform - pos: -28.5,-56.5 + pos: -35.5,16.5 parent: 1 - - uid: 16541 + - uid: 17062 components: - type: Transform - pos: -29.5,-56.5 + pos: -34.5,16.5 parent: 1 - - uid: 16542 + - uid: 17063 components: - type: Transform - pos: -30.5,-56.5 + pos: -33.5,16.5 parent: 1 - - uid: 16543 + - uid: 17064 components: - type: Transform - pos: -30.5,-57.5 + pos: -32.5,16.5 parent: 1 - - uid: 16544 + - uid: 17065 components: - type: Transform - pos: -31.5,-57.5 + pos: -31.5,16.5 parent: 1 - - uid: 16545 + - uid: 17066 components: - type: Transform - pos: -31.5,-58.5 + pos: -30.5,16.5 parent: 1 - - uid: 16546 + - uid: 17067 components: - type: Transform - pos: -31.5,-59.5 + pos: -29.5,16.5 parent: 1 - - uid: 16547 + - uid: 17068 components: - type: Transform - pos: -31.5,-60.5 + pos: -28.5,16.5 parent: 1 - - uid: 16548 + - uid: 17069 components: - type: Transform - pos: -31.5,-61.5 + pos: -27.5,16.5 parent: 1 - - uid: 16549 + - uid: 17070 components: - type: Transform - pos: -31.5,-62.5 + pos: -26.5,16.5 parent: 1 - - uid: 16550 + - uid: 17071 components: - type: Transform - pos: -31.5,-63.5 + pos: -25.5,16.5 parent: 1 - - uid: 16551 + - uid: 17072 components: - type: Transform - pos: -31.5,-64.5 + pos: -24.5,16.5 parent: 1 - - uid: 16552 + - uid: 17073 components: - type: Transform - pos: -31.5,-65.5 + pos: -23.5,16.5 parent: 1 - - uid: 16553 + - uid: 17074 components: - type: Transform - pos: -31.5,-66.5 + pos: -22.5,16.5 parent: 1 - - uid: 16554 + - uid: 17075 components: - type: Transform - pos: -31.5,-67.5 + pos: -21.5,16.5 parent: 1 - - uid: 16555 + - uid: 17076 components: - type: Transform - pos: -31.5,-68.5 + pos: -20.5,16.5 parent: 1 - - uid: 16556 + - uid: 17077 components: - type: Transform - pos: -31.5,-69.5 + pos: -19.5,16.5 parent: 1 - - uid: 16557 + - uid: 17078 components: - type: Transform - pos: -31.5,-70.5 + pos: -19.5,15.5 parent: 1 - - uid: 16558 + - uid: 17079 components: - type: Transform - pos: -30.5,-70.5 + pos: -19.5,14.5 parent: 1 - - uid: 16559 + - uid: 17080 components: - type: Transform - pos: -29.5,-70.5 + pos: -20.5,14.5 parent: 1 - - uid: 16560 + - uid: 17081 components: - type: Transform - pos: -28.5,-70.5 + pos: -21.5,14.5 parent: 1 - - uid: 16561 + - uid: 17082 components: - type: Transform - pos: -28.5,-71.5 + pos: -22.5,14.5 parent: 1 - - uid: 16562 + - uid: 17083 components: - type: Transform - pos: -28.5,-72.5 + pos: -23.5,14.5 parent: 1 - - uid: 16563 + - uid: 17084 components: - type: Transform - pos: -28.5,-73.5 + pos: -24.5,14.5 parent: 1 - - uid: 16564 + - uid: 17085 components: - type: Transform - pos: -28.5,-74.5 + pos: -24.5,13.5 parent: 1 - - uid: 16597 + - uid: 17088 components: - type: Transform - pos: -74.5,-53.5 + pos: -21.5,13.5 parent: 1 - - uid: 16636 + - uid: 17089 components: - type: Transform - pos: -2.5,-47.5 + pos: -18.5,16.5 parent: 1 - - uid: 16637 + - uid: 17090 components: - type: Transform - pos: -3.5,-47.5 + pos: -17.5,16.5 parent: 1 - - uid: 16638 + - uid: 17091 components: - type: Transform - pos: -4.5,-47.5 + pos: -16.5,16.5 parent: 1 - - uid: 16639 + - uid: 17092 components: - type: Transform - pos: -5.5,-47.5 + pos: -16.5,17.5 parent: 1 - - uid: 16640 + - uid: 17093 components: - type: Transform - pos: -6.5,-47.5 + pos: -16.5,18.5 parent: 1 - - uid: 16641 + - uid: 17094 components: - type: Transform - pos: -7.5,-47.5 + pos: -16.5,19.5 parent: 1 - - uid: 16642 + - uid: 17095 components: - type: Transform - pos: -8.5,-47.5 + pos: -16.5,20.5 parent: 1 - - uid: 16643 + - uid: 17096 components: - type: Transform - pos: -9.5,-47.5 + pos: -17.5,20.5 parent: 1 - - uid: 16644 + - uid: 17097 components: - type: Transform - pos: -10.5,-47.5 + pos: -18.5,20.5 parent: 1 - - uid: 16645 + - uid: 17098 components: - type: Transform - pos: -11.5,-47.5 + pos: -19.5,20.5 parent: 1 - - uid: 16655 + - uid: 17099 components: - type: Transform - pos: -2.5,-46.5 + pos: -20.5,20.5 parent: 1 - - uid: 16656 + - uid: 17100 components: - type: Transform - pos: -2.5,-45.5 + pos: -21.5,20.5 parent: 1 - - uid: 16657 + - uid: 17101 components: - type: Transform - pos: -2.5,-44.5 + pos: -22.5,20.5 parent: 1 - - uid: 16658 + - uid: 17102 components: - type: Transform - pos: -2.5,-43.5 + pos: -23.5,20.5 parent: 1 - - uid: 16659 + - uid: 17103 components: - type: Transform - pos: -1.5,-43.5 + pos: -24.5,20.5 parent: 1 - - uid: 16660 + - uid: 17104 components: - type: Transform - pos: -0.5,-43.5 + pos: -0.5,17.5 parent: 1 - - uid: 16661 + - uid: 17121 components: - type: Transform - pos: 0.5,-43.5 + pos: 13.5,14.5 parent: 1 - - uid: 16662 + - uid: 17176 components: - type: Transform - pos: 1.5,-43.5 + pos: 14.5,14.5 parent: 1 - - uid: 16663 + - uid: 17177 components: - type: Transform - pos: 2.5,-43.5 + pos: 15.5,14.5 parent: 1 - - uid: 16664 + - uid: 17178 components: - type: Transform - pos: 3.5,-43.5 + pos: 16.5,14.5 parent: 1 - - uid: 16665 + - uid: 17179 components: - type: Transform - pos: 4.5,-43.5 + pos: 16.5,15.5 parent: 1 - - uid: 16666 + - uid: 17180 components: - type: Transform - pos: 5.5,-43.5 + pos: 16.5,16.5 parent: 1 - - uid: 16667 + - uid: 18089 components: - type: Transform - pos: 6.5,-43.5 + pos: -29.5,-74.5 parent: 1 - - uid: 16668 + - uid: 18090 components: - type: Transform - pos: 7.5,-43.5 + pos: -29.5,-72.5 parent: 1 - - uid: 16669 + - uid: 18120 components: - type: Transform - pos: 8.5,-43.5 + pos: -117.5,-16.5 parent: 1 - - uid: 16670 + - uid: 18363 components: - type: Transform - pos: 9.5,-43.5 + pos: -117.5,-18.5 parent: 1 - - uid: 16671 + - uid: 18583 components: - type: Transform - pos: 10.5,-43.5 + pos: -117.5,-20.5 parent: 1 - - uid: 16672 + - uid: 18894 components: - type: Transform - pos: 10.5,-42.5 + pos: -119.5,-20.5 parent: 1 - - uid: 16673 + - uid: 18897 components: - type: Transform - pos: 10.5,-41.5 + pos: -121.5,-20.5 parent: 1 - - uid: 16674 + - uid: 18898 components: - type: Transform - pos: 10.5,-40.5 + pos: -133.5,-33.5 parent: 1 - - uid: 16675 + - uid: 19154 components: - type: Transform - pos: 10.5,-39.5 + pos: -85.5,-36.5 parent: 1 - - uid: 16676 + - uid: 19244 components: - type: Transform - pos: 10.5,-38.5 + pos: -131.5,-32.5 parent: 1 - - uid: 16677 + - uid: 19251 components: - type: Transform - pos: 10.5,-37.5 + pos: -133.5,-41.5 parent: 1 - - uid: 16678 + - uid: 19254 components: - type: Transform - pos: 10.5,-36.5 + pos: -135.5,-35.5 parent: 1 - - uid: 16679 + - uid: 19499 components: - type: Transform - pos: 10.5,-35.5 + pos: -111.5,11.5 parent: 1 - - uid: 16680 + - uid: 19500 components: - type: Transform - pos: 10.5,-34.5 + pos: -111.5,10.5 parent: 1 - - uid: 16681 + - uid: 19501 components: - type: Transform - pos: 10.5,-33.5 + pos: -111.5,9.5 parent: 1 - - uid: 16682 + - uid: 19503 components: - type: Transform - pos: 10.5,-32.5 + pos: -111.5,7.5 parent: 1 - - uid: 16683 + - uid: 20258 components: - type: Transform - pos: 10.5,-31.5 + pos: -21.5,21.5 parent: 1 - - uid: 16684 + - uid: 20259 components: - type: Transform - pos: 10.5,-30.5 + pos: -21.5,22.5 parent: 1 - - uid: 16685 + - uid: 20325 components: - type: Transform - pos: 10.5,-29.5 + pos: -133.5,-40.5 parent: 1 - - uid: 16686 + - uid: 20375 components: - type: Transform - pos: 11.5,-29.5 + pos: -133.5,-39.5 parent: 1 - - uid: 16688 + - uid: 20385 components: - type: Transform - pos: 12.5,-29.5 + pos: -134.5,-39.5 parent: 1 - - uid: 16689 + - uid: 20386 components: - type: Transform - pos: 13.5,-29.5 + pos: -135.5,-39.5 parent: 1 - - uid: 16690 + - uid: 20392 components: - type: Transform - pos: 13.5,-28.5 + pos: -135.5,-38.5 parent: 1 - - uid: 16691 + - uid: 21363 components: - type: Transform - pos: 13.5,-27.5 + pos: 12.5,14.5 parent: 1 - - uid: 16692 + - uid: 21364 components: - type: Transform - pos: 13.5,-26.5 + pos: 12.5,13.5 parent: 1 - - uid: 16693 + - uid: 21365 components: - type: Transform - pos: 14.5,-26.5 + pos: 12.5,12.5 parent: 1 - - uid: 16694 + - uid: 21366 components: - type: Transform - pos: 14.5,-25.5 + pos: 12.5,11.5 parent: 1 - - uid: 16696 + - uid: 21367 components: - type: Transform - pos: -31.5,-71.5 + pos: 12.5,10.5 parent: 1 - - uid: 16697 + - uid: 21368 components: - type: Transform - pos: -32.5,-71.5 + pos: 12.5,9.5 parent: 1 - - uid: 16698 + - uid: 21369 components: - type: Transform - pos: -33.5,-71.5 + pos: 12.5,8.5 parent: 1 - - uid: 16699 + - uid: 21370 components: - type: Transform - pos: -34.5,-71.5 + pos: 12.5,7.5 parent: 1 - - uid: 16700 + - uid: 21371 components: - type: Transform - pos: -34.5,-72.5 + pos: 12.5,6.5 parent: 1 - - uid: 16701 + - uid: 21372 components: - type: Transform - pos: -34.5,-73.5 + pos: 12.5,5.5 parent: 1 - - uid: 16702 + - uid: 21373 components: - type: Transform - pos: -34.5,-74.5 + pos: 13.5,5.5 parent: 1 - - uid: 16703 + - uid: 21374 components: - type: Transform - pos: -35.5,-74.5 + pos: 14.5,5.5 parent: 1 - - uid: 16704 + - uid: 21375 components: - type: Transform - pos: -36.5,-74.5 + pos: 15.5,5.5 parent: 1 - - uid: 16705 + - uid: 21376 components: - type: Transform - pos: -37.5,-74.5 + pos: 16.5,5.5 parent: 1 - - uid: 16706 + - uid: 21377 components: - type: Transform - pos: -38.5,-74.5 + pos: 17.5,5.5 parent: 1 - - uid: 16707 + - uid: 21378 components: - type: Transform - pos: -39.5,-74.5 + pos: 18.5,5.5 parent: 1 - - uid: 16708 + - uid: 21379 components: - type: Transform - pos: -40.5,-74.5 + pos: 19.5,5.5 parent: 1 - - uid: 16709 + - uid: 21380 components: - type: Transform - pos: -41.5,-74.5 + pos: 20.5,5.5 parent: 1 - - uid: 16710 + - uid: 21381 components: - type: Transform - pos: -42.5,-74.5 + pos: 21.5,5.5 parent: 1 - - uid: 16711 + - uid: 21384 components: - type: Transform - pos: -43.5,-74.5 + pos: 21.5,8.5 parent: 1 - - uid: 16712 + - uid: 21385 components: - type: Transform - pos: -44.5,-74.5 + pos: 20.5,8.5 parent: 1 - - uid: 16713 + - uid: 21386 components: - type: Transform - pos: -45.5,-74.5 + pos: 20.5,9.5 parent: 1 - - uid: 16714 + - uid: 22625 components: - type: Transform - pos: -46.5,-74.5 + pos: -113.5,-20.5 parent: 1 - - uid: 16715 + - uid: 23003 components: - type: Transform - pos: -47.5,-74.5 + pos: -123.5,-20.5 parent: 1 - - uid: 16716 + - uid: 23004 components: - type: Transform - pos: -48.5,-74.5 + pos: -123.5,-25.5 parent: 1 - - uid: 16717 + - uid: 23005 components: - type: Transform - pos: -49.5,-74.5 + pos: -124.5,-25.5 parent: 1 - - uid: 16718 + - uid: 23006 components: - type: Transform - pos: -50.5,-74.5 + pos: -111.5,-10.5 parent: 1 - - uid: 16719 + - uid: 23007 components: - type: Transform - pos: -51.5,-74.5 + pos: -135.5,-36.5 parent: 1 - - uid: 16720 + - uid: 23023 components: - type: Transform - pos: -52.5,-74.5 + pos: -131.5,-31.5 parent: 1 - - uid: 16721 + - uid: 23051 components: - type: Transform - pos: -53.5,-74.5 + pos: -123.5,-21.5 parent: 1 - - uid: 16722 + - uid: 25264 components: - type: Transform - pos: -53.5,-73.5 + pos: -129.5,-25.5 parent: 1 - - uid: 16723 + - uid: 25265 components: - type: Transform - pos: -53.5,-72.5 + pos: -128.5,-25.5 parent: 1 - - uid: 16724 + - uid: 25266 components: - type: Transform - pos: -53.5,-71.5 + pos: -127.5,-25.5 parent: 1 - - uid: 16725 + - uid: 25267 components: - type: Transform - pos: -53.5,-70.5 + pos: -126.5,-25.5 parent: 1 - - uid: 16726 + - uid: 25268 components: - type: Transform - pos: -53.5,-69.5 + pos: -125.5,-25.5 parent: 1 - - uid: 16727 + - uid: 25269 components: - type: Transform - pos: -53.5,-68.5 + pos: -123.5,-24.5 parent: 1 - - uid: 16728 + - uid: 25270 components: - type: Transform - pos: -53.5,-67.5 + pos: -123.5,-23.5 parent: 1 - - uid: 16729 + - uid: 25271 components: - type: Transform - pos: -53.5,-66.5 + pos: -123.5,-22.5 parent: 1 - - uid: 16730 + - uid: 25827 components: - type: Transform - pos: -53.5,-65.5 + pos: -130.5,-25.5 parent: 1 - - uid: 16731 + - uid: 25828 components: - type: Transform - pos: -54.5,-65.5 + pos: -131.5,-25.5 parent: 1 - - uid: 16732 + - uid: 25829 components: - type: Transform - pos: -55.5,-65.5 + pos: -131.5,-26.5 parent: 1 - - uid: 16733 + - uid: 25986 components: - type: Transform - pos: -56.5,-65.5 + pos: -131.5,-27.5 parent: 1 - - uid: 16734 + - uid: 25987 components: - type: Transform - pos: -57.5,-65.5 + pos: -131.5,-28.5 parent: 1 - - uid: 16735 + - uid: 25988 components: - type: Transform - pos: -58.5,-65.5 + pos: -131.5,-29.5 parent: 1 - - uid: 16736 + - uid: 25989 components: - type: Transform - pos: -59.5,-65.5 + pos: -131.5,-30.5 parent: 1 - - uid: 16737 + - uid: 25990 components: - type: Transform - pos: -60.5,-65.5 + pos: -132.5,-32.5 parent: 1 - - uid: 16738 + - uid: 25991 components: - type: Transform - pos: -61.5,-65.5 + pos: -134.5,-34.5 parent: 1 - - uid: 16739 + - uid: 25992 components: - type: Transform - pos: -62.5,-65.5 + pos: -109.5,-11.5 parent: 1 - - uid: 16740 + - uid: 27173 components: - type: Transform - pos: -63.5,-65.5 + pos: -106.5,-11.5 parent: 1 - - uid: 16741 + - uid: 28646 components: - type: Transform - pos: -63.5,-64.5 + pos: -80.5,-39.5 parent: 1 - - uid: 16742 + - uid: 29220 components: - type: Transform - pos: -63.5,-63.5 + pos: -136.5,-37.5 parent: 1 - - uid: 16743 + - uid: 29469 components: - type: Transform - pos: -63.5,-62.5 + pos: 22.5,8.5 parent: 1 - - uid: 16744 + - uid: 29470 components: - type: Transform - pos: -63.5,-61.5 + pos: 23.5,5.5 parent: 1 - - uid: 16745 + - uid: 29544 components: - type: Transform - pos: -63.5,-60.5 + pos: -106.5,8.5 parent: 1 - - uid: 16746 + - uid: 29603 components: - type: Transform - pos: -63.5,-59.5 + pos: -79.5,-39.5 parent: 1 - - uid: 16747 + - uid: 30387 components: - type: Transform - pos: -63.5,-58.5 + pos: 9.5,-38.5 parent: 1 - - uid: 16748 + - uid: 32309 components: - type: Transform - pos: -63.5,-57.5 + pos: -78.5,-39.5 parent: 1 - - uid: 16749 + - uid: 34247 components: - type: Transform - pos: -63.5,-56.5 + pos: -146.5,-39.5 parent: 1 - - uid: 16750 + - uid: 34248 components: - type: Transform - pos: -64.5,-56.5 + pos: -147.5,-39.5 parent: 1 - - uid: 16751 + - uid: 34249 components: - type: Transform - pos: -65.5,-56.5 + pos: -147.5,-40.5 parent: 1 - - uid: 16752 + - uid: 34250 components: - type: Transform - pos: -66.5,-56.5 + pos: -147.5,-41.5 parent: 1 - - uid: 16753 + - uid: 34251 components: - type: Transform - pos: -67.5,-56.5 + pos: -147.5,-42.5 parent: 1 - - uid: 16754 + - uid: 34252 components: - type: Transform - pos: -68.5,-56.5 + pos: -147.5,-43.5 parent: 1 - - uid: 16755 + - uid: 34258 components: - type: Transform - pos: -69.5,-56.5 + pos: -145.5,-39.5 parent: 1 - - uid: 16756 + - uid: 34259 components: - type: Transform - pos: -69.5,-55.5 + pos: -144.5,-39.5 parent: 1 - - uid: 16757 + - uid: 34260 components: - type: Transform - pos: -69.5,-54.5 + pos: -144.5,-38.5 parent: 1 - - uid: 16758 + - uid: 34261 components: - type: Transform - pos: -70.5,-54.5 + pos: -144.5,-37.5 parent: 1 - - uid: 16759 + - uid: 34263 components: - type: Transform - pos: -71.5,-54.5 + pos: -143.5,-37.5 parent: 1 - - uid: 16760 + - uid: 34264 components: - type: Transform - pos: -72.5,-54.5 + pos: -142.5,-37.5 parent: 1 - - uid: 16761 + - uid: 34265 components: - type: Transform - pos: -73.5,-54.5 + pos: -141.5,-37.5 parent: 1 - - uid: 16762 + - uid: 34266 components: - type: Transform - pos: -74.5,-54.5 + pos: -140.5,-37.5 parent: 1 - - uid: 16763 + - uid: 34270 components: - type: Transform - pos: -74.5,-52.5 + pos: -139.5,-37.5 parent: 1 - - uid: 16764 + - uid: 34271 components: - type: Transform - pos: -74.5,-51.5 + pos: -138.5,-37.5 parent: 1 - - uid: 16765 + - uid: 34272 components: - type: Transform - pos: -74.5,-50.5 + pos: -137.5,-37.5 parent: 1 - - uid: 16766 + - uid: 34273 components: - type: Transform - pos: -74.5,-49.5 + pos: -141.5,-38.5 parent: 1 - - uid: 16767 + - uid: 34274 components: - type: Transform - pos: -74.5,-48.5 + pos: -141.5,-39.5 parent: 1 - - uid: 16768 + - uid: 34276 components: - type: Transform - pos: -74.5,-47.5 + pos: -139.5,-38.5 parent: 1 - - uid: 16769 + - uid: 34277 components: - type: Transform - pos: -74.5,-46.5 + pos: -139.5,-39.5 parent: 1 - - uid: 16770 + - uid: 34295 components: - type: Transform - pos: -74.5,-45.5 + pos: -153.5,-67.5 parent: 1 - - uid: 16771 + - uid: 34296 components: - type: Transform - pos: -74.5,-44.5 + pos: -153.5,-66.5 parent: 1 - - uid: 16772 + - uid: 34297 components: - type: Transform - pos: -74.5,-43.5 + pos: -153.5,-65.5 parent: 1 - - uid: 16773 + - uid: 34298 components: - type: Transform - pos: -74.5,-42.5 + pos: -153.5,-64.5 parent: 1 - - uid: 16774 + - uid: 34299 components: - type: Transform - pos: -74.5,-41.5 + pos: -153.5,-63.5 parent: 1 - - uid: 16775 + - uid: 34300 components: - type: Transform - pos: -74.5,-40.5 + pos: -153.5,-62.5 parent: 1 - - uid: 16776 + - uid: 34301 components: - type: Transform - pos: -74.5,-39.5 + pos: -153.5,-61.5 parent: 1 - - uid: 16777 + - uid: 34302 components: - type: Transform - pos: -74.5,-38.5 + pos: -153.5,-60.5 parent: 1 - - uid: 16778 + - uid: 34303 components: - type: Transform - pos: -73.5,-38.5 + pos: -153.5,-59.5 parent: 1 - - uid: 16779 + - uid: 34304 components: - type: Transform - pos: -72.5,-38.5 + pos: -153.5,-58.5 parent: 1 - - uid: 16780 + - uid: 34305 components: - type: Transform - pos: -71.5,-38.5 + pos: -153.5,-57.5 parent: 1 - - uid: 16781 + - uid: 34306 components: - type: Transform - pos: -70.5,-38.5 + pos: -153.5,-56.5 parent: 1 - - uid: 16782 + - uid: 34307 components: - type: Transform - pos: -69.5,-38.5 + pos: -153.5,-55.5 parent: 1 - - uid: 16783 + - uid: 34308 components: - type: Transform - pos: -68.5,-38.5 + pos: -153.5,-54.5 parent: 1 - - uid: 16784 + - uid: 34309 components: - type: Transform - pos: -67.5,-38.5 + pos: -153.5,-53.5 parent: 1 - - uid: 16785 + - uid: 34310 components: - type: Transform - pos: -66.5,-38.5 + pos: -153.5,-52.5 parent: 1 - - uid: 16786 + - uid: 34311 components: - type: Transform - pos: -65.5,-38.5 + pos: -153.5,-51.5 parent: 1 - - uid: 16787 + - uid: 34312 components: - type: Transform - pos: -64.5,-38.5 + pos: -153.5,-50.5 parent: 1 - - uid: 16788 + - uid: 34313 components: - type: Transform - pos: -63.5,-38.5 + pos: -153.5,-49.5 parent: 1 - - uid: 16789 + - uid: 34314 components: - type: Transform - pos: -62.5,-38.5 + pos: -153.5,-48.5 parent: 1 - - uid: 16790 + - uid: 34315 components: - type: Transform - pos: -61.5,-38.5 + pos: -153.5,-47.5 parent: 1 - - uid: 16791 + - uid: 34316 components: - type: Transform - pos: -60.5,-38.5 + pos: -153.5,-46.5 parent: 1 - - uid: 16800 + - uid: 34317 components: - type: Transform - pos: -76.5,-39.5 + pos: -153.5,-45.5 parent: 1 - - uid: 16801 + - uid: 34318 components: - type: Transform - pos: -77.5,-39.5 + pos: -153.5,-44.5 parent: 1 - - uid: 16812 + - uid: 34319 components: - type: Transform - pos: -83.5,-39.5 + pos: -153.5,-43.5 parent: 1 - - uid: 16813 + - uid: 34320 components: - type: Transform - pos: -85.5,-35.5 + pos: -152.5,-43.5 parent: 1 - - uid: 16814 + - uid: 34321 components: - type: Transform - pos: -86.5,-35.5 + pos: -151.5,-43.5 parent: 1 - - uid: 16815 + - uid: 34322 components: - type: Transform - pos: -87.5,-35.5 + pos: -150.5,-43.5 parent: 1 - - uid: 16816 + - uid: 34323 components: - type: Transform - pos: -88.5,-35.5 + pos: -149.5,-43.5 parent: 1 - - uid: 16820 + - uid: 34324 components: - type: Transform - pos: -117.5,-19.5 + pos: -148.5,-43.5 parent: 1 - - uid: 16821 + - uid: 34325 components: - type: Transform - pos: -88.5,-34.5 + pos: -154.5,-50.5 parent: 1 - - uid: 16822 + - uid: 34326 components: - type: Transform - pos: -88.5,-33.5 + pos: -160.5,-49.5 parent: 1 - - uid: 16823 + - uid: 34327 components: - type: Transform - pos: -89.5,-33.5 + pos: -159.5,-49.5 parent: 1 - - uid: 16824 + - uid: 34328 components: - type: Transform - pos: -90.5,-33.5 + pos: -158.5,-49.5 parent: 1 - - uid: 16825 + - uid: 34329 components: - type: Transform - pos: -91.5,-33.5 + pos: -157.5,-49.5 parent: 1 - - uid: 16826 + - uid: 34330 components: - type: Transform - pos: -91.5,-32.5 + pos: -156.5,-49.5 parent: 1 - - uid: 16827 + - uid: 34331 components: - type: Transform - pos: -91.5,-31.5 + pos: -155.5,-49.5 parent: 1 - - uid: 16828 + - uid: 34332 components: - type: Transform - pos: -91.5,-30.5 + pos: -160.5,-51.5 parent: 1 - - uid: 16829 + - uid: 34333 components: - type: Transform - pos: -91.5,-29.5 + pos: -159.5,-51.5 parent: 1 - - uid: 16830 + - uid: 34334 components: - type: Transform - pos: -92.5,-29.5 + pos: -158.5,-51.5 parent: 1 - - uid: 16831 + - uid: 34335 components: - type: Transform - pos: -93.5,-29.5 + pos: -157.5,-51.5 parent: 1 - - uid: 16832 + - uid: 34336 components: - type: Transform - pos: -94.5,-29.5 + pos: -156.5,-51.5 parent: 1 - - uid: 16833 + - uid: 34337 components: - type: Transform - pos: -95.5,-29.5 + pos: -155.5,-51.5 parent: 1 - - uid: 16834 + - uid: 34338 components: - type: Transform - pos: -96.5,-29.5 + pos: -155.5,-50.5 parent: 1 - - uid: 16835 + - uid: 34339 components: - type: Transform - pos: -96.5,-28.5 + pos: -151.5,-49.5 parent: 1 - - uid: 16836 + - uid: 34340 components: - type: Transform - pos: -96.5,-27.5 + pos: -150.5,-49.5 parent: 1 - - uid: 16837 + - uid: 34341 components: - type: Transform - pos: -96.5,-26.5 + pos: -149.5,-49.5 parent: 1 - - uid: 16838 + - uid: 34342 components: - type: Transform - pos: -96.5,-25.5 + pos: -148.5,-49.5 parent: 1 - - uid: 16839 + - uid: 34343 components: - type: Transform - pos: -96.5,-24.5 + pos: -147.5,-49.5 parent: 1 - - uid: 16840 + - uid: 34344 components: - type: Transform - pos: -96.5,-23.5 + pos: -146.5,-49.5 parent: 1 - - uid: 16841 + - uid: 34345 components: - type: Transform - pos: -96.5,-22.5 + pos: -146.5,-51.5 parent: 1 - - uid: 16842 + - uid: 34346 components: - type: Transform - pos: -96.5,-21.5 + pos: -147.5,-51.5 parent: 1 - - uid: 16843 + - uid: 34347 components: - type: Transform - pos: -117.5,-17.5 + pos: -148.5,-51.5 parent: 1 - - uid: 16844 + - uid: 34348 components: - type: Transform - pos: -117.5,-15.5 + pos: -149.5,-51.5 parent: 1 - - uid: 16845 + - uid: 34349 components: - type: Transform - pos: -117.5,-13.5 + pos: -150.5,-51.5 parent: 1 - - uid: 16851 + - uid: 34350 components: - type: Transform - pos: -108.5,-20.5 + pos: -151.5,-51.5 parent: 1 - - uid: 16860 + - uid: 34351 components: - type: Transform - pos: -117.5,-12.5 + pos: -151.5,-53.5 parent: 1 - - uid: 16865 + - uid: 34352 components: - type: Transform - pos: -117.5,-14.5 + pos: -150.5,-53.5 parent: 1 - - uid: 16866 + - uid: 34353 components: - type: Transform - pos: -106.5,-7.5 + pos: -149.5,-53.5 parent: 1 - - uid: 16867 + - uid: 34354 components: - type: Transform - pos: -106.5,-6.5 + pos: -148.5,-53.5 parent: 1 - - uid: 16868 + - uid: 34355 components: - type: Transform - pos: -106.5,-5.5 + pos: -147.5,-53.5 parent: 1 - - uid: 16869 + - uid: 34356 components: - type: Transform - pos: -106.5,-4.5 + pos: -146.5,-53.5 parent: 1 - - uid: 16870 + - uid: 34357 components: - type: Transform - pos: -106.5,-3.5 + pos: -146.5,-55.5 parent: 1 - - uid: 16871 + - uid: 34358 components: - type: Transform - pos: -105.5,-3.5 + pos: -147.5,-55.5 parent: 1 - - uid: 16873 + - uid: 34359 components: - type: Transform - pos: -107.5,-7.5 + pos: -148.5,-55.5 parent: 1 - - uid: 16874 + - uid: 34360 components: - type: Transform - pos: -108.5,-7.5 + pos: -149.5,-55.5 parent: 1 - - uid: 16875 + - uid: 34361 components: - type: Transform - pos: -109.5,-7.5 + pos: -150.5,-55.5 parent: 1 - - uid: 16876 + - uid: 34362 components: - type: Transform - pos: -110.5,-7.5 + pos: -151.5,-55.5 parent: 1 - - uid: 16877 + - uid: 34363 components: - type: Transform - pos: -111.5,-7.5 + pos: -151.5,-57.5 parent: 1 - - uid: 16878 + - uid: 34364 components: - type: Transform - pos: -112.5,-7.5 + pos: -150.5,-57.5 parent: 1 - - uid: 16879 + - uid: 34365 components: - type: Transform - pos: -113.5,-7.5 + pos: -149.5,-57.5 parent: 1 - - uid: 16880 + - uid: 34366 components: - type: Transform - pos: -114.5,-7.5 + pos: -148.5,-57.5 parent: 1 - - uid: 16881 + - uid: 34367 components: - type: Transform - pos: -115.5,-7.5 + pos: -147.5,-57.5 parent: 1 - - uid: 16882 + - uid: 34368 components: - type: Transform - pos: -116.5,-7.5 + pos: -146.5,-57.5 parent: 1 - - uid: 16883 + - uid: 34369 components: - type: Transform - pos: -117.5,-7.5 + pos: -146.5,-59.5 parent: 1 - - uid: 16884 + - uid: 34370 components: - type: Transform - pos: -118.5,-7.5 + pos: -147.5,-59.5 parent: 1 - - uid: 16885 + - uid: 34371 components: - type: Transform - pos: -119.5,-7.5 + pos: -148.5,-59.5 parent: 1 - - uid: 16886 + - uid: 34372 components: - type: Transform - pos: -120.5,-7.5 + pos: -149.5,-59.5 parent: 1 - - uid: 16887 + - uid: 34373 components: - type: Transform - pos: -121.5,-7.5 + pos: -150.5,-59.5 parent: 1 - - uid: 16888 + - uid: 34374 components: - type: Transform - pos: -122.5,-7.5 + pos: -151.5,-59.5 parent: 1 - - uid: 16889 + - uid: 34375 components: - type: Transform - pos: -122.5,-6.5 + pos: -151.5,-54.5 parent: 1 - - uid: 16890 + - uid: 34376 components: - type: Transform - pos: -122.5,-5.5 + pos: -152.5,-54.5 parent: 1 - - uid: 16891 + - uid: 34377 components: - type: Transform - pos: -122.5,-4.5 + pos: -151.5,-50.5 parent: 1 - - uid: 16892 + - uid: 34378 components: - type: Transform - pos: -122.5,-3.5 + pos: -152.5,-50.5 parent: 1 - - uid: 16893 + - uid: 34379 components: - type: Transform - pos: -122.5,-2.5 + pos: -151.5,-58.5 parent: 1 - - uid: 16894 + - uid: 34561 components: - type: Transform - pos: -122.5,-1.5 + pos: -110.5,-11.5 parent: 1 - - uid: 16895 + - uid: 34564 components: - type: Transform - pos: -122.5,-0.5 + pos: -111.5,-8.5 parent: 1 - - uid: 16896 + - uid: 34565 components: - type: Transform - pos: -122.5,0.5 + pos: -105.5,-20.5 parent: 1 - - uid: 16897 + - uid: 34639 components: - type: Transform - pos: -122.5,1.5 + pos: -15.5,17.5 parent: 1 - - uid: 16898 + - uid: 34640 components: - type: Transform - pos: -122.5,2.5 + pos: -14.5,17.5 parent: 1 - - uid: 16899 + - uid: 34641 components: - type: Transform - pos: -122.5,3.5 + pos: -13.5,17.5 parent: 1 - - uid: 16900 + - uid: 34642 components: - type: Transform - pos: -122.5,4.5 + pos: -12.5,17.5 parent: 1 - - uid: 16901 + - uid: 34643 components: - type: Transform - pos: -122.5,5.5 + pos: -11.5,17.5 parent: 1 - - uid: 16902 + - uid: 34644 components: - type: Transform - pos: -122.5,6.5 + pos: -10.5,17.5 parent: 1 - - uid: 16903 + - uid: 34645 components: - type: Transform - pos: -122.5,7.5 + pos: -9.5,17.5 parent: 1 - - uid: 16904 + - uid: 34646 components: - type: Transform - pos: -122.5,8.5 + pos: -8.5,17.5 parent: 1 - - uid: 16905 + - uid: 34647 components: - type: Transform - pos: -122.5,9.5 + pos: -7.5,17.5 parent: 1 - - uid: 16906 + - uid: 34648 components: - type: Transform - pos: -122.5,10.5 + pos: -6.5,17.5 parent: 1 - - uid: 16907 + - uid: 34649 components: - type: Transform - pos: -122.5,11.5 + pos: -5.5,17.5 parent: 1 - - uid: 16908 + - uid: 34650 components: - type: Transform - pos: -122.5,12.5 + pos: -4.5,17.5 parent: 1 - - uid: 16909 + - uid: 34651 components: - type: Transform - pos: -122.5,13.5 + pos: -3.5,17.5 parent: 1 - - uid: 16910 + - uid: 34652 components: - type: Transform - pos: -122.5,14.5 + pos: -2.5,17.5 parent: 1 - - uid: 16911 + - uid: 34653 components: - type: Transform - pos: -122.5,15.5 + pos: -1.5,17.5 parent: 1 - - uid: 16912 + - uid: 34687 components: - type: Transform - pos: -122.5,16.5 + pos: -117.5,-11.5 parent: 1 - - uid: 16913 + - uid: 34688 components: - type: Transform - pos: -122.5,17.5 + pos: -117.5,-10.5 parent: 1 - - uid: 16914 + - uid: 34689 components: - type: Transform - pos: -122.5,18.5 + pos: -117.5,-9.5 parent: 1 - - uid: 16915 + - uid: 34690 components: - type: Transform - pos: -122.5,19.5 + pos: -117.5,-8.5 parent: 1 - - uid: 16916 + - uid: 34861 components: - type: Transform - pos: -122.5,20.5 + pos: 33.5,-34.5 parent: 1 - - uid: 16917 + - uid: 34862 components: - type: Transform - pos: -122.5,21.5 + pos: 33.5,-33.5 parent: 1 - - uid: 16918 + - uid: 34863 components: - type: Transform - pos: -122.5,22.5 + pos: 33.5,-32.5 parent: 1 - - uid: 16919 + - uid: 34864 components: - type: Transform - pos: -121.5,22.5 + pos: 33.5,-31.5 parent: 1 - - uid: 16920 + - uid: 34865 components: - type: Transform - pos: -120.5,22.5 + pos: 33.5,-30.5 parent: 1 - - uid: 16921 + - uid: 34866 components: - type: Transform - pos: -119.5,22.5 + pos: 33.5,-29.5 parent: 1 - - uid: 16922 + - uid: 34867 components: - type: Transform - pos: -118.5,22.5 + pos: 33.5,-28.5 parent: 1 - - uid: 16923 + - uid: 34868 components: - type: Transform - pos: -117.5,22.5 + pos: 33.5,-27.5 parent: 1 - - uid: 16924 + - uid: 34869 components: - type: Transform - pos: -116.5,22.5 + pos: 33.5,-26.5 parent: 1 - - uid: 16925 + - uid: 34870 components: - type: Transform - pos: -115.5,22.5 + pos: 33.5,-25.5 parent: 1 - - uid: 16926 + - uid: 34871 components: - type: Transform - pos: -114.5,22.5 + pos: 33.5,-24.5 parent: 1 - - uid: 16927 + - uid: 34872 components: - type: Transform - pos: -113.5,22.5 + pos: 33.5,-23.5 parent: 1 - - uid: 16928 + - uid: 34873 components: - type: Transform - pos: -112.5,22.5 + pos: 33.5,-22.5 parent: 1 - - uid: 16929 + - uid: 34874 components: - type: Transform - pos: -111.5,22.5 + pos: 33.5,-21.5 parent: 1 - - uid: 16930 + - uid: 34877 components: - type: Transform - pos: -110.5,22.5 + pos: 33.5,-20.5 parent: 1 - - uid: 16931 + - uid: 34881 components: - type: Transform - pos: -109.5,22.5 + pos: 32.5,-20.5 parent: 1 - - uid: 16932 + - uid: 34884 components: - type: Transform - pos: -108.5,22.5 + pos: 32.5,-19.5 parent: 1 - - uid: 16933 + - uid: 34885 components: - type: Transform - pos: -107.5,22.5 + pos: 32.5,-18.5 parent: 1 - - uid: 16934 + - uid: 34886 components: - type: Transform - pos: -106.5,22.5 + pos: 32.5,-17.5 parent: 1 - - uid: 16935 + - uid: 34887 components: - type: Transform - pos: -105.5,22.5 + pos: 32.5,-16.5 parent: 1 - - uid: 16936 + - uid: 34888 components: - type: Transform - pos: -104.5,22.5 + pos: 32.5,-15.5 parent: 1 - - uid: 16937 + - uid: 34889 components: - type: Transform - pos: -103.5,22.5 + pos: 32.5,-14.5 parent: 1 - - uid: 16938 + - uid: 34890 components: - type: Transform - pos: -102.5,22.5 + pos: 32.5,-13.5 parent: 1 - - uid: 16939 + - uid: 34891 components: - type: Transform - pos: -101.5,22.5 + pos: 31.5,-13.5 parent: 1 - - uid: 16940 + - uid: 34892 components: - type: Transform - pos: -100.5,22.5 + pos: 30.5,-13.5 parent: 1 - - uid: 16941 + - uid: 34893 components: - type: Transform - pos: -99.5,22.5 + pos: 29.5,-13.5 parent: 1 - - uid: 16942 + - uid: 34894 components: - type: Transform - pos: -98.5,22.5 + pos: 28.5,-13.5 parent: 1 - - uid: 16943 + - uid: 34895 components: - type: Transform - pos: -98.5,23.5 + pos: 27.5,-13.5 parent: 1 - - uid: 16944 + - uid: 34896 components: - type: Transform - pos: -98.5,24.5 + pos: 26.5,-13.5 parent: 1 - - uid: 16945 + - uid: 34897 components: - type: Transform - pos: -98.5,25.5 + pos: 26.5,-12.5 parent: 1 - - uid: 16946 + - uid: 34898 components: - type: Transform - pos: -98.5,4.5 + pos: 26.5,-11.5 parent: 1 - - uid: 16947 + - uid: 34899 components: - type: Transform - pos: -98.5,5.5 + pos: 26.5,-10.5 parent: 1 - - uid: 16948 + - uid: 34900 components: - type: Transform - pos: -98.5,6.5 + pos: 25.5,-10.5 parent: 1 - - uid: 16949 + - uid: 34901 components: - type: Transform - pos: -98.5,7.5 + pos: 24.5,-10.5 parent: 1 - - uid: 16950 + - uid: 34902 components: - type: Transform - pos: -98.5,8.5 + pos: 23.5,-10.5 parent: 1 - - uid: 16951 + - uid: 34903 components: - type: Transform - pos: -98.5,9.5 + pos: 22.5,-10.5 parent: 1 - - uid: 16952 + - uid: 34904 components: - type: Transform - pos: -98.5,10.5 + pos: 21.5,-10.5 parent: 1 - - uid: 16953 + - uid: 34905 components: - type: Transform - pos: -98.5,11.5 + pos: 20.5,-10.5 parent: 1 - - uid: 16954 + - uid: 34906 components: - type: Transform - pos: -98.5,12.5 + pos: 19.5,-10.5 parent: 1 - - uid: 16955 + - uid: 34907 components: - type: Transform - pos: -98.5,13.5 + pos: 18.5,-10.5 parent: 1 - - uid: 16956 + - uid: 34908 components: - type: Transform - pos: -98.5,14.5 + pos: 17.5,-10.5 parent: 1 - - uid: 16957 + - uid: 34909 components: - type: Transform - pos: -98.5,15.5 + pos: 16.5,-10.5 parent: 1 - - uid: 16958 + - uid: 34910 components: - type: Transform - pos: -98.5,16.5 + pos: 15.5,-10.5 parent: 1 - - uid: 16959 + - uid: 34911 components: - type: Transform - pos: -98.5,17.5 + pos: 14.5,-10.5 parent: 1 - - uid: 16960 + - uid: 34912 components: - type: Transform - pos: -98.5,18.5 + pos: 13.5,-10.5 parent: 1 - - uid: 16961 + - uid: 34913 components: - type: Transform - pos: -98.5,19.5 + pos: 12.5,-10.5 parent: 1 - - uid: 16962 + - uid: 34914 components: - type: Transform - pos: -98.5,20.5 + pos: 11.5,-10.5 parent: 1 - - uid: 16963 + - uid: 34915 components: - type: Transform - pos: -98.5,21.5 + pos: 10.5,-10.5 parent: 1 - - uid: 16966 + - uid: 34916 components: - type: Transform - pos: -99.5,25.5 + pos: 10.5,-9.5 parent: 1 - - uid: 16967 + - uid: 34917 components: - type: Transform - pos: -97.5,25.5 + pos: 10.5,-8.5 parent: 1 - - uid: 16968 + - uid: 34918 components: - type: Transform - pos: -97.5,21.5 + pos: 10.5,-7.5 parent: 1 - - uid: 16969 + - uid: 34919 components: - type: Transform - pos: -96.5,21.5 + pos: 9.5,-7.5 parent: 1 - - uid: 16970 + - uid: 34920 components: - type: Transform - pos: -95.5,21.5 + pos: 8.5,-7.5 parent: 1 - - uid: 16971 + - uid: 34921 components: - type: Transform - pos: -94.5,21.5 + pos: 7.5,-7.5 parent: 1 - - uid: 16972 + - uid: 34922 components: - type: Transform - pos: -93.5,21.5 + pos: 6.5,-7.5 parent: 1 - - uid: 16973 + - uid: 34923 components: - type: Transform - pos: -92.5,21.5 + pos: 5.5,-7.5 parent: 1 - - uid: 16974 + - uid: 34924 components: - type: Transform - pos: -91.5,21.5 + pos: 4.5,-7.5 parent: 1 - - uid: 16975 + - uid: 34925 components: - type: Transform - pos: -90.5,21.5 + pos: 3.5,-7.5 parent: 1 - - uid: 16976 + - uid: 34926 components: - type: Transform - pos: -89.5,21.5 + pos: 2.5,-7.5 parent: 1 - - uid: 16977 + - uid: 34927 components: - type: Transform - pos: -88.5,21.5 + pos: 1.5,-7.5 parent: 1 - - uid: 16978 + - uid: 34928 components: - type: Transform - pos: -87.5,21.5 + pos: 0.5,-7.5 parent: 1 - - uid: 16979 + - uid: 34929 components: - type: Transform - pos: -86.5,21.5 + pos: -0.5,-7.5 parent: 1 - - uid: 16980 + - uid: 34930 components: - type: Transform - pos: -85.5,21.5 + pos: -1.5,-7.5 parent: 1 - - uid: 16981 + - uid: 34931 components: - type: Transform - pos: -84.5,21.5 + pos: -2.5,-7.5 parent: 1 - - uid: 16982 + - uid: 34932 components: - type: Transform - pos: -83.5,21.5 + pos: -3.5,-7.5 parent: 1 - - uid: 16983 + - uid: 34933 components: - type: Transform - pos: -82.5,21.5 + pos: -4.5,-7.5 parent: 1 - - uid: 16984 + - uid: 34934 components: - type: Transform - pos: -81.5,21.5 + pos: -5.5,-7.5 parent: 1 - - uid: 16985 + - uid: 34935 components: - type: Transform - pos: -80.5,21.5 + pos: -6.5,-7.5 parent: 1 - - uid: 16986 + - uid: 34936 components: - type: Transform - pos: -79.5,21.5 + pos: -7.5,-7.5 parent: 1 - - uid: 16987 + - uid: 34937 components: - type: Transform - pos: -78.5,21.5 + pos: -8.5,-7.5 parent: 1 - - uid: 16988 + - uid: 34938 components: - type: Transform - pos: -77.5,21.5 + pos: -9.5,-7.5 parent: 1 - - uid: 16989 + - uid: 34939 components: - type: Transform - pos: -76.5,21.5 + pos: -10.5,-7.5 parent: 1 - - uid: 16990 + - uid: 34940 components: - type: Transform - pos: -75.5,21.5 + pos: -11.5,-7.5 parent: 1 - - uid: 16991 + - uid: 34941 components: - type: Transform - pos: -74.5,21.5 + pos: -12.5,-7.5 parent: 1 - - uid: 16992 + - uid: 34942 components: - type: Transform - pos: -74.5,20.5 + pos: -13.5,-7.5 parent: 1 - - uid: 16993 + - uid: 34943 components: - type: Transform - pos: -74.5,19.5 + pos: -13.5,-6.5 parent: 1 - - uid: 16994 + - uid: 34944 components: - type: Transform - pos: -74.5,18.5 + pos: -13.5,-5.5 parent: 1 - - uid: 16995 + - uid: 34945 components: - type: Transform - pos: -74.5,17.5 + pos: -13.5,-4.5 parent: 1 - - uid: 16996 + - uid: 34946 components: - type: Transform - pos: -74.5,16.5 + pos: -13.5,-3.5 parent: 1 - - uid: 16997 + - uid: 34947 components: - type: Transform - pos: -74.5,15.5 + pos: -13.5,-2.5 parent: 1 - - uid: 16998 + - uid: 34948 components: - type: Transform - pos: -74.5,14.5 + pos: -13.5,-1.5 parent: 1 - - uid: 16999 + - uid: 34949 components: - type: Transform - pos: -74.5,13.5 + pos: -13.5,-0.5 parent: 1 - - uid: 17000 + - uid: 34950 components: - type: Transform - pos: -74.5,12.5 + pos: -13.5,0.5 parent: 1 - - uid: 17001 + - uid: 34951 components: - type: Transform - pos: -74.5,11.5 + pos: -13.5,1.5 parent: 1 - - uid: 17002 + - uid: 34952 components: - type: Transform - pos: -74.5,10.5 + pos: -13.5,2.5 parent: 1 - - uid: 17003 + - uid: 34953 components: - type: Transform - pos: -74.5,9.5 + pos: -13.5,3.5 parent: 1 - - uid: 17004 + - uid: 34954 components: - type: Transform - pos: -73.5,9.5 + pos: -13.5,4.5 parent: 1 - - uid: 17005 + - uid: 34955 components: - type: Transform - pos: -72.5,9.5 + pos: -13.5,5.5 parent: 1 - - uid: 17006 + - uid: 34956 components: - type: Transform - pos: -71.5,9.5 + pos: -13.5,6.5 parent: 1 - - uid: 17007 + - uid: 34957 components: - type: Transform - pos: -70.5,9.5 + pos: -13.5,7.5 parent: 1 - - uid: 17008 + - uid: 34958 components: - type: Transform - pos: -69.5,9.5 + pos: -13.5,8.5 parent: 1 - - uid: 17009 + - uid: 34959 components: - type: Transform - pos: -68.5,9.5 + pos: -13.5,9.5 parent: 1 - - uid: 17010 + - uid: 34960 components: - type: Transform - pos: -67.5,9.5 + pos: -13.5,10.5 parent: 1 - - uid: 17011 + - uid: 34961 components: - type: Transform - pos: -66.5,9.5 + pos: -13.5,11.5 parent: 1 - - uid: 17012 + - uid: 34962 components: - type: Transform - pos: -65.5,9.5 + pos: -13.5,12.5 parent: 1 - - uid: 17013 + - uid: 34963 components: - type: Transform - pos: -64.5,9.5 + pos: -13.5,13.5 parent: 1 - - uid: 17014 + - uid: 34964 components: - type: Transform - pos: -63.5,9.5 + pos: -13.5,14.5 parent: 1 - - uid: 17015 + - uid: 34965 components: - type: Transform - pos: -62.5,9.5 + pos: -13.5,15.5 parent: 1 - - uid: 17016 + - uid: 34966 components: - type: Transform - pos: -61.5,9.5 + pos: -13.5,16.5 parent: 1 - - uid: 17017 + - uid: 35018 components: - type: Transform - pos: -60.5,9.5 + pos: 33.5,-44.5 parent: 1 - - uid: 17018 + - uid: 35019 components: - type: Transform - pos: -59.5,9.5 + pos: 33.5,-45.5 parent: 1 - - uid: 17019 + - uid: 35020 components: - type: Transform - pos: -58.5,9.5 + pos: 32.5,-45.5 parent: 1 - - uid: 17020 + - uid: 35021 components: - type: Transform - pos: -57.5,9.5 + pos: 31.5,-45.5 parent: 1 - - uid: 17021 + - uid: 35022 components: - type: Transform - pos: -56.5,9.5 + pos: 30.5,-45.5 parent: 1 - - uid: 17022 + - uid: 35023 components: - type: Transform - pos: -55.5,9.5 + pos: 29.5,-45.5 parent: 1 - - uid: 17023 + - uid: 35024 components: - type: Transform - pos: -54.5,9.5 + pos: 28.5,-45.5 parent: 1 - - uid: 17024 + - uid: 35025 components: - type: Transform - pos: -53.5,9.5 + pos: 27.5,-45.5 parent: 1 - - uid: 17025 + - uid: 35026 components: - type: Transform - pos: -52.5,9.5 + pos: 26.5,-45.5 parent: 1 - - uid: 17026 + - uid: 35027 components: - type: Transform - pos: -51.5,9.5 + pos: 25.5,-45.5 parent: 1 - - uid: 17027 + - uid: 35028 components: - type: Transform - pos: -51.5,10.5 + pos: 24.5,-45.5 parent: 1 - - uid: 17028 + - uid: 35029 components: - type: Transform - pos: -51.5,11.5 + pos: 23.5,-45.5 parent: 1 - - uid: 17029 + - uid: 35030 components: - type: Transform - pos: -51.5,12.5 + pos: 22.5,-45.5 parent: 1 - - uid: 17030 + - uid: 35031 components: - type: Transform - pos: -51.5,13.5 + pos: 21.5,-45.5 parent: 1 - - uid: 17031 + - uid: 35032 components: - type: Transform - pos: -50.5,13.5 + pos: 20.5,-45.5 parent: 1 - - uid: 17032 + - uid: 35033 components: - type: Transform - pos: -52.5,13.5 + pos: 19.5,-45.5 parent: 1 - - uid: 17035 + - uid: 35034 components: - type: Transform - pos: -50.5,9.5 + pos: 18.5,-45.5 parent: 1 - - uid: 17036 + - uid: 35035 components: - type: Transform - pos: -49.5,9.5 + pos: 17.5,-45.5 parent: 1 - - uid: 17037 + - uid: 35036 components: - type: Transform - pos: -48.5,9.5 + pos: 16.5,-45.5 parent: 1 - - uid: 17038 + - uid: 35037 components: - type: Transform - pos: -47.5,9.5 + pos: 15.5,-45.5 parent: 1 - - uid: 17039 + - uid: 35038 components: - type: Transform - pos: -46.5,9.5 + pos: 14.5,-45.5 parent: 1 - - uid: 17040 + - uid: 35039 components: - type: Transform - pos: -45.5,9.5 + pos: 13.5,-45.5 parent: 1 - - uid: 17041 + - uid: 35040 components: - type: Transform - pos: -44.5,9.5 + pos: 12.5,-45.5 parent: 1 - - uid: 17042 + - uid: 35041 components: - type: Transform - pos: -43.5,9.5 + pos: 11.5,-45.5 parent: 1 - - uid: 17043 + - uid: 35042 components: - type: Transform - pos: -42.5,9.5 + pos: 10.5,-45.5 parent: 1 - - uid: 17044 + - uid: 35043 components: - type: Transform - pos: -41.5,9.5 + pos: 9.5,-45.5 parent: 1 - - uid: 17045 + - uid: 35044 components: - type: Transform - pos: -40.5,9.5 + pos: 8.5,-45.5 parent: 1 - - uid: 17046 + - uid: 35045 components: - type: Transform - pos: -39.5,9.5 + pos: 7.5,-45.5 parent: 1 - - uid: 17047 + - uid: 35046 components: - type: Transform - pos: -39.5,8.5 + pos: 6.5,-45.5 parent: 1 - - uid: 17048 + - uid: 35047 components: - type: Transform - pos: -39.5,7.5 + pos: 5.5,-45.5 parent: 1 - - uid: 17049 + - uid: 35048 components: - type: Transform - pos: -38.5,7.5 + pos: 4.5,-45.5 parent: 1 - - uid: 17050 + - uid: 35049 components: - type: Transform - pos: -37.5,7.5 + pos: 3.5,-45.5 parent: 1 - - uid: 17051 + - uid: 35050 components: - type: Transform - pos: -36.5,7.5 + pos: 2.5,-45.5 parent: 1 - - uid: 17052 + - uid: 35051 components: - type: Transform - pos: -36.5,8.5 + pos: 1.5,-45.5 parent: 1 - - uid: 17053 + - uid: 35052 components: - type: Transform - pos: -36.5,9.5 + pos: 0.5,-45.5 parent: 1 - - uid: 17054 + - uid: 35053 components: - type: Transform - pos: -36.5,10.5 + pos: -0.5,-45.5 parent: 1 - - uid: 17055 + - uid: 35054 components: - type: Transform - pos: -36.5,11.5 + pos: -1.5,-45.5 parent: 1 - - uid: 17056 + - uid: 35055 components: - type: Transform - pos: -36.5,12.5 + pos: -15.5,-50.5 parent: 1 - - uid: 17057 + - uid: 35056 components: - type: Transform - pos: -36.5,13.5 + pos: -15.5,-51.5 parent: 1 - - uid: 17058 + - uid: 35057 components: - type: Transform - pos: -36.5,14.5 + pos: -16.5,-51.5 parent: 1 - - uid: 17059 + - uid: 35058 components: - type: Transform - pos: -36.5,15.5 + pos: -16.5,-52.5 parent: 1 - - uid: 17060 + - uid: 35059 components: - type: Transform - pos: -36.5,16.5 + pos: -16.5,-53.5 parent: 1 - - uid: 17061 + - uid: 35060 components: - type: Transform - pos: -35.5,16.5 + pos: -16.5,-54.5 parent: 1 - - uid: 17062 + - uid: 35061 components: - type: Transform - pos: -34.5,16.5 + pos: -16.5,-55.5 parent: 1 - - uid: 17063 + - uid: 35062 components: - type: Transform - pos: -33.5,16.5 + pos: -16.5,-56.5 parent: 1 - - uid: 17064 + - uid: 35063 components: - type: Transform - pos: -32.5,16.5 + pos: -17.5,-56.5 parent: 1 - - uid: 17065 + - uid: 35064 components: - type: Transform - pos: -31.5,16.5 + pos: -18.5,-56.5 parent: 1 - - uid: 17066 + - uid: 35065 components: - type: Transform - pos: -30.5,16.5 + pos: -19.5,-56.5 parent: 1 - - uid: 17067 + - uid: 35066 components: - type: Transform - pos: -29.5,16.5 + pos: -20.5,-56.5 parent: 1 - - uid: 17068 + - uid: 35067 components: - type: Transform - pos: -28.5,16.5 + pos: -21.5,-56.5 parent: 1 - - uid: 17069 + - uid: 35068 components: - type: Transform - pos: -27.5,16.5 + pos: -22.5,-56.5 parent: 1 - - uid: 17070 + - uid: 35069 components: - type: Transform - pos: -26.5,16.5 + pos: -23.5,-56.5 parent: 1 - - uid: 17071 + - uid: 35070 components: - type: Transform - pos: -25.5,16.5 + pos: -24.5,-56.5 parent: 1 - - uid: 17072 + - uid: 35071 components: - type: Transform - pos: -24.5,16.5 + pos: -25.5,-56.5 parent: 1 - - uid: 17073 + - uid: 35083 components: - type: Transform - pos: -23.5,16.5 + pos: -96.5,-20.5 parent: 1 - - uid: 17074 + - uid: 35084 components: - type: Transform - pos: -22.5,16.5 + pos: -96.5,-19.5 parent: 1 - - uid: 17075 + - uid: 35085 components: - type: Transform - pos: -21.5,16.5 + pos: -96.5,-18.5 parent: 1 - - uid: 17076 + - uid: 35086 components: - type: Transform - pos: -20.5,16.5 + pos: -96.5,-17.5 parent: 1 - - uid: 17077 + - uid: 35087 components: - type: Transform - pos: -19.5,16.5 + pos: -96.5,-16.5 parent: 1 - - uid: 17078 + - uid: 35088 components: - type: Transform - pos: -19.5,15.5 + pos: -96.5,-15.5 parent: 1 - - uid: 17079 + - uid: 35089 components: - type: Transform - pos: -19.5,14.5 + pos: -96.5,-14.5 parent: 1 - - uid: 17080 + - uid: 35090 components: - type: Transform - pos: -20.5,14.5 + pos: -96.5,-13.5 parent: 1 - - uid: 17081 + - uid: 35091 components: - type: Transform - pos: -21.5,14.5 + pos: -96.5,-12.5 parent: 1 - - uid: 17082 + - uid: 35092 components: - type: Transform - pos: -22.5,14.5 + pos: -96.5,-11.5 parent: 1 - - uid: 17083 + - uid: 35093 components: - type: Transform - pos: -23.5,14.5 + pos: -97.5,-11.5 parent: 1 - - uid: 17084 + - uid: 35094 components: - type: Transform - pos: -24.5,14.5 + pos: -97.5,-10.5 parent: 1 - - uid: 17085 + - uid: 35095 components: - type: Transform - pos: -24.5,13.5 + pos: -97.5,-9.5 parent: 1 - - uid: 17088 + - uid: 35096 components: - type: Transform - pos: -21.5,13.5 + pos: -97.5,-8.5 parent: 1 - - uid: 17089 + - uid: 35097 components: - type: Transform - pos: -18.5,16.5 + pos: -97.5,-7.5 parent: 1 - - uid: 17090 + - uid: 35098 components: - type: Transform - pos: -17.5,16.5 + pos: -97.5,-6.5 parent: 1 - - uid: 17091 + - uid: 35099 components: - type: Transform - pos: -16.5,16.5 + pos: -96.5,-6.5 parent: 1 - - uid: 17092 + - uid: 35100 components: - type: Transform - pos: -16.5,17.5 + pos: -95.5,-6.5 parent: 1 - - uid: 17093 + - uid: 35101 components: - type: Transform - pos: -16.5,18.5 + pos: -94.5,-6.5 parent: 1 - - uid: 17094 + - uid: 35102 components: - type: Transform - pos: -16.5,19.5 + pos: -93.5,-6.5 parent: 1 - - uid: 17095 + - uid: 35103 components: - type: Transform - pos: -16.5,20.5 + pos: -93.5,-5.5 parent: 1 - - uid: 17096 + - uid: 35104 components: - type: Transform - pos: -17.5,20.5 + pos: -92.5,-5.5 parent: 1 - - uid: 17097 + - uid: 35105 components: - type: Transform - pos: -18.5,20.5 + pos: -91.5,-5.5 parent: 1 - - uid: 17098 + - uid: 35106 components: - type: Transform - pos: -19.5,20.5 + pos: -90.5,-5.5 parent: 1 - - uid: 17099 + - uid: 35107 components: - type: Transform - pos: -20.5,20.5 + pos: -89.5,-5.5 parent: 1 - - uid: 17100 + - uid: 35108 components: - type: Transform - pos: -21.5,20.5 + pos: -88.5,-5.5 parent: 1 - - uid: 17101 + - uid: 35109 components: - type: Transform - pos: -22.5,20.5 + pos: -87.5,-5.5 parent: 1 - - uid: 17102 + - uid: 35110 components: - type: Transform - pos: -23.5,20.5 + pos: -87.5,-4.5 parent: 1 - - uid: 17103 + - uid: 35111 components: - type: Transform - pos: -24.5,20.5 + pos: -87.5,-3.5 parent: 1 - - uid: 17104 + - uid: 35112 components: - type: Transform - pos: -0.5,17.5 + pos: -87.5,-2.5 parent: 1 - - uid: 17121 + - uid: 35113 components: - type: Transform - pos: 13.5,14.5 + pos: -87.5,-1.5 parent: 1 - - uid: 17176 + - uid: 35114 components: - type: Transform - pos: 14.5,14.5 + pos: -88.5,-1.5 parent: 1 - - uid: 17177 + - uid: 35115 components: - type: Transform - pos: 15.5,14.5 + pos: -89.5,-1.5 parent: 1 - - uid: 17178 + - uid: 35116 components: - type: Transform - pos: 16.5,14.5 + pos: -89.5,-0.5 parent: 1 - - uid: 17179 + - uid: 35117 components: - type: Transform - pos: 16.5,15.5 + pos: -89.5,0.5 parent: 1 - - uid: 17180 + - uid: 35118 components: - type: Transform - pos: 16.5,16.5 + pos: -89.5,1.5 parent: 1 - - uid: 18089 + - uid: 35119 components: - type: Transform - pos: -29.5,-74.5 + pos: -89.5,2.5 parent: 1 - - uid: 18090 + - uid: 35120 components: - type: Transform - pos: -29.5,-72.5 + pos: -89.5,3.5 parent: 1 - - uid: 18120 + - uid: 35121 components: - type: Transform - pos: -117.5,-16.5 + pos: -89.5,4.5 parent: 1 - - uid: 18363 + - uid: 35122 components: - type: Transform - pos: -117.5,-18.5 + pos: -89.5,5.5 parent: 1 - - uid: 18583 + - uid: 35123 components: - type: Transform - pos: -117.5,-20.5 + pos: -89.5,6.5 parent: 1 - - uid: 18894 + - uid: 35124 components: - type: Transform - pos: -119.5,-20.5 + pos: -89.5,7.5 parent: 1 - - uid: 18897 + - uid: 35125 components: - type: Transform - pos: -121.5,-20.5 + pos: -89.5,8.5 parent: 1 - - uid: 18898 + - uid: 35126 components: - type: Transform - pos: -133.5,-33.5 + pos: -90.5,8.5 parent: 1 - - uid: 19154 + - uid: 35127 components: - type: Transform - pos: -85.5,-36.5 + pos: -91.5,8.5 parent: 1 - - uid: 19244 + - uid: 35128 components: - type: Transform - pos: -131.5,-32.5 + pos: -91.5,9.5 parent: 1 - - uid: 19251 + - uid: 35129 components: - type: Transform - pos: -133.5,-41.5 + pos: -92.5,9.5 parent: 1 - - uid: 19254 + - uid: 35130 components: - type: Transform - pos: -135.5,-35.5 + pos: -93.5,9.5 parent: 1 - - uid: 19499 + - uid: 35131 components: - type: Transform - pos: -111.5,11.5 + pos: -94.5,9.5 parent: 1 - - uid: 19500 + - uid: 35132 components: - type: Transform - pos: -111.5,10.5 + pos: -95.5,9.5 parent: 1 - - uid: 19501 + - uid: 35133 components: - type: Transform - pos: -111.5,9.5 + pos: -96.5,9.5 parent: 1 - - uid: 19503 + - uid: 35134 components: - type: Transform - pos: -111.5,7.5 + pos: -96.5,10.5 parent: 1 - - uid: 20258 + - uid: 35135 components: - type: Transform - pos: -21.5,21.5 + pos: -96.5,11.5 parent: 1 - - uid: 20259 + - uid: 35136 components: - type: Transform - pos: -21.5,22.5 + pos: -96.5,12.5 parent: 1 - - uid: 20325 + - uid: 35137 components: - type: Transform - pos: -133.5,-40.5 + pos: -96.5,13.5 parent: 1 - - uid: 20375 + - uid: 35138 components: - type: Transform - pos: -133.5,-39.5 + pos: -97.5,13.5 parent: 1 - - uid: 20385 + - uid: 35139 components: - type: Transform - pos: -134.5,-39.5 + pos: -60.5,-37.5 parent: 1 - - uid: 20386 + - uid: 35140 components: - type: Transform - pos: -135.5,-39.5 + pos: -60.5,-36.5 parent: 1 - - uid: 20392 + - uid: 35141 components: - type: Transform - pos: -135.5,-38.5 + pos: -60.5,-35.5 parent: 1 - - uid: 21363 + - uid: 35142 components: - type: Transform - pos: 12.5,14.5 + pos: -60.5,-34.5 parent: 1 - - uid: 21364 + - uid: 35143 components: - type: Transform - pos: 12.5,13.5 + pos: -60.5,-33.5 parent: 1 - - uid: 21365 + - uid: 35144 components: - type: Transform - pos: 12.5,12.5 + pos: -60.5,-32.5 parent: 1 - - uid: 21366 + - uid: 35145 components: - type: Transform - pos: 12.5,11.5 + pos: -60.5,-31.5 parent: 1 - - uid: 21367 + - uid: 35146 components: - type: Transform - pos: 12.5,10.5 + pos: -60.5,-30.5 parent: 1 - - uid: 21368 + - uid: 35147 components: - type: Transform - pos: 12.5,9.5 + pos: -60.5,-29.5 parent: 1 - - uid: 21369 + - uid: 35148 components: - type: Transform - pos: 12.5,8.5 + pos: -60.5,-28.5 parent: 1 - - uid: 21370 + - uid: 35149 components: - type: Transform - pos: 12.5,7.5 + pos: -60.5,-27.5 parent: 1 - - uid: 21371 + - uid: 35150 components: - type: Transform - pos: 12.5,6.5 + pos: -60.5,-26.5 parent: 1 - - uid: 21372 + - uid: 35151 components: - type: Transform - pos: 12.5,5.5 + pos: -60.5,-25.5 parent: 1 - - uid: 21373 + - uid: 35152 components: - type: Transform - pos: 13.5,5.5 + pos: -60.5,-24.5 parent: 1 - - uid: 21374 + - uid: 35153 components: - type: Transform - pos: 14.5,5.5 + pos: -60.5,-23.5 parent: 1 - - uid: 21375 + - uid: 35154 components: - type: Transform - pos: 15.5,5.5 + pos: -60.5,-22.5 parent: 1 - - uid: 21376 + - uid: 35155 components: - type: Transform - pos: 16.5,5.5 + pos: -60.5,-21.5 parent: 1 - - uid: 21377 + - uid: 35156 components: - type: Transform - pos: 17.5,5.5 + pos: -59.5,-21.5 parent: 1 - - uid: 21378 + - uid: 35157 components: - type: Transform - pos: 18.5,5.5 + pos: -58.5,-21.5 parent: 1 - - uid: 21379 + - uid: 35158 components: - type: Transform - pos: 19.5,5.5 + pos: -58.5,-20.5 parent: 1 - - uid: 21380 + - uid: 35159 components: - type: Transform - pos: 20.5,5.5 + pos: -58.5,-19.5 parent: 1 - - uid: 21381 + - uid: 35160 components: - type: Transform - pos: 21.5,5.5 + pos: -58.5,-18.5 parent: 1 - - uid: 21384 + - uid: 35161 components: - type: Transform - pos: 21.5,8.5 + pos: -58.5,-17.5 parent: 1 - - uid: 21385 + - uid: 35162 components: - type: Transform - pos: 20.5,8.5 + pos: -58.5,-16.5 parent: 1 - - uid: 21386 + - uid: 35163 components: - type: Transform - pos: 20.5,9.5 + pos: -58.5,-15.5 parent: 1 - - uid: 22625 + - uid: 35164 components: - type: Transform - pos: -113.5,-20.5 + pos: -58.5,-14.5 parent: 1 - - uid: 23003 + - uid: 35165 components: - type: Transform - pos: -123.5,-20.5 + pos: -59.5,-14.5 parent: 1 - - uid: 23004 + - uid: 35166 components: - type: Transform - pos: -123.5,-25.5 + pos: -60.5,-14.5 parent: 1 - - uid: 23005 + - uid: 35167 components: - type: Transform - pos: -124.5,-25.5 + pos: -61.5,-14.5 parent: 1 - - uid: 23006 + - uid: 35168 components: - type: Transform - pos: -111.5,-10.5 + pos: -62.5,-14.5 parent: 1 - - uid: 23007 + - uid: 35169 components: - type: Transform - pos: -135.5,-36.5 + pos: -63.5,-14.5 parent: 1 - - uid: 23023 + - uid: 35170 components: - type: Transform - pos: -131.5,-31.5 + pos: -63.5,-13.5 parent: 1 - - uid: 23051 + - uid: 35171 components: - type: Transform - pos: -123.5,-21.5 + pos: -63.5,-12.5 parent: 1 - - uid: 25264 + - uid: 35172 components: - type: Transform - pos: -129.5,-25.5 + pos: -63.5,-11.5 parent: 1 - - uid: 25265 + - uid: 35173 components: - type: Transform - pos: -128.5,-25.5 + pos: -63.5,-10.5 parent: 1 - - uid: 25266 + - uid: 35174 components: - type: Transform - pos: -127.5,-25.5 + pos: -62.5,-10.5 parent: 1 - - uid: 25267 + - uid: 35175 components: - type: Transform - pos: -126.5,-25.5 + pos: -61.5,-10.5 parent: 1 - - uid: 25268 + - uid: 35176 components: - type: Transform - pos: -125.5,-25.5 + pos: -61.5,-9.5 parent: 1 - - uid: 25269 + - uid: 35177 components: - type: Transform - pos: -123.5,-24.5 + pos: -61.5,-8.5 parent: 1 - - uid: 25270 + - uid: 35178 components: - type: Transform - pos: -123.5,-23.5 + pos: -61.5,-7.5 parent: 1 - - uid: 25271 + - uid: 35179 components: - type: Transform - pos: -123.5,-22.5 + pos: -61.5,-6.5 parent: 1 - - uid: 25827 + - uid: 35180 components: - type: Transform - pos: -130.5,-25.5 + pos: -61.5,-5.5 parent: 1 - - uid: 25828 + - uid: 35181 components: - type: Transform - pos: -131.5,-25.5 + pos: -61.5,-4.5 parent: 1 - - uid: 25829 + - uid: 35182 components: - type: Transform - pos: -131.5,-26.5 + pos: -61.5,-3.5 parent: 1 - - uid: 25986 + - uid: 35183 components: - type: Transform - pos: -131.5,-27.5 + pos: -61.5,-2.5 parent: 1 - - uid: 25987 + - uid: 35184 components: - type: Transform - pos: -131.5,-28.5 + pos: -61.5,-1.5 parent: 1 - - uid: 25988 + - uid: 35185 components: - type: Transform - pos: -131.5,-29.5 + pos: -61.5,-0.5 parent: 1 - - uid: 25989 + - uid: 35186 components: - type: Transform - pos: -131.5,-30.5 + pos: -61.5,0.5 parent: 1 - - uid: 25990 + - uid: 35187 components: - type: Transform - pos: -132.5,-32.5 + pos: -61.5,1.5 parent: 1 - - uid: 25991 + - uid: 35188 components: - type: Transform - pos: -134.5,-34.5 + pos: -61.5,2.5 parent: 1 - - uid: 25992 + - uid: 35189 components: - type: Transform - pos: -109.5,-11.5 + pos: -61.5,3.5 parent: 1 - - uid: 27173 + - uid: 35190 components: - type: Transform - pos: -106.5,-11.5 + pos: -61.5,4.5 parent: 1 - - uid: 28646 + - uid: 35191 components: - type: Transform - pos: -80.5,-39.5 + pos: -61.5,5.5 parent: 1 - - uid: 29220 + - uid: 35192 components: - type: Transform - pos: -136.5,-37.5 + pos: -61.5,6.5 parent: 1 - - uid: 29469 + - uid: 35193 components: - type: Transform - pos: 22.5,8.5 + pos: -61.5,7.5 parent: 1 - - uid: 29470 + - uid: 35194 components: - type: Transform - pos: 23.5,5.5 + pos: -61.5,8.5 parent: 1 - - uid: 29544 + - uid: 35195 components: - type: Transform - pos: -106.5,8.5 + pos: -53.5,-64.5 parent: 1 - - uid: 29603 + - uid: 35196 components: - type: Transform - pos: -79.5,-39.5 + pos: -52.5,-64.5 parent: 1 - - uid: 30387 + - uid: 35197 components: - type: Transform - pos: 9.5,-38.5 + pos: -51.5,-64.5 parent: 1 - - uid: 32309 + - uid: 35198 components: - type: Transform - pos: -78.5,-39.5 + pos: -50.5,-64.5 parent: 1 - - uid: 34247 + - uid: 35199 components: - type: Transform - pos: -146.5,-39.5 + pos: -49.5,-64.5 parent: 1 - - uid: 34248 + - uid: 35200 components: - type: Transform - pos: -147.5,-39.5 + pos: -49.5,-63.5 parent: 1 - - uid: 34249 + - uid: 35201 components: - type: Transform - pos: -147.5,-40.5 + pos: -49.5,-62.5 parent: 1 - - uid: 34250 + - uid: 35202 components: - type: Transform - pos: -147.5,-41.5 + pos: -49.5,-61.5 parent: 1 - - uid: 34251 + - uid: 35203 components: - type: Transform - pos: -147.5,-42.5 + pos: -49.5,-60.5 parent: 1 - - uid: 34252 + - uid: 35204 components: - type: Transform - pos: -147.5,-43.5 + pos: -49.5,-59.5 parent: 1 - - uid: 34258 + - uid: 35205 components: - type: Transform - pos: -145.5,-39.5 + pos: -48.5,-59.5 parent: 1 - - uid: 34259 + - uid: 35206 components: - type: Transform - pos: -144.5,-39.5 + pos: -47.5,-59.5 parent: 1 - - uid: 34260 + - uid: 35207 components: - type: Transform - pos: -144.5,-38.5 + pos: -46.5,-59.5 parent: 1 - - uid: 34261 + - uid: 35208 components: - type: Transform - pos: -144.5,-37.5 + pos: -45.5,-59.5 parent: 1 - - uid: 34263 + - uid: 35209 components: - type: Transform - pos: -143.5,-37.5 + pos: -45.5,-58.5 parent: 1 - - uid: 34264 + - uid: 35210 components: - type: Transform - pos: -142.5,-37.5 + pos: -45.5,-57.5 parent: 1 - - uid: 34265 + - uid: 35211 components: - type: Transform - pos: -141.5,-37.5 + pos: -45.5,-56.5 parent: 1 - - uid: 34266 + - uid: 35212 components: - type: Transform - pos: -140.5,-37.5 + pos: -45.5,-55.5 parent: 1 - - uid: 34270 + - uid: 35213 components: - type: Transform - pos: -139.5,-37.5 + pos: -45.5,-54.5 parent: 1 - - uid: 34271 + - uid: 35214 components: - type: Transform - pos: -138.5,-37.5 + pos: -45.5,-53.5 parent: 1 - - uid: 34272 + - uid: 35215 components: - type: Transform - pos: -137.5,-37.5 + pos: -45.5,-52.5 parent: 1 - - uid: 34273 + - uid: 35216 components: - type: Transform - pos: -141.5,-38.5 + pos: -45.5,-51.5 parent: 1 - - uid: 34274 + - uid: 35217 components: - type: Transform - pos: -141.5,-39.5 + pos: -44.5,-51.5 parent: 1 - - uid: 34276 + - uid: 35218 components: - type: Transform - pos: -139.5,-38.5 + pos: -43.5,-51.5 parent: 1 - - uid: 34277 + - uid: 35219 components: - type: Transform - pos: -139.5,-39.5 + pos: -42.5,-51.5 parent: 1 - - uid: 34295 + - uid: 35220 components: - type: Transform - pos: -153.5,-67.5 + pos: -42.5,-50.5 parent: 1 - - uid: 34296 + - uid: 35221 components: - type: Transform - pos: -153.5,-66.5 + pos: -42.5,-49.5 parent: 1 - - uid: 34297 + - uid: 35222 components: - type: Transform - pos: -153.5,-65.5 + pos: -42.5,-48.5 parent: 1 - - uid: 34298 + - uid: 35223 components: - type: Transform - pos: -153.5,-64.5 + pos: -42.5,-47.5 parent: 1 - - uid: 34299 + - uid: 35224 components: - type: Transform - pos: -153.5,-63.5 + pos: -41.5,-47.5 parent: 1 - - uid: 34300 + - uid: 35225 components: - type: Transform - pos: -153.5,-62.5 + pos: -40.5,-47.5 parent: 1 - - uid: 34301 + - uid: 35226 components: - type: Transform - pos: -153.5,-61.5 + pos: -40.5,-46.5 parent: 1 - - uid: 34302 + - uid: 35227 components: - type: Transform - pos: -153.5,-60.5 + pos: -40.5,-45.5 parent: 1 - - uid: 34303 + - uid: 35228 components: - type: Transform - pos: -153.5,-59.5 + pos: -40.5,-44.5 parent: 1 - - uid: 34304 + - uid: 35229 components: - type: Transform - pos: -153.5,-58.5 + pos: -40.5,-43.5 parent: 1 - - uid: 34305 + - uid: 35230 components: - type: Transform - pos: -153.5,-57.5 + pos: -40.5,-42.5 parent: 1 - - uid: 34306 + - uid: 35231 components: - type: Transform - pos: -153.5,-56.5 + pos: -40.5,-41.5 parent: 1 - - uid: 34307 + - uid: 35232 components: - type: Transform - pos: -153.5,-55.5 + pos: -40.5,-40.5 parent: 1 - - uid: 34308 + - uid: 35233 components: - type: Transform - pos: -153.5,-54.5 + pos: -40.5,-39.5 parent: 1 - - uid: 34309 + - uid: 35234 components: - type: Transform - pos: -153.5,-53.5 + pos: -40.5,-38.5 parent: 1 - - uid: 34310 + - uid: 35235 components: - type: Transform - pos: -153.5,-52.5 + pos: -40.5,-37.5 parent: 1 - - uid: 34311 + - uid: 35236 components: - type: Transform - pos: -153.5,-51.5 + pos: -40.5,-36.5 parent: 1 - - uid: 34312 + - uid: 35237 components: - type: Transform - pos: -153.5,-50.5 + pos: -40.5,-35.5 parent: 1 - - uid: 34313 + - uid: 35238 components: - type: Transform - pos: -153.5,-49.5 + pos: -39.5,-35.5 parent: 1 - - uid: 34314 + - uid: 35239 components: - type: Transform - pos: -153.5,-48.5 + pos: -38.5,-35.5 parent: 1 - - uid: 34315 + - uid: 35240 components: - type: Transform - pos: -153.5,-47.5 + pos: -37.5,-35.5 parent: 1 - - uid: 34316 + - uid: 35241 components: - type: Transform - pos: -153.5,-46.5 + pos: -36.5,-35.5 parent: 1 - - uid: 34317 + - uid: 35242 components: - type: Transform - pos: -153.5,-45.5 + pos: -36.5,-34.5 parent: 1 - - uid: 34318 + - uid: 35243 components: - type: Transform - pos: -153.5,-44.5 + pos: -36.5,-33.5 parent: 1 - - uid: 34319 + - uid: 35244 components: - type: Transform - pos: -153.5,-43.5 + pos: -36.5,-32.5 parent: 1 - - uid: 34320 + - uid: 35245 components: - type: Transform - pos: -152.5,-43.5 + pos: -36.5,-31.5 parent: 1 - - uid: 34321 + - uid: 35246 components: - type: Transform - pos: -151.5,-43.5 + pos: -36.5,-30.5 parent: 1 - - uid: 34322 + - uid: 35247 components: - type: Transform - pos: -150.5,-43.5 + pos: -36.5,-29.5 parent: 1 - - uid: 34323 + - uid: 35248 components: - type: Transform - pos: -149.5,-43.5 + pos: -36.5,-28.5 parent: 1 - - uid: 34324 + - uid: 35249 components: - type: Transform - pos: -148.5,-43.5 + pos: -36.5,-27.5 parent: 1 - - uid: 34325 + - uid: 35250 components: - type: Transform - pos: -154.5,-50.5 + pos: -36.5,-26.5 parent: 1 - - uid: 34326 + - uid: 35251 components: - type: Transform - pos: -160.5,-49.5 + pos: -37.5,-26.5 parent: 1 - - uid: 34327 + - uid: 35252 components: - type: Transform - pos: -159.5,-49.5 + pos: -38.5,-26.5 parent: 1 - - uid: 34328 + - uid: 35253 components: - type: Transform - pos: -158.5,-49.5 + pos: -39.5,-26.5 parent: 1 - - uid: 34329 + - uid: 35254 components: - type: Transform - pos: -157.5,-49.5 + pos: -41.5,8.5 parent: 1 - - uid: 34330 + - uid: 35255 components: - type: Transform - pos: -156.5,-49.5 + pos: -41.5,7.5 parent: 1 - - uid: 34331 + - uid: 35256 components: - type: Transform - pos: -155.5,-49.5 + pos: -41.5,6.5 parent: 1 - - uid: 34332 + - uid: 35257 components: - type: Transform - pos: -160.5,-51.5 + pos: -41.5,5.5 parent: 1 - - uid: 34333 + - uid: 35258 components: - type: Transform - pos: -159.5,-51.5 + pos: -41.5,4.5 parent: 1 - - uid: 34334 + - uid: 35259 components: - type: Transform - pos: -158.5,-51.5 + pos: -41.5,3.5 parent: 1 - - uid: 34335 + - uid: 35260 components: - type: Transform - pos: -157.5,-51.5 + pos: -41.5,2.5 parent: 1 - - uid: 34336 + - uid: 35261 components: - type: Transform - pos: -156.5,-51.5 + pos: -41.5,1.5 parent: 1 - - uid: 34337 + - uid: 35262 components: - type: Transform - pos: -155.5,-51.5 + pos: -41.5,0.5 parent: 1 - - uid: 34338 + - uid: 35263 components: - type: Transform - pos: -155.5,-50.5 + pos: -41.5,-0.5 parent: 1 - - uid: 34339 + - uid: 35264 components: - type: Transform - pos: -151.5,-49.5 + pos: -41.5,-1.5 parent: 1 - - uid: 34340 + - uid: 35265 components: - type: Transform - pos: -150.5,-49.5 + pos: -41.5,-2.5 parent: 1 - - uid: 34341 + - uid: 35266 components: - type: Transform - pos: -149.5,-49.5 + pos: -41.5,-3.5 parent: 1 - - uid: 34342 + - uid: 35267 components: - type: Transform - pos: -148.5,-49.5 + pos: -41.5,-4.5 parent: 1 - - uid: 34343 + - uid: 35268 components: - type: Transform - pos: -147.5,-49.5 + pos: -41.5,-5.5 parent: 1 - - uid: 34344 + - uid: 35269 components: - type: Transform - pos: -146.5,-49.5 + pos: -41.5,-6.5 parent: 1 - - uid: 34345 + - uid: 35270 components: - type: Transform - pos: -146.5,-51.5 + pos: -41.5,-7.5 parent: 1 - - uid: 34346 + - uid: 35271 components: - type: Transform - pos: -147.5,-51.5 + pos: -41.5,-8.5 parent: 1 - - uid: 34347 + - uid: 35272 components: - type: Transform - pos: -148.5,-51.5 + pos: -41.5,-9.5 parent: 1 - - uid: 34348 + - uid: 35273 components: - type: Transform - pos: -149.5,-51.5 + pos: -41.5,-10.5 parent: 1 - - uid: 34349 + - uid: 35274 components: - type: Transform - pos: -150.5,-51.5 + pos: -41.5,-11.5 parent: 1 - - uid: 34350 + - uid: 35275 components: - type: Transform - pos: -151.5,-51.5 + pos: -41.5,-12.5 parent: 1 - - uid: 34351 + - uid: 35276 components: - type: Transform - pos: -151.5,-53.5 + pos: -41.5,-13.5 parent: 1 - - uid: 34352 + - uid: 35277 components: - type: Transform - pos: -150.5,-53.5 + pos: -41.5,-14.5 parent: 1 - - uid: 34353 + - uid: 35278 components: - type: Transform - pos: -149.5,-53.5 + pos: -41.5,-15.5 parent: 1 - - uid: 34354 + - uid: 35279 components: - type: Transform - pos: -148.5,-53.5 + pos: -41.5,-16.5 parent: 1 - - uid: 34355 + - uid: 35280 components: - type: Transform - pos: -147.5,-53.5 + pos: -41.5,-17.5 parent: 1 - - uid: 34356 + - uid: 35281 components: - type: Transform - pos: -146.5,-53.5 + pos: -41.5,-18.5 parent: 1 - - uid: 34357 + - uid: 35282 components: - type: Transform - pos: -146.5,-55.5 + pos: -41.5,-19.5 parent: 1 - - uid: 34358 + - uid: 35283 components: - type: Transform - pos: -147.5,-55.5 + pos: -41.5,-20.5 parent: 1 - - uid: 34359 + - uid: 35284 components: - type: Transform - pos: -148.5,-55.5 + pos: -41.5,-21.5 parent: 1 - - uid: 34360 + - uid: 35285 components: - type: Transform - pos: -149.5,-55.5 + pos: -41.5,-22.5 parent: 1 - - uid: 34361 + - uid: 35286 components: - type: Transform - pos: -150.5,-55.5 + pos: -41.5,-23.5 parent: 1 - - uid: 34362 + - uid: 35287 components: - type: Transform - pos: -151.5,-55.5 + pos: -41.5,-24.5 parent: 1 - - uid: 34363 + - uid: 35288 components: - type: Transform - pos: -151.5,-57.5 + pos: -41.5,-25.5 parent: 1 - - uid: 34364 + - uid: 35289 components: - type: Transform - pos: -150.5,-57.5 + pos: -41.5,-26.5 parent: 1 - - uid: 34365 + - uid: 35290 components: - type: Transform - pos: -149.5,-57.5 + pos: -40.5,-26.5 parent: 1 - - uid: 34366 + - uid: 35291 components: - type: Transform - pos: -148.5,-57.5 + pos: -12.5,-8.5 parent: 1 - - uid: 34367 + - uid: 35292 components: - type: Transform - pos: -147.5,-57.5 + pos: -12.5,-9.5 parent: 1 - - uid: 34368 + - uid: 35293 components: - type: Transform - pos: -146.5,-57.5 + pos: -12.5,-10.5 parent: 1 - - uid: 34369 + - uid: 35294 components: - type: Transform - pos: -146.5,-59.5 + pos: -12.5,-11.5 parent: 1 - - uid: 34370 + - uid: 35295 components: - type: Transform - pos: -147.5,-59.5 + pos: -12.5,-12.5 parent: 1 - - uid: 34371 + - uid: 35296 components: - type: Transform - pos: -148.5,-59.5 + pos: -12.5,-13.5 parent: 1 - - uid: 34372 + - uid: 35297 components: - type: Transform - pos: -149.5,-59.5 + pos: -12.5,-14.5 parent: 1 - - uid: 34373 + - uid: 35298 components: - type: Transform - pos: -150.5,-59.5 + pos: -12.5,-15.5 parent: 1 - - uid: 34374 + - uid: 35299 components: - type: Transform - pos: -151.5,-59.5 + pos: -12.5,-16.5 parent: 1 - - uid: 34375 + - uid: 35300 components: - type: Transform - pos: -151.5,-54.5 + pos: -12.5,-17.5 parent: 1 - - uid: 34376 + - uid: 35301 components: - type: Transform - pos: -152.5,-54.5 + pos: -12.5,-18.5 parent: 1 - - uid: 34377 + - uid: 35302 components: - type: Transform - pos: -151.5,-50.5 + pos: -12.5,-19.5 parent: 1 - - uid: 34378 + - uid: 35303 components: - type: Transform - pos: -152.5,-50.5 + pos: -12.5,-20.5 parent: 1 - - uid: 34379 + - uid: 35304 components: - type: Transform - pos: -151.5,-58.5 + pos: -12.5,-21.5 parent: 1 - - uid: 34561 + - uid: 35305 components: - type: Transform - pos: -110.5,-11.5 + pos: -12.5,-22.5 parent: 1 - - uid: 34564 + - uid: 35306 components: - type: Transform - pos: -111.5,-8.5 + pos: -12.5,-23.5 parent: 1 - - uid: 34565 + - uid: 35307 components: - type: Transform - pos: -105.5,-20.5 + pos: -13.5,-23.5 parent: 1 - - uid: 34639 + - uid: 35308 components: - type: Transform - pos: -15.5,17.5 + pos: -14.5,-23.5 parent: 1 - - uid: 34640 + - uid: 35309 components: - type: Transform - pos: -14.5,17.5 + pos: -15.5,-23.5 parent: 1 - - uid: 34641 + - uid: 35310 components: - type: Transform - pos: -13.5,17.5 + pos: -16.5,-23.5 parent: 1 - - uid: 34642 + - uid: 35311 components: - type: Transform - pos: -12.5,17.5 + pos: -16.5,-24.5 parent: 1 - - uid: 34643 + - uid: 35312 components: - type: Transform - pos: -11.5,17.5 + pos: -16.5,-25.5 parent: 1 - - uid: 34644 + - uid: 35313 components: - type: Transform - pos: -10.5,17.5 + pos: -16.5,-26.5 parent: 1 - - uid: 34645 + - uid: 35314 components: - type: Transform - pos: -9.5,17.5 + pos: -16.5,-27.5 parent: 1 - - uid: 34646 + - uid: 35315 components: - type: Transform - pos: -8.5,17.5 + pos: -16.5,-28.5 parent: 1 - - uid: 34647 + - uid: 35316 components: - type: Transform - pos: -7.5,17.5 + pos: -16.5,-29.5 parent: 1 - - uid: 34648 + - uid: 35317 components: - type: Transform - pos: -6.5,17.5 + pos: -16.5,-30.5 parent: 1 - - uid: 34649 + - uid: 35318 components: - type: Transform - pos: -5.5,17.5 + pos: -16.5,-31.5 parent: 1 - - uid: 34650 + - uid: 35319 components: - type: Transform - pos: -4.5,17.5 + pos: -16.5,-32.5 parent: 1 - - uid: 34651 + - uid: 35320 components: - type: Transform - pos: -3.5,17.5 + pos: -16.5,-33.5 parent: 1 - - uid: 34652 + - uid: 35321 components: - type: Transform - pos: -2.5,17.5 + pos: -16.5,-34.5 parent: 1 - - uid: 34653 + - uid: 35322 components: - type: Transform - pos: -1.5,17.5 + pos: -16.5,-35.5 parent: 1 - - uid: 34687 + - uid: 35323 components: - type: Transform - pos: -117.5,-11.5 + pos: -16.5,-36.5 parent: 1 - - uid: 34688 + - uid: 35324 components: - type: Transform - pos: -117.5,-10.5 + pos: -16.5,-37.5 parent: 1 - - uid: 34689 + - uid: 35325 components: - type: Transform - pos: -117.5,-9.5 + pos: -16.5,-38.5 parent: 1 - - uid: 34690 + - uid: 35326 components: - type: Transform - pos: -117.5,-8.5 + pos: -16.5,-39.5 parent: 1 - - uid: 34861 + - uid: 35327 components: - type: Transform - pos: 33.5,-34.5 + pos: -16.5,-40.5 parent: 1 - - uid: 34862 + - uid: 35328 components: - type: Transform - pos: 33.5,-33.5 + pos: -16.5,-41.5 parent: 1 - - uid: 34863 + - uid: 35329 components: - type: Transform - pos: 33.5,-32.5 + pos: -16.5,-42.5 parent: 1 - - uid: 34864 + - uid: 35330 components: - type: Transform - pos: 33.5,-31.5 + pos: -16.5,-43.5 parent: 1 - - uid: 34865 + - uid: 35331 components: - type: Transform - pos: 33.5,-30.5 + pos: -16.5,-44.5 parent: 1 - - uid: 34866 + - uid: 35332 components: - type: Transform - pos: 33.5,-29.5 + pos: -16.5,-45.5 parent: 1 - - uid: 34867 + - uid: 35333 components: - type: Transform - pos: 33.5,-28.5 + pos: -16.5,-46.5 parent: 1 - - uid: 34868 + - uid: 35334 components: - type: Transform - pos: 33.5,-27.5 + pos: -16.5,-47.5 parent: 1 - - uid: 34869 + - uid: 35423 components: - type: Transform - pos: 33.5,-26.5 + pos: -133.5,-42.5 parent: 1 - - uid: 34870 + - uid: 35424 components: - type: Transform - pos: 33.5,-25.5 + pos: -133.5,-43.5 parent: 1 - - uid: 34871 + - uid: 35425 components: - type: Transform - pos: 33.5,-24.5 + pos: -133.5,-44.5 parent: 1 - - uid: 34872 + - uid: 35426 components: - type: Transform - pos: 33.5,-23.5 + pos: -133.5,-45.5 parent: 1 - - uid: 34873 + - uid: 35427 components: - type: Transform - pos: 33.5,-22.5 + pos: -132.5,-45.5 parent: 1 - - uid: 34874 + - uid: 35428 components: - type: Transform - pos: 33.5,-21.5 + pos: -131.5,-45.5 parent: 1 - - uid: 34877 + - uid: 35429 components: - type: Transform - pos: 33.5,-20.5 + pos: -130.5,-45.5 parent: 1 - - uid: 34881 + - uid: 35430 components: - type: Transform - pos: 32.5,-20.5 + pos: -129.5,-45.5 parent: 1 - - uid: 34884 + - uid: 35431 components: - type: Transform - pos: 32.5,-19.5 + pos: -128.5,-45.5 parent: 1 - - uid: 34885 + - uid: 35432 components: - type: Transform - pos: 32.5,-18.5 + pos: -127.5,-45.5 parent: 1 - - uid: 34886 + - uid: 35433 components: - type: Transform - pos: 32.5,-17.5 + pos: -126.5,-45.5 parent: 1 - - uid: 34887 + - uid: 35434 components: - type: Transform - pos: 32.5,-16.5 + pos: -125.5,-45.5 parent: 1 - - uid: 34888 + - uid: 35435 components: - type: Transform - pos: 32.5,-15.5 + pos: -124.5,-45.5 parent: 1 - - uid: 34889 + - uid: 35436 components: - type: Transform - pos: 32.5,-14.5 + pos: -123.5,-45.5 parent: 1 - - uid: 34890 + - uid: 35437 components: - type: Transform - pos: 32.5,-13.5 + pos: -122.5,-45.5 parent: 1 - - uid: 34891 + - uid: 35438 components: - type: Transform - pos: 31.5,-13.5 + pos: -121.5,-45.5 parent: 1 - - uid: 34892 + - uid: 35439 components: - type: Transform - pos: 30.5,-13.5 + pos: -120.5,-45.5 parent: 1 - - uid: 34893 + - uid: 35440 components: - type: Transform - pos: 29.5,-13.5 + pos: -119.5,-45.5 parent: 1 - - uid: 34894 + - uid: 35441 components: - type: Transform - pos: 28.5,-13.5 + pos: -118.5,-45.5 parent: 1 - - uid: 34895 + - uid: 35442 components: - type: Transform - pos: 27.5,-13.5 + pos: -117.5,-45.5 parent: 1 - - uid: 34896 + - uid: 35443 components: - type: Transform - pos: 26.5,-13.5 + pos: -116.5,-45.5 parent: 1 - - uid: 34897 + - uid: 35444 components: - type: Transform - pos: 26.5,-12.5 + pos: -115.5,-45.5 parent: 1 - - uid: 34898 + - uid: 35445 components: - type: Transform - pos: 26.5,-11.5 + pos: -114.5,-45.5 parent: 1 - - uid: 34899 + - uid: 35446 components: - type: Transform - pos: 26.5,-10.5 + pos: -113.5,-45.5 parent: 1 - - uid: 34900 + - uid: 35447 components: - type: Transform - pos: 25.5,-10.5 + pos: -112.5,-45.5 parent: 1 - - uid: 34901 + - uid: 35448 components: - type: Transform - pos: 24.5,-10.5 + pos: -111.5,-45.5 parent: 1 - - uid: 34902 + - uid: 35449 components: - type: Transform - pos: 23.5,-10.5 + pos: -110.5,-45.5 parent: 1 - - uid: 34903 + - uid: 35450 components: - type: Transform - pos: 22.5,-10.5 + pos: -109.5,-45.5 parent: 1 - - uid: 34904 + - uid: 35451 components: - type: Transform - pos: 21.5,-10.5 + pos: -109.5,-44.5 parent: 1 - - uid: 34905 + - uid: 35452 components: - type: Transform - pos: 20.5,-10.5 + pos: -109.5,-43.5 parent: 1 - - uid: 34906 + - uid: 35453 components: - type: Transform - pos: 19.5,-10.5 + pos: -108.5,-43.5 parent: 1 - - uid: 34907 + - uid: 35454 components: - type: Transform - pos: 18.5,-10.5 + pos: -107.5,-43.5 parent: 1 - - uid: 34908 + - uid: 35455 components: - type: Transform - pos: 17.5,-10.5 + pos: -107.5,-42.5 parent: 1 - - uid: 34909 + - uid: 35456 components: - type: Transform - pos: 16.5,-10.5 + pos: -107.5,-41.5 parent: 1 - - uid: 34910 + - uid: 35457 components: - type: Transform - pos: 15.5,-10.5 + pos: -107.5,-40.5 parent: 1 - - uid: 34911 + - uid: 35458 components: - type: Transform - pos: 14.5,-10.5 + pos: -107.5,-39.5 parent: 1 - - uid: 34912 + - uid: 35459 components: - type: Transform - pos: 13.5,-10.5 + pos: -107.5,-38.5 parent: 1 - - uid: 34913 + - uid: 35460 components: - type: Transform - pos: 12.5,-10.5 + pos: -106.5,-38.5 parent: 1 - - uid: 34914 + - uid: 35461 components: - type: Transform - pos: 11.5,-10.5 + pos: -105.5,-38.5 parent: 1 - - uid: 34915 + - uid: 35462 components: - type: Transform - pos: 10.5,-10.5 + pos: -104.5,-38.5 parent: 1 - - uid: 34916 + - uid: 35463 components: - type: Transform - pos: 10.5,-9.5 + pos: -103.5,-38.5 parent: 1 - - uid: 34917 + - uid: 35464 components: - type: Transform - pos: 10.5,-8.5 + pos: -102.5,-38.5 parent: 1 - - uid: 34918 + - uid: 35465 components: - type: Transform - pos: 10.5,-7.5 + pos: -101.5,-38.5 parent: 1 - - uid: 34919 + - uid: 35466 components: - type: Transform - pos: 9.5,-7.5 + pos: -100.5,-38.5 parent: 1 - - uid: 34920 + - uid: 35467 components: - type: Transform - pos: 8.5,-7.5 + pos: -100.5,-37.5 parent: 1 - - uid: 34921 + - uid: 35468 components: - type: Transform - pos: 7.5,-7.5 + pos: -100.5,-36.5 parent: 1 - - uid: 34922 + - uid: 35469 components: - type: Transform - pos: 6.5,-7.5 + pos: -100.5,-35.5 parent: 1 - - uid: 34923 + - uid: 35470 components: - type: Transform - pos: 5.5,-7.5 + pos: -100.5,-34.5 parent: 1 - - uid: 34924 + - uid: 35471 components: - type: Transform - pos: 4.5,-7.5 + pos: -100.5,-33.5 parent: 1 - - uid: 34925 + - uid: 35472 components: - type: Transform - pos: 3.5,-7.5 + pos: -100.5,-32.5 parent: 1 - - uid: 34926 + - uid: 35473 components: - type: Transform - pos: 2.5,-7.5 + pos: -100.5,-31.5 parent: 1 - - uid: 34927 + - uid: 35474 components: - type: Transform - pos: 1.5,-7.5 + pos: -99.5,-31.5 parent: 1 - - uid: 34928 + - uid: 35475 components: - type: Transform - pos: 0.5,-7.5 + pos: -99.5,-30.5 parent: 1 - - uid: 34929 + - uid: 35476 components: - type: Transform - pos: -0.5,-7.5 + pos: -99.5,-29.5 parent: 1 - - uid: 34930 + - uid: 35477 components: - type: Transform - pos: -1.5,-7.5 + pos: -98.5,-29.5 parent: 1 - - uid: 34931 + - uid: 35478 components: - type: Transform - pos: -2.5,-7.5 + pos: -97.5,-29.5 parent: 1 - - uid: 34932 + - uid: 35479 components: - type: Transform - pos: -3.5,-7.5 + pos: -105.5,-7.5 parent: 1 - - uid: 34933 + - uid: 35480 components: - type: Transform - pos: -4.5,-7.5 + pos: -104.5,-7.5 parent: 1 - - uid: 34934 + - uid: 35481 components: - type: Transform - pos: -5.5,-7.5 + pos: -103.5,-7.5 parent: 1 - - uid: 34935 + - uid: 35482 components: - type: Transform - pos: -6.5,-7.5 + pos: -102.5,-7.5 parent: 1 - - uid: 34936 + - uid: 35483 components: - type: Transform - pos: -7.5,-7.5 + pos: -101.5,-7.5 parent: 1 - - uid: 34937 + - uid: 35484 components: - type: Transform - pos: -8.5,-7.5 + pos: -100.5,-7.5 parent: 1 - - uid: 34938 + - uid: 35485 components: - type: Transform - pos: -9.5,-7.5 + pos: -99.5,-7.5 parent: 1 - - uid: 34939 + - uid: 35486 components: - type: Transform - pos: -10.5,-7.5 + pos: -98.5,-7.5 parent: 1 - - uid: 34940 + - uid: 35572 components: - type: Transform - pos: -11.5,-7.5 + pos: -126.5,-79.5 parent: 1 - - uid: 34941 + - uid: 35609 components: - type: Transform - pos: -12.5,-7.5 + pos: -114.5,-84.5 parent: 1 - - uid: 34942 + - uid: 35610 components: - type: Transform - pos: -13.5,-7.5 + pos: -113.5,-86.5 parent: 1 - - uid: 34943 + - uid: 35611 components: - type: Transform - pos: -13.5,-6.5 + pos: -113.5,-85.5 parent: 1 - - uid: 34944 + - uid: 35612 components: - type: Transform - pos: -13.5,-5.5 + pos: -114.5,-87.5 parent: 1 - - uid: 34945 + - uid: 35613 components: - type: Transform - pos: -13.5,-4.5 + pos: -114.5,-88.5 parent: 1 - - uid: 34946 + - uid: 35614 components: - type: Transform - pos: -13.5,-3.5 + pos: -114.5,-89.5 parent: 1 - - uid: 34947 + - uid: 35615 components: - type: Transform - pos: -13.5,-2.5 + pos: -113.5,-87.5 parent: 1 - - uid: 34948 + - uid: 35616 components: - type: Transform - pos: -13.5,-1.5 + pos: -112.5,-87.5 parent: 1 - - uid: 34949 + - uid: 35617 components: - type: Transform - pos: -13.5,-0.5 + pos: -111.5,-87.5 parent: 1 - - uid: 34950 + - uid: 35618 components: - type: Transform - pos: -13.5,0.5 + pos: -110.5,-87.5 parent: 1 - - uid: 34951 + - uid: 35619 components: - type: Transform - pos: -13.5,1.5 + pos: -109.5,-87.5 parent: 1 - - uid: 34952 + - uid: 35620 components: - type: Transform - pos: -13.5,2.5 + pos: -108.5,-87.5 parent: 1 - - uid: 34953 + - uid: 35621 components: - type: Transform - pos: -13.5,3.5 + pos: -107.5,-87.5 parent: 1 - - uid: 34954 + - uid: 35622 components: - type: Transform - pos: -13.5,4.5 + pos: -107.5,-86.5 parent: 1 - - uid: 34955 + - uid: 35623 components: - type: Transform - pos: -13.5,5.5 + pos: -107.5,-85.5 parent: 1 - - uid: 34956 + - uid: 35624 components: - type: Transform - pos: -13.5,6.5 + pos: -107.5,-84.5 parent: 1 - - uid: 34957 + - uid: 35625 components: - type: Transform - pos: -13.5,7.5 + pos: -107.5,-83.5 parent: 1 - - uid: 34958 + - uid: 35655 components: - type: Transform - pos: -13.5,8.5 + pos: -113.5,-84.5 parent: 1 - - uid: 34959 + - uid: 35656 components: - type: Transform - pos: -13.5,9.5 + pos: -115.5,-84.5 parent: 1 - - uid: 34960 + - uid: 35657 components: - type: Transform - pos: -13.5,10.5 + pos: -115.5,-85.5 parent: 1 - - uid: 34961 + - uid: 35658 components: - type: Transform - pos: -13.5,11.5 + pos: -115.5,-86.5 parent: 1 - - uid: 34962 + - uid: 35659 components: - type: Transform - pos: -13.5,12.5 + pos: -116.5,-86.5 parent: 1 - - uid: 34963 + - uid: 35761 components: - type: Transform - pos: -13.5,13.5 + pos: -126.5,-80.5 parent: 1 - - uid: 34964 + - uid: 35762 components: - type: Transform - pos: -13.5,14.5 + pos: -126.5,-81.5 parent: 1 - - uid: 34965 + - uid: 35763 components: - type: Transform - pos: -13.5,15.5 + pos: -126.5,-82.5 parent: 1 - - uid: 34966 + - uid: 35764 components: - type: Transform - pos: -13.5,16.5 + pos: -126.5,-83.5 parent: 1 - - uid: 35018 + - uid: 35765 components: - type: Transform - pos: 33.5,-44.5 + pos: -126.5,-84.5 parent: 1 - - uid: 35019 + - uid: 35766 components: - type: Transform - pos: 33.5,-45.5 + pos: -124.5,-79.5 parent: 1 - - uid: 35020 + - uid: 35767 components: - type: Transform - pos: 32.5,-45.5 + pos: -124.5,-80.5 parent: 1 - - uid: 35021 + - uid: 35768 components: - type: Transform - pos: 31.5,-45.5 + pos: -124.5,-81.5 parent: 1 - - uid: 35022 + - uid: 35769 components: - type: Transform - pos: 30.5,-45.5 + pos: -124.5,-82.5 parent: 1 - - uid: 35023 + - uid: 35770 components: - type: Transform - pos: 29.5,-45.5 + pos: -124.5,-83.5 parent: 1 - - uid: 35024 + - uid: 35771 components: - type: Transform - pos: 28.5,-45.5 + pos: -124.5,-84.5 parent: 1 - - uid: 35025 + - uid: 35772 components: - type: Transform - pos: 27.5,-45.5 + pos: -125.5,-84.5 parent: 1 - - uid: 35026 + - uid: 35773 components: - type: Transform - pos: 26.5,-45.5 + pos: -125.5,-85.5 parent: 1 - - uid: 35027 + - uid: 35774 components: - type: Transform - pos: 25.5,-45.5 + pos: -124.5,-93.5 parent: 1 - - uid: 35028 + - uid: 35775 components: - type: Transform - pos: 24.5,-45.5 + pos: -124.5,-92.5 parent: 1 - - uid: 35029 + - uid: 35776 components: - type: Transform - pos: 23.5,-45.5 + pos: -124.5,-91.5 parent: 1 - - uid: 35030 + - uid: 35777 components: - type: Transform - pos: 22.5,-45.5 + pos: -124.5,-90.5 parent: 1 - - uid: 35031 + - uid: 35778 components: - type: Transform - pos: 21.5,-45.5 + pos: -124.5,-89.5 parent: 1 - - uid: 35032 + - uid: 35779 components: - type: Transform - pos: 20.5,-45.5 + pos: -124.5,-88.5 parent: 1 - - uid: 35033 + - uid: 35780 components: - type: Transform - pos: 19.5,-45.5 + pos: -126.5,-93.5 parent: 1 - - uid: 35034 + - uid: 35781 components: - type: Transform - pos: 18.5,-45.5 + pos: -126.5,-92.5 parent: 1 - - uid: 35035 + - uid: 35782 components: - type: Transform - pos: 17.5,-45.5 + pos: -126.5,-91.5 parent: 1 - - uid: 35036 + - uid: 35783 components: - type: Transform - pos: 16.5,-45.5 + pos: -126.5,-90.5 parent: 1 - - uid: 35037 + - uid: 35784 components: - type: Transform - pos: 15.5,-45.5 + pos: -126.5,-89.5 parent: 1 - - uid: 35038 + - uid: 35785 components: - type: Transform - pos: 14.5,-45.5 + pos: -126.5,-88.5 parent: 1 - - uid: 35039 + - uid: 35786 components: - type: Transform - pos: 13.5,-45.5 + pos: -125.5,-88.5 parent: 1 - - uid: 35040 + - uid: 35787 components: - type: Transform - pos: 12.5,-45.5 + pos: -138.5,-79.5 parent: 1 - - uid: 35041 + - uid: 35788 components: - type: Transform - pos: 11.5,-45.5 + pos: -130.5,-79.5 parent: 1 - - uid: 35042 + - uid: 35789 components: - type: Transform - pos: 10.5,-45.5 + pos: -130.5,-80.5 parent: 1 - - uid: 35043 + - uid: 35790 components: - type: Transform - pos: 9.5,-45.5 + pos: -130.5,-81.5 parent: 1 - - uid: 35044 + - uid: 35791 components: - type: Transform - pos: 8.5,-45.5 + pos: -130.5,-82.5 parent: 1 - - uid: 35045 + - uid: 35792 components: - type: Transform - pos: 7.5,-45.5 + pos: -130.5,-83.5 parent: 1 - - uid: 35046 + - uid: 35793 components: - type: Transform - pos: 6.5,-45.5 + pos: -130.5,-84.5 parent: 1 - - uid: 35047 + - uid: 35794 components: - type: Transform - pos: 5.5,-45.5 + pos: -129.5,-84.5 parent: 1 - - uid: 35048 + - uid: 35795 components: - type: Transform - pos: 4.5,-45.5 + pos: -129.5,-85.5 parent: 1 - - uid: 35049 + - uid: 35796 components: - type: Transform - pos: 3.5,-45.5 + pos: -129.5,-87.5 parent: 1 - - uid: 35050 + - uid: 35797 components: - type: Transform - pos: 2.5,-45.5 + pos: -129.5,-88.5 parent: 1 - - uid: 35051 + - uid: 35798 components: - type: Transform - pos: 1.5,-45.5 + pos: -130.5,-88.5 parent: 1 - - uid: 35052 + - uid: 35799 components: - type: Transform - pos: 0.5,-45.5 + pos: -130.5,-89.5 parent: 1 - - uid: 35053 + - uid: 35800 components: - type: Transform - pos: -0.5,-45.5 + pos: -130.5,-90.5 parent: 1 - - uid: 35054 + - uid: 35801 components: - type: Transform - pos: -1.5,-45.5 + pos: -130.5,-91.5 parent: 1 - - uid: 35055 + - uid: 35802 components: - type: Transform - pos: -15.5,-50.5 + pos: -130.5,-92.5 parent: 1 - - uid: 35056 + - uid: 35803 components: - type: Transform - pos: -15.5,-51.5 + pos: -130.5,-93.5 parent: 1 - - uid: 35057 + - uid: 35804 components: - type: Transform - pos: -16.5,-51.5 + pos: -132.5,-88.5 parent: 1 - - uid: 35058 + - uid: 35805 components: - type: Transform - pos: -16.5,-52.5 + pos: -132.5,-89.5 parent: 1 - - uid: 35059 + - uid: 35806 components: - type: Transform - pos: -16.5,-53.5 + pos: -132.5,-90.5 parent: 1 - - uid: 35060 + - uid: 35807 components: - type: Transform - pos: -16.5,-54.5 + pos: -132.5,-91.5 parent: 1 - - uid: 35061 + - uid: 35808 components: - type: Transform - pos: -16.5,-55.5 + pos: -132.5,-92.5 parent: 1 - - uid: 35062 + - uid: 35809 components: - type: Transform - pos: -16.5,-56.5 + pos: -134.5,-93.5 parent: 1 - - uid: 35063 + - uid: 35810 components: - type: Transform - pos: -17.5,-56.5 + pos: -134.5,-92.5 parent: 1 - - uid: 35064 + - uid: 35811 components: - type: Transform - pos: -18.5,-56.5 + pos: -134.5,-91.5 parent: 1 - - uid: 35065 + - uid: 35812 components: - type: Transform - pos: -19.5,-56.5 + pos: -134.5,-90.5 parent: 1 - - uid: 35066 + - uid: 35813 components: - type: Transform - pos: -20.5,-56.5 + pos: -134.5,-89.5 parent: 1 - - uid: 35067 + - uid: 35814 components: - type: Transform - pos: -21.5,-56.5 + pos: -134.5,-88.5 parent: 1 - - uid: 35068 + - uid: 35815 components: - type: Transform - pos: -22.5,-56.5 + pos: -133.5,-88.5 parent: 1 - - uid: 35069 + - uid: 35816 components: - type: Transform - pos: -23.5,-56.5 + pos: -133.5,-87.5 parent: 1 - - uid: 35070 + - uid: 35817 components: - type: Transform - pos: -24.5,-56.5 + pos: -133.5,-85.5 parent: 1 - - uid: 35071 + - uid: 35818 components: - type: Transform - pos: -25.5,-56.5 + pos: -133.5,-84.5 parent: 1 - - uid: 35083 + - uid: 35819 components: - type: Transform - pos: -96.5,-20.5 + pos: -134.5,-84.5 parent: 1 - - uid: 35084 + - uid: 35820 components: - type: Transform - pos: -96.5,-19.5 + pos: -134.5,-83.5 parent: 1 - - uid: 35085 + - uid: 35821 components: - type: Transform - pos: -96.5,-18.5 + pos: -134.5,-82.5 parent: 1 - - uid: 35086 + - uid: 35822 components: - type: Transform - pos: -96.5,-17.5 + pos: -134.5,-81.5 parent: 1 - - uid: 35087 + - uid: 35823 components: - type: Transform - pos: -96.5,-16.5 + pos: -134.5,-80.5 parent: 1 - - uid: 35088 + - uid: 35824 components: - type: Transform - pos: -96.5,-15.5 + pos: -134.5,-79.5 parent: 1 - - uid: 35089 + - uid: 35825 components: - type: Transform - pos: -96.5,-14.5 + pos: -138.5,-80.5 parent: 1 - - uid: 35090 + - uid: 35826 components: - type: Transform - pos: -96.5,-13.5 + pos: -138.5,-81.5 parent: 1 - - uid: 35091 + - uid: 35827 components: - type: Transform - pos: -96.5,-12.5 + pos: -138.5,-82.5 parent: 1 - - uid: 35092 + - uid: 35828 components: - type: Transform - pos: -96.5,-11.5 + pos: -138.5,-83.5 parent: 1 - - uid: 35093 + - uid: 35829 components: - type: Transform - pos: -97.5,-11.5 + pos: -138.5,-84.5 parent: 1 - - uid: 35094 + - uid: 35830 components: - type: Transform - pos: -97.5,-10.5 + pos: -136.5,-79.5 parent: 1 - - uid: 35095 + - uid: 35831 components: - type: Transform - pos: -97.5,-9.5 + pos: -136.5,-80.5 parent: 1 - - uid: 35096 + - uid: 35832 components: - type: Transform - pos: -97.5,-8.5 + pos: -136.5,-81.5 parent: 1 - - uid: 35097 + - uid: 35833 components: - type: Transform - pos: -97.5,-7.5 + pos: -136.5,-82.5 parent: 1 - - uid: 35098 + - uid: 35834 components: - type: Transform - pos: -97.5,-6.5 + pos: -136.5,-83.5 parent: 1 - - uid: 35099 + - uid: 35835 components: - type: Transform - pos: -96.5,-6.5 + pos: -136.5,-84.5 parent: 1 - - uid: 35100 + - uid: 35836 components: - type: Transform - pos: -95.5,-6.5 + pos: -137.5,-84.5 parent: 1 - - uid: 35101 + - uid: 35837 components: - type: Transform - pos: -94.5,-6.5 + pos: -137.5,-85.5 parent: 1 - - uid: 35102 + - uid: 35839 components: - type: Transform - pos: -93.5,-6.5 + pos: -143.5,-86.5 parent: 1 - - uid: 35103 + - uid: 35840 components: - type: Transform - pos: -93.5,-5.5 + pos: -142.5,-86.5 parent: 1 - - uid: 35104 + - uid: 35841 components: - type: Transform - pos: -92.5,-5.5 + pos: -141.5,-86.5 parent: 1 - - uid: 35105 + - uid: 35842 components: - type: Transform - pos: -91.5,-5.5 + pos: -140.5,-86.5 parent: 1 - - uid: 35106 + - uid: 35843 components: - type: Transform - pos: -90.5,-5.5 + pos: -139.5,-86.5 parent: 1 - - uid: 35107 + - uid: 35844 components: - type: Transform - pos: -89.5,-5.5 + pos: -138.5,-86.5 parent: 1 - - uid: 35108 + - uid: 35845 components: - type: Transform - pos: -88.5,-5.5 + pos: -137.5,-86.5 parent: 1 - - uid: 35109 + - uid: 35846 components: - type: Transform - pos: -87.5,-5.5 + pos: -136.5,-86.5 parent: 1 - - uid: 35110 + - uid: 35847 components: - type: Transform - pos: -87.5,-4.5 + pos: -135.5,-86.5 parent: 1 - - uid: 35111 + - uid: 35848 components: - type: Transform - pos: -87.5,-3.5 + pos: -134.5,-86.5 parent: 1 - - uid: 35112 + - uid: 35849 components: - type: Transform - pos: -87.5,-2.5 + pos: -133.5,-86.5 parent: 1 - - uid: 35113 + - uid: 35850 components: - type: Transform - pos: -87.5,-1.5 + pos: -132.5,-86.5 parent: 1 - - uid: 35114 + - uid: 35851 components: - type: Transform - pos: -88.5,-1.5 + pos: -131.5,-86.5 parent: 1 - - uid: 35115 + - uid: 35852 components: - type: Transform - pos: -89.5,-1.5 + pos: -130.5,-86.5 parent: 1 - - uid: 35116 + - uid: 35853 components: - type: Transform - pos: -89.5,-0.5 + pos: -129.5,-86.5 parent: 1 - - uid: 35117 + - uid: 35854 components: - type: Transform - pos: -89.5,0.5 + pos: -128.5,-86.5 parent: 1 - - uid: 35118 + - uid: 35855 components: - type: Transform - pos: -89.5,1.5 + pos: -127.5,-86.5 parent: 1 - - uid: 35119 + - uid: 35856 components: - type: Transform - pos: -89.5,2.5 + pos: -126.5,-86.5 parent: 1 - - uid: 35120 + - uid: 35857 components: - type: Transform - pos: -89.5,3.5 + pos: -125.5,-86.5 parent: 1 - - uid: 35121 + - uid: 35858 components: - type: Transform - pos: -89.5,4.5 + pos: -124.5,-86.5 parent: 1 - - uid: 35122 + - uid: 35859 components: - type: Transform - pos: -89.5,5.5 + pos: -123.5,-86.5 parent: 1 - - uid: 35123 + - uid: 35860 components: - type: Transform - pos: -89.5,6.5 + pos: -122.5,-86.5 parent: 1 - - uid: 35124 + - uid: 35861 components: - type: Transform - pos: -89.5,7.5 + pos: -121.5,-86.5 parent: 1 - - uid: 35125 + - uid: 35862 components: - type: Transform - pos: -89.5,8.5 + pos: -120.5,-86.5 parent: 1 - - uid: 35126 + - uid: 35863 components: - type: Transform - pos: -90.5,8.5 + pos: -119.5,-86.5 parent: 1 - - uid: 35127 + - uid: 35864 components: - type: Transform - pos: -91.5,8.5 + pos: -118.5,-86.5 parent: 1 - - uid: 35128 + - uid: 35865 components: - type: Transform - pos: -91.5,9.5 + pos: -117.5,-86.5 parent: 1 - - uid: 35129 + - uid: 36022 components: - type: Transform - pos: -92.5,9.5 + pos: -107.5,-82.5 parent: 1 - - uid: 35130 + - uid: 36023 components: - type: Transform - pos: -93.5,9.5 + pos: -108.5,-82.5 parent: 1 - - uid: 35131 + - uid: 36024 components: - type: Transform - pos: -94.5,9.5 + pos: -109.5,-82.5 parent: 1 - - uid: 35132 + - uid: 36025 components: - type: Transform - pos: -95.5,9.5 + pos: -110.5,-82.5 parent: 1 - - uid: 35133 + - uid: 36026 components: - type: Transform - pos: -96.5,9.5 + pos: -111.5,-82.5 parent: 1 - - uid: 35134 + - uid: 36027 components: - type: Transform - pos: -96.5,10.5 + pos: -112.5,-82.5 parent: 1 - - uid: 35135 + - uid: 36028 components: - type: Transform - pos: -96.5,11.5 + pos: -113.5,-82.5 parent: 1 - - uid: 35136 + - uid: 36029 components: - type: Transform - pos: -96.5,12.5 + pos: -114.5,-82.5 parent: 1 - - uid: 35137 + - uid: 36030 components: - type: Transform - pos: -96.5,13.5 + pos: -114.5,-81.5 parent: 1 - - uid: 35138 + - uid: 36031 components: - type: Transform - pos: -97.5,13.5 + pos: -114.5,-80.5 parent: 1 - - uid: 35139 + - uid: 36032 components: - type: Transform - pos: -60.5,-37.5 + pos: -114.5,-79.5 parent: 1 - - uid: 35140 + - uid: 36033 components: - type: Transform - pos: -60.5,-36.5 + pos: -114.5,-78.5 parent: 1 - - uid: 35141 + - uid: 36034 components: - type: Transform - pos: -60.5,-35.5 + pos: -114.5,-77.5 parent: 1 - - uid: 35142 + - uid: 36035 components: - type: Transform - pos: -60.5,-34.5 + pos: -114.5,-76.5 parent: 1 - - uid: 35143 + - uid: 36036 components: - type: Transform - pos: -60.5,-33.5 + pos: -114.5,-75.5 parent: 1 - - uid: 35144 + - uid: 36037 components: - type: Transform - pos: -60.5,-32.5 + pos: -114.5,-74.5 parent: 1 - - uid: 35145 + - uid: 36038 components: - type: Transform - pos: -60.5,-31.5 + pos: -114.5,-73.5 parent: 1 - - uid: 35146 + - uid: 36039 components: - type: Transform - pos: -60.5,-30.5 + pos: -114.5,-72.5 parent: 1 - - uid: 35147 + - uid: 36040 components: - type: Transform - pos: -60.5,-29.5 + pos: -114.5,-71.5 parent: 1 - - uid: 35148 + - uid: 36041 components: - type: Transform - pos: -60.5,-28.5 + pos: -115.5,-71.5 parent: 1 - - uid: 35149 + - uid: 36042 components: - type: Transform - pos: -60.5,-27.5 + pos: -116.5,-71.5 parent: 1 - - uid: 35150 + - uid: 36043 components: - type: Transform - pos: -60.5,-26.5 + pos: -116.5,-70.5 parent: 1 - - uid: 35151 + - uid: 36044 components: - type: Transform - pos: -60.5,-25.5 + pos: -116.5,-69.5 parent: 1 - - uid: 35152 + - uid: 36045 components: - type: Transform - pos: -60.5,-24.5 + pos: -116.5,-68.5 parent: 1 - - uid: 35153 + - uid: 36046 components: - type: Transform - pos: -60.5,-23.5 + pos: -116.5,-67.5 parent: 1 - - uid: 35154 + - uid: 36047 components: - type: Transform - pos: -60.5,-22.5 + pos: -116.5,-66.5 parent: 1 - - uid: 35155 + - uid: 36048 components: - type: Transform - pos: -60.5,-21.5 + pos: -116.5,-65.5 parent: 1 - - uid: 35156 + - uid: 36049 components: - type: Transform - pos: -59.5,-21.5 + pos: -116.5,-64.5 parent: 1 - - uid: 35157 + - uid: 36050 components: - type: Transform - pos: -58.5,-21.5 + pos: -116.5,-63.5 parent: 1 - - uid: 35158 + - uid: 36051 components: - type: Transform - pos: -58.5,-20.5 + pos: -116.5,-62.5 parent: 1 - - uid: 35159 + - uid: 36052 components: - type: Transform - pos: -58.5,-19.5 + pos: -116.5,-61.5 parent: 1 - - uid: 35160 + - uid: 36053 components: - type: Transform - pos: -58.5,-18.5 + pos: -116.5,-60.5 parent: 1 - - uid: 35161 + - uid: 36054 components: - type: Transform - pos: -58.5,-17.5 + pos: -116.5,-59.5 parent: 1 - - uid: 35162 + - uid: 36055 components: - type: Transform - pos: -58.5,-16.5 + pos: -116.5,-58.5 parent: 1 - - uid: 35163 + - uid: 36056 components: - type: Transform - pos: -58.5,-15.5 + pos: -116.5,-57.5 parent: 1 - - uid: 35164 + - uid: 36057 components: - type: Transform - pos: -58.5,-14.5 + pos: -116.5,-56.5 parent: 1 - - uid: 35165 + - uid: 36058 components: - type: Transform - pos: -59.5,-14.5 + pos: -116.5,-55.5 parent: 1 - - uid: 35166 + - uid: 36059 components: - type: Transform - pos: -60.5,-14.5 + pos: -116.5,-54.5 parent: 1 - - uid: 35167 + - uid: 36060 components: - type: Transform - pos: -61.5,-14.5 + pos: -116.5,-53.5 parent: 1 - - uid: 35168 + - uid: 36061 components: - type: Transform - pos: -62.5,-14.5 + pos: -116.5,-52.5 parent: 1 - - uid: 35169 + - uid: 36062 components: - type: Transform - pos: -63.5,-14.5 + pos: -116.5,-51.5 parent: 1 - - uid: 35170 + - uid: 36063 components: - type: Transform - pos: -63.5,-13.5 + pos: -116.5,-50.5 parent: 1 - - uid: 35171 + - uid: 36064 components: - type: Transform - pos: -63.5,-12.5 + pos: -116.5,-49.5 parent: 1 - - uid: 35172 + - uid: 36065 components: - type: Transform - pos: -63.5,-11.5 + pos: -116.5,-48.5 parent: 1 - - uid: 35173 + - uid: 36066 components: - type: Transform - pos: -63.5,-10.5 + pos: -116.5,-47.5 parent: 1 - - uid: 35174 + - uid: 36067 components: - type: Transform - pos: -62.5,-10.5 + pos: -116.5,-46.5 parent: 1 - - uid: 35175 + - uid: 36068 components: - type: Transform - pos: -61.5,-10.5 + pos: -106.5,-82.5 parent: 1 - - uid: 35176 + - uid: 36069 components: - type: Transform - pos: -61.5,-9.5 + pos: -105.5,-82.5 parent: 1 - - uid: 35177 + - uid: 36070 components: - type: Transform - pos: -61.5,-8.5 + pos: -104.5,-82.5 parent: 1 - - uid: 35178 + - uid: 36071 components: - type: Transform - pos: -61.5,-7.5 + pos: -103.5,-82.5 parent: 1 - - uid: 35179 + - uid: 36072 components: - type: Transform - pos: -61.5,-6.5 + pos: -102.5,-82.5 parent: 1 - - uid: 35180 + - uid: 36073 components: - type: Transform - pos: -61.5,-5.5 + pos: -101.5,-82.5 parent: 1 - - uid: 35181 + - uid: 36074 components: - type: Transform - pos: -61.5,-4.5 + pos: -100.5,-82.5 parent: 1 - - uid: 35182 + - uid: 36075 components: - type: Transform - pos: -61.5,-3.5 + pos: -99.5,-82.5 parent: 1 - - uid: 35183 + - uid: 36076 components: - type: Transform - pos: -61.5,-2.5 + pos: -98.5,-82.5 parent: 1 - - uid: 35184 + - uid: 36077 components: - type: Transform - pos: -61.5,-1.5 + pos: -98.5,-81.5 parent: 1 - - uid: 35185 + - uid: 36078 components: - type: Transform - pos: -61.5,-0.5 + pos: -98.5,-80.5 parent: 1 - - uid: 35186 + - uid: 36079 components: - type: Transform - pos: -61.5,0.5 + pos: -97.5,-80.5 parent: 1 - - uid: 35187 + - uid: 36080 components: - type: Transform - pos: -61.5,1.5 + pos: -96.5,-80.5 parent: 1 - - uid: 35188 + - uid: 36081 components: - type: Transform - pos: -61.5,2.5 + pos: -95.5,-80.5 parent: 1 - - uid: 35189 + - uid: 36082 components: - type: Transform - pos: -61.5,3.5 + pos: -94.5,-80.5 parent: 1 - - uid: 35190 + - uid: 36083 components: - type: Transform - pos: -61.5,4.5 + pos: -93.5,-80.5 parent: 1 - - uid: 35191 + - uid: 36084 components: - type: Transform - pos: -61.5,5.5 + pos: -92.5,-80.5 parent: 1 - - uid: 35192 + - uid: 36085 components: - type: Transform - pos: -61.5,6.5 + pos: -91.5,-80.5 parent: 1 - - uid: 35193 + - uid: 36086 components: - type: Transform - pos: -61.5,7.5 + pos: -91.5,-79.5 parent: 1 - - uid: 35194 + - uid: 36087 components: - type: Transform - pos: -61.5,8.5 + pos: -91.5,-78.5 parent: 1 - - uid: 35195 + - uid: 36088 components: - type: Transform - pos: -53.5,-64.5 + pos: -91.5,-77.5 parent: 1 - - uid: 35196 + - uid: 36089 components: - type: Transform - pos: -52.5,-64.5 + pos: -91.5,-76.5 parent: 1 - - uid: 35197 + - uid: 36090 components: - type: Transform - pos: -51.5,-64.5 + pos: -91.5,-75.5 parent: 1 - - uid: 35198 + - uid: 36091 components: - type: Transform - pos: -50.5,-64.5 + pos: -91.5,-74.5 parent: 1 - - uid: 35199 + - uid: 36092 components: - type: Transform - pos: -49.5,-64.5 + pos: -91.5,-73.5 parent: 1 - - uid: 35200 + - uid: 36093 components: - type: Transform - pos: -49.5,-63.5 + pos: -91.5,-72.5 parent: 1 - - uid: 35201 + - uid: 36094 components: - type: Transform - pos: -49.5,-62.5 + pos: -91.5,-71.5 parent: 1 - - uid: 35202 + - uid: 36095 components: - type: Transform - pos: -49.5,-61.5 + pos: -91.5,-70.5 parent: 1 - - uid: 35203 + - uid: 36096 components: - type: Transform - pos: -49.5,-60.5 + pos: -91.5,-69.5 parent: 1 - - uid: 35204 + - uid: 36097 components: - type: Transform - pos: -49.5,-59.5 + pos: -91.5,-68.5 parent: 1 - - uid: 35205 + - uid: 36098 components: - type: Transform - pos: -48.5,-59.5 + pos: -91.5,-67.5 parent: 1 - - uid: 35206 + - uid: 36099 components: - type: Transform - pos: -47.5,-59.5 + pos: -91.5,-66.5 parent: 1 - - uid: 35207 + - uid: 36100 components: - type: Transform - pos: -46.5,-59.5 + pos: -91.5,-65.5 parent: 1 - - uid: 35208 + - uid: 36101 components: - type: Transform - pos: -45.5,-59.5 + pos: -91.5,-64.5 parent: 1 - - uid: 35209 + - uid: 36102 components: - type: Transform - pos: -45.5,-58.5 + pos: -91.5,-63.5 parent: 1 - - uid: 35210 + - uid: 36103 components: - type: Transform - pos: -45.5,-57.5 + pos: -91.5,-62.5 parent: 1 - - uid: 35211 + - uid: 36104 components: - type: Transform - pos: -45.5,-56.5 + pos: -91.5,-61.5 parent: 1 - - uid: 35212 + - uid: 36105 components: - type: Transform - pos: -45.5,-55.5 + pos: -91.5,-60.5 parent: 1 - - uid: 35213 + - uid: 36106 components: - type: Transform - pos: -45.5,-54.5 + pos: -91.5,-59.5 parent: 1 - - uid: 35214 + - uid: 36107 components: - type: Transform - pos: -45.5,-53.5 + pos: -91.5,-58.5 parent: 1 - - uid: 35215 + - uid: 36108 components: - type: Transform - pos: -45.5,-52.5 + pos: -90.5,-58.5 parent: 1 - - uid: 35216 + - uid: 36109 components: - type: Transform - pos: -45.5,-51.5 + pos: -89.5,-58.5 parent: 1 - - uid: 35217 + - uid: 36110 components: - type: Transform - pos: -44.5,-51.5 + pos: -88.5,-58.5 parent: 1 - - uid: 35218 + - uid: 36111 components: - type: Transform - pos: -43.5,-51.5 + pos: -87.5,-58.5 parent: 1 - - uid: 35219 + - uid: 36112 components: - type: Transform - pos: -42.5,-51.5 + pos: -86.5,-58.5 parent: 1 - - uid: 35220 + - uid: 36113 components: - type: Transform - pos: -42.5,-50.5 + pos: -85.5,-58.5 parent: 1 - - uid: 35221 + - uid: 36114 components: - type: Transform - pos: -42.5,-49.5 + pos: -84.5,-58.5 parent: 1 - - uid: 35222 + - uid: 36115 components: - type: Transform - pos: -42.5,-48.5 + pos: -83.5,-58.5 parent: 1 - - uid: 35223 + - uid: 36116 components: - type: Transform - pos: -42.5,-47.5 + pos: -82.5,-58.5 parent: 1 - - uid: 35224 + - uid: 36117 components: - type: Transform - pos: -41.5,-47.5 + pos: -81.5,-58.5 parent: 1 - - uid: 35225 + - uid: 36118 components: - type: Transform - pos: -40.5,-47.5 + pos: -80.5,-58.5 parent: 1 - - uid: 35226 + - uid: 36119 components: - type: Transform - pos: -40.5,-46.5 + pos: -79.5,-58.5 parent: 1 - - uid: 35227 + - uid: 36120 components: - type: Transform - pos: -40.5,-45.5 + pos: -78.5,-58.5 parent: 1 - - uid: 35228 + - uid: 36121 components: - type: Transform - pos: -40.5,-44.5 + pos: -77.5,-58.5 parent: 1 - - uid: 35229 + - uid: 36122 components: - type: Transform - pos: -40.5,-43.5 + pos: -76.5,-58.5 parent: 1 - - uid: 35230 + - uid: 36123 components: - type: Transform - pos: -40.5,-42.5 + pos: -76.5,-57.5 parent: 1 - - uid: 35231 + - uid: 36124 components: - type: Transform - pos: -40.5,-41.5 + pos: -76.5,-56.5 parent: 1 - - uid: 35232 + - uid: 36125 components: - type: Transform - pos: -40.5,-40.5 + pos: -76.5,-55.5 parent: 1 - - uid: 35233 + - uid: 36126 components: - type: Transform - pos: -40.5,-39.5 + pos: -76.5,-54.5 parent: 1 - - uid: 35234 + - uid: 36127 components: - type: Transform - pos: -40.5,-38.5 + pos: -75.5,-54.5 parent: 1 - - uid: 35235 + - uid: 36561 components: - type: Transform - pos: -40.5,-37.5 + pos: -114.5,-20.5 parent: 1 - - uid: 35236 + - uid: 36562 components: - type: Transform - pos: -40.5,-36.5 + pos: -115.5,-20.5 parent: 1 - - uid: 35237 + - uid: 36563 components: - type: Transform - pos: -40.5,-35.5 + pos: -114.5,-19.5 parent: 1 - - uid: 35238 + - uid: 37455 components: - type: Transform - pos: -39.5,-35.5 + pos: -99.5,-76.5 parent: 1 - - uid: 35239 + - uid: 37456 components: - type: Transform - pos: -38.5,-35.5 + pos: -99.5,-77.5 parent: 1 - - uid: 35240 + - uid: 37457 components: - type: Transform - pos: -37.5,-35.5 + pos: -98.5,-77.5 parent: 1 - - uid: 35241 + - uid: 37458 components: - type: Transform - pos: -36.5,-35.5 + pos: -97.5,-77.5 parent: 1 - - uid: 35242 + - uid: 37459 components: - type: Transform - pos: -36.5,-34.5 + pos: -97.5,-78.5 parent: 1 - - uid: 35243 + - uid: 37460 components: - type: Transform - pos: -36.5,-33.5 + pos: -97.5,-79.5 parent: 1 - - uid: 35244 + - uid: 39031 components: - type: Transform - pos: -36.5,-32.5 + pos: -108.5,-36.5 parent: 1 - - uid: 35245 + - uid: 39032 components: - type: Transform - pos: -36.5,-31.5 + pos: -109.5,-36.5 parent: 1 - - uid: 35246 + - uid: 39033 components: - type: Transform - pos: -36.5,-30.5 + pos: -110.5,-36.5 parent: 1 - - uid: 35247 + - uid: 39034 components: - type: Transform - pos: -36.5,-29.5 + pos: -111.5,-36.5 parent: 1 - - uid: 35248 + - uid: 39035 components: - type: Transform - pos: -36.5,-28.5 + pos: -111.5,-37.5 parent: 1 - - uid: 35249 + - uid: 39036 components: - type: Transform - pos: -36.5,-27.5 + pos: -110.5,-38.5 parent: 1 - - uid: 35250 + - uid: 39037 components: - type: Transform - pos: -36.5,-26.5 + pos: -111.5,-38.5 parent: 1 - - uid: 35251 + - uid: 39038 components: - type: Transform - pos: -37.5,-26.5 + pos: -109.5,-38.5 parent: 1 - - uid: 35252 + - uid: 39039 components: - type: Transform - pos: -38.5,-26.5 + pos: -109.5,-39.5 parent: 1 - - uid: 35253 + - uid: 39040 components: - type: Transform - pos: -39.5,-26.5 + pos: -108.5,-39.5 parent: 1 - - uid: 35254 + - uid: 39041 components: - type: Transform - pos: -41.5,8.5 + pos: -108.5,-35.5 parent: 1 - - uid: 35255 + - uid: 39956 components: - type: Transform - pos: -41.5,7.5 + pos: -27.5,-72.5 parent: 1 - - uid: 35256 + - uid: 39957 components: - type: Transform - pos: -41.5,6.5 + pos: -26.5,-72.5 parent: 1 - - uid: 35257 + - uid: 39958 components: - type: Transform - pos: -41.5,5.5 + pos: -25.5,-72.5 parent: 1 - - uid: 35258 + - uid: 39959 components: - type: Transform - pos: -41.5,4.5 + pos: -24.5,-72.5 parent: 1 - - uid: 35259 + - uid: 40855 components: - type: Transform - pos: -41.5,3.5 + pos: 27.5,-10.5 parent: 1 - - uid: 35260 + - uid: 40856 components: - type: Transform - pos: -41.5,2.5 + pos: 28.5,-10.5 parent: 1 - - uid: 35261 + - uid: 40857 components: - type: Transform - pos: -41.5,1.5 + pos: 29.5,-10.5 parent: 1 - - uid: 35262 + - uid: 40858 components: - type: Transform - pos: -41.5,0.5 + pos: 30.5,-10.5 parent: 1 - - uid: 35263 + - uid: 40859 components: - type: Transform - pos: -41.5,-0.5 + pos: 31.5,-10.5 parent: 1 - - uid: 35264 + - uid: 40860 components: - type: Transform - pos: -41.5,-1.5 + pos: 32.5,-10.5 parent: 1 - - uid: 35265 + - uid: 40861 components: - type: Transform - pos: -41.5,-2.5 + pos: 33.5,-10.5 parent: 1 - - uid: 35266 + - uid: 40862 components: - type: Transform - pos: -41.5,-3.5 + pos: 34.5,-10.5 parent: 1 - - uid: 35267 + - uid: 40863 components: - type: Transform - pos: -41.5,-4.5 + pos: 35.5,-10.5 parent: 1 - - uid: 35268 + - uid: 40864 components: - type: Transform - pos: -41.5,-5.5 + pos: 36.5,-10.5 parent: 1 - - uid: 35269 + - uid: 40865 components: - type: Transform - pos: -41.5,-6.5 + pos: 37.5,-10.5 parent: 1 - - uid: 35270 + - uid: 40866 components: - type: Transform - pos: -41.5,-7.5 + pos: 38.5,-10.5 parent: 1 - - uid: 35271 + - uid: 40867 components: - type: Transform - pos: -41.5,-8.5 + pos: 39.5,-10.5 parent: 1 - - uid: 35272 + - uid: 40868 components: - type: Transform - pos: -41.5,-9.5 + pos: 40.5,-10.5 parent: 1 - - uid: 35273 + - uid: 40869 components: - type: Transform - pos: -41.5,-10.5 + pos: 41.5,-10.5 parent: 1 - - uid: 35274 + - uid: 40870 components: - type: Transform - pos: -41.5,-11.5 + pos: 42.5,-10.5 parent: 1 - - uid: 35275 + - uid: 40871 components: - type: Transform - pos: -41.5,-12.5 + pos: 42.5,-9.5 parent: 1 - - uid: 35276 + - uid: 40872 components: - type: Transform - pos: -41.5,-13.5 + pos: 42.5,-8.5 parent: 1 - - uid: 35277 + - uid: 40873 components: - type: Transform - pos: -41.5,-14.5 + pos: 42.5,-7.5 parent: 1 - - uid: 35278 + - uid: 40874 components: - type: Transform - pos: -41.5,-15.5 + pos: 42.5,-6.5 parent: 1 - - uid: 35279 + - uid: 40875 components: - type: Transform - pos: -41.5,-16.5 + pos: 43.5,-6.5 parent: 1 - - uid: 35280 + - uid: 42453 components: - type: Transform - pos: -41.5,-17.5 + pos: -113.5,-21.5 parent: 1 - - uid: 35281 + - uid: 42455 components: - type: Transform - pos: -41.5,-18.5 + pos: -113.5,-22.5 parent: 1 - - uid: 35282 +- proto: CableHVStack + entities: + - uid: 3220 components: - type: Transform - pos: -41.5,-19.5 + pos: -120.51751,-23.335634 parent: 1 - - uid: 35283 + - uid: 8846 components: - type: Transform - pos: -41.5,-20.5 + rot: 3.141592653589793 rad + pos: -99.60745,-1.5233989 parent: 1 - - uid: 35284 + - uid: 35607 components: - type: Transform - pos: -41.5,-21.5 + pos: -113.494675,-84.374245 parent: 1 - - uid: 35285 +- proto: CableHVStack1 + entities: + - uid: 36357 components: - type: Transform - pos: -41.5,-22.5 + rot: 3.141592653589793 rad + pos: -135.1429,-47.4004 parent: 1 - - uid: 35286 +- proto: CableMV + entities: + - uid: 302 components: - type: Transform - pos: -41.5,-23.5 + pos: 22.5,5.5 parent: 1 - - uid: 35287 + - uid: 593 components: - type: Transform - pos: -41.5,-24.5 + pos: -79.5,6.5 parent: 1 - - uid: 35288 + - uid: 840 components: - type: Transform - pos: -41.5,-25.5 + pos: 11.5,14.5 parent: 1 - - uid: 35289 + - uid: 918 components: - type: Transform - pos: -41.5,-26.5 + pos: -24.5,-11.5 parent: 1 - - uid: 35290 + - uid: 1071 components: - type: Transform - pos: -40.5,-26.5 + pos: 10.5,14.5 parent: 1 - - uid: 35291 + - uid: 1175 components: - type: Transform - pos: -12.5,-8.5 + pos: 44.5,-2.5 parent: 1 - - uid: 35292 + - uid: 1470 components: - type: Transform - pos: -12.5,-9.5 + pos: -81.5,7.5 parent: 1 - - uid: 35293 + - uid: 1672 components: - type: Transform - pos: -12.5,-10.5 + pos: -0.5,-33.5 parent: 1 - - uid: 35294 + - uid: 1686 components: - type: Transform - pos: -12.5,-11.5 + pos: -1.5,-33.5 parent: 1 - - uid: 35295 + - uid: 1697 components: - type: Transform - pos: -12.5,-12.5 + pos: 7.5,-38.5 parent: 1 - - uid: 35296 + - uid: 1698 components: - type: Transform - pos: -12.5,-13.5 + pos: 8.5,-38.5 parent: 1 - - uid: 35297 + - uid: 1867 components: - type: Transform - pos: -12.5,-14.5 + pos: -103.5,-29.5 parent: 1 - - uid: 35298 + - uid: 2146 components: - type: Transform - pos: -12.5,-15.5 + pos: -105.5,-19.5 parent: 1 - - uid: 35299 + - uid: 2238 components: - type: Transform - pos: -12.5,-16.5 + pos: 18.5,2.5 parent: 1 - - uid: 35300 + - uid: 2470 components: - type: Transform - pos: -12.5,-17.5 + pos: -105.5,-27.5 parent: 1 - - uid: 35301 + - uid: 2471 components: - type: Transform - pos: -12.5,-18.5 + pos: -105.5,-29.5 parent: 1 - - uid: 35302 + - uid: 2474 components: - type: Transform - pos: -12.5,-19.5 + pos: -107.5,-20.5 parent: 1 - - uid: 35303 + - uid: 2479 components: - type: Transform - pos: -12.5,-20.5 + pos: -105.5,-21.5 parent: 1 - - uid: 35304 + - uid: 2537 components: - type: Transform - pos: -12.5,-21.5 + pos: -105.5,-28.5 parent: 1 - - uid: 35305 + - uid: 2538 components: - type: Transform - pos: -12.5,-22.5 + pos: -105.5,-26.5 parent: 1 - - uid: 35306 + - uid: 2539 components: - type: Transform - pos: -12.5,-23.5 + pos: -105.5,-25.5 parent: 1 - - uid: 35307 + - uid: 2540 components: - type: Transform - pos: -13.5,-23.5 + pos: -105.5,-24.5 parent: 1 - - uid: 35308 + - uid: 3156 components: - type: Transform - pos: -14.5,-23.5 + pos: -105.5,-23.5 parent: 1 - - uid: 35309 + - uid: 3449 components: - type: Transform - pos: -15.5,-23.5 + pos: -28.5,-72.5 parent: 1 - - uid: 35310 + - uid: 3610 components: - type: Transform - pos: -16.5,-23.5 + pos: 9.5,14.5 parent: 1 - - uid: 35311 + - uid: 3611 components: - type: Transform - pos: -16.5,-24.5 + pos: 8.5,14.5 parent: 1 - - uid: 35312 + - uid: 3612 components: - type: Transform - pos: -16.5,-25.5 + pos: 7.5,14.5 parent: 1 - - uid: 35313 + - uid: 3613 components: - type: Transform - pos: -16.5,-26.5 + pos: 6.5,14.5 parent: 1 - - uid: 35314 + - uid: 3614 components: - type: Transform - pos: -16.5,-27.5 + pos: 5.5,14.5 parent: 1 - - uid: 35315 + - uid: 3615 components: - type: Transform - pos: -16.5,-28.5 + pos: 4.5,14.5 parent: 1 - - uid: 35316 + - uid: 3616 components: - type: Transform - pos: -16.5,-29.5 + pos: 3.5,14.5 parent: 1 - - uid: 35317 + - uid: 3617 components: - type: Transform - pos: -16.5,-30.5 + pos: 2.5,14.5 parent: 1 - - uid: 35318 + - uid: 3618 components: - type: Transform - pos: -16.5,-31.5 + pos: 1.5,14.5 parent: 1 - - uid: 35319 + - uid: 3619 components: - type: Transform - pos: -16.5,-32.5 + pos: 0.5,14.5 parent: 1 - - uid: 35320 + - uid: 3620 components: - type: Transform - pos: -16.5,-33.5 + pos: -0.5,14.5 parent: 1 - - uid: 35321 + - uid: 3621 components: - type: Transform - pos: -16.5,-34.5 + pos: -1.5,14.5 parent: 1 - - uid: 35322 + - uid: 3622 components: - type: Transform - pos: -16.5,-35.5 + pos: -2.5,14.5 parent: 1 - - uid: 35323 + - uid: 3623 components: - type: Transform - pos: -16.5,-36.5 + pos: -3.5,14.5 parent: 1 - - uid: 35324 + - uid: 3624 components: - type: Transform - pos: -16.5,-37.5 + pos: -4.5,14.5 parent: 1 - - uid: 35325 + - uid: 3625 components: - type: Transform - pos: -16.5,-38.5 + pos: -5.5,14.5 parent: 1 - - uid: 35326 + - uid: 3626 components: - type: Transform - pos: -16.5,-39.5 + pos: -6.5,14.5 parent: 1 - - uid: 35327 + - uid: 3627 components: - type: Transform - pos: -16.5,-40.5 + pos: -7.5,14.5 parent: 1 - - uid: 35328 + - uid: 3628 components: - type: Transform - pos: -16.5,-41.5 + pos: -8.5,14.5 parent: 1 - - uid: 35329 + - uid: 3629 components: - type: Transform - pos: -16.5,-42.5 + pos: -9.5,14.5 parent: 1 - - uid: 35330 + - uid: 3697 components: - type: Transform - pos: -16.5,-43.5 + pos: -61.5,-28.5 parent: 1 - - uid: 35331 + - uid: 3905 components: - type: Transform - pos: -16.5,-44.5 + pos: -81.5,6.5 parent: 1 - - uid: 35332 + - uid: 4703 components: - type: Transform - pos: -16.5,-45.5 + pos: -79.5,-39.5 parent: 1 - - uid: 35333 + - uid: 4706 components: - type: Transform - pos: -16.5,-46.5 + pos: -85.5,-38.5 parent: 1 - - uid: 35334 + - uid: 4710 components: - type: Transform - pos: -16.5,-47.5 + pos: -85.5,-39.5 parent: 1 - - uid: 35423 + - uid: 4712 components: - type: Transform - pos: -133.5,-42.5 + pos: -81.5,-39.5 parent: 1 - - uid: 35424 + - uid: 4713 components: - type: Transform - pos: -133.5,-43.5 + pos: -78.5,-39.5 parent: 1 - - uid: 35425 + - uid: 4759 components: - type: Transform - pos: -133.5,-44.5 + pos: -80.5,-39.5 parent: 1 - - uid: 35426 + - uid: 4760 components: - type: Transform - pos: -133.5,-45.5 + pos: -84.5,-39.5 parent: 1 - - uid: 35427 + - uid: 4765 components: - type: Transform - pos: -132.5,-45.5 + pos: -82.5,-39.5 parent: 1 - - uid: 35428 + - uid: 5483 components: - type: Transform - pos: -131.5,-45.5 + pos: -114.5,-19.5 parent: 1 - - uid: 35429 + - uid: 5490 components: - type: Transform - pos: -130.5,-45.5 + pos: -113.5,-19.5 parent: 1 - - uid: 35430 + - uid: 5493 components: - type: Transform - pos: -129.5,-45.5 + pos: -112.5,-19.5 parent: 1 - - uid: 35431 + - uid: 5496 components: - type: Transform - pos: -128.5,-45.5 + pos: -111.5,-19.5 parent: 1 - - uid: 35432 + - uid: 5497 components: - type: Transform - pos: -127.5,-45.5 + pos: -110.5,-19.5 parent: 1 - - uid: 35433 + - uid: 5498 components: - type: Transform - pos: -126.5,-45.5 + pos: -109.5,-19.5 parent: 1 - - uid: 35434 + - uid: 5499 components: - type: Transform - pos: -125.5,-45.5 + pos: -108.5,-20.5 parent: 1 - - uid: 35435 + - uid: 5516 components: - type: Transform - pos: -124.5,-45.5 + pos: -108.5,-19.5 parent: 1 - - uid: 35436 + - uid: 5564 components: - type: Transform - pos: -123.5,-45.5 + pos: -106.5,-20.5 parent: 1 - - uid: 35437 + - uid: 5916 components: - type: Transform - pos: -122.5,-45.5 + pos: -105.5,-22.5 parent: 1 - - uid: 35438 + - uid: 6013 components: - type: Transform - pos: -121.5,-45.5 + pos: -76.5,-58.5 parent: 1 - - uid: 35439 + - uid: 6943 components: - type: Transform - pos: -120.5,-45.5 + pos: -62.5,-29.5 parent: 1 - - uid: 35440 + - uid: 8460 components: - type: Transform - pos: -119.5,-45.5 + pos: -105.5,-3.5 parent: 1 - - uid: 35441 + - uid: 8461 components: - type: Transform - pos: -118.5,-45.5 + pos: -105.5,-4.5 parent: 1 - - uid: 35442 + - uid: 8462 components: - type: Transform - pos: -117.5,-45.5 + pos: -105.5,-5.5 parent: 1 - - uid: 35443 + - uid: 8463 components: - type: Transform - pos: -116.5,-45.5 + pos: -105.5,-6.5 parent: 1 - - uid: 35444 + - uid: 8464 components: - type: Transform - pos: -115.5,-45.5 + pos: -105.5,-7.5 parent: 1 - - uid: 35445 + - uid: 8465 components: - type: Transform - pos: -114.5,-45.5 + pos: -104.5,-7.5 parent: 1 - - uid: 35446 + - uid: 8466 components: - type: Transform - pos: -113.5,-45.5 + pos: -103.5,-7.5 parent: 1 - - uid: 35447 + - uid: 8467 components: - type: Transform - pos: -112.5,-45.5 + pos: -102.5,-7.5 parent: 1 - - uid: 35448 + - uid: 8468 components: - type: Transform - pos: -111.5,-45.5 + pos: -101.5,-7.5 parent: 1 - - uid: 35449 + - uid: 8469 components: - type: Transform - pos: -110.5,-45.5 + pos: -100.5,-7.5 parent: 1 - - uid: 35450 + - uid: 8470 components: - type: Transform - pos: -109.5,-45.5 + pos: -99.5,-7.5 parent: 1 - - uid: 35451 + - uid: 8471 components: - type: Transform - pos: -109.5,-44.5 + pos: -98.5,-7.5 parent: 1 - - uid: 35452 + - uid: 8472 components: - type: Transform - pos: -109.5,-43.5 + pos: -97.5,-7.5 parent: 1 - - uid: 35453 + - uid: 8473 components: - type: Transform - pos: -108.5,-43.5 + pos: -97.5,-8.5 parent: 1 - - uid: 35454 + - uid: 8475 components: - type: Transform - pos: -107.5,-43.5 + pos: -106.5,-7.5 parent: 1 - - uid: 35455 + - uid: 8477 components: - type: Transform - pos: -107.5,-42.5 + pos: -108.5,-7.5 parent: 1 - - uid: 35456 + - uid: 8478 components: - type: Transform - pos: -107.5,-41.5 + pos: -109.5,-7.5 parent: 1 - - uid: 35457 + - uid: 8479 components: - type: Transform - pos: -107.5,-40.5 + pos: -110.5,-7.5 parent: 1 - - uid: 35458 + - uid: 8480 components: - type: Transform - pos: -107.5,-39.5 + pos: -111.5,-7.5 parent: 1 - - uid: 35459 + - uid: 8481 components: - type: Transform - pos: -107.5,-38.5 + pos: -112.5,-7.5 parent: 1 - - uid: 35460 + - uid: 8482 components: - type: Transform - pos: -106.5,-38.5 + pos: -113.5,-7.5 parent: 1 - - uid: 35461 + - uid: 8483 components: - type: Transform - pos: -105.5,-38.5 + pos: -114.5,-7.5 parent: 1 - - uid: 35462 + - uid: 8484 components: - type: Transform - pos: -104.5,-38.5 + pos: -115.5,-7.5 parent: 1 - - uid: 35463 + - uid: 8485 components: - type: Transform - pos: -103.5,-38.5 + pos: -116.5,-7.5 parent: 1 - - uid: 35464 + - uid: 8486 components: - type: Transform - pos: -102.5,-38.5 + pos: -117.5,-7.5 parent: 1 - - uid: 35465 + - uid: 8487 components: - type: Transform - pos: -101.5,-38.5 + pos: -118.5,-7.5 parent: 1 - - uid: 35466 + - uid: 8488 components: - type: Transform - pos: -100.5,-38.5 + pos: -119.5,-7.5 parent: 1 - - uid: 35467 + - uid: 8490 components: - type: Transform - pos: -100.5,-37.5 + pos: -120.5,-7.5 parent: 1 - - uid: 35468 + - uid: 8491 components: - type: Transform - pos: -100.5,-36.5 + pos: -121.5,-7.5 parent: 1 - - uid: 35469 + - uid: 8492 components: - type: Transform - pos: -100.5,-35.5 + pos: -122.5,-7.5 parent: 1 - - uid: 35470 + - uid: 8493 components: - type: Transform - pos: -100.5,-34.5 + pos: -122.5,-6.5 parent: 1 - - uid: 35471 + - uid: 8494 components: - type: Transform - pos: -100.5,-33.5 + pos: -122.5,-5.5 parent: 1 - - uid: 35472 + - uid: 8495 components: - type: Transform - pos: -100.5,-32.5 + pos: -122.5,-4.5 parent: 1 - - uid: 35473 + - uid: 8496 components: - type: Transform - pos: -100.5,-31.5 + pos: -122.5,-3.5 parent: 1 - - uid: 35474 + - uid: 8497 components: - type: Transform - pos: -99.5,-31.5 + pos: -122.5,-2.5 parent: 1 - - uid: 35475 + - uid: 8498 components: - type: Transform - pos: -99.5,-30.5 + pos: -122.5,-1.5 parent: 1 - - uid: 35476 + - uid: 8499 components: - type: Transform - pos: -99.5,-29.5 + pos: -122.5,-0.5 parent: 1 - - uid: 35477 + - uid: 8500 components: - type: Transform - pos: -98.5,-29.5 + pos: -123.5,-0.5 parent: 1 - - uid: 35478 + - uid: 8501 components: - type: Transform - pos: -97.5,-29.5 + pos: -124.5,-0.5 parent: 1 - - uid: 35479 + - uid: 9742 components: - type: Transform - pos: -105.5,-7.5 + pos: -70.5,-7.5 parent: 1 - - uid: 35480 + - uid: 10957 components: - type: Transform - pos: -104.5,-7.5 + pos: 94.5,-42.5 parent: 1 - - uid: 35481 + - uid: 12151 components: - type: Transform - pos: -103.5,-7.5 + pos: -124.5,0.5 parent: 1 - - uid: 35482 + - uid: 12153 components: - type: Transform - pos: -102.5,-7.5 + pos: -124.5,1.5 parent: 1 - - uid: 35483 + - uid: 12236 components: - type: Transform - pos: -101.5,-7.5 + pos: 85.5,-58.5 parent: 1 - - uid: 35484 + - uid: 12363 components: - type: Transform - pos: -100.5,-7.5 + pos: 62.5,-34.5 parent: 1 - - uid: 35485 + - uid: 12365 components: - type: Transform - pos: -99.5,-7.5 + pos: 62.5,-35.5 parent: 1 - - uid: 35486 + - uid: 12366 components: - type: Transform - pos: -98.5,-7.5 + pos: 63.5,-35.5 parent: 1 - - uid: 35572 + - uid: 12504 components: - type: Transform - pos: -126.5,-79.5 + pos: 63.5,-36.5 parent: 1 - - uid: 35609 + - uid: 12505 components: - type: Transform - pos: -114.5,-84.5 + pos: 63.5,-37.5 parent: 1 - - uid: 35610 + - uid: 12507 components: - type: Transform - pos: -113.5,-86.5 + pos: 64.5,-36.5 parent: 1 - - uid: 35611 + - uid: 12508 components: - type: Transform - pos: -113.5,-85.5 + pos: 65.5,-36.5 parent: 1 - - uid: 35612 + - uid: 12510 components: - type: Transform - pos: -114.5,-87.5 + pos: 66.5,-36.5 parent: 1 - - uid: 35613 + - uid: 12513 components: - type: Transform - pos: -114.5,-88.5 + pos: 67.5,-36.5 parent: 1 - - uid: 35614 + - uid: 12514 components: - type: Transform - pos: -114.5,-89.5 + pos: 67.5,-37.5 parent: 1 - - uid: 35615 + - uid: 12515 components: - type: Transform - pos: -113.5,-87.5 + pos: 68.5,-37.5 parent: 1 - - uid: 35616 + - uid: 12516 components: - type: Transform - pos: -112.5,-87.5 + pos: 69.5,-37.5 parent: 1 - - uid: 35617 + - uid: 12517 components: - type: Transform - pos: -111.5,-87.5 + pos: 69.5,-36.5 parent: 1 - - uid: 35618 + - uid: 12585 components: - type: Transform - pos: -110.5,-87.5 + pos: -125.5,1.5 parent: 1 - - uid: 35619 + - uid: 12586 components: - type: Transform - pos: -109.5,-87.5 + pos: -126.5,1.5 parent: 1 - - uid: 35620 + - uid: 12588 components: - type: Transform - pos: -108.5,-87.5 + pos: -127.5,1.5 parent: 1 - - uid: 35621 + - uid: 12589 components: - type: Transform - pos: -107.5,-87.5 + pos: -127.5,0.5 parent: 1 - - uid: 35622 + - uid: 12590 components: - type: Transform - pos: -107.5,-86.5 + pos: -127.5,-0.5 parent: 1 - - uid: 35623 + - uid: 12591 components: - type: Transform - pos: -107.5,-85.5 + pos: -127.5,-1.5 parent: 1 - - uid: 35624 + - uid: 12592 components: - type: Transform - pos: -107.5,-84.5 + pos: -127.5,-2.5 parent: 1 - - uid: 35625 + - uid: 12593 components: - type: Transform - pos: -107.5,-83.5 + pos: -127.5,-3.5 parent: 1 - - uid: 35655 + - uid: 12594 components: - type: Transform - pos: -113.5,-84.5 + pos: -128.5,1.5 parent: 1 - - uid: 35656 + - uid: 12599 components: - type: Transform - pos: -115.5,-84.5 + pos: -128.5,2.5 parent: 1 - - uid: 35657 + - uid: 12600 components: - type: Transform - pos: -115.5,-85.5 + pos: -128.5,3.5 parent: 1 - - uid: 35658 + - uid: 12601 components: - type: Transform - pos: -115.5,-86.5 + pos: -128.5,4.5 parent: 1 - - uid: 35659 + - uid: 12602 components: - type: Transform - pos: -116.5,-86.5 + pos: -128.5,5.5 parent: 1 - - uid: 35761 + - uid: 12603 components: - type: Transform - pos: -126.5,-80.5 + pos: -128.5,6.5 parent: 1 - - uid: 35762 + - uid: 12604 components: - type: Transform - pos: -126.5,-81.5 + pos: -128.5,7.5 parent: 1 - - uid: 35763 + - uid: 12615 components: - type: Transform - pos: -126.5,-82.5 + pos: -128.5,8.5 parent: 1 - - uid: 35764 + - uid: 12616 components: - type: Transform - pos: -126.5,-83.5 + pos: -128.5,9.5 parent: 1 - - uid: 35765 + - uid: 12617 components: - type: Transform - pos: -126.5,-84.5 + pos: -128.5,10.5 parent: 1 - - uid: 35766 + - uid: 12618 components: - type: Transform - pos: -124.5,-79.5 + pos: -128.5,11.5 parent: 1 - - uid: 35767 + - uid: 12619 components: - type: Transform - pos: -124.5,-80.5 + pos: -128.5,12.5 parent: 1 - - uid: 35768 + - uid: 12620 components: - type: Transform - pos: -124.5,-81.5 + pos: -128.5,13.5 parent: 1 - - uid: 35769 + - uid: 12623 components: - type: Transform - pos: -124.5,-82.5 + pos: 70.5,-36.5 parent: 1 - - uid: 35770 + - uid: 12626 components: - type: Transform - pos: -124.5,-83.5 + pos: 71.5,-36.5 parent: 1 - - uid: 35771 + - uid: 12627 components: - type: Transform - pos: -124.5,-84.5 + pos: 72.5,-36.5 parent: 1 - - uid: 35772 + - uid: 12628 components: - type: Transform - pos: -125.5,-84.5 + pos: 73.5,-36.5 parent: 1 - - uid: 35773 + - uid: 12629 components: - type: Transform - pos: -125.5,-85.5 + pos: 73.5,-37.5 parent: 1 - - uid: 35774 + - uid: 12630 components: - type: Transform - pos: -124.5,-93.5 + pos: 74.5,-37.5 parent: 1 - - uid: 35775 + - uid: 12631 components: - type: Transform - pos: -124.5,-92.5 + pos: 75.5,-37.5 parent: 1 - - uid: 35776 + - uid: 12715 components: - type: Transform - pos: -124.5,-91.5 + pos: 75.5,-36.5 parent: 1 - - uid: 35777 + - uid: 12728 components: - type: Transform - pos: -124.5,-90.5 + pos: 76.5,-36.5 parent: 1 - - uid: 35778 + - uid: 12729 components: - type: Transform - pos: -124.5,-89.5 + pos: 77.5,-36.5 parent: 1 - - uid: 35779 + - uid: 12736 components: - type: Transform - pos: -124.5,-88.5 + pos: 78.5,-36.5 parent: 1 - - uid: 35780 + - uid: 12744 components: - type: Transform - pos: -126.5,-93.5 + pos: 79.5,-36.5 parent: 1 - - uid: 35781 + - uid: 12745 components: - type: Transform - pos: -126.5,-92.5 + pos: 79.5,-37.5 parent: 1 - - uid: 35782 + - uid: 12766 components: - type: Transform - pos: -126.5,-91.5 + pos: 80.5,-37.5 parent: 1 - - uid: 35783 + - uid: 12791 components: - type: Transform - pos: -126.5,-90.5 + pos: -42.5,12.5 parent: 1 - - uid: 35784 + - uid: 12794 components: - type: Transform - pos: -126.5,-89.5 + pos: 81.5,-37.5 parent: 1 - - uid: 35785 + - uid: 12814 components: - type: Transform - pos: -126.5,-88.5 + pos: 81.5,-36.5 parent: 1 - - uid: 35786 + - uid: 12820 components: - type: Transform - pos: -125.5,-88.5 + pos: 82.5,-36.5 parent: 1 - - uid: 35787 + - uid: 12842 components: - type: Transform - pos: -138.5,-79.5 + pos: 83.5,-36.5 parent: 1 - - uid: 35788 + - uid: 12869 components: - type: Transform - pos: -130.5,-79.5 + pos: 84.5,-36.5 parent: 1 - - uid: 35789 + - uid: 12870 components: - type: Transform - pos: -130.5,-80.5 + pos: 85.5,-36.5 parent: 1 - - uid: 35790 + - uid: 12871 components: - type: Transform - pos: -130.5,-81.5 + pos: 85.5,-37.5 parent: 1 - - uid: 35791 + - uid: 12872 components: - type: Transform - pos: -130.5,-82.5 + pos: 86.5,-37.5 parent: 1 - - uid: 35792 + - uid: 12873 components: - type: Transform - pos: -130.5,-83.5 + pos: 87.5,-37.5 parent: 1 - - uid: 35793 + - uid: 12874 components: - type: Transform - pos: -130.5,-84.5 + pos: 87.5,-36.5 parent: 1 - - uid: 35794 + - uid: 12875 components: - type: Transform - pos: -129.5,-84.5 + pos: 88.5,-36.5 parent: 1 - - uid: 35795 + - uid: 12876 components: - type: Transform - pos: -129.5,-85.5 + pos: 89.5,-36.5 parent: 1 - - uid: 35796 + - uid: 12877 components: - type: Transform - pos: -129.5,-87.5 + pos: 90.5,-36.5 parent: 1 - - uid: 35797 + - uid: 12878 components: - type: Transform - pos: -129.5,-88.5 + pos: 90.5,-37.5 parent: 1 - - uid: 35798 + - uid: 12879 components: - type: Transform - pos: -130.5,-88.5 + pos: 91.5,-37.5 parent: 1 - - uid: 35799 + - uid: 12880 components: - type: Transform - pos: -130.5,-89.5 + pos: 91.5,-38.5 parent: 1 - - uid: 35800 + - uid: 12881 components: - type: Transform - pos: -130.5,-90.5 + pos: 92.5,-38.5 parent: 1 - - uid: 35801 + - uid: 12882 components: - type: Transform - pos: -130.5,-91.5 + pos: 92.5,-39.5 parent: 1 - - uid: 35802 + - uid: 12883 components: - type: Transform - pos: -130.5,-92.5 + pos: 92.5,-40.5 parent: 1 - - uid: 35803 + - uid: 12884 components: - type: Transform - pos: -130.5,-93.5 + pos: 92.5,-41.5 parent: 1 - - uid: 35804 + - uid: 12885 components: - type: Transform - pos: -132.5,-88.5 + pos: 92.5,-42.5 parent: 1 - - uid: 35805 + - uid: 12886 components: - type: Transform - pos: -132.5,-89.5 + pos: 91.5,-42.5 parent: 1 - - uid: 35806 + - uid: 12887 components: - type: Transform - pos: -132.5,-90.5 + pos: 91.5,-43.5 parent: 1 - - uid: 35807 + - uid: 12888 components: - type: Transform - pos: -132.5,-91.5 + pos: 91.5,-44.5 parent: 1 - - uid: 35808 + - uid: 12899 components: - type: Transform - pos: -132.5,-92.5 + pos: 92.5,-44.5 parent: 1 - - uid: 35809 + - uid: 12900 components: - type: Transform - pos: -134.5,-93.5 + pos: 92.5,-45.5 parent: 1 - - uid: 35810 + - uid: 12901 components: - type: Transform - pos: -134.5,-92.5 + pos: 92.5,-46.5 parent: 1 - - uid: 35811 + - uid: 12902 components: - type: Transform - pos: -134.5,-91.5 + pos: 91.5,-46.5 parent: 1 - - uid: 35812 + - uid: 12903 components: - type: Transform - pos: -134.5,-90.5 + pos: 91.5,-47.5 parent: 1 - - uid: 35813 + - uid: 12904 components: - type: Transform - pos: -134.5,-89.5 + pos: 91.5,-48.5 parent: 1 - - uid: 35814 + - uid: 12905 components: - type: Transform - pos: -134.5,-88.5 + pos: 92.5,-48.5 parent: 1 - - uid: 35815 + - uid: 12906 components: - type: Transform - pos: -133.5,-88.5 + pos: 92.5,-49.5 parent: 1 - - uid: 35816 + - uid: 12907 components: - type: Transform - pos: -133.5,-87.5 + pos: 92.5,-50.5 parent: 1 - - uid: 35817 + - uid: 12908 components: - type: Transform - pos: -133.5,-85.5 + pos: 91.5,-50.5 parent: 1 - - uid: 35818 + - uid: 12909 components: - type: Transform - pos: -133.5,-84.5 + pos: 91.5,-51.5 parent: 1 - - uid: 35819 + - uid: 12910 components: - type: Transform - pos: -134.5,-84.5 + pos: 91.5,-52.5 parent: 1 - - uid: 35820 + - uid: 12911 components: - type: Transform - pos: -134.5,-83.5 + pos: 92.5,-52.5 parent: 1 - - uid: 35821 + - uid: 12912 components: - type: Transform - pos: -134.5,-82.5 + pos: 92.5,-53.5 parent: 1 - - uid: 35822 + - uid: 12913 components: - type: Transform - pos: -134.5,-81.5 + pos: 92.5,-54.5 parent: 1 - - uid: 35823 + - uid: 12914 components: - type: Transform - pos: -134.5,-80.5 + pos: 92.5,-55.5 parent: 1 - - uid: 35824 + - uid: 12916 components: - type: Transform - pos: -134.5,-79.5 + pos: 92.5,-56.5 parent: 1 - - uid: 35825 + - uid: 12917 components: - type: Transform - pos: -138.5,-80.5 + pos: 91.5,-56.5 parent: 1 - - uid: 35826 + - uid: 12918 components: - type: Transform - pos: -138.5,-81.5 + pos: 91.5,-57.5 parent: 1 - - uid: 35827 + - uid: 12919 components: - type: Transform - pos: -138.5,-82.5 + pos: 90.5,-57.5 parent: 1 - - uid: 35828 + - uid: 12920 components: - type: Transform - pos: -138.5,-83.5 + pos: 90.5,-58.5 parent: 1 - - uid: 35829 + - uid: 12921 components: - type: Transform - pos: -138.5,-84.5 + pos: 89.5,-58.5 parent: 1 - - uid: 35830 + - uid: 12922 components: - type: Transform - pos: -136.5,-79.5 + pos: 88.5,-58.5 parent: 1 - - uid: 35831 + - uid: 12923 components: - type: Transform - pos: -136.5,-80.5 + pos: 87.5,-58.5 parent: 1 - - uid: 35832 + - uid: 12924 components: - type: Transform - pos: -136.5,-81.5 + pos: 87.5,-57.5 parent: 1 - - uid: 35833 + - uid: 12925 components: - type: Transform - pos: -136.5,-82.5 + pos: 86.5,-57.5 parent: 1 - - uid: 35834 + - uid: 12926 components: - type: Transform - pos: -136.5,-83.5 + pos: 85.5,-57.5 parent: 1 - - uid: 35835 + - uid: 12927 components: - type: Transform - pos: -136.5,-84.5 + pos: 84.5,-58.5 parent: 1 - - uid: 35836 + - uid: 12928 components: - type: Transform - pos: -137.5,-84.5 + pos: 83.5,-58.5 parent: 1 - - uid: 35837 + - uid: 12929 components: - type: Transform - pos: -137.5,-85.5 + pos: 82.5,-58.5 parent: 1 - - uid: 35839 + - uid: 12930 components: - type: Transform - pos: -143.5,-86.5 + pos: 81.5,-58.5 parent: 1 - - uid: 35840 + - uid: 12931 components: - type: Transform - pos: -142.5,-86.5 + pos: 81.5,-57.5 parent: 1 - - uid: 35841 + - uid: 12932 components: - type: Transform - pos: -141.5,-86.5 + pos: 80.5,-57.5 parent: 1 - - uid: 35842 + - uid: 12933 components: - type: Transform - pos: -140.5,-86.5 + pos: 79.5,-57.5 parent: 1 - - uid: 35843 + - uid: 12934 components: - type: Transform - pos: -139.5,-86.5 + pos: 79.5,-58.5 parent: 1 - - uid: 35844 + - uid: 12935 components: - type: Transform - pos: -138.5,-86.5 + pos: 78.5,-58.5 parent: 1 - - uid: 35845 + - uid: 12936 components: - type: Transform - pos: -137.5,-86.5 + pos: 77.5,-58.5 parent: 1 - - uid: 35846 + - uid: 12937 components: - type: Transform - pos: -136.5,-86.5 + pos: 76.5,-58.5 parent: 1 - - uid: 35847 + - uid: 12938 components: - type: Transform - pos: -135.5,-86.5 + pos: 75.5,-58.5 parent: 1 - - uid: 35848 + - uid: 12939 components: - type: Transform - pos: -134.5,-86.5 + pos: 75.5,-57.5 parent: 1 - - uid: 35849 + - uid: 12940 components: - type: Transform - pos: -133.5,-86.5 + pos: 74.5,-57.5 parent: 1 - - uid: 35850 + - uid: 12941 components: - type: Transform - pos: -132.5,-86.5 + pos: 73.5,-57.5 parent: 1 - - uid: 35851 + - uid: 12942 components: - type: Transform - pos: -131.5,-86.5 + pos: 73.5,-58.5 parent: 1 - - uid: 35852 + - uid: 12943 components: - type: Transform - pos: -130.5,-86.5 + pos: 72.5,-58.5 parent: 1 - - uid: 35853 + - uid: 12944 components: - type: Transform - pos: -129.5,-86.5 + pos: 71.5,-58.5 parent: 1 - - uid: 35854 + - uid: 12956 components: - type: Transform - pos: -128.5,-86.5 + pos: 70.5,-58.5 parent: 1 - - uid: 35855 + - uid: 12957 components: - type: Transform - pos: -127.5,-86.5 + pos: 69.5,-58.5 parent: 1 - - uid: 35856 + - uid: 12958 components: - type: Transform - pos: -126.5,-86.5 + pos: 69.5,-57.5 parent: 1 - - uid: 35857 + - uid: 12959 components: - type: Transform - pos: -125.5,-86.5 + pos: 68.5,-57.5 parent: 1 - - uid: 35858 + - uid: 12960 components: - type: Transform - pos: -124.5,-86.5 + pos: 67.5,-57.5 parent: 1 - - uid: 35859 + - uid: 12961 components: - type: Transform - pos: -123.5,-86.5 + pos: 67.5,-58.5 parent: 1 - - uid: 35860 + - uid: 12973 components: - type: Transform - pos: -122.5,-86.5 + pos: 66.5,-58.5 parent: 1 - - uid: 35861 + - uid: 12974 components: - type: Transform - pos: -121.5,-86.5 + pos: 65.5,-58.5 parent: 1 - - uid: 35862 + - uid: 12975 components: - type: Transform - pos: -120.5,-86.5 + pos: 64.5,-58.5 parent: 1 - - uid: 35863 + - uid: 12976 components: - type: Transform - pos: -119.5,-86.5 + pos: 63.5,-58.5 parent: 1 - - uid: 35864 + - uid: 12977 components: - type: Transform - pos: -118.5,-86.5 + pos: 63.5,-57.5 parent: 1 - - uid: 35865 + - uid: 12979 components: - type: Transform - pos: -117.5,-86.5 + pos: 63.5,-59.5 parent: 1 - - uid: 36022 + - uid: 12981 components: - type: Transform - pos: -107.5,-82.5 + pos: 62.5,-59.5 parent: 1 - - uid: 36023 + - uid: 12982 components: - type: Transform - pos: -108.5,-82.5 + pos: 62.5,-60.5 parent: 1 - - uid: 36024 + - uid: 12983 components: - type: Transform - pos: -109.5,-82.5 + pos: 62.5,-61.5 parent: 1 - - uid: 36025 + - uid: 12984 components: - type: Transform - pos: -110.5,-82.5 + pos: 61.5,-62.5 parent: 1 - - uid: 36026 + - uid: 12985 components: - type: Transform - pos: -111.5,-82.5 + pos: 60.5,-62.5 parent: 1 - - uid: 36027 + - uid: 12986 components: - type: Transform - pos: -112.5,-82.5 + pos: 59.5,-62.5 parent: 1 - - uid: 36028 + - uid: 12987 components: - type: Transform - pos: -113.5,-82.5 + pos: 63.5,-34.5 parent: 1 - - uid: 36029 + - uid: 12988 components: - type: Transform - pos: -114.5,-82.5 + pos: 57.5,-62.5 parent: 1 - - uid: 36030 + - uid: 12989 components: - type: Transform - pos: -114.5,-81.5 + pos: 56.5,-62.5 parent: 1 - - uid: 36031 + - uid: 12990 components: - type: Transform - pos: -114.5,-80.5 + pos: 63.5,-33.5 parent: 1 - - uid: 36032 + - uid: 12991 components: - type: Transform - pos: -114.5,-79.5 + pos: 64.5,-33.5 parent: 1 - - uid: 36033 + - uid: 12992 components: - type: Transform - pos: -114.5,-78.5 + pos: 65.5,-33.5 parent: 1 - - uid: 36034 + - uid: 12993 components: - type: Transform - pos: -114.5,-77.5 + pos: 66.5,-33.5 parent: 1 - - uid: 36035 + - uid: 12994 components: - type: Transform - pos: -114.5,-76.5 + pos: 67.5,-33.5 parent: 1 - - uid: 36036 + - uid: 12995 components: - type: Transform - pos: -114.5,-75.5 + pos: 67.5,-34.5 parent: 1 - - uid: 36037 + - uid: 12996 components: - type: Transform - pos: -114.5,-74.5 + pos: 68.5,-34.5 parent: 1 - - uid: 36038 + - uid: 12997 components: - type: Transform - pos: -114.5,-73.5 + pos: 69.5,-34.5 parent: 1 - - uid: 36039 + - uid: 12998 components: - type: Transform - pos: -114.5,-72.5 + pos: 69.5,-33.5 parent: 1 - - uid: 36040 + - uid: 12999 components: - type: Transform - pos: -114.5,-71.5 + pos: 70.5,-33.5 parent: 1 - - uid: 36041 + - uid: 13000 components: - type: Transform - pos: -115.5,-71.5 + pos: 71.5,-33.5 parent: 1 - - uid: 36042 + - uid: 13001 components: - type: Transform - pos: -116.5,-71.5 + pos: 72.5,-33.5 parent: 1 - - uid: 36043 + - uid: 13002 components: - type: Transform - pos: -116.5,-70.5 + pos: 73.5,-33.5 parent: 1 - - uid: 36044 + - uid: 13003 components: - type: Transform - pos: -116.5,-69.5 + pos: 73.5,-34.5 parent: 1 - - uid: 36045 + - uid: 13004 components: - type: Transform - pos: -116.5,-68.5 + pos: 74.5,-34.5 parent: 1 - - uid: 36046 + - uid: 13005 components: - type: Transform - pos: -116.5,-67.5 + pos: 75.5,-34.5 parent: 1 - - uid: 36047 + - uid: 13006 components: - type: Transform - pos: -116.5,-66.5 + pos: 75.5,-33.5 parent: 1 - - uid: 36048 + - uid: 13007 components: - type: Transform - pos: -116.5,-65.5 + pos: 76.5,-33.5 parent: 1 - - uid: 36049 + - uid: 13008 components: - type: Transform - pos: -116.5,-64.5 + pos: 77.5,-33.5 parent: 1 - - uid: 36050 + - uid: 13014 components: - type: Transform - pos: -116.5,-63.5 + pos: 78.5,-33.5 parent: 1 - - uid: 36051 + - uid: 13015 components: - type: Transform - pos: -116.5,-62.5 + pos: 79.5,-33.5 parent: 1 - - uid: 36052 + - uid: 13016 components: - type: Transform - pos: -116.5,-61.5 + pos: 79.5,-34.5 parent: 1 - - uid: 36053 + - uid: 13020 components: - type: Transform - pos: -116.5,-60.5 + pos: 80.5,-34.5 parent: 1 - - uid: 36054 + - uid: 13022 components: - type: Transform - pos: -116.5,-59.5 + pos: 81.5,-34.5 parent: 1 - - uid: 36055 + - uid: 13023 components: - type: Transform - pos: -116.5,-58.5 + pos: 81.5,-33.5 parent: 1 - - uid: 36056 + - uid: 13024 components: - type: Transform - pos: -116.5,-57.5 + pos: 82.5,-33.5 parent: 1 - - uid: 36057 + - uid: 13025 components: - type: Transform - pos: -116.5,-56.5 + pos: 83.5,-33.5 parent: 1 - - uid: 36058 + - uid: 13026 components: - type: Transform - pos: -116.5,-55.5 + pos: 84.5,-33.5 parent: 1 - - uid: 36059 + - uid: 13027 components: - type: Transform - pos: -116.5,-54.5 + pos: 85.5,-33.5 parent: 1 - - uid: 36060 + - uid: 13028 components: - type: Transform - pos: -116.5,-53.5 + pos: 85.5,-34.5 parent: 1 - - uid: 36061 + - uid: 13055 components: - type: Transform - pos: -116.5,-52.5 + pos: 86.5,-34.5 parent: 1 - - uid: 36062 + - uid: 13113 components: - type: Transform - pos: -116.5,-51.5 + pos: 87.5,-34.5 parent: 1 - - uid: 36063 + - uid: 13118 components: - type: Transform - pos: -116.5,-50.5 + pos: 87.5,-33.5 parent: 1 - - uid: 36064 + - uid: 13119 components: - type: Transform - pos: -116.5,-49.5 + pos: 88.5,-33.5 parent: 1 - - uid: 36065 + - uid: 13120 components: - type: Transform - pos: -116.5,-48.5 + pos: 89.5,-33.5 parent: 1 - - uid: 36066 + - uid: 13155 components: - type: Transform - pos: -116.5,-47.5 + pos: 90.5,-33.5 parent: 1 - - uid: 36067 + - uid: 13156 components: - type: Transform - pos: -116.5,-46.5 + pos: 91.5,-33.5 parent: 1 - - uid: 36068 + - uid: 13179 components: - type: Transform - pos: -106.5,-82.5 + pos: 91.5,-34.5 parent: 1 - - uid: 36069 + - uid: 13180 components: - type: Transform - pos: -105.5,-82.5 + pos: 92.5,-34.5 parent: 1 - - uid: 36070 + - uid: 13210 components: - type: Transform - pos: -104.5,-82.5 + pos: 93.5,-34.5 parent: 1 - - uid: 36071 + - uid: 13211 components: - type: Transform - pos: -103.5,-82.5 + pos: 93.5,-33.5 parent: 1 - - uid: 36072 + - uid: 13212 components: - type: Transform - pos: -102.5,-82.5 + pos: 94.5,-33.5 parent: 1 - - uid: 36073 + - uid: 13213 components: - type: Transform - pos: -101.5,-82.5 + pos: 94.5,-34.5 parent: 1 - - uid: 36074 + - uid: 13214 components: - type: Transform - pos: -100.5,-82.5 + pos: 95.5,-34.5 parent: 1 - - uid: 36075 + - uid: 13215 components: - type: Transform - pos: -99.5,-82.5 + pos: 95.5,-35.5 parent: 1 - - uid: 36076 + - uid: 13252 components: - type: Transform - pos: -98.5,-82.5 + pos: 94.5,-35.5 parent: 1 - - uid: 36077 + - uid: 13253 components: - type: Transform - pos: -98.5,-81.5 + pos: 94.5,-36.5 parent: 1 - - uid: 36078 + - uid: 13281 components: - type: Transform - pos: -98.5,-80.5 + pos: 94.5,-37.5 parent: 1 - - uid: 36079 + - uid: 13282 components: - type: Transform - pos: -97.5,-80.5 + pos: 95.5,-37.5 parent: 1 - - uid: 36080 + - uid: 13301 components: - type: Transform - pos: -96.5,-80.5 + pos: 95.5,-38.5 parent: 1 - - uid: 36081 + - uid: 13320 components: - type: Transform - pos: -95.5,-80.5 + pos: 95.5,-39.5 parent: 1 - - uid: 36082 + - uid: 13326 components: - type: Transform - pos: -94.5,-80.5 + pos: 95.5,-40.5 parent: 1 - - uid: 36083 + - uid: 13337 components: - type: Transform - pos: -93.5,-80.5 + pos: 95.5,-41.5 parent: 1 - - uid: 36084 + - uid: 13339 components: - type: Transform - pos: -92.5,-80.5 + pos: 95.5,-42.5 parent: 1 - - uid: 36085 + - uid: 13360 components: - type: Transform - pos: -91.5,-80.5 + pos: 94.5,-43.5 parent: 1 - - uid: 36086 + - uid: 13363 components: - type: Transform - pos: -91.5,-79.5 + pos: 94.5,-44.5 parent: 1 - - uid: 36087 + - uid: 13364 components: - type: Transform - pos: -91.5,-78.5 + pos: 95.5,-44.5 parent: 1 - - uid: 36088 + - uid: 13365 components: - type: Transform - pos: -91.5,-77.5 + pos: 95.5,-45.5 parent: 1 - - uid: 36089 + - uid: 13379 components: - type: Transform - pos: -91.5,-76.5 + pos: 95.5,-46.5 parent: 1 - - uid: 36090 + - uid: 13380 components: - type: Transform - pos: -91.5,-75.5 + pos: 94.5,-50.5 parent: 1 - - uid: 36091 + - uid: 13381 components: - type: Transform - pos: -91.5,-74.5 + pos: 94.5,-46.5 parent: 1 - - uid: 36092 + - uid: 13382 components: - type: Transform - pos: -91.5,-73.5 + pos: 94.5,-47.5 parent: 1 - - uid: 36093 + - uid: 13383 components: - type: Transform - pos: -91.5,-72.5 + pos: 94.5,-48.5 parent: 1 - - uid: 36094 + - uid: 13384 components: - type: Transform - pos: -91.5,-71.5 + pos: 95.5,-48.5 parent: 1 - - uid: 36095 + - uid: 13385 components: - type: Transform - pos: -91.5,-70.5 + pos: 95.5,-49.5 parent: 1 - - uid: 36096 + - uid: 13386 components: - type: Transform - pos: -91.5,-69.5 + pos: 95.5,-50.5 parent: 1 - - uid: 36097 + - uid: 13387 components: - type: Transform - pos: -91.5,-68.5 + pos: 94.5,-51.5 parent: 1 - - uid: 36098 + - uid: 13388 components: - type: Transform - pos: -91.5,-67.5 + pos: 94.5,-52.5 parent: 1 - - uid: 36099 + - uid: 13389 components: - type: Transform - pos: -91.5,-66.5 + pos: 95.5,-59.5 parent: 1 - - uid: 36100 + - uid: 13390 components: - type: Transform - pos: -91.5,-65.5 + pos: 95.5,-52.5 parent: 1 - - uid: 36101 + - uid: 13391 components: - type: Transform - pos: -91.5,-64.5 + pos: 95.5,-53.5 parent: 1 - - uid: 36102 + - uid: 13392 components: - type: Transform - pos: -91.5,-63.5 + pos: 95.5,-54.5 parent: 1 - - uid: 36103 + - uid: 13393 components: - type: Transform - pos: -91.5,-62.5 + pos: 95.5,-55.5 parent: 1 - - uid: 36104 + - uid: 13394 components: - type: Transform - pos: -91.5,-61.5 + pos: 95.5,-56.5 parent: 1 - - uid: 36105 + - uid: 13395 components: - type: Transform - pos: -91.5,-60.5 + pos: 95.5,-57.5 parent: 1 - - uid: 36106 + - uid: 13396 components: - type: Transform - pos: -91.5,-59.5 + pos: 94.5,-57.5 parent: 1 - - uid: 36107 + - uid: 13397 components: - type: Transform - pos: -91.5,-58.5 + pos: 94.5,-58.5 parent: 1 - - uid: 36108 + - uid: 13398 components: - type: Transform - pos: -90.5,-58.5 + pos: 94.5,-59.5 parent: 1 - - uid: 36109 + - uid: 13399 components: - type: Transform - pos: -89.5,-58.5 + pos: 95.5,-60.5 parent: 1 - - uid: 36110 + - uid: 13400 components: - type: Transform - pos: -88.5,-58.5 + pos: 95.5,-61.5 parent: 1 - - uid: 36111 + - uid: 13401 components: - type: Transform - pos: -87.5,-58.5 + pos: 94.5,-61.5 parent: 1 - - uid: 36112 + - uid: 13402 components: - type: Transform - pos: -86.5,-58.5 + pos: 94.5,-62.5 parent: 1 - - uid: 36113 + - uid: 13403 components: - type: Transform - pos: -85.5,-58.5 + pos: 93.5,-62.5 parent: 1 - - uid: 36114 + - uid: 13404 components: - type: Transform - pos: -84.5,-58.5 + pos: 93.5,-61.5 parent: 1 - - uid: 36115 + - uid: 13405 components: - type: Transform - pos: -83.5,-58.5 + pos: 92.5,-61.5 parent: 1 - - uid: 36116 + - uid: 13406 components: - type: Transform - pos: -82.5,-58.5 + pos: 91.5,-61.5 parent: 1 - - uid: 36117 + - uid: 13407 components: - type: Transform - pos: -81.5,-58.5 + pos: 91.5,-62.5 parent: 1 - - uid: 36118 + - uid: 13408 components: - type: Transform - pos: -80.5,-58.5 + pos: 90.5,-62.5 parent: 1 - - uid: 36119 + - uid: 13409 components: - type: Transform - pos: -79.5,-58.5 + pos: 89.5,-62.5 parent: 1 - - uid: 36120 + - uid: 13410 components: - type: Transform - pos: -78.5,-58.5 + pos: 88.5,-62.5 parent: 1 - - uid: 36121 + - uid: 13411 components: - type: Transform - pos: -77.5,-58.5 + pos: 87.5,-62.5 parent: 1 - - uid: 36122 + - uid: 13412 components: - type: Transform - pos: -76.5,-58.5 + pos: 87.5,-61.5 parent: 1 - - uid: 36123 + - uid: 13413 components: - type: Transform - pos: -76.5,-57.5 + pos: 86.5,-61.5 parent: 1 - - uid: 36124 + - uid: 13414 components: - type: Transform - pos: -76.5,-56.5 + pos: 85.5,-61.5 parent: 1 - - uid: 36125 + - uid: 13415 components: - type: Transform - pos: -76.5,-55.5 + pos: 85.5,-62.5 parent: 1 - - uid: 36126 + - uid: 13416 components: - type: Transform - pos: -76.5,-54.5 + pos: 84.5,-62.5 parent: 1 - - uid: 36127 + - uid: 13417 components: - type: Transform - pos: -75.5,-54.5 + pos: 83.5,-62.5 parent: 1 - - uid: 36561 + - uid: 13418 components: - type: Transform - pos: -114.5,-20.5 + pos: 82.5,-62.5 parent: 1 - - uid: 36562 + - uid: 13419 components: - type: Transform - pos: -115.5,-20.5 + pos: 81.5,-62.5 parent: 1 - - uid: 36563 + - uid: 13420 components: - type: Transform - pos: -114.5,-19.5 + pos: 81.5,-61.5 parent: 1 - - uid: 37455 + - uid: 13421 components: - type: Transform - pos: -99.5,-76.5 + pos: 80.5,-61.5 parent: 1 - - uid: 37456 + - uid: 13422 components: - type: Transform - pos: -99.5,-77.5 + pos: 79.5,-61.5 parent: 1 - - uid: 37457 + - uid: 13423 components: - type: Transform - pos: -98.5,-77.5 + pos: 79.5,-62.5 parent: 1 - - uid: 37458 + - uid: 13424 components: - type: Transform - pos: -97.5,-77.5 + pos: 78.5,-62.5 parent: 1 - - uid: 37459 + - uid: 13425 components: - type: Transform - pos: -97.5,-78.5 + pos: 77.5,-62.5 parent: 1 - - uid: 37460 + - uid: 13426 components: - type: Transform - pos: -97.5,-79.5 + pos: 76.5,-62.5 parent: 1 - - uid: 39031 + - uid: 13427 components: - type: Transform - pos: -108.5,-36.5 + pos: 75.5,-62.5 parent: 1 - - uid: 39032 + - uid: 13428 components: - type: Transform - pos: -109.5,-36.5 + pos: 75.5,-61.5 parent: 1 - - uid: 39033 + - uid: 13429 components: - type: Transform - pos: -110.5,-36.5 + pos: 74.5,-61.5 parent: 1 - - uid: 39034 + - uid: 13430 components: - type: Transform - pos: -111.5,-36.5 + pos: 73.5,-61.5 parent: 1 - - uid: 39035 + - uid: 13431 components: - type: Transform - pos: -111.5,-37.5 + pos: 73.5,-62.5 parent: 1 - - uid: 39036 + - uid: 13432 components: - type: Transform - pos: -110.5,-38.5 + pos: 72.5,-62.5 parent: 1 - - uid: 39037 + - uid: 13433 components: - type: Transform - pos: -111.5,-38.5 + pos: 71.5,-62.5 parent: 1 - - uid: 39038 + - uid: 13434 components: - type: Transform - pos: -109.5,-38.5 + pos: 70.5,-62.5 parent: 1 - - uid: 39039 + - uid: 13435 components: - type: Transform - pos: -109.5,-39.5 + pos: 69.5,-62.5 parent: 1 - - uid: 39040 + - uid: 13436 components: - type: Transform - pos: -108.5,-39.5 + pos: 69.5,-61.5 parent: 1 - - uid: 39041 + - uid: 13437 components: - type: Transform - pos: -108.5,-35.5 + pos: 68.5,-61.5 parent: 1 - - uid: 39956 + - uid: 13438 components: - type: Transform - pos: -27.5,-72.5 + pos: 67.5,-61.5 parent: 1 - - uid: 39957 + - uid: 13439 components: - type: Transform - pos: -26.5,-72.5 + pos: 67.5,-62.5 parent: 1 - - uid: 39958 + - uid: 13440 components: - type: Transform - pos: -25.5,-72.5 + pos: 66.5,-62.5 parent: 1 - - uid: 39959 + - uid: 13441 components: - type: Transform - pos: -24.5,-72.5 + pos: 65.5,-62.5 parent: 1 - - uid: 40855 + - uid: 13442 components: - type: Transform - pos: 27.5,-10.5 + pos: 64.5,-62.5 parent: 1 - - uid: 40856 + - uid: 13443 components: - type: Transform - pos: 28.5,-10.5 + pos: 63.5,-62.5 parent: 1 - - uid: 40857 + - uid: 13444 components: - type: Transform - pos: 29.5,-10.5 + pos: 63.5,-61.5 parent: 1 - - uid: 40858 + - uid: 13445 components: - type: Transform - pos: 30.5,-10.5 + pos: 61.5,-61.5 parent: 1 - - uid: 40859 + - uid: 13446 components: - type: Transform - pos: 31.5,-10.5 + pos: 57.5,-61.5 parent: 1 - - uid: 40860 + - uid: 13447 components: - type: Transform - pos: 32.5,-10.5 + pos: 58.5,-61.5 parent: 1 - - uid: 40861 + - uid: 13448 components: - type: Transform - pos: 33.5,-10.5 + pos: 59.5,-61.5 parent: 1 - - uid: 40862 + - uid: 13449 components: - type: Transform - pos: 34.5,-10.5 + pos: 93.5,-50.5 parent: 1 - - uid: 40863 + - uid: 13450 components: - type: Transform - pos: 35.5,-10.5 + pos: 67.5,-35.5 parent: 1 - - uid: 40864 + - uid: 13451 components: - type: Transform - pos: 36.5,-10.5 + pos: 69.5,-35.5 parent: 1 - - uid: 40865 + - uid: 13452 components: - type: Transform - pos: 37.5,-10.5 + pos: 73.5,-35.5 parent: 1 - - uid: 40866 + - uid: 13453 components: - type: Transform - pos: 38.5,-10.5 + pos: 75.5,-35.5 parent: 1 - - uid: 40867 + - uid: 13454 components: - type: Transform - pos: 39.5,-10.5 + pos: 79.5,-35.5 parent: 1 - - uid: 40868 + - uid: 13455 components: - type: Transform - pos: 40.5,-10.5 + pos: 81.5,-35.5 parent: 1 - - uid: 40869 + - uid: 13456 components: - type: Transform - pos: 41.5,-10.5 + pos: 85.5,-35.5 parent: 1 - - uid: 40870 + - uid: 13457 components: - type: Transform - pos: 42.5,-10.5 + pos: 87.5,-35.5 parent: 1 - - uid: 40871 + - uid: 13458 components: - type: Transform - pos: 42.5,-9.5 + pos: 90.5,-35.5 parent: 1 - - uid: 40872 + - uid: 13459 components: - type: Transform - pos: 42.5,-8.5 + pos: 91.5,-35.5 parent: 1 - - uid: 40873 + - uid: 13460 components: - type: Transform - pos: 42.5,-7.5 + pos: 93.5,-38.5 parent: 1 - - uid: 40874 + - uid: 13461 components: - type: Transform - pos: 42.5,-6.5 + pos: 93.5,-37.5 parent: 1 - - uid: 40875 + - uid: 13462 components: - type: Transform - pos: 43.5,-6.5 + pos: 93.5,-42.5 parent: 1 -- proto: CableHVStack - entities: - - uid: 3220 + - uid: 13463 components: - type: Transform - pos: -120.51751,-23.335634 + pos: 93.5,-44.5 parent: 1 - - uid: 8846 + - uid: 13464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.60745,-1.5233989 + pos: 93.5,-46.5 parent: 1 - - uid: 35607 + - uid: 13465 components: - type: Transform - pos: -113.494675,-84.374245 + pos: 93.5,-48.5 parent: 1 -- proto: CableHVStack1 - entities: - - uid: 36357 + - uid: 13466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.1429,-47.4004 + pos: 93.5,-52.5 parent: 1 -- proto: CableMV - entities: - - uid: 302 + - uid: 13467 components: - type: Transform - pos: 22.5,5.5 + pos: 75.5,-59.5 parent: 1 - - uid: 593 + - uid: 13468 components: - type: Transform - pos: -79.5,6.5 + pos: 93.5,-56.5 parent: 1 - - uid: 918 + - uid: 13469 components: - type: Transform - pos: -24.5,-11.5 + pos: 93.5,-57.5 parent: 1 - - uid: 1175 + - uid: 13470 components: - type: Transform - pos: 44.5,-2.5 + pos: 92.5,-60.5 parent: 1 - - uid: 1470 + - uid: 13471 components: - type: Transform - pos: -81.5,7.5 + pos: 92.5,-59.5 parent: 1 - - uid: 1672 + - uid: 13472 components: - type: Transform - pos: -0.5,-33.5 + pos: 91.5,-59.5 parent: 1 - - uid: 1686 + - uid: 13473 components: - type: Transform - pos: -1.5,-33.5 + pos: 90.5,-59.5 parent: 1 - - uid: 1697 + - uid: 13474 components: - type: Transform - pos: 7.5,-38.5 + pos: 87.5,-59.5 parent: 1 - - uid: 1698 + - uid: 13475 components: - type: Transform - pos: 8.5,-38.5 + pos: 86.5,-59.5 parent: 1 - - uid: 1867 + - uid: 13476 components: - type: Transform - pos: -103.5,-29.5 + pos: 86.5,-60.5 parent: 1 - - uid: 2146 + - uid: 13477 components: - type: Transform - pos: -105.5,-19.5 + pos: 85.5,-59.5 parent: 1 - - uid: 2238 + - uid: 13478 components: - type: Transform - pos: 18.5,2.5 + pos: 81.5,-59.5 parent: 1 - - uid: 2470 + - uid: 13479 components: - type: Transform - pos: -105.5,-27.5 + pos: 80.5,-59.5 parent: 1 - - uid: 2471 + - uid: 13480 components: - type: Transform - pos: -105.5,-29.5 + pos: 80.5,-60.5 parent: 1 - - uid: 2474 + - uid: 13481 components: - type: Transform - pos: -107.5,-20.5 + pos: 79.5,-59.5 parent: 1 - - uid: 2479 + - uid: 13482 components: - type: Transform - pos: -105.5,-21.5 + pos: 74.5,-59.5 parent: 1 - - uid: 2537 + - uid: 13483 components: - type: Transform - pos: -105.5,-28.5 + pos: 74.5,-60.5 parent: 1 - - uid: 2538 + - uid: 13484 components: - type: Transform - pos: -105.5,-26.5 + pos: 73.5,-59.5 parent: 1 - - uid: 2539 + - uid: 13485 components: - type: Transform - pos: -105.5,-25.5 + pos: 87.5,-56.5 parent: 1 - - uid: 2540 + - uid: 13486 components: - type: Transform - pos: -105.5,-24.5 + pos: 68.5,-60.5 parent: 1 - - uid: 3156 + - uid: 13487 components: - type: Transform - pos: -105.5,-23.5 + pos: 68.5,-59.5 parent: 1 - - uid: 3449 + - uid: 13488 components: - type: Transform - pos: -28.5,-72.5 + pos: 67.5,-59.5 parent: 1 - - uid: 3697 + - uid: 13489 components: - type: Transform - pos: -61.5,-28.5 + pos: 69.5,-59.5 parent: 1 - - uid: 3905 + - uid: 13537 components: - type: Transform - pos: -81.5,6.5 + pos: 73.5,-56.5 parent: 1 - - uid: 4703 + - uid: 13542 components: - type: Transform - pos: -79.5,-39.5 + pos: 73.5,-55.5 parent: 1 - - uid: 4706 + - uid: 13543 components: - type: Transform - pos: -85.5,-38.5 + pos: 77.5,-57.5 parent: 1 - - uid: 4710 + - uid: 13544 components: - type: Transform - pos: -85.5,-39.5 + pos: 77.5,-56.5 parent: 1 - - uid: 4712 + - uid: 13545 components: - type: Transform - pos: -81.5,-39.5 + pos: 77.5,-55.5 parent: 1 - - uid: 4713 + - uid: 13546 components: - type: Transform - pos: -78.5,-39.5 + pos: 81.5,-56.5 parent: 1 - - uid: 4759 + - uid: 13549 components: - type: Transform - pos: -80.5,-39.5 + pos: 81.5,-55.5 parent: 1 - - uid: 4760 + - uid: 13550 components: - type: Transform - pos: -84.5,-39.5 + pos: 87.5,-55.5 parent: 1 - - uid: 4765 + - uid: 13551 components: - type: Transform - pos: -82.5,-39.5 + pos: 87.5,-54.5 parent: 1 - - uid: 5483 + - uid: 13557 components: - type: Transform - pos: -114.5,-19.5 + pos: 87.5,-53.5 parent: 1 - - uid: 5490 + - uid: 13560 components: - type: Transform - pos: -113.5,-19.5 + pos: 87.5,-52.5 parent: 1 - - uid: 5493 + - uid: 13565 components: - type: Transform - pos: -112.5,-19.5 + pos: 87.5,-51.5 parent: 1 - - uid: 5496 + - uid: 13568 components: - type: Transform - pos: -111.5,-19.5 + pos: 87.5,-50.5 parent: 1 - - uid: 5497 + - uid: 13569 components: - type: Transform - pos: -110.5,-19.5 + pos: 87.5,-49.5 parent: 1 - - uid: 5498 + - uid: 13640 components: - type: Transform - pos: -109.5,-19.5 + pos: 87.5,-48.5 parent: 1 - - uid: 5499 + - uid: 13641 components: - type: Transform - pos: -108.5,-20.5 + pos: 87.5,-47.5 parent: 1 - - uid: 5516 + - uid: 13642 components: - type: Transform - pos: -108.5,-19.5 + pos: 87.5,-46.5 parent: 1 - - uid: 5564 + - uid: 13643 components: - type: Transform - pos: -106.5,-20.5 + pos: 87.5,-45.5 parent: 1 - - uid: 5916 + - uid: 13644 components: - type: Transform - pos: -105.5,-22.5 + pos: 87.5,-44.5 parent: 1 - - uid: 6013 + - uid: 13645 components: - type: Transform - pos: -76.5,-58.5 + pos: 87.5,-43.5 parent: 1 - - uid: 6943 + - uid: 13646 components: - type: Transform - pos: -62.5,-29.5 + pos: 87.5,-42.5 parent: 1 - - uid: 8460 + - uid: 13647 components: - type: Transform - pos: -105.5,-3.5 + pos: 87.5,-41.5 parent: 1 - - uid: 8461 + - uid: 13648 components: - type: Transform - pos: -105.5,-4.5 + pos: 87.5,-40.5 parent: 1 - - uid: 8462 + - uid: 13649 components: - type: Transform - pos: -105.5,-5.5 + pos: 87.5,-39.5 parent: 1 - - uid: 8463 + - uid: 13650 components: - type: Transform - pos: -105.5,-6.5 + pos: 87.5,-38.5 parent: 1 - - uid: 8464 + - uid: 13651 components: - type: Transform - pos: -105.5,-7.5 + pos: 86.5,-43.5 parent: 1 - - uid: 8465 + - uid: 13652 components: - type: Transform - pos: -104.5,-7.5 + pos: 85.5,-43.5 parent: 1 - - uid: 8466 + - uid: 13653 components: - type: Transform - pos: -103.5,-7.5 + pos: 86.5,-47.5 parent: 1 - - uid: 8467 + - uid: 13737 components: - type: Transform - pos: -102.5,-7.5 + pos: 85.5,-47.5 parent: 1 - - uid: 8468 + - uid: 13739 components: - type: Transform - pos: -101.5,-7.5 + pos: 86.5,-51.5 parent: 1 - - uid: 8469 + - uid: 13740 components: - type: Transform - pos: -100.5,-7.5 + pos: 85.5,-51.5 parent: 1 - - uid: 8470 + - uid: 13741 components: - type: Transform - pos: -99.5,-7.5 + pos: 63.5,-38.5 parent: 1 - - uid: 8471 + - uid: 13742 components: - type: Transform - pos: -98.5,-7.5 + pos: 81.5,-38.5 parent: 1 - - uid: 8472 + - uid: 13743 components: - type: Transform - pos: -97.5,-7.5 + pos: 81.5,-39.5 parent: 1 - - uid: 8473 + - uid: 13744 components: - type: Transform - pos: -97.5,-8.5 + pos: 77.5,-37.5 parent: 1 - - uid: 8475 + - uid: 13745 components: - type: Transform - pos: -106.5,-7.5 + pos: 77.5,-38.5 parent: 1 - - uid: 8477 + - uid: 13746 components: - type: Transform - pos: -108.5,-7.5 + pos: 77.5,-39.5 parent: 1 - - uid: 8478 + - uid: 13747 components: - type: Transform - pos: -109.5,-7.5 + pos: 73.5,-38.5 parent: 1 - - uid: 8479 + - uid: 13748 components: - type: Transform - pos: -110.5,-7.5 + pos: 73.5,-39.5 parent: 1 - - uid: 8480 + - uid: 13749 components: - type: Transform - pos: -111.5,-7.5 + pos: 63.5,-39.5 parent: 1 - - uid: 8481 + - uid: 13807 components: - type: Transform - pos: -112.5,-7.5 + pos: 63.5,-40.5 parent: 1 - - uid: 8482 + - uid: 13824 components: - type: Transform - pos: -113.5,-7.5 + pos: 64.5,-40.5 parent: 1 - - uid: 8483 + - uid: 13856 components: - type: Transform - pos: -114.5,-7.5 + pos: 65.5,-40.5 parent: 1 - - uid: 8484 + - uid: 13858 components: - type: Transform - pos: -115.5,-7.5 + pos: 66.5,-40.5 parent: 1 - - uid: 8485 + - uid: 13950 components: - type: Transform - pos: -116.5,-7.5 + pos: 66.5,-41.5 parent: 1 - - uid: 8486 + - uid: 13951 components: - type: Transform - pos: -117.5,-7.5 + pos: 66.5,-42.5 parent: 1 - - uid: 8487 + - uid: 14114 components: - type: Transform - pos: -118.5,-7.5 + pos: 66.5,-43.5 parent: 1 - - uid: 8488 + - uid: 14117 components: - type: Transform - pos: -119.5,-7.5 + pos: 66.5,-44.5 parent: 1 - - uid: 8490 + - uid: 14118 components: - type: Transform - pos: -120.5,-7.5 + pos: 66.5,-45.5 parent: 1 - - uid: 8491 + - uid: 14119 components: - type: Transform - pos: -121.5,-7.5 + pos: 66.5,-46.5 parent: 1 - - uid: 8492 + - uid: 14120 components: - type: Transform - pos: -122.5,-7.5 + pos: 66.5,-47.5 parent: 1 - - uid: 8493 + - uid: 14121 components: - type: Transform - pos: -122.5,-6.5 + pos: 66.5,-48.5 parent: 1 - - uid: 8494 + - uid: 14122 components: - type: Transform - pos: -122.5,-5.5 + pos: 66.5,-49.5 parent: 1 - - uid: 8495 + - uid: 14123 components: - type: Transform - pos: -122.5,-4.5 + pos: 66.5,-50.5 parent: 1 - - uid: 8496 + - uid: 14124 components: - type: Transform - pos: -122.5,-3.5 + pos: 66.5,-51.5 parent: 1 - - uid: 8497 + - uid: 14133 components: - type: Transform - pos: -122.5,-2.5 + pos: 66.5,-52.5 parent: 1 - - uid: 8498 + - uid: 14134 components: - type: Transform - pos: -122.5,-1.5 + pos: 66.5,-53.5 parent: 1 - - uid: 8499 + - uid: 14135 components: - type: Transform - pos: -122.5,-0.5 + pos: 66.5,-54.5 parent: 1 - - uid: 8500 + - uid: 14136 components: - type: Transform - pos: -123.5,-0.5 + pos: 65.5,-54.5 parent: 1 - - uid: 8501 + - uid: 14137 components: - type: Transform - pos: -124.5,-0.5 + pos: 64.5,-54.5 parent: 1 - - uid: 9742 + - uid: 14138 components: - type: Transform - pos: -70.5,-7.5 + pos: 63.5,-54.5 parent: 1 - - uid: 10957 + - uid: 14139 components: - type: Transform - pos: 94.5,-42.5 + pos: 63.5,-56.5 parent: 1 - - uid: 12151 + - uid: 14140 components: - type: Transform - pos: -124.5,0.5 + pos: 63.5,-55.5 parent: 1 - - uid: 12153 + - uid: 14141 components: - type: Transform - pos: -124.5,1.5 + pos: 67.5,-51.5 parent: 1 - - uid: 12236 + - uid: 14149 components: - type: Transform - pos: 85.5,-58.5 + pos: 67.5,-47.5 parent: 1 - - uid: 12363 + - uid: 14176 components: - type: Transform - pos: 62.5,-34.5 + pos: 67.5,-43.5 parent: 1 - - uid: 12365 + - uid: 14981 components: - type: Transform - pos: 62.5,-35.5 + pos: 15.5,16.5 parent: 1 - - uid: 12366 + - uid: 14982 components: - type: Transform - pos: 63.5,-35.5 + pos: 16.5,16.5 parent: 1 - - uid: 12504 + - uid: 15390 components: - type: Transform - pos: 63.5,-36.5 + pos: -83.5,-39.5 parent: 1 - - uid: 12505 + - uid: 15831 components: - type: Transform - pos: 63.5,-37.5 + pos: 41.5,-44.5 parent: 1 - - uid: 12507 + - uid: 15832 components: - type: Transform - pos: 64.5,-36.5 + pos: 46.5,-42.5 parent: 1 - - uid: 12508 + - uid: 15833 components: - type: Transform - pos: 65.5,-36.5 + pos: 42.5,-44.5 parent: 1 - - uid: 12510 + - uid: 15834 components: - type: Transform - pos: 66.5,-36.5 + pos: 44.5,-44.5 parent: 1 - - uid: 12513 + - uid: 15836 components: - type: Transform - pos: 67.5,-36.5 + pos: 45.5,-44.5 parent: 1 - - uid: 12514 + - uid: 16270 components: - type: Transform - pos: 67.5,-37.5 + pos: 53.5,8.5 parent: 1 - - uid: 12515 + - uid: 16477 components: - type: Transform - pos: 68.5,-37.5 + pos: -11.5,14.5 parent: 1 - - uid: 12516 + - uid: 16483 components: - type: Transform - pos: 69.5,-37.5 + pos: -92.5,-35.5 parent: 1 - - uid: 12517 + - uid: 16524 components: - type: Transform - pos: 69.5,-36.5 + pos: -28.5,-71.5 parent: 1 - - uid: 12585 + - uid: 16526 components: - type: Transform - pos: -125.5,1.5 + pos: -28.5,-70.5 parent: 1 - - uid: 12586 + - uid: 16817 components: - type: Transform - pos: -126.5,1.5 + pos: -90.5,-35.5 parent: 1 - - uid: 12588 + - uid: 17378 components: - type: Transform - pos: -127.5,1.5 + pos: 42.5,-19.5 parent: 1 - - uid: 12589 + - uid: 17379 components: - type: Transform - pos: -127.5,0.5 + pos: 42.5,-20.5 parent: 1 - - uid: 12590 + - uid: 17380 components: - type: Transform - pos: -127.5,-0.5 + pos: 41.5,-19.5 parent: 1 - - uid: 12591 + - uid: 17424 components: - type: Transform - pos: -127.5,-1.5 + pos: 49.5,-8.5 parent: 1 - - uid: 12592 + - uid: 17425 components: - type: Transform - pos: -127.5,-2.5 + pos: 49.5,-7.5 parent: 1 - - uid: 12593 + - uid: 17426 components: - type: Transform - pos: -127.5,-3.5 + pos: 49.5,-6.5 parent: 1 - - uid: 12594 + - uid: 17427 components: - type: Transform - pos: -128.5,1.5 + pos: 49.5,-5.5 parent: 1 - - uid: 12599 + - uid: 17428 components: - type: Transform - pos: -128.5,2.5 + pos: 48.5,-8.5 parent: 1 - - uid: 12600 + - uid: 17429 components: - type: Transform - pos: -128.5,3.5 + pos: 48.5,-7.5 parent: 1 - - uid: 12601 + - uid: 17430 components: - type: Transform - pos: -128.5,4.5 + pos: 48.5,-6.5 parent: 1 - - uid: 12602 + - uid: 17431 components: - type: Transform - pos: -128.5,5.5 + pos: 48.5,-5.5 parent: 1 - - uid: 12603 + - uid: 17432 components: - type: Transform - pos: -128.5,6.5 + pos: 48.5,-4.5 parent: 1 - - uid: 12604 + - uid: 17433 components: - type: Transform - pos: -128.5,7.5 + pos: 47.5,-4.5 parent: 1 - - uid: 12615 + - uid: 17434 components: - type: Transform - pos: -128.5,8.5 + pos: 46.5,-4.5 parent: 1 - - uid: 12616 + - uid: 17435 components: - type: Transform - pos: -128.5,9.5 + pos: 45.5,-4.5 parent: 1 - - uid: 12617 + - uid: 17438 components: - type: Transform - pos: -128.5,10.5 + pos: 45.5,-2.5 parent: 1 - - uid: 12618 + - uid: 17439 components: - type: Transform - pos: -128.5,11.5 + pos: 46.5,-2.5 parent: 1 - - uid: 12619 + - uid: 17440 components: - type: Transform - pos: -128.5,12.5 + pos: 47.5,-2.5 parent: 1 - - uid: 12620 + - uid: 17441 components: - type: Transform - pos: -128.5,13.5 + pos: 48.5,-2.5 parent: 1 - - uid: 12623 + - uid: 17442 components: - type: Transform - pos: 70.5,-36.5 + pos: 48.5,-1.5 parent: 1 - - uid: 12626 + - uid: 17443 components: - type: Transform - pos: 71.5,-36.5 + pos: 48.5,-0.5 parent: 1 - - uid: 12627 + - uid: 17444 components: - type: Transform - pos: 72.5,-36.5 + pos: 48.5,0.5 parent: 1 - - uid: 12628 + - uid: 17445 components: - type: Transform - pos: 73.5,-36.5 + pos: 48.5,1.5 parent: 1 - - uid: 12629 + - uid: 17446 components: - type: Transform - pos: 73.5,-37.5 + pos: 48.5,2.5 parent: 1 - - uid: 12630 + - uid: 17447 components: - type: Transform - pos: 74.5,-37.5 + pos: 49.5,-1.5 parent: 1 - - uid: 12631 + - uid: 17448 components: - type: Transform - pos: 75.5,-37.5 + pos: 49.5,-0.5 parent: 1 - - uid: 12715 + - uid: 17449 components: - type: Transform - pos: 75.5,-36.5 + pos: 49.5,0.5 parent: 1 - - uid: 12728 + - uid: 17450 components: - type: Transform - pos: 76.5,-36.5 + pos: 49.5,1.5 parent: 1 - - uid: 12729 + - uid: 17451 components: - type: Transform - pos: 77.5,-36.5 + pos: 49.5,2.5 parent: 1 - - uid: 12736 + - uid: 17452 components: - type: Transform - pos: 78.5,-36.5 + pos: 49.5,3.5 parent: 1 - - uid: 12744 + - uid: 17453 components: - type: Transform - pos: 79.5,-36.5 + pos: 50.5,3.5 parent: 1 - - uid: 12745 + - uid: 17454 components: - type: Transform - pos: 79.5,-37.5 + pos: 50.5,4.5 parent: 1 - - uid: 12766 + - uid: 17455 components: - type: Transform - pos: 80.5,-37.5 + pos: 50.5,4.5 parent: 1 - - uid: 12791 + - uid: 17456 components: - type: Transform - pos: -42.5,12.5 + pos: 50.5,5.5 parent: 1 - - uid: 12794 + - uid: 17457 components: - type: Transform - pos: 81.5,-37.5 + pos: 51.5,4.5 parent: 1 - - uid: 12814 + - uid: 17458 components: - type: Transform - pos: 81.5,-36.5 + pos: 51.5,5.5 parent: 1 - - uid: 12820 + - uid: 17459 components: - type: Transform - pos: 82.5,-36.5 + pos: 51.5,6.5 parent: 1 - - uid: 12842 + - uid: 17460 components: - type: Transform - pos: 83.5,-36.5 + pos: 52.5,6.5 parent: 1 - - uid: 12869 + - uid: 17461 components: - type: Transform - pos: 84.5,-36.5 + pos: 52.5,7.5 parent: 1 - - uid: 12870 + - uid: 17462 components: - type: Transform - pos: 85.5,-36.5 + pos: 53.5,6.5 parent: 1 - - uid: 12871 + - uid: 17463 components: - type: Transform - pos: 85.5,-37.5 + pos: 53.5,7.5 parent: 1 - - uid: 12872 + - uid: 17467 components: - type: Transform - pos: 86.5,-37.5 + pos: 53.5,9.5 parent: 1 - - uid: 12873 + - uid: 17468 components: - type: Transform - pos: 87.5,-37.5 + pos: 53.5,10.5 parent: 1 - - uid: 12874 + - uid: 17469 components: - type: Transform - pos: 87.5,-36.5 + pos: 54.5,11.5 parent: 1 - - uid: 12875 + - uid: 17470 components: - type: Transform - pos: 88.5,-36.5 + pos: 54.5,12.5 parent: 1 - - uid: 12876 + - uid: 17471 components: - type: Transform - pos: 89.5,-36.5 + pos: 54.5,13.5 parent: 1 - - uid: 12877 + - uid: 17472 components: - type: Transform - pos: 90.5,-36.5 + pos: 54.5,14.5 parent: 1 - - uid: 12878 + - uid: 17473 components: - type: Transform - pos: 90.5,-37.5 + pos: 54.5,15.5 parent: 1 - - uid: 12879 + - uid: 17474 components: - type: Transform - pos: 91.5,-37.5 + pos: 54.5,16.5 parent: 1 - - uid: 12880 + - uid: 17475 components: - type: Transform - pos: 91.5,-38.5 + pos: 54.5,17.5 parent: 1 - - uid: 12881 + - uid: 17476 components: - type: Transform - pos: 92.5,-38.5 + pos: 54.5,18.5 parent: 1 - - uid: 12882 + - uid: 17477 components: - type: Transform - pos: 92.5,-39.5 + pos: 54.5,19.5 parent: 1 - - uid: 12883 + - uid: 17478 components: - type: Transform - pos: 92.5,-40.5 + pos: 54.5,20.5 parent: 1 - - uid: 12884 + - uid: 17479 components: - type: Transform - pos: 92.5,-41.5 + pos: 54.5,21.5 parent: 1 - - uid: 12885 + - uid: 17480 components: - type: Transform - pos: 92.5,-42.5 + pos: 54.5,22.5 parent: 1 - - uid: 12886 + - uid: 17481 components: - type: Transform - pos: 91.5,-42.5 + pos: 54.5,23.5 parent: 1 - - uid: 12887 + - uid: 17482 components: - type: Transform - pos: 91.5,-43.5 + pos: 54.5,24.5 parent: 1 - - uid: 12888 + - uid: 17483 components: - type: Transform - pos: 91.5,-44.5 + pos: 54.5,25.5 parent: 1 - - uid: 12899 + - uid: 17484 components: - type: Transform - pos: 92.5,-44.5 + pos: 53.5,11.5 parent: 1 - - uid: 12900 + - uid: 17485 components: - type: Transform - pos: 92.5,-45.5 + pos: 53.5,12.5 parent: 1 - - uid: 12901 + - uid: 17486 components: - type: Transform - pos: 92.5,-46.5 + pos: 53.5,13.5 parent: 1 - - uid: 12902 + - uid: 17487 components: - type: Transform - pos: 91.5,-46.5 + pos: 53.5,14.5 parent: 1 - - uid: 12903 + - uid: 17488 components: - type: Transform - pos: 91.5,-47.5 + pos: 53.5,15.5 parent: 1 - - uid: 12904 + - uid: 17489 components: - type: Transform - pos: 91.5,-48.5 + pos: 53.5,16.5 parent: 1 - - uid: 12905 + - uid: 17490 components: - type: Transform - pos: 92.5,-48.5 + pos: 53.5,17.5 parent: 1 - - uid: 12906 + - uid: 17491 components: - type: Transform - pos: 92.5,-49.5 + pos: 53.5,18.5 parent: 1 - - uid: 12907 + - uid: 17492 components: - type: Transform - pos: 92.5,-50.5 + pos: 53.5,19.5 parent: 1 - - uid: 12908 + - uid: 17493 components: - type: Transform - pos: 91.5,-50.5 + pos: 53.5,20.5 parent: 1 - - uid: 12909 + - uid: 17494 components: - type: Transform - pos: 91.5,-51.5 + pos: 53.5,21.5 parent: 1 - - uid: 12910 + - uid: 17495 components: - type: Transform - pos: 91.5,-52.5 + pos: 53.5,22.5 parent: 1 - - uid: 12911 + - uid: 17496 components: - type: Transform - pos: 92.5,-52.5 + pos: 53.5,23.5 parent: 1 - - uid: 12912 + - uid: 17497 components: - type: Transform - pos: 92.5,-53.5 + pos: 53.5,24.5 parent: 1 - - uid: 12913 + - uid: 17498 components: - type: Transform - pos: 92.5,-54.5 + pos: 53.5,25.5 parent: 1 - - uid: 12914 + - uid: 17499 components: - type: Transform - pos: 92.5,-55.5 + pos: 53.5,26.5 parent: 1 - - uid: 12916 + - uid: 17500 components: - type: Transform - pos: 92.5,-56.5 + pos: 53.5,27.5 parent: 1 - - uid: 12917 + - uid: 17501 components: - type: Transform - pos: 91.5,-56.5 + pos: 87.5,24.5 parent: 1 - - uid: 12918 + - uid: 17502 components: - type: Transform - pos: 91.5,-57.5 + pos: 87.5,23.5 parent: 1 - - uid: 12919 + - uid: 17503 components: - type: Transform - pos: 90.5,-57.5 + pos: 87.5,22.5 parent: 1 - - uid: 12920 + - uid: 17504 components: - type: Transform - pos: 90.5,-58.5 + pos: 88.5,24.5 parent: 1 - - uid: 12921 + - uid: 17505 components: - type: Transform - pos: 89.5,-58.5 + pos: 88.5,23.5 parent: 1 - - uid: 12922 + - uid: 17506 components: - type: Transform - pos: 88.5,-58.5 + pos: 88.5,22.5 parent: 1 - - uid: 12923 + - uid: 17507 components: - type: Transform - pos: 87.5,-58.5 + pos: 87.5,21.5 parent: 1 - - uid: 12924 + - uid: 17508 components: - type: Transform - pos: 87.5,-57.5 + pos: 86.5,20.5 parent: 1 - - uid: 12925 + - uid: 17509 components: - type: Transform - pos: 86.5,-57.5 + pos: 86.5,21.5 parent: 1 - - uid: 12926 + - uid: 17512 components: - type: Transform - pos: 85.5,-57.5 + pos: 85.5,20.5 parent: 1 - - uid: 12927 + - uid: 17513 components: - type: Transform - pos: 84.5,-58.5 + pos: 85.5,21.5 parent: 1 - - uid: 12928 + - uid: 17514 components: - type: Transform - pos: 83.5,-58.5 + pos: 84.5,20.5 parent: 1 - - uid: 12929 + - uid: 17515 components: - type: Transform - pos: 82.5,-58.5 + pos: 84.5,21.5 parent: 1 - - uid: 12930 + - uid: 17516 components: - type: Transform - pos: 81.5,-58.5 + pos: 83.5,20.5 parent: 1 - - uid: 12931 + - uid: 17517 components: - type: Transform - pos: 81.5,-57.5 + pos: 83.5,21.5 parent: 1 - - uid: 12932 + - uid: 17518 components: - type: Transform - pos: 80.5,-57.5 + pos: 82.5,20.5 parent: 1 - - uid: 12933 + - uid: 17519 components: - type: Transform - pos: 79.5,-57.5 + pos: 82.5,21.5 parent: 1 - - uid: 12934 + - uid: 17520 components: - type: Transform - pos: 79.5,-58.5 + pos: 81.5,20.5 parent: 1 - - uid: 12935 + - uid: 17521 components: - type: Transform - pos: 78.5,-58.5 + pos: 81.5,21.5 parent: 1 - - uid: 12936 + - uid: 17522 components: - type: Transform - pos: 77.5,-58.5 + pos: 80.5,20.5 parent: 1 - - uid: 12937 + - uid: 17523 components: - type: Transform - pos: 76.5,-58.5 + pos: 80.5,21.5 parent: 1 - - uid: 12938 + - uid: 17524 components: - type: Transform - pos: 75.5,-58.5 + pos: 79.5,20.5 parent: 1 - - uid: 12939 + - uid: 17525 components: - type: Transform - pos: 75.5,-57.5 + pos: 79.5,21.5 parent: 1 - - uid: 12940 + - uid: 17526 components: - type: Transform - pos: 74.5,-57.5 + pos: 78.5,20.5 parent: 1 - - uid: 12941 + - uid: 17527 components: - type: Transform - pos: 73.5,-57.5 + pos: 78.5,21.5 parent: 1 - - uid: 12942 + - uid: 17528 components: - type: Transform - pos: 73.5,-58.5 + pos: 77.5,20.5 parent: 1 - - uid: 12943 + - uid: 17529 components: - type: Transform - pos: 72.5,-58.5 + pos: 77.5,21.5 parent: 1 - - uid: 12944 + - uid: 17549 components: - type: Transform - pos: 71.5,-58.5 + pos: 76.5,20.5 parent: 1 - - uid: 12956 + - uid: 17552 components: - type: Transform - pos: 70.5,-58.5 + pos: 76.5,21.5 parent: 1 - - uid: 12957 + - uid: 17553 components: - type: Transform - pos: 69.5,-58.5 + pos: 75.5,20.5 parent: 1 - - uid: 12958 + - uid: 17556 components: - type: Transform - pos: 69.5,-57.5 + pos: 75.5,21.5 parent: 1 - - uid: 12959 + - uid: 17560 components: - type: Transform - pos: 68.5,-57.5 + pos: 74.5,20.5 parent: 1 - - uid: 12960 + - uid: 17561 components: - type: Transform - pos: 67.5,-57.5 + pos: 74.5,21.5 parent: 1 - - uid: 12961 + - uid: 17562 components: - type: Transform - pos: 67.5,-58.5 + pos: 73.5,20.5 parent: 1 - - uid: 12973 + - uid: 17563 components: - type: Transform - pos: 66.5,-58.5 + pos: 73.5,21.5 parent: 1 - - uid: 12974 + - uid: 17564 components: - type: Transform - pos: 65.5,-58.5 + pos: 72.5,20.5 parent: 1 - - uid: 12975 + - uid: 17565 components: - type: Transform - pos: 64.5,-58.5 + pos: 72.5,21.5 parent: 1 - - uid: 12976 + - uid: 17566 components: - type: Transform - pos: 63.5,-58.5 + pos: 71.5,20.5 parent: 1 - - uid: 12977 + - uid: 17567 components: - type: Transform - pos: 63.5,-57.5 + pos: 71.5,21.5 parent: 1 - - uid: 12979 + - uid: 17568 components: - type: Transform - pos: 63.5,-59.5 + pos: 70.5,20.5 parent: 1 - - uid: 12981 + - uid: 17569 components: - type: Transform - pos: 62.5,-59.5 + pos: 70.5,21.5 parent: 1 - - uid: 12982 + - uid: 17570 components: - type: Transform - pos: 62.5,-60.5 + pos: 69.5,20.5 parent: 1 - - uid: 12983 + - uid: 17571 components: - type: Transform - pos: 62.5,-61.5 + pos: 69.5,21.5 parent: 1 - - uid: 12984 + - uid: 17572 components: - type: Transform - pos: 61.5,-62.5 + pos: 68.5,20.5 parent: 1 - - uid: 12985 + - uid: 17573 components: - type: Transform - pos: 60.5,-62.5 + pos: 68.5,21.5 parent: 1 - - uid: 12986 + - uid: 17574 components: - type: Transform - pos: 59.5,-62.5 + pos: 67.5,20.5 parent: 1 - - uid: 12987 + - uid: 17575 components: - type: Transform - pos: 63.5,-34.5 + pos: 67.5,21.5 parent: 1 - - uid: 12988 + - uid: 17576 components: - type: Transform - pos: 57.5,-62.5 + pos: 66.5,20.5 parent: 1 - - uid: 12989 + - uid: 17577 components: - type: Transform - pos: 56.5,-62.5 + pos: 66.5,21.5 parent: 1 - - uid: 12990 + - uid: 17578 components: - type: Transform - pos: 63.5,-33.5 + pos: 65.5,20.5 parent: 1 - - uid: 12991 + - uid: 17579 components: - type: Transform - pos: 64.5,-33.5 + pos: 65.5,21.5 parent: 1 - - uid: 12992 + - uid: 17580 components: - type: Transform - pos: 65.5,-33.5 + pos: 64.5,20.5 parent: 1 - - uid: 12993 + - uid: 17581 components: - type: Transform - pos: 66.5,-33.5 + pos: 64.5,21.5 parent: 1 - - uid: 12994 + - uid: 17582 components: - type: Transform - pos: 67.5,-33.5 + pos: 63.5,20.5 parent: 1 - - uid: 12995 + - uid: 17583 components: - type: Transform - pos: 67.5,-34.5 + pos: 63.5,21.5 parent: 1 - - uid: 12996 + - uid: 17584 components: - type: Transform - pos: 68.5,-34.5 + pos: 62.5,20.5 parent: 1 - - uid: 12997 + - uid: 17585 components: - type: Transform - pos: 69.5,-34.5 + pos: 62.5,21.5 parent: 1 - - uid: 12998 + - uid: 17586 components: - type: Transform - pos: 69.5,-33.5 + pos: 61.5,20.5 parent: 1 - - uid: 12999 + - uid: 17587 components: - type: Transform - pos: 70.5,-33.5 + pos: 61.5,21.5 parent: 1 - - uid: 13000 + - uid: 17588 components: - type: Transform - pos: 71.5,-33.5 + pos: 60.5,20.5 parent: 1 - - uid: 13001 + - uid: 17589 components: - type: Transform - pos: 72.5,-33.5 + pos: 59.5,19.5 parent: 1 - - uid: 13002 + - uid: 17590 components: - type: Transform - pos: 73.5,-33.5 + pos: 59.5,18.5 parent: 1 - - uid: 13003 + - uid: 17591 components: - type: Transform - pos: 73.5,-34.5 + pos: 59.5,17.5 parent: 1 - - uid: 13004 + - uid: 17592 components: - type: Transform - pos: 74.5,-34.5 + pos: 59.5,16.5 parent: 1 - - uid: 13005 + - uid: 17593 components: - type: Transform - pos: 75.5,-34.5 + pos: 59.5,15.5 parent: 1 - - uid: 13006 + - uid: 17594 components: - type: Transform - pos: 75.5,-33.5 + pos: 59.5,14.5 parent: 1 - - uid: 13007 + - uid: 17595 components: - type: Transform - pos: 76.5,-33.5 + pos: 59.5,13.5 parent: 1 - - uid: 13008 + - uid: 17596 components: - type: Transform - pos: 77.5,-33.5 + pos: 59.5,12.5 parent: 1 - - uid: 13014 + - uid: 17597 components: - type: Transform - pos: 78.5,-33.5 + pos: 59.5,11.5 parent: 1 - - uid: 13015 + - uid: 17598 components: - type: Transform - pos: 79.5,-33.5 + pos: 60.5,19.5 parent: 1 - - uid: 13016 + - uid: 17599 components: - type: Transform - pos: 79.5,-34.5 + pos: 60.5,18.5 parent: 1 - - uid: 13020 + - uid: 17600 components: - type: Transform - pos: 80.5,-34.5 + pos: 60.5,17.5 parent: 1 - - uid: 13022 + - uid: 17601 components: - type: Transform - pos: 81.5,-34.5 + pos: 60.5,16.5 parent: 1 - - uid: 13023 + - uid: 17602 components: - type: Transform - pos: 81.5,-33.5 + pos: 60.5,15.5 parent: 1 - - uid: 13024 + - uid: 17603 components: - type: Transform - pos: 82.5,-33.5 + pos: 60.5,14.5 parent: 1 - - uid: 13025 + - uid: 17604 components: - type: Transform - pos: 83.5,-33.5 + pos: 60.5,13.5 parent: 1 - - uid: 13026 + - uid: 17605 components: - type: Transform - pos: 84.5,-33.5 + pos: 60.5,12.5 parent: 1 - - uid: 13027 + - uid: 17606 components: - type: Transform - pos: 85.5,-33.5 + pos: 60.5,11.5 parent: 1 - - uid: 13028 + - uid: 17607 components: - type: Transform - pos: 85.5,-34.5 + pos: 60.5,10.5 parent: 1 - - uid: 13055 + - uid: 17613 components: - type: Transform - pos: 86.5,-34.5 + pos: 54.5,9.5 parent: 1 - - uid: 13113 + - uid: 17614 components: - type: Transform - pos: 87.5,-34.5 + pos: 55.5,9.5 parent: 1 - - uid: 13118 + - uid: 17615 components: - type: Transform - pos: 87.5,-33.5 + pos: 56.5,9.5 parent: 1 - - uid: 13119 + - uid: 17616 components: - type: Transform - pos: 88.5,-33.5 + pos: 57.5,9.5 parent: 1 - - uid: 13120 + - uid: 17617 components: - type: Transform - pos: 89.5,-33.5 + pos: 58.5,9.5 parent: 1 - - uid: 13155 + - uid: 17618 components: - type: Transform - pos: 90.5,-33.5 + pos: 59.5,9.5 parent: 1 - - uid: 13156 + - uid: 17619 components: - type: Transform - pos: 91.5,-33.5 + pos: 60.5,9.5 parent: 1 - - uid: 13179 + - uid: 17620 components: - type: Transform - pos: 91.5,-34.5 + pos: 60.5,8.5 parent: 1 - - uid: 13180 + - uid: 17621 components: - type: Transform - pos: 92.5,-34.5 + pos: 39.5,-11.5 parent: 1 - - uid: 13210 + - uid: 17622 components: - type: Transform - pos: 93.5,-34.5 + pos: 39.5,-12.5 parent: 1 - - uid: 13211 + - uid: 17623 components: - type: Transform - pos: 93.5,-33.5 + pos: 39.5,-13.5 parent: 1 - - uid: 13212 + - uid: 17624 components: - type: Transform - pos: 94.5,-33.5 + pos: 39.5,-14.5 parent: 1 - - uid: 13213 + - uid: 17625 components: - type: Transform - pos: 94.5,-34.5 + pos: 39.5,-15.5 parent: 1 - - uid: 13214 + - uid: 17626 components: - type: Transform - pos: 95.5,-34.5 + pos: 39.5,-16.5 parent: 1 - - uid: 13215 + - uid: 17627 components: - type: Transform - pos: 95.5,-35.5 + pos: 39.5,-17.5 parent: 1 - - uid: 13252 + - uid: 17628 components: - type: Transform - pos: 94.5,-35.5 + pos: 41.5,-18.5 parent: 1 - - uid: 13253 + - uid: 17629 components: - type: Transform - pos: 94.5,-36.5 + pos: 40.5,-11.5 parent: 1 - - uid: 13281 + - uid: 17630 components: - type: Transform - pos: 94.5,-37.5 + pos: 40.5,-12.5 parent: 1 - - uid: 13282 + - uid: 17631 components: - type: Transform - pos: 95.5,-37.5 + pos: 40.5,-13.5 parent: 1 - - uid: 13301 + - uid: 17632 components: - type: Transform - pos: 95.5,-38.5 + pos: 40.5,-14.5 parent: 1 - - uid: 13320 + - uid: 17633 components: - type: Transform - pos: 95.5,-39.5 + pos: 40.5,-15.5 parent: 1 - - uid: 13326 + - uid: 17634 components: - type: Transform - pos: 95.5,-40.5 + pos: 40.5,-16.5 parent: 1 - - uid: 13337 + - uid: 17635 components: - type: Transform - pos: 95.5,-41.5 + pos: 40.5,-17.5 parent: 1 - - uid: 13339 + - uid: 17636 components: - type: Transform - pos: 95.5,-42.5 + pos: 40.5,-18.5 parent: 1 - - uid: 13360 + - uid: 17637 components: - type: Transform - pos: 94.5,-43.5 + pos: 42.5,-21.5 parent: 1 - - uid: 13363 + - uid: 17638 components: - type: Transform - pos: 94.5,-44.5 + pos: 43.5,-20.5 parent: 1 - - uid: 13364 + - uid: 17639 components: - type: Transform - pos: 95.5,-44.5 + pos: 43.5,-21.5 parent: 1 - - uid: 13365 + - uid: 17640 components: - type: Transform - pos: 95.5,-45.5 + pos: 43.5,-22.5 parent: 1 - - uid: 13379 + - uid: 17641 components: - type: Transform - pos: 95.5,-46.5 + pos: 44.5,-22.5 parent: 1 - - uid: 13380 + - uid: 17642 components: - type: Transform - pos: 94.5,-50.5 + pos: 44.5,-23.5 parent: 1 - - uid: 13381 + - uid: 17643 components: - type: Transform - pos: 94.5,-46.5 + pos: 45.5,-23.5 parent: 1 - - uid: 13382 + - uid: 17644 components: - type: Transform - pos: 94.5,-47.5 + pos: 45.5,-24.5 parent: 1 - - uid: 13383 + - uid: 17645 components: - type: Transform - pos: 94.5,-48.5 + pos: 46.5,-23.5 parent: 1 - - uid: 13384 + - uid: 17646 components: - type: Transform - pos: 95.5,-48.5 + pos: 46.5,-24.5 parent: 1 - - uid: 13385 + - uid: 17647 components: - type: Transform - pos: 95.5,-49.5 + pos: 47.5,-23.5 parent: 1 - - uid: 13386 + - uid: 17648 components: - type: Transform - pos: 95.5,-50.5 + pos: 47.5,-24.5 parent: 1 - - uid: 13387 + - uid: 17649 components: - type: Transform - pos: 94.5,-51.5 + pos: 48.5,-23.5 parent: 1 - - uid: 13388 + - uid: 17650 components: - type: Transform - pos: 94.5,-52.5 + pos: 48.5,-24.5 parent: 1 - - uid: 13389 + - uid: 17651 components: - type: Transform - pos: 95.5,-59.5 + pos: 49.5,-23.5 parent: 1 - - uid: 13390 + - uid: 17652 components: - type: Transform - pos: 95.5,-52.5 + pos: 49.5,-24.5 parent: 1 - - uid: 13391 + - uid: 17653 components: - type: Transform - pos: 95.5,-53.5 + pos: 50.5,-24.5 parent: 1 - - uid: 13392 + - uid: 17654 components: - type: Transform - pos: 95.5,-54.5 + pos: 50.5,-25.5 parent: 1 - - uid: 13393 + - uid: 17655 components: - type: Transform - pos: 95.5,-55.5 + pos: 51.5,-25.5 parent: 1 - - uid: 13394 + - uid: 17656 components: - type: Transform - pos: 95.5,-56.5 + pos: 51.5,-26.5 parent: 1 - - uid: 13395 + - uid: 17657 components: - type: Transform - pos: 95.5,-57.5 + pos: 52.5,-25.5 parent: 1 - - uid: 13396 + - uid: 17658 components: - type: Transform - pos: 94.5,-57.5 + pos: 52.5,-26.5 parent: 1 - - uid: 13397 + - uid: 17659 components: - type: Transform - pos: 94.5,-58.5 + pos: 53.5,-25.5 parent: 1 - - uid: 13398 + - uid: 17660 components: - type: Transform - pos: 94.5,-59.5 + pos: 53.5,-26.5 parent: 1 - - uid: 13399 + - uid: 17661 components: - type: Transform - pos: 95.5,-60.5 + pos: 54.5,-26.5 parent: 1 - - uid: 13400 + - uid: 17662 components: - type: Transform - pos: 95.5,-61.5 + pos: 54.5,-27.5 parent: 1 - - uid: 13401 + - uid: 17663 components: - type: Transform - pos: 94.5,-61.5 + pos: 55.5,-26.5 parent: 1 - - uid: 13402 + - uid: 17664 components: - type: Transform - pos: 94.5,-62.5 + pos: 55.5,-27.5 parent: 1 - - uid: 13403 + - uid: 17665 components: - type: Transform - pos: 93.5,-62.5 + pos: 56.5,-26.5 parent: 1 - - uid: 13404 + - uid: 17666 components: - type: Transform - pos: 93.5,-61.5 + pos: 56.5,-27.5 parent: 1 - - uid: 13405 + - uid: 17667 components: - type: Transform - pos: 92.5,-61.5 + pos: 57.5,-26.5 parent: 1 - - uid: 13406 + - uid: 17669 components: - type: Transform - pos: 91.5,-61.5 + pos: 57.5,-27.5 parent: 1 - - uid: 13407 + - uid: 17670 components: - type: Transform - pos: 91.5,-62.5 + pos: 58.5,-26.5 parent: 1 - - uid: 13408 + - uid: 17671 components: - type: Transform - pos: 90.5,-62.5 + pos: 58.5,-27.5 parent: 1 - - uid: 13409 + - uid: 17672 components: - type: Transform - pos: 89.5,-62.5 + pos: 59.5,-26.5 parent: 1 - - uid: 13410 + - uid: 17673 components: - type: Transform - pos: 88.5,-62.5 + pos: 59.5,-27.5 parent: 1 - - uid: 13411 + - uid: 17674 components: - type: Transform - pos: 87.5,-62.5 + pos: 60.5,-26.5 parent: 1 - - uid: 13412 + - uid: 17675 components: - type: Transform - pos: 87.5,-61.5 + pos: 60.5,-27.5 parent: 1 - - uid: 13413 + - uid: 17676 components: - type: Transform - pos: 86.5,-61.5 + pos: 61.5,-26.5 parent: 1 - - uid: 13414 + - uid: 17677 components: - type: Transform - pos: 85.5,-61.5 + pos: 61.5,-27.5 parent: 1 - - uid: 13415 + - uid: 17678 components: - type: Transform - pos: 85.5,-62.5 + pos: 62.5,-26.5 parent: 1 - - uid: 13416 + - uid: 17679 components: - type: Transform - pos: 84.5,-62.5 + pos: 62.5,-27.5 parent: 1 - - uid: 13417 + - uid: 17680 components: - type: Transform - pos: 83.5,-62.5 + pos: 63.5,-26.5 parent: 1 - - uid: 13418 + - uid: 17681 components: - type: Transform - pos: 82.5,-62.5 + pos: 63.5,-27.5 parent: 1 - - uid: 13419 + - uid: 17682 components: - type: Transform - pos: 81.5,-62.5 + pos: 64.5,-26.5 parent: 1 - - uid: 13420 + - uid: 17712 components: - type: Transform - pos: 81.5,-61.5 + pos: 14.5,-25.5 parent: 1 - - uid: 13421 + - uid: 17713 components: - type: Transform - pos: 80.5,-61.5 + pos: 14.5,-26.5 parent: 1 - - uid: 13422 + - uid: 17714 components: - type: Transform - pos: 79.5,-61.5 + pos: 13.5,-26.5 parent: 1 - - uid: 13423 + - uid: 17715 components: - type: Transform - pos: 79.5,-62.5 + pos: 13.5,-27.5 parent: 1 - - uid: 13424 + - uid: 17716 components: - type: Transform - pos: 78.5,-62.5 + pos: 13.5,-28.5 parent: 1 - - uid: 13425 + - uid: 17717 components: - type: Transform - pos: 77.5,-62.5 + pos: 14.5,-28.5 parent: 1 - - uid: 13426 + - uid: 17718 components: - type: Transform - pos: 76.5,-62.5 + pos: 15.5,-28.5 parent: 1 - - uid: 13427 + - uid: 17719 components: - type: Transform - pos: 75.5,-62.5 + pos: 16.5,-28.5 parent: 1 - - uid: 13428 + - uid: 17720 components: - type: Transform - pos: 75.5,-61.5 + pos: 16.5,-27.5 parent: 1 - - uid: 13429 + - uid: 17721 components: - type: Transform - pos: 74.5,-61.5 + pos: 13.5,-29.5 parent: 1 - - uid: 13430 + - uid: 17722 components: - type: Transform - pos: 73.5,-61.5 + pos: 12.5,-29.5 parent: 1 - - uid: 13431 + - uid: 17723 components: - type: Transform - pos: 73.5,-62.5 + pos: 11.5,-29.5 parent: 1 - - uid: 13432 + - uid: 17724 components: - type: Transform - pos: 72.5,-62.5 + pos: 10.5,-29.5 parent: 1 - - uid: 13433 + - uid: 17725 components: - type: Transform - pos: 71.5,-62.5 + pos: 10.5,-30.5 parent: 1 - - uid: 13434 + - uid: 17726 components: - type: Transform - pos: 70.5,-62.5 + pos: 10.5,-31.5 parent: 1 - - uid: 13435 + - uid: 17727 components: - type: Transform - pos: 69.5,-62.5 + pos: 10.5,-32.5 parent: 1 - - uid: 13436 + - uid: 17728 components: - type: Transform - pos: 69.5,-61.5 + pos: 10.5,-33.5 parent: 1 - - uid: 13437 + - uid: 17729 components: - type: Transform - pos: 68.5,-61.5 + pos: 10.5,-34.5 parent: 1 - - uid: 13438 + - uid: 17730 components: - type: Transform - pos: 67.5,-61.5 + pos: 10.5,-35.5 parent: 1 - - uid: 13439 + - uid: 17731 components: - type: Transform - pos: 67.5,-62.5 + pos: 10.5,-36.5 parent: 1 - - uid: 13440 + - uid: 17732 components: - type: Transform - pos: 66.5,-62.5 + pos: 10.5,-37.5 parent: 1 - - uid: 13441 + - uid: 17733 components: - type: Transform - pos: 65.5,-62.5 + pos: 10.5,-38.5 parent: 1 - - uid: 13442 + - uid: 17734 components: - type: Transform - pos: 64.5,-62.5 + pos: 10.5,-39.5 parent: 1 - - uid: 13443 + - uid: 17735 components: - type: Transform - pos: 63.5,-62.5 + pos: 10.5,-40.5 parent: 1 - - uid: 13444 + - uid: 17736 components: - type: Transform - pos: 63.5,-61.5 + pos: 10.5,-41.5 parent: 1 - - uid: 13445 + - uid: 17737 components: - type: Transform - pos: 61.5,-61.5 + pos: 10.5,-42.5 parent: 1 - - uid: 13446 + - uid: 17824 components: - type: Transform - pos: 57.5,-61.5 + pos: -76.5,-56.5 parent: 1 - - uid: 13447 + - uid: 18092 components: - type: Transform - pos: 58.5,-61.5 + pos: -29.5,-74.5 parent: 1 - - uid: 13448 + - uid: 18093 components: - type: Transform - pos: 59.5,-61.5 + pos: -28.5,-74.5 parent: 1 - - uid: 13449 + - uid: 18094 components: - type: Transform - pos: 93.5,-50.5 + pos: -27.5,-74.5 parent: 1 - - uid: 13450 + - uid: 18095 components: - type: Transform - pos: 67.5,-35.5 + pos: -27.5,-75.5 parent: 1 - - uid: 13451 + - uid: 18096 components: - type: Transform - pos: 69.5,-35.5 + pos: -29.5,-72.5 parent: 1 - - uid: 13452 + - uid: 18098 components: - type: Transform - pos: 73.5,-35.5 + pos: -29.5,-70.5 parent: 1 - - uid: 13453 + - uid: 18099 components: - type: Transform - pos: 75.5,-35.5 + pos: -30.5,-70.5 parent: 1 - - uid: 13454 + - uid: 18100 components: - type: Transform - pos: 79.5,-35.5 + pos: -31.5,-70.5 parent: 1 - - uid: 13455 + - uid: 18106 components: - type: Transform - pos: 81.5,-35.5 + pos: -49.5,-62.5 parent: 1 - - uid: 13456 + - uid: 18107 components: - type: Transform - pos: 85.5,-35.5 + pos: -49.5,-61.5 parent: 1 - - uid: 13457 + - uid: 18108 components: - type: Transform - pos: 87.5,-35.5 + pos: -49.5,-60.5 parent: 1 - - uid: 13458 + - uid: 18109 components: - type: Transform - pos: 90.5,-35.5 + pos: 11.5,-5.5 parent: 1 - - uid: 13459 + - uid: 18110 components: - type: Transform - pos: 91.5,-35.5 + pos: 11.5,-6.5 parent: 1 - - uid: 13460 + - uid: 18128 components: - type: Transform - pos: 93.5,-38.5 + pos: 14.5,-7.5 parent: 1 - - uid: 13461 + - uid: 18129 components: - type: Transform - pos: 93.5,-37.5 + pos: 18.5,3.5 parent: 1 - - uid: 13462 + - uid: 18130 components: - type: Transform - pos: 93.5,-42.5 + pos: -24.5,-47.5 parent: 1 - - uid: 13463 + - uid: 18131 components: - type: Transform - pos: 93.5,-44.5 + pos: -24.5,-46.5 parent: 1 - - uid: 13464 + - uid: 18133 components: - type: Transform - pos: 93.5,-46.5 + pos: -24.5,-44.5 parent: 1 - - uid: 13465 + - uid: 18134 components: - type: Transform - pos: 93.5,-48.5 + pos: -24.5,-43.5 parent: 1 - - uid: 13466 + - uid: 18135 components: - type: Transform - pos: 93.5,-52.5 + pos: -24.5,-42.5 parent: 1 - - uid: 13467 + - uid: 18136 components: - type: Transform - pos: 75.5,-59.5 + pos: -24.5,-41.5 parent: 1 - - uid: 13468 + - uid: 18137 components: - type: Transform - pos: 93.5,-56.5 + pos: -23.5,-41.5 parent: 1 - - uid: 13469 + - uid: 18138 components: - type: Transform - pos: 93.5,-57.5 + pos: -22.5,-41.5 parent: 1 - - uid: 13470 + - uid: 18139 components: - type: Transform - pos: 92.5,-60.5 + pos: -21.5,-41.5 parent: 1 - - uid: 13471 + - uid: 18140 components: - type: Transform - pos: 92.5,-59.5 + pos: -21.5,-42.5 parent: 1 - - uid: 13472 + - uid: 18141 components: - type: Transform - pos: 91.5,-59.5 + pos: -25.5,-43.5 parent: 1 - - uid: 13473 + - uid: 18142 components: - type: Transform - pos: 90.5,-59.5 + pos: -26.5,-43.5 parent: 1 - - uid: 13474 + - uid: 18143 components: - type: Transform - pos: 87.5,-59.5 + pos: -27.5,-43.5 parent: 1 - - uid: 13475 + - uid: 18144 components: - type: Transform - pos: 86.5,-59.5 + pos: -28.5,-43.5 parent: 1 - - uid: 13476 + - uid: 18145 components: - type: Transform - pos: 86.5,-60.5 + pos: -29.5,-43.5 parent: 1 - - uid: 13477 + - uid: 18146 components: - type: Transform - pos: 85.5,-59.5 + pos: -29.5,-42.5 parent: 1 - - uid: 13478 + - uid: 18147 components: - type: Transform - pos: 81.5,-59.5 + pos: -29.5,-41.5 parent: 1 - - uid: 13479 + - uid: 18148 components: - type: Transform - pos: 80.5,-59.5 + pos: -29.5,-40.5 parent: 1 - - uid: 13480 + - uid: 18149 components: - type: Transform - pos: 80.5,-60.5 + pos: -29.5,-39.5 parent: 1 - - uid: 13481 + - uid: 18150 components: - type: Transform - pos: 79.5,-59.5 + pos: -30.5,-39.5 parent: 1 - - uid: 13482 + - uid: 18151 components: - type: Transform - pos: 74.5,-59.5 + pos: -31.5,-39.5 parent: 1 - - uid: 13483 + - uid: 18152 components: - type: Transform - pos: 74.5,-60.5 + pos: -31.5,-38.5 parent: 1 - - uid: 13484 + - uid: 18153 components: - type: Transform - pos: 73.5,-59.5 + pos: -31.5,-37.5 parent: 1 - - uid: 13485 + - uid: 18154 components: - type: Transform - pos: 87.5,-56.5 + pos: -32.5,-39.5 parent: 1 - - uid: 13486 + - uid: 18155 components: - type: Transform - pos: 68.5,-60.5 + pos: -33.5,-39.5 parent: 1 - - uid: 13487 + - uid: 18156 components: - type: Transform - pos: 68.5,-59.5 + pos: -34.5,-39.5 parent: 1 - - uid: 13488 + - uid: 18157 components: - type: Transform - pos: 67.5,-59.5 + pos: -35.5,-39.5 parent: 1 - - uid: 13489 + - uid: 18158 components: - type: Transform - pos: 69.5,-59.5 + pos: -36.5,-39.5 parent: 1 - - uid: 13537 + - uid: 18159 components: - type: Transform - pos: 73.5,-56.5 + pos: -37.5,-39.5 parent: 1 - - uid: 13542 + - uid: 18160 components: - type: Transform - pos: 73.5,-55.5 + pos: -38.5,-39.5 parent: 1 - - uid: 13543 + - uid: 18161 components: - type: Transform - pos: 77.5,-57.5 + pos: -39.5,-39.5 parent: 1 - - uid: 13544 + - uid: 18162 components: - type: Transform - pos: 77.5,-56.5 + pos: -29.5,-44.5 parent: 1 - - uid: 13545 + - uid: 18163 components: - type: Transform - pos: 77.5,-55.5 + pos: -29.5,-45.5 parent: 1 - - uid: 13546 + - uid: 18164 components: - type: Transform - pos: 81.5,-56.5 + pos: -29.5,-46.5 parent: 1 - - uid: 13549 + - uid: 18165 components: - type: Transform - pos: 81.5,-55.5 + pos: -29.5,-47.5 parent: 1 - - uid: 13550 + - uid: 18166 components: - type: Transform - pos: 87.5,-55.5 + pos: -30.5,-47.5 parent: 1 - - uid: 13551 + - uid: 18167 components: - type: Transform - pos: 87.5,-54.5 + pos: -31.5,-47.5 parent: 1 - - uid: 13557 + - uid: 18168 components: - type: Transform - pos: 87.5,-53.5 + pos: -32.5,-47.5 parent: 1 - - uid: 13560 + - uid: 18169 components: - type: Transform - pos: 87.5,-52.5 + pos: -32.5,-48.5 parent: 1 - - uid: 13565 + - uid: 18170 components: - type: Transform - pos: 87.5,-51.5 + pos: -32.5,-49.5 parent: 1 - - uid: 13568 + - uid: 18171 components: - type: Transform - pos: 87.5,-50.5 + pos: -32.5,-50.5 parent: 1 - - uid: 13569 + - uid: 18172 components: - type: Transform - pos: 87.5,-49.5 + pos: -33.5,-50.5 parent: 1 - - uid: 13640 + - uid: 18173 components: - type: Transform - pos: 87.5,-48.5 + pos: -34.5,-50.5 parent: 1 - - uid: 13641 + - uid: 18174 components: - type: Transform - pos: 87.5,-47.5 + pos: -35.5,-50.5 parent: 1 - - uid: 13642 + - uid: 18175 components: - type: Transform - pos: 87.5,-46.5 + pos: -36.5,-50.5 parent: 1 - - uid: 13643 + - uid: 18176 components: - type: Transform - pos: 87.5,-45.5 + pos: -37.5,-50.5 parent: 1 - - uid: 13644 + - uid: 18177 components: - type: Transform - pos: 87.5,-44.5 + pos: -38.5,-50.5 parent: 1 - - uid: 13645 + - uid: 18178 components: - type: Transform - pos: 87.5,-43.5 + pos: -38.5,-51.5 parent: 1 - - uid: 13646 + - uid: 18179 components: - type: Transform - pos: 87.5,-42.5 + pos: -38.5,-52.5 parent: 1 - - uid: 13647 + - uid: 18180 components: - type: Transform - pos: 87.5,-41.5 + pos: -38.5,-53.5 parent: 1 - - uid: 13648 + - uid: 18181 components: - type: Transform - pos: 87.5,-40.5 + pos: -38.5,-54.5 parent: 1 - - uid: 13649 + - uid: 18182 components: - type: Transform - pos: 87.5,-39.5 + pos: -38.5,-55.5 parent: 1 - - uid: 13650 + - uid: 18183 components: - type: Transform - pos: 87.5,-38.5 + pos: -39.5,-55.5 parent: 1 - - uid: 13651 + - uid: 18184 components: - type: Transform - pos: 86.5,-43.5 + pos: -40.5,-55.5 parent: 1 - - uid: 13652 + - uid: 18185 components: - type: Transform - pos: 85.5,-43.5 + pos: -41.5,-55.5 parent: 1 - - uid: 13653 + - uid: 18186 components: - type: Transform - pos: 86.5,-47.5 + pos: -42.5,-55.5 parent: 1 - - uid: 13737 + - uid: 18187 components: - type: Transform - pos: 85.5,-47.5 + pos: -43.5,-55.5 parent: 1 - - uid: 13739 + - uid: 18481 components: - type: Transform - pos: 86.5,-51.5 + pos: -58.5,-41.5 parent: 1 - - uid: 13740 + - uid: 18482 components: - type: Transform - pos: 85.5,-51.5 + pos: -57.5,-41.5 parent: 1 - - uid: 13741 + - uid: 18483 components: - type: Transform - pos: 63.5,-38.5 + pos: -56.5,-41.5 parent: 1 - - uid: 13742 + - uid: 18484 components: - type: Transform - pos: 81.5,-38.5 + pos: -55.5,-41.5 parent: 1 - - uid: 13743 + - uid: 18485 components: - type: Transform - pos: 81.5,-39.5 + pos: -54.5,-41.5 parent: 1 - - uid: 13744 + - uid: 18486 components: - type: Transform - pos: 77.5,-37.5 + pos: -54.5,-40.5 parent: 1 - - uid: 13745 + - uid: 18487 components: - type: Transform - pos: 77.5,-38.5 + pos: -54.5,-40.5 parent: 1 - - uid: 13746 + - uid: 18488 components: - type: Transform - pos: 77.5,-39.5 + pos: -53.5,-41.5 parent: 1 - - uid: 13747 + - uid: 18489 components: - type: Transform - pos: 73.5,-38.5 + pos: -52.5,-41.5 parent: 1 - - uid: 13748 + - uid: 18490 components: - type: Transform - pos: 73.5,-39.5 + pos: -52.5,-40.5 parent: 1 - - uid: 13749 + - uid: 18491 components: - type: Transform - pos: 63.5,-39.5 + pos: -52.5,-39.5 parent: 1 - - uid: 13807 + - uid: 18492 components: - type: Transform - pos: 63.5,-40.5 + pos: -52.5,-38.5 parent: 1 - - uid: 13824 + - uid: 18493 components: - type: Transform - pos: 64.5,-40.5 + pos: -52.5,-37.5 parent: 1 - - uid: 13856 + - uid: 18494 components: - type: Transform - pos: 65.5,-40.5 + pos: -52.5,-36.5 parent: 1 - - uid: 13858 + - uid: 18495 components: - type: Transform - pos: 66.5,-40.5 + pos: -52.5,-35.5 parent: 1 - - uid: 13950 + - uid: 18496 components: - type: Transform - pos: 66.5,-41.5 + pos: -52.5,-34.5 parent: 1 - - uid: 13951 + - uid: 18497 components: - type: Transform - pos: 66.5,-42.5 + pos: -52.5,-33.5 parent: 1 - - uid: 14114 + - uid: 18498 components: - type: Transform - pos: 66.5,-43.5 + pos: -52.5,-32.5 parent: 1 - - uid: 14117 + - uid: 18499 components: - type: Transform - pos: 66.5,-44.5 + pos: -52.5,-31.5 parent: 1 - - uid: 14118 + - uid: 18500 components: - type: Transform - pos: 66.5,-45.5 + pos: -52.5,-30.5 parent: 1 - - uid: 14119 + - uid: 18501 components: - type: Transform - pos: 66.5,-46.5 + pos: -52.5,-29.5 parent: 1 - - uid: 14120 + - uid: 18502 components: - type: Transform - pos: 66.5,-47.5 + pos: -52.5,-28.5 parent: 1 - - uid: 14121 + - uid: 18503 components: - type: Transform - pos: 66.5,-48.5 + pos: -52.5,-27.5 parent: 1 - - uid: 14122 + - uid: 18504 components: - type: Transform - pos: 66.5,-49.5 + pos: -52.5,-26.5 parent: 1 - - uid: 14123 + - uid: 18505 components: - type: Transform - pos: 66.5,-50.5 + pos: -52.5,-25.5 parent: 1 - - uid: 14124 + - uid: 18506 components: - type: Transform - pos: 66.5,-51.5 + pos: -52.5,-24.5 parent: 1 - - uid: 14133 + - uid: 18507 components: - type: Transform - pos: 66.5,-52.5 + pos: -52.5,-23.5 parent: 1 - - uid: 14134 + - uid: 18508 components: - type: Transform - pos: 66.5,-53.5 + pos: -52.5,-22.5 parent: 1 - - uid: 14135 + - uid: 18509 components: - type: Transform - pos: 66.5,-54.5 + pos: -52.5,-21.5 parent: 1 - - uid: 14136 + - uid: 18510 components: - type: Transform - pos: 65.5,-54.5 + pos: -53.5,-21.5 parent: 1 - - uid: 14137 + - uid: 18511 components: - type: Transform - pos: 64.5,-54.5 + pos: -54.5,-21.5 parent: 1 - - uid: 14138 + - uid: 18512 components: - type: Transform - pos: 63.5,-54.5 + pos: -54.5,-22.5 parent: 1 - - uid: 14139 + - uid: 18513 components: - type: Transform - pos: 63.5,-56.5 + pos: -51.5,-35.5 parent: 1 - - uid: 14140 + - uid: 18514 components: - type: Transform - pos: 63.5,-55.5 + pos: -50.5,-35.5 parent: 1 - - uid: 14141 + - uid: 18515 components: - type: Transform - pos: 67.5,-51.5 + pos: -49.5,-35.5 parent: 1 - - uid: 14149 + - uid: 18516 components: - type: Transform - pos: 67.5,-47.5 + pos: -48.5,-35.5 parent: 1 - - uid: 14176 + - uid: 18517 components: - type: Transform - pos: 67.5,-43.5 + pos: -47.5,-35.5 parent: 1 - - uid: 14981 + - uid: 18518 components: - type: Transform - pos: 15.5,16.5 + pos: -46.5,-35.5 parent: 1 - - uid: 14982 + - uid: 18519 components: - type: Transform - pos: 16.5,16.5 + pos: -45.5,-35.5 parent: 1 - - uid: 15390 + - uid: 18520 components: - type: Transform - pos: -83.5,-39.5 + pos: -44.5,-35.5 parent: 1 - - uid: 15831 + - uid: 18521 components: - type: Transform - pos: 41.5,-44.5 + pos: -43.5,-35.5 parent: 1 - - uid: 15832 + - uid: 18522 components: - type: Transform - pos: 46.5,-42.5 + pos: -43.5,-34.5 parent: 1 - - uid: 15833 + - uid: 18523 components: - type: Transform - pos: 42.5,-44.5 + pos: -43.5,-33.5 parent: 1 - - uid: 15834 + - uid: 18524 components: - type: Transform - pos: 44.5,-44.5 + pos: -43.5,-32.5 parent: 1 - - uid: 15836 + - uid: 18525 components: - type: Transform - pos: 45.5,-44.5 + pos: -42.5,-32.5 parent: 1 - - uid: 16270 + - uid: 18526 components: - type: Transform - pos: 53.5,8.5 + pos: -53.5,-42.5 parent: 1 - - uid: 16483 + - uid: 18527 components: - type: Transform - pos: -92.5,-35.5 + pos: -53.5,-43.5 parent: 1 - - uid: 16524 + - uid: 18528 components: - type: Transform - pos: -28.5,-71.5 + pos: -53.5,-44.5 parent: 1 - - uid: 16526 + - uid: 18529 components: - type: Transform - pos: -28.5,-70.5 + pos: -53.5,-45.5 parent: 1 - - uid: 16817 + - uid: 18530 components: - type: Transform - pos: -90.5,-35.5 + pos: -53.5,-46.5 parent: 1 - - uid: 17378 + - uid: 18531 components: - type: Transform - pos: 42.5,-19.5 + pos: -53.5,-47.5 parent: 1 - - uid: 17379 + - uid: 18532 components: - type: Transform - pos: 42.5,-20.5 + pos: -53.5,-48.5 parent: 1 - - uid: 17380 + - uid: 18533 components: - type: Transform - pos: 41.5,-19.5 + pos: -53.5,-49.5 parent: 1 - - uid: 17424 + - uid: 18534 components: - type: Transform - pos: 49.5,-8.5 + pos: -54.5,-49.5 parent: 1 - - uid: 17425 + - uid: 18535 components: - type: Transform - pos: 49.5,-7.5 + pos: -55.5,-49.5 parent: 1 - - uid: 17426 + - uid: 18536 components: - type: Transform - pos: 49.5,-6.5 + pos: -56.5,-49.5 parent: 1 - - uid: 17427 + - uid: 18537 components: - type: Transform - pos: 49.5,-5.5 + pos: -57.5,-49.5 parent: 1 - - uid: 17428 + - uid: 18538 components: - type: Transform - pos: 48.5,-8.5 + pos: -58.5,-49.5 parent: 1 - - uid: 17429 + - uid: 18539 components: - type: Transform - pos: 48.5,-7.5 + pos: -59.5,-49.5 parent: 1 - - uid: 17430 + - uid: 18540 components: - type: Transform - pos: 48.5,-6.5 + pos: -60.5,-49.5 parent: 1 - - uid: 17431 + - uid: 18541 components: - type: Transform - pos: 48.5,-5.5 + pos: -60.5,-50.5 parent: 1 - - uid: 17432 + - uid: 18542 components: - type: Transform - pos: 48.5,-4.5 + pos: -60.5,-51.5 parent: 1 - - uid: 17433 + - uid: 18709 components: - type: Transform - pos: 47.5,-4.5 + pos: -64.5,-35.5 parent: 1 - - uid: 17434 + - uid: 18710 components: - type: Transform - pos: 46.5,-4.5 + pos: -65.5,-35.5 parent: 1 - - uid: 17435 + - uid: 18711 components: - type: Transform - pos: 45.5,-4.5 + pos: -66.5,-35.5 parent: 1 - - uid: 17438 + - uid: 18712 components: - type: Transform - pos: 45.5,-2.5 + pos: -67.5,-35.5 parent: 1 - - uid: 17439 + - uid: 18713 components: - type: Transform - pos: 46.5,-2.5 + pos: -68.5,-35.5 parent: 1 - - uid: 17440 + - uid: 18714 components: - type: Transform - pos: 47.5,-2.5 + pos: -69.5,-35.5 parent: 1 - - uid: 17441 + - uid: 18715 components: - type: Transform - pos: 48.5,-2.5 + pos: -70.5,-35.5 parent: 1 - - uid: 17442 + - uid: 18716 components: - type: Transform - pos: 48.5,-1.5 + pos: -71.5,-35.5 parent: 1 - - uid: 17443 + - uid: 18717 components: - type: Transform - pos: 48.5,-0.5 + pos: -72.5,-35.5 parent: 1 - - uid: 17444 + - uid: 18718 components: - type: Transform - pos: 48.5,0.5 + pos: -72.5,-34.5 parent: 1 - - uid: 17445 + - uid: 18719 components: - type: Transform - pos: 48.5,1.5 + pos: -72.5,-33.5 parent: 1 - - uid: 17446 + - uid: 18720 components: - type: Transform - pos: 48.5,2.5 + pos: -72.5,-32.5 parent: 1 - - uid: 17447 + - uid: 18721 components: - type: Transform - pos: 49.5,-1.5 + pos: -72.5,-31.5 parent: 1 - - uid: 17448 + - uid: 18722 components: - type: Transform - pos: 49.5,-0.5 + pos: -72.5,-30.5 parent: 1 - - uid: 17449 + - uid: 18723 components: - type: Transform - pos: 49.5,0.5 + pos: -72.5,-29.5 parent: 1 - - uid: 17450 + - uid: 18724 components: - type: Transform - pos: 49.5,1.5 + pos: -72.5,-28.5 parent: 1 - - uid: 17451 + - uid: 18725 components: - type: Transform - pos: 49.5,2.5 + pos: -72.5,-27.5 parent: 1 - - uid: 17452 + - uid: 18726 components: - type: Transform - pos: 49.5,3.5 + pos: -72.5,-26.5 parent: 1 - - uid: 17453 + - uid: 18727 components: - type: Transform - pos: 50.5,3.5 + pos: -71.5,-26.5 parent: 1 - - uid: 17454 + - uid: 18728 components: - type: Transform - pos: 50.5,4.5 + pos: -68.5,-34.5 parent: 1 - - uid: 17455 + - uid: 18729 components: - type: Transform - pos: 50.5,4.5 + pos: -68.5,-33.5 parent: 1 - - uid: 17456 + - uid: 18730 components: - type: Transform - pos: 50.5,5.5 + pos: -68.5,-32.5 parent: 1 - - uid: 17457 + - uid: 18731 components: - type: Transform - pos: 51.5,4.5 + pos: -68.5,-31.5 parent: 1 - - uid: 17458 + - uid: 18732 components: - type: Transform - pos: 51.5,5.5 + pos: -68.5,-30.5 parent: 1 - - uid: 17459 + - uid: 18733 components: - type: Transform - pos: 51.5,6.5 + pos: -68.5,-29.5 parent: 1 - - uid: 17460 + - uid: 18734 components: - type: Transform - pos: 52.5,6.5 + pos: -67.5,-29.5 parent: 1 - - uid: 17461 + - uid: 18735 components: - type: Transform - pos: 52.5,7.5 + pos: -66.5,-29.5 parent: 1 - - uid: 17462 + - uid: 18736 components: - type: Transform - pos: 53.5,6.5 + pos: -65.5,-29.5 parent: 1 - - uid: 17463 + - uid: 18737 components: - type: Transform - pos: 53.5,7.5 + pos: -64.5,-29.5 parent: 1 - - uid: 17467 + - uid: 18738 components: - type: Transform - pos: 53.5,9.5 + pos: -63.5,-29.5 parent: 1 - - uid: 17468 + - uid: 18741 components: - type: Transform - pos: 53.5,10.5 + pos: -72.5,-25.5 parent: 1 - - uid: 17469 + - uid: 18742 components: - type: Transform - pos: 54.5,11.5 + pos: -72.5,-24.5 parent: 1 - - uid: 17470 + - uid: 18743 components: - type: Transform - pos: 54.5,12.5 + pos: -73.5,-24.5 parent: 1 - - uid: 17471 + - uid: 18744 components: - type: Transform - pos: 54.5,13.5 + pos: -74.5,-24.5 parent: 1 - - uid: 17472 + - uid: 18745 components: - type: Transform - pos: 54.5,14.5 + pos: -75.5,-24.5 parent: 1 - - uid: 17473 + - uid: 18746 components: - type: Transform - pos: 54.5,15.5 + pos: -76.5,-24.5 parent: 1 - - uid: 17474 + - uid: 18747 components: - type: Transform - pos: 54.5,16.5 + pos: -77.5,-24.5 parent: 1 - - uid: 17475 + - uid: 18748 components: - type: Transform - pos: 54.5,17.5 + pos: -78.5,-24.5 parent: 1 - - uid: 17476 + - uid: 18749 components: - type: Transform - pos: 54.5,18.5 + pos: -79.5,-24.5 parent: 1 - - uid: 17477 + - uid: 18750 components: - type: Transform - pos: 54.5,19.5 + pos: -80.5,-24.5 parent: 1 - - uid: 17478 + - uid: 18751 components: - type: Transform - pos: 54.5,20.5 + pos: -81.5,-24.5 parent: 1 - - uid: 17479 + - uid: 18752 components: - type: Transform - pos: 54.5,21.5 + pos: -81.5,-23.5 parent: 1 - - uid: 17480 + - uid: 18753 components: - type: Transform - pos: 54.5,22.5 + pos: -81.5,-22.5 parent: 1 - - uid: 17481 + - uid: 18867 components: - type: Transform - pos: 54.5,23.5 + pos: -92.5,-34.5 parent: 1 - - uid: 17482 + - uid: 18870 components: - type: Transform - pos: 54.5,24.5 + pos: -76.5,-55.5 parent: 1 - - uid: 17483 + - uid: 18872 components: - type: Transform - pos: 54.5,25.5 + pos: -89.5,-35.5 parent: 1 - - uid: 17484 + - uid: 18873 components: - type: Transform - pos: 53.5,11.5 + pos: -88.5,-35.5 parent: 1 - - uid: 17485 + - uid: 18877 components: - type: Transform - pos: 53.5,12.5 + pos: -94.5,-60.5 parent: 1 - - uid: 17486 + - uid: 18880 components: - type: Transform - pos: 53.5,13.5 + pos: -91.5,-58.5 parent: 1 - - uid: 17487 + - uid: 18905 components: - type: Transform - pos: 53.5,14.5 + pos: -89.5,-58.5 parent: 1 - - uid: 17488 + - uid: 18906 components: - type: Transform - pos: 53.5,15.5 + pos: -87.5,-58.5 parent: 1 - - uid: 17489 + - uid: 18908 components: - type: Transform - pos: 53.5,16.5 + pos: -103.5,-19.5 parent: 1 - - uid: 17490 + - uid: 18919 components: - type: Transform - pos: 53.5,17.5 + pos: -85.5,-58.5 parent: 1 - - uid: 17491 + - uid: 18992 components: - type: Transform - pos: 53.5,18.5 + pos: -62.5,-28.5 parent: 1 - - uid: 17492 + - uid: 19022 components: - type: Transform - pos: 53.5,19.5 + pos: -69.5,-54.5 parent: 1 - - uid: 17493 + - uid: 19023 components: - type: Transform - pos: 53.5,20.5 + pos: -70.5,-54.5 parent: 1 - - uid: 17494 + - uid: 19024 components: - type: Transform - pos: 53.5,21.5 + pos: -71.5,-54.5 parent: 1 - - uid: 17495 + - uid: 19026 components: - type: Transform - pos: 53.5,22.5 + pos: -72.5,-54.5 parent: 1 - - uid: 17496 + - uid: 19027 components: - type: Transform - pos: 53.5,23.5 + pos: -73.5,-54.5 parent: 1 - - uid: 17497 + - uid: 19142 components: - type: Transform - pos: 53.5,24.5 + pos: -69.5,-55.5 parent: 1 - - uid: 17498 + - uid: 19144 components: - type: Transform - pos: 53.5,25.5 + pos: -87.5,-35.5 parent: 1 - - uid: 17499 + - uid: 19145 components: - type: Transform - pos: 53.5,26.5 + pos: -86.5,-35.5 parent: 1 - - uid: 17500 + - uid: 19146 components: - type: Transform - pos: 53.5,27.5 + pos: -85.5,-35.5 parent: 1 - - uid: 17501 + - uid: 19158 components: - type: Transform - pos: 87.5,24.5 + pos: -77.5,-39.5 parent: 1 - - uid: 17502 + - uid: 19159 components: - type: Transform - pos: 87.5,23.5 + pos: -76.5,-39.5 parent: 1 - - uid: 17503 + - uid: 19160 components: - type: Transform - pos: 87.5,22.5 + pos: -75.5,-39.5 parent: 1 - - uid: 17504 + - uid: 19161 components: - type: Transform - pos: 88.5,24.5 + pos: -74.5,-39.5 parent: 1 - - uid: 17505 + - uid: 19162 components: - type: Transform - pos: 88.5,23.5 + pos: -74.5,-40.5 parent: 1 - - uid: 17506 + - uid: 19163 components: - type: Transform - pos: 88.5,22.5 + pos: -74.5,-41.5 parent: 1 - - uid: 17507 + - uid: 19164 components: - type: Transform - pos: 87.5,21.5 + pos: -74.5,-42.5 parent: 1 - - uid: 17508 + - uid: 19165 components: - type: Transform - pos: 86.5,20.5 + pos: -74.5,-43.5 parent: 1 - - uid: 17509 + - uid: 19166 components: - type: Transform - pos: 86.5,21.5 + pos: -74.5,-44.5 parent: 1 - - uid: 17512 + - uid: 19167 components: - type: Transform - pos: 85.5,20.5 + pos: -74.5,-45.5 parent: 1 - - uid: 17513 + - uid: 19168 components: - type: Transform - pos: 85.5,21.5 + pos: -74.5,-46.5 parent: 1 - - uid: 17514 + - uid: 19169 components: - type: Transform - pos: 84.5,20.5 + pos: -74.5,-47.5 parent: 1 - - uid: 17515 + - uid: 19170 components: - type: Transform - pos: 84.5,21.5 + pos: -74.5,-48.5 parent: 1 - - uid: 17516 + - uid: 19171 components: - type: Transform - pos: 83.5,20.5 + pos: -74.5,-49.5 parent: 1 - - uid: 17517 + - uid: 19172 components: - type: Transform - pos: 83.5,21.5 + pos: -74.5,-50.5 parent: 1 - - uid: 17518 + - uid: 19173 components: - type: Transform - pos: 82.5,20.5 + pos: -74.5,-51.5 parent: 1 - - uid: 17519 + - uid: 19174 components: - type: Transform - pos: 82.5,21.5 + pos: -74.5,-52.5 parent: 1 - - uid: 17520 + - uid: 19175 components: - type: Transform - pos: 81.5,20.5 + pos: -74.5,-53.5 parent: 1 - - uid: 17521 + - uid: 19176 components: - type: Transform - pos: 81.5,21.5 + pos: -74.5,-54.5 parent: 1 - - uid: 17522 + - uid: 19177 components: - type: Transform - pos: 80.5,20.5 + pos: -69.5,-56.5 parent: 1 - - uid: 17523 + - uid: 19178 components: - type: Transform - pos: 80.5,21.5 + pos: -68.5,-56.5 parent: 1 - - uid: 17524 + - uid: 19179 components: - type: Transform - pos: 79.5,20.5 + pos: -67.5,-56.5 parent: 1 - - uid: 17525 + - uid: 19180 components: - type: Transform - pos: 79.5,21.5 + pos: -66.5,-56.5 parent: 1 - - uid: 17526 + - uid: 19181 components: - type: Transform - pos: 78.5,20.5 + pos: -65.5,-56.5 parent: 1 - - uid: 17527 + - uid: 19182 components: - type: Transform - pos: 78.5,21.5 + pos: -64.5,-56.5 parent: 1 - - uid: 17528 + - uid: 19183 components: - type: Transform - pos: 77.5,20.5 + pos: -63.5,-56.5 parent: 1 - - uid: 17529 + - uid: 19184 components: - type: Transform - pos: 77.5,21.5 + pos: -63.5,-57.5 parent: 1 - - uid: 17549 + - uid: 19185 components: - type: Transform - pos: 76.5,20.5 + pos: -63.5,-58.5 parent: 1 - - uid: 17552 + - uid: 19186 components: - type: Transform - pos: 76.5,21.5 + pos: -63.5,-59.5 parent: 1 - - uid: 17553 + - uid: 19187 components: - type: Transform - pos: 75.5,20.5 + pos: -63.5,-60.5 parent: 1 - - uid: 17556 + - uid: 19188 components: - type: Transform - pos: 75.5,21.5 + pos: -63.5,-61.5 parent: 1 - - uid: 17560 + - uid: 19189 components: - type: Transform - pos: 74.5,20.5 + pos: -63.5,-62.5 parent: 1 - - uid: 17561 + - uid: 19190 components: - type: Transform - pos: 74.5,21.5 + pos: -63.5,-63.5 parent: 1 - - uid: 17562 + - uid: 19191 components: - type: Transform - pos: 73.5,20.5 + pos: -63.5,-64.5 parent: 1 - - uid: 17563 + - uid: 19192 components: - type: Transform - pos: 73.5,21.5 + pos: -63.5,-65.5 parent: 1 - - uid: 17564 + - uid: 19193 components: - type: Transform - pos: 72.5,20.5 + pos: -62.5,-65.5 parent: 1 - - uid: 17565 + - uid: 19194 components: - type: Transform - pos: 72.5,21.5 + pos: -61.5,-65.5 parent: 1 - - uid: 17566 + - uid: 19195 components: - type: Transform - pos: 71.5,20.5 + pos: -60.5,-65.5 parent: 1 - - uid: 17567 + - uid: 19196 components: - type: Transform - pos: 71.5,21.5 + pos: -60.5,-66.5 parent: 1 - - uid: 17568 + - uid: 19197 components: - type: Transform - pos: 70.5,20.5 + pos: -60.5,-67.5 parent: 1 - - uid: 17569 + - uid: 19198 components: - type: Transform - pos: 70.5,21.5 + pos: -60.5,-68.5 parent: 1 - - uid: 17570 + - uid: 19222 components: - type: Transform - pos: 69.5,20.5 + pos: -83.5,-58.5 parent: 1 - - uid: 17571 + - uid: 19223 components: - type: Transform - pos: 69.5,21.5 + pos: -81.5,-58.5 parent: 1 - - uid: 17572 + - uid: 19290 components: - type: Transform - pos: 68.5,20.5 + pos: -78.5,-58.5 parent: 1 - - uid: 17573 + - uid: 19414 components: - type: Transform - pos: 68.5,21.5 + pos: -56.5,22.5 parent: 1 - - uid: 17574 + - uid: 19438 components: - type: Transform - pos: 67.5,20.5 + pos: -108.5,0.5 parent: 1 - - uid: 17575 + - uid: 19439 components: - type: Transform - pos: 67.5,21.5 + pos: -109.5,0.5 parent: 1 - - uid: 17576 + - uid: 19440 components: - type: Transform - pos: 66.5,20.5 + pos: -110.5,0.5 parent: 1 - - uid: 17577 + - uid: 19441 components: - type: Transform - pos: 66.5,21.5 + pos: -110.5,1.5 parent: 1 - - uid: 17578 + - uid: 19442 components: - type: Transform - pos: 65.5,20.5 + pos: -111.5,1.5 parent: 1 - - uid: 17579 + - uid: 19443 components: - type: Transform - pos: 65.5,21.5 + pos: -99.5,25.5 parent: 1 - - uid: 17580 + - uid: 19444 components: - type: Transform - pos: 64.5,20.5 + pos: -99.5,24.5 parent: 1 - - uid: 17581 + - uid: 19445 components: - type: Transform - pos: 64.5,21.5 + pos: -99.5,23.5 parent: 1 - - uid: 17582 + - uid: 19446 components: - type: Transform - pos: 63.5,20.5 + pos: -99.5,22.5 parent: 1 - - uid: 17583 + - uid: 19447 components: - type: Transform - pos: 63.5,21.5 + pos: -100.5,22.5 parent: 1 - - uid: 17584 + - uid: 19448 components: - type: Transform - pos: 62.5,20.5 + pos: -100.5,21.5 parent: 1 - - uid: 17585 + - uid: 19449 components: - type: Transform - pos: 62.5,21.5 + pos: -100.5,20.5 parent: 1 - - uid: 17586 + - uid: 19450 components: - type: Transform - pos: 61.5,20.5 + pos: -100.5,19.5 parent: 1 - - uid: 17587 + - uid: 19451 components: - type: Transform - pos: 61.5,21.5 + pos: -100.5,18.5 parent: 1 - - uid: 17588 + - uid: 19452 components: - type: Transform - pos: 60.5,20.5 + pos: -100.5,17.5 parent: 1 - - uid: 17589 + - uid: 19453 components: - type: Transform - pos: 59.5,19.5 + pos: -100.5,16.5 parent: 1 - - uid: 17590 + - uid: 19454 components: - type: Transform - pos: 59.5,18.5 + pos: -100.5,15.5 parent: 1 - - uid: 17591 + - uid: 19455 components: - type: Transform - pos: 59.5,17.5 + pos: -100.5,14.5 parent: 1 - - uid: 17592 + - uid: 19456 components: - type: Transform - pos: 59.5,16.5 + pos: -99.5,14.5 parent: 1 - - uid: 17593 + - uid: 19457 components: - type: Transform - pos: 59.5,15.5 + pos: -99.5,13.5 parent: 1 - - uid: 17594 + - uid: 19458 components: - type: Transform - pos: 59.5,14.5 + pos: -98.5,13.5 parent: 1 - - uid: 17595 + - uid: 19459 components: - type: Transform - pos: 59.5,13.5 + pos: -98.5,12.5 parent: 1 - - uid: 17596 + - uid: 19460 components: - type: Transform - pos: 59.5,12.5 + pos: -98.5,11.5 parent: 1 - - uid: 17597 + - uid: 19461 components: - type: Transform - pos: 59.5,11.5 + pos: -98.5,10.5 parent: 1 - - uid: 17598 + - uid: 19462 components: - type: Transform - pos: 60.5,19.5 + pos: -98.5,9.5 parent: 1 - - uid: 17599 + - uid: 19463 components: - type: Transform - pos: 60.5,18.5 + pos: -98.5,8.5 parent: 1 - - uid: 17600 + - uid: 19464 components: - type: Transform - pos: 60.5,17.5 + pos: -98.5,7.5 parent: 1 - - uid: 17601 + - uid: 19465 components: - type: Transform - pos: 60.5,16.5 + pos: -98.5,6.5 parent: 1 - - uid: 17602 + - uid: 19466 components: - type: Transform - pos: 60.5,15.5 + pos: -99.5,6.5 parent: 1 - - uid: 17603 + - uid: 19467 components: - type: Transform - pos: 60.5,14.5 + pos: -100.5,6.5 parent: 1 - - uid: 17604 + - uid: 19468 components: - type: Transform - pos: 60.5,13.5 + pos: -101.5,6.5 parent: 1 - - uid: 17605 + - uid: 19469 components: - type: Transform - pos: 60.5,12.5 + pos: -102.5,6.5 parent: 1 - - uid: 17606 + - uid: 19470 components: - type: Transform - pos: 60.5,11.5 + pos: -103.5,6.5 parent: 1 - - uid: 17607 + - uid: 19471 components: - type: Transform - pos: 60.5,10.5 + pos: -103.5,7.5 parent: 1 - - uid: 17613 + - uid: 19472 components: - type: Transform - pos: 54.5,9.5 + pos: -103.5,8.5 parent: 1 - - uid: 17614 + - uid: 19473 components: - type: Transform - pos: 55.5,9.5 + pos: -102.5,5.5 parent: 1 - - uid: 17615 + - uid: 19474 components: - type: Transform - pos: 56.5,9.5 + pos: -102.5,4.5 parent: 1 - - uid: 17616 + - uid: 19475 components: - type: Transform - pos: 57.5,9.5 + pos: -102.5,3.5 parent: 1 - - uid: 17617 + - uid: 19476 components: - type: Transform - pos: 58.5,9.5 + pos: -102.5,2.5 parent: 1 - - uid: 17618 + - uid: 19478 components: - type: Transform - pos: 59.5,9.5 + pos: -102.5,1.5 parent: 1 - - uid: 17619 + - uid: 19479 components: - type: Transform - pos: 60.5,9.5 + pos: -103.5,1.5 parent: 1 - - uid: 17620 + - uid: 19480 components: - type: Transform - pos: 60.5,8.5 + pos: -104.5,1.5 parent: 1 - - uid: 17621 + - uid: 19481 components: - type: Transform - pos: 39.5,-11.5 + pos: -104.5,0.5 parent: 1 - - uid: 17622 + - uid: 19482 components: - type: Transform - pos: 39.5,-12.5 + pos: -105.5,1.5 parent: 1 - - uid: 17623 + - uid: 19483 components: - type: Transform - pos: 39.5,-13.5 + pos: -106.5,1.5 parent: 1 - - uid: 17624 + - uid: 19484 components: - type: Transform - pos: 39.5,-14.5 + pos: -106.5,0.5 parent: 1 - - uid: 17625 + - uid: 19512 components: - type: Transform - pos: 39.5,-15.5 + pos: -105.5,8.5 parent: 1 - - uid: 17626 + - uid: 19513 components: - type: Transform - pos: 39.5,-16.5 + pos: -105.5,9.5 parent: 1 - - uid: 17627 + - uid: 19608 components: - type: Transform - pos: 39.5,-17.5 + pos: -97.5,25.5 parent: 1 - - uid: 17628 + - uid: 19609 components: - type: Transform - pos: 41.5,-18.5 + pos: -97.5,24.5 parent: 1 - - uid: 17629 + - uid: 19610 components: - type: Transform - pos: 40.5,-11.5 + pos: -97.5,23.5 parent: 1 - - uid: 17630 + - uid: 19611 components: - type: Transform - pos: 40.5,-12.5 + pos: -97.5,22.5 parent: 1 - - uid: 17631 + - uid: 19612 components: - type: Transform - pos: 40.5,-13.5 + pos: -97.5,21.5 parent: 1 - - uid: 17632 + - uid: 19617 components: - type: Transform - pos: 40.5,-14.5 + pos: -98.5,21.5 parent: 1 - - uid: 17633 + - uid: 19618 components: - type: Transform - pos: 40.5,-15.5 + pos: -98.5,20.5 parent: 1 - - uid: 17634 + - uid: 19619 components: - type: Transform - pos: 40.5,-16.5 + pos: -98.5,19.5 parent: 1 - - uid: 17635 + - uid: 19620 components: - type: Transform - pos: 40.5,-17.5 + pos: -98.5,18.5 parent: 1 - - uid: 17636 + - uid: 19621 components: - type: Transform - pos: 40.5,-18.5 + pos: -97.5,18.5 parent: 1 - - uid: 17637 + - uid: 19622 components: - type: Transform - pos: 42.5,-21.5 + pos: -96.5,18.5 parent: 1 - - uid: 17638 + - uid: 19623 components: - type: Transform - pos: 43.5,-20.5 + pos: -95.5,18.5 parent: 1 - - uid: 17639 + - uid: 19624 components: - type: Transform - pos: 43.5,-21.5 + pos: -94.5,18.5 parent: 1 - - uid: 17640 + - uid: 19625 components: - type: Transform - pos: 43.5,-22.5 + pos: -93.5,18.5 parent: 1 - - uid: 17641 + - uid: 19626 components: - type: Transform - pos: 44.5,-22.5 + pos: -92.5,18.5 parent: 1 - - uid: 17642 + - uid: 19627 components: - type: Transform - pos: 44.5,-23.5 + pos: -91.5,18.5 parent: 1 - - uid: 17643 + - uid: 19628 components: - type: Transform - pos: 45.5,-23.5 + pos: -90.5,18.5 parent: 1 - - uid: 17644 + - uid: 19629 components: - type: Transform - pos: 45.5,-24.5 + pos: -89.5,18.5 parent: 1 - - uid: 17645 + - uid: 19630 components: - type: Transform - pos: 46.5,-23.5 + pos: -88.5,18.5 parent: 1 - - uid: 17646 + - uid: 19631 components: - type: Transform - pos: 46.5,-24.5 + pos: -88.5,17.5 parent: 1 - - uid: 17647 + - uid: 19632 components: - type: Transform - pos: 47.5,-23.5 + pos: -88.5,16.5 parent: 1 - - uid: 17648 + - uid: 19633 components: - type: Transform - pos: 47.5,-24.5 + pos: -88.5,15.5 parent: 1 - - uid: 17649 + - uid: 19634 components: - type: Transform - pos: 48.5,-23.5 + pos: -88.5,14.5 parent: 1 - - uid: 17650 + - uid: 19635 components: - type: Transform - pos: 48.5,-24.5 + pos: -88.5,13.5 parent: 1 - - uid: 17651 + - uid: 19636 components: - type: Transform - pos: 49.5,-23.5 + pos: -88.5,12.5 parent: 1 - - uid: 17652 + - uid: 19637 components: - type: Transform - pos: 49.5,-24.5 + pos: -89.5,12.5 parent: 1 - - uid: 17653 + - uid: 19638 components: - type: Transform - pos: 50.5,-24.5 + pos: -87.5,12.5 parent: 1 - - uid: 17654 + - uid: 19639 components: - type: Transform - pos: 50.5,-25.5 + pos: -87.5,11.5 parent: 1 - - uid: 17655 + - uid: 19640 components: - type: Transform - pos: 51.5,-25.5 + pos: -87.5,10.5 parent: 1 - - uid: 17656 + - uid: 19641 components: - type: Transform - pos: 51.5,-26.5 + pos: -87.5,9.5 parent: 1 - - uid: 17657 + - uid: 19642 components: - type: Transform - pos: 52.5,-25.5 + pos: -88.5,9.5 parent: 1 - - uid: 17658 + - uid: 19643 components: - type: Transform - pos: 52.5,-26.5 + pos: -89.5,9.5 parent: 1 - - uid: 17659 + - uid: 19644 components: - type: Transform - pos: 53.5,-25.5 + pos: -87.5,8.5 parent: 1 - - uid: 17660 + - uid: 19645 components: - type: Transform - pos: 53.5,-26.5 + pos: -86.5,8.5 parent: 1 - - uid: 17661 + - uid: 19646 components: - type: Transform - pos: 54.5,-26.5 + pos: -85.5,8.5 parent: 1 - - uid: 17662 + - uid: 19647 components: - type: Transform - pos: 54.5,-27.5 + pos: -84.5,8.5 parent: 1 - - uid: 17663 + - uid: 19648 components: - type: Transform - pos: 55.5,-26.5 + pos: -83.5,8.5 parent: 1 - - uid: 17664 + - uid: 19649 components: - type: Transform - pos: 55.5,-27.5 + pos: -82.5,8.5 parent: 1 - - uid: 17665 + - uid: 19650 components: - type: Transform - pos: 56.5,-26.5 + pos: -81.5,8.5 parent: 1 - - uid: 17666 + - uid: 19652 components: - type: Transform - pos: 56.5,-27.5 + pos: -88.5,8.5 parent: 1 - - uid: 17667 + - uid: 19653 components: - type: Transform - pos: 57.5,-26.5 + pos: -88.5,7.5 parent: 1 - - uid: 17669 + - uid: 19654 components: - type: Transform - pos: 57.5,-27.5 + pos: -88.5,6.5 parent: 1 - - uid: 17670 + - uid: 19655 components: - type: Transform - pos: 58.5,-26.5 + pos: -88.5,5.5 parent: 1 - - uid: 17671 + - uid: 19656 components: - type: Transform - pos: 58.5,-27.5 + pos: -88.5,4.5 parent: 1 - - uid: 17672 + - uid: 19657 components: - type: Transform - pos: 59.5,-26.5 + pos: -88.5,3.5 parent: 1 - - uid: 17673 + - uid: 19658 components: - type: Transform - pos: 59.5,-27.5 + pos: -88.5,2.5 parent: 1 - - uid: 17674 + - uid: 19659 components: - type: Transform - pos: 60.5,-26.5 + pos: -88.5,1.5 parent: 1 - - uid: 17675 + - uid: 19660 components: - type: Transform - pos: 60.5,-27.5 + pos: -88.5,0.5 parent: 1 - - uid: 17676 + - uid: 19661 components: - type: Transform - pos: 61.5,-26.5 + pos: -88.5,-0.5 parent: 1 - - uid: 17677 + - uid: 19662 components: - type: Transform - pos: 61.5,-27.5 + pos: -88.5,-1.5 parent: 1 - - uid: 17678 + - uid: 19663 components: - type: Transform - pos: 62.5,-26.5 + pos: -88.5,-2.5 parent: 1 - - uid: 17679 + - uid: 19664 components: - type: Transform - pos: 62.5,-27.5 + pos: -88.5,-3.5 parent: 1 - - uid: 17680 + - uid: 19665 components: - type: Transform - pos: 63.5,-26.5 + pos: -88.5,-4.5 parent: 1 - - uid: 17681 + - uid: 19666 components: - type: Transform - pos: 63.5,-27.5 + pos: -88.5,-5.5 parent: 1 - - uid: 17682 + - uid: 19667 components: - type: Transform - pos: 64.5,-26.5 + pos: -88.5,-6.5 parent: 1 - - uid: 17712 + - uid: 19668 components: - type: Transform - pos: 14.5,-25.5 + pos: -88.5,-7.5 parent: 1 - - uid: 17713 + - uid: 19866 components: - type: Transform - pos: 14.5,-26.5 + pos: -96.5,21.5 parent: 1 - - uid: 17714 + - uid: 19867 components: - type: Transform - pos: 13.5,-26.5 + pos: -95.5,21.5 parent: 1 - - uid: 17715 + - uid: 19868 components: - type: Transform - pos: 13.5,-27.5 + pos: -94.5,21.5 parent: 1 - - uid: 17716 + - uid: 19869 components: - type: Transform - pos: 13.5,-28.5 + pos: -93.5,21.5 parent: 1 - - uid: 17717 + - uid: 19870 components: - type: Transform - pos: 14.5,-28.5 + pos: -92.5,21.5 parent: 1 - - uid: 17718 + - uid: 19871 components: - type: Transform - pos: 15.5,-28.5 + pos: -91.5,21.5 parent: 1 - - uid: 17719 + - uid: 19872 components: - type: Transform - pos: 16.5,-28.5 + pos: -90.5,21.5 parent: 1 - - uid: 17720 + - uid: 19873 components: - type: Transform - pos: 16.5,-27.5 + pos: -89.5,21.5 parent: 1 - - uid: 17721 + - uid: 19874 components: - type: Transform - pos: 13.5,-29.5 + pos: -88.5,21.5 parent: 1 - - uid: 17722 + - uid: 19875 components: - type: Transform - pos: 12.5,-29.5 + pos: -87.5,21.5 parent: 1 - - uid: 17723 + - uid: 19876 components: - type: Transform - pos: 11.5,-29.5 + pos: -86.5,21.5 parent: 1 - - uid: 17724 + - uid: 19877 components: - type: Transform - pos: 10.5,-29.5 + pos: -85.5,21.5 parent: 1 - - uid: 17725 + - uid: 19878 components: - type: Transform - pos: 10.5,-30.5 + pos: -84.5,21.5 parent: 1 - - uid: 17726 + - uid: 19879 components: - type: Transform - pos: 10.5,-31.5 + pos: -83.5,21.5 parent: 1 - - uid: 17727 + - uid: 19880 components: - type: Transform - pos: 10.5,-32.5 + pos: -82.5,21.5 parent: 1 - - uid: 17728 + - uid: 19881 components: - type: Transform - pos: 10.5,-33.5 + pos: -81.5,21.5 parent: 1 - - uid: 17729 + - uid: 19882 components: - type: Transform - pos: 10.5,-34.5 + pos: -80.5,21.5 parent: 1 - - uid: 17730 + - uid: 19883 components: - type: Transform - pos: 10.5,-35.5 + pos: -79.5,21.5 parent: 1 - - uid: 17731 + - uid: 19884 components: - type: Transform - pos: 10.5,-36.5 + pos: -78.5,21.5 parent: 1 - - uid: 17732 + - uid: 19885 components: - type: Transform - pos: 10.5,-37.5 + pos: -77.5,21.5 parent: 1 - - uid: 17733 + - uid: 19886 components: - type: Transform - pos: 10.5,-38.5 + pos: -76.5,21.5 parent: 1 - - uid: 17734 + - uid: 19887 components: - type: Transform - pos: 10.5,-39.5 + pos: -75.5,21.5 parent: 1 - - uid: 17735 + - uid: 19888 components: - type: Transform - pos: 10.5,-40.5 + pos: -74.5,21.5 parent: 1 - - uid: 17736 + - uid: 19889 components: - type: Transform - pos: 10.5,-41.5 + pos: -74.5,22.5 parent: 1 - - uid: 17737 + - uid: 19890 components: - type: Transform - pos: 10.5,-42.5 + pos: -74.5,23.5 parent: 1 - - uid: 17824 + - uid: 19891 components: - type: Transform - pos: -76.5,-56.5 + pos: -74.5,24.5 parent: 1 - - uid: 18092 + - uid: 19892 components: - type: Transform - pos: -29.5,-74.5 + pos: -74.5,25.5 parent: 1 - - uid: 18093 + - uid: 19893 components: - type: Transform - pos: -28.5,-74.5 + pos: -74.5,26.5 parent: 1 - - uid: 18094 + - uid: 19894 components: - type: Transform - pos: -27.5,-74.5 + pos: -75.5,26.5 parent: 1 - - uid: 18095 + - uid: 19895 components: - type: Transform - pos: -27.5,-75.5 + pos: -76.5,26.5 parent: 1 - - uid: 18096 + - uid: 19896 components: - type: Transform - pos: -29.5,-72.5 + pos: -77.5,26.5 parent: 1 - - uid: 18098 + - uid: 19897 components: - type: Transform - pos: -29.5,-70.5 + pos: -77.5,27.5 parent: 1 - - uid: 18099 + - uid: 19898 components: - type: Transform - pos: -30.5,-70.5 + pos: -77.5,28.5 parent: 1 - - uid: 18100 + - uid: 19899 components: - type: Transform - pos: -31.5,-70.5 + pos: -77.5,29.5 parent: 1 - - uid: 18106 + - uid: 19951 components: - type: Transform - pos: -49.5,-62.5 + pos: -52.5,13.5 parent: 1 - - uid: 18107 + - uid: 19952 components: - type: Transform - pos: -49.5,-61.5 + pos: -52.5,12.5 parent: 1 - - uid: 18108 + - uid: 19953 components: - type: Transform - pos: -49.5,-60.5 + pos: -52.5,11.5 parent: 1 - - uid: 18109 + - uid: 19954 components: - type: Transform - pos: 11.5,-5.5 + pos: -52.5,10.5 parent: 1 - - uid: 18110 + - uid: 19955 components: - type: Transform - pos: 11.5,-6.5 + pos: -52.5,9.5 parent: 1 - - uid: 18128 + - uid: 19956 components: - type: Transform - pos: 14.5,-7.5 + pos: -53.5,9.5 parent: 1 - - uid: 18129 + - uid: 19957 components: - type: Transform - pos: 18.5,3.5 + pos: -54.5,9.5 parent: 1 - - uid: 18130 + - uid: 19958 components: - type: Transform - pos: -24.5,-47.5 + pos: -55.5,9.5 parent: 1 - - uid: 18131 + - uid: 19959 components: - type: Transform - pos: -24.5,-46.5 + pos: -56.5,9.5 parent: 1 - - uid: 18133 + - uid: 19960 components: - type: Transform - pos: -24.5,-44.5 + pos: -57.5,9.5 parent: 1 - - uid: 18134 + - uid: 19961 components: - type: Transform - pos: -24.5,-43.5 + pos: -58.5,9.5 parent: 1 - - uid: 18135 + - uid: 19962 components: - type: Transform - pos: -24.5,-42.5 + pos: -59.5,9.5 parent: 1 - - uid: 18136 + - uid: 19963 components: - type: Transform - pos: -24.5,-41.5 + pos: -60.5,9.5 parent: 1 - - uid: 18137 + - uid: 19964 components: - type: Transform - pos: -23.5,-41.5 + pos: -61.5,9.5 parent: 1 - - uid: 18138 + - uid: 19965 components: - type: Transform - pos: -22.5,-41.5 + pos: -62.5,9.5 parent: 1 - - uid: 18139 + - uid: 19966 components: - type: Transform - pos: -21.5,-41.5 + pos: -63.5,9.5 parent: 1 - - uid: 18140 + - uid: 19967 components: - type: Transform - pos: -21.5,-42.5 + pos: -64.5,9.5 parent: 1 - - uid: 18141 + - uid: 19968 components: - type: Transform - pos: -25.5,-43.5 + pos: -65.5,9.5 parent: 1 - - uid: 18142 + - uid: 19969 components: - type: Transform - pos: -26.5,-43.5 + pos: -65.5,10.5 parent: 1 - - uid: 18143 + - uid: 19970 components: - type: Transform - pos: -27.5,-43.5 + pos: -65.5,11.5 parent: 1 - - uid: 18144 + - uid: 19971 components: - type: Transform - pos: -28.5,-43.5 + pos: -65.5,12.5 parent: 1 - - uid: 18145 + - uid: 19972 components: - type: Transform - pos: -29.5,-43.5 + pos: -65.5,13.5 parent: 1 - - uid: 18146 + - uid: 19973 components: - type: Transform - pos: -29.5,-42.5 + pos: -65.5,14.5 parent: 1 - - uid: 18147 + - uid: 19974 components: - type: Transform - pos: -29.5,-41.5 + pos: -65.5,15.5 parent: 1 - - uid: 18148 + - uid: 19975 components: - type: Transform - pos: -29.5,-40.5 + pos: -65.5,16.5 parent: 1 - - uid: 18149 + - uid: 19976 components: - type: Transform - pos: -29.5,-39.5 + pos: -65.5,17.5 parent: 1 - - uid: 18150 + - uid: 19977 components: - type: Transform - pos: -30.5,-39.5 + pos: -65.5,18.5 parent: 1 - - uid: 18151 + - uid: 19978 components: - type: Transform - pos: -31.5,-39.5 + pos: -65.5,19.5 parent: 1 - - uid: 18152 + - uid: 19979 components: - type: Transform - pos: -31.5,-38.5 + pos: -66.5,19.5 parent: 1 - - uid: 18153 + - uid: 19980 components: - type: Transform - pos: -31.5,-37.5 + pos: -67.5,19.5 parent: 1 - - uid: 18154 + - uid: 19981 components: - type: Transform - pos: -32.5,-39.5 + pos: -68.5,19.5 parent: 1 - - uid: 18155 + - uid: 19982 components: - type: Transform - pos: -33.5,-39.5 + pos: -66.5,20.5 parent: 1 - - uid: 18156 + - uid: 19983 components: - type: Transform - pos: -34.5,-39.5 + pos: -66.5,21.5 parent: 1 - - uid: 18157 + - uid: 19984 components: - type: Transform - pos: -35.5,-39.5 + pos: -66.5,22.5 parent: 1 - - uid: 18158 + - uid: 19985 components: - type: Transform - pos: -36.5,-39.5 + pos: -66.5,23.5 parent: 1 - - uid: 18159 + - uid: 19986 components: - type: Transform - pos: -37.5,-39.5 + pos: -66.5,24.5 parent: 1 - - uid: 18160 + - uid: 19987 components: - type: Transform - pos: -38.5,-39.5 + pos: -66.5,25.5 parent: 1 - - uid: 18161 + - uid: 19988 components: - type: Transform - pos: -39.5,-39.5 + pos: -66.5,26.5 parent: 1 - - uid: 18162 + - uid: 19989 components: - type: Transform - pos: -29.5,-44.5 + pos: -66.5,27.5 parent: 1 - - uid: 18163 + - uid: 19990 components: - type: Transform - pos: -29.5,-45.5 + pos: -66.5,28.5 parent: 1 - - uid: 18164 + - uid: 19991 components: - type: Transform - pos: -29.5,-46.5 + pos: -66.5,29.5 parent: 1 - - uid: 18165 + - uid: 20019 components: - type: Transform - pos: -29.5,-47.5 + pos: -64.5,19.5 parent: 1 - - uid: 18166 + - uid: 20020 components: - type: Transform - pos: -30.5,-47.5 + pos: -63.5,19.5 parent: 1 - - uid: 18167 + - uid: 20021 components: - type: Transform - pos: -31.5,-47.5 + pos: -62.5,19.5 parent: 1 - - uid: 18168 + - uid: 20022 components: - type: Transform - pos: -32.5,-47.5 + pos: -61.5,19.5 parent: 1 - - uid: 18169 + - uid: 20023 components: - type: Transform - pos: -32.5,-48.5 + pos: -61.5,18.5 parent: 1 - - uid: 18170 + - uid: 20024 components: - type: Transform - pos: -32.5,-49.5 + pos: -61.5,17.5 parent: 1 - - uid: 18171 + - uid: 20025 components: - type: Transform - pos: -32.5,-50.5 + pos: -60.5,17.5 parent: 1 - - uid: 18172 + - uid: 20026 components: - type: Transform - pos: -33.5,-50.5 + pos: -59.5,17.5 parent: 1 - - uid: 18173 + - uid: 20027 components: - type: Transform - pos: -34.5,-50.5 + pos: -59.5,18.5 parent: 1 - - uid: 18174 + - uid: 20044 components: - type: Transform - pos: -35.5,-50.5 + pos: -66.5,9.5 parent: 1 - - uid: 18175 + - uid: 20045 components: - type: Transform - pos: -36.5,-50.5 + pos: -67.5,9.5 parent: 1 - - uid: 18176 + - uid: 20046 components: - type: Transform - pos: -37.5,-50.5 + pos: -68.5,9.5 parent: 1 - - uid: 18177 + - uid: 20047 components: - type: Transform - pos: -38.5,-50.5 + pos: -69.5,9.5 parent: 1 - - uid: 18178 + - uid: 20048 components: - type: Transform - pos: -38.5,-51.5 + pos: -70.5,9.5 parent: 1 - - uid: 18179 + - uid: 20049 components: - type: Transform - pos: -38.5,-52.5 + pos: -71.5,9.5 parent: 1 - - uid: 18180 + - uid: 20050 components: - type: Transform - pos: -38.5,-53.5 + pos: -72.5,9.5 parent: 1 - - uid: 18181 + - uid: 20051 components: - type: Transform - pos: -38.5,-54.5 + pos: -72.5,8.5 parent: 1 - - uid: 18182 + - uid: 20052 components: - type: Transform - pos: -38.5,-55.5 + pos: -72.5,7.5 parent: 1 - - uid: 18183 + - uid: 20053 components: - type: Transform - pos: -39.5,-55.5 + pos: -72.5,6.5 parent: 1 - - uid: 18184 + - uid: 20054 components: - type: Transform - pos: -40.5,-55.5 + pos: -71.5,6.5 parent: 1 - - uid: 18185 + - uid: 20055 components: - type: Transform - pos: -41.5,-55.5 + pos: -70.5,6.5 parent: 1 - - uid: 18186 + - uid: 20056 components: - type: Transform - pos: -42.5,-55.5 + pos: -70.5,5.5 parent: 1 - - uid: 18187 + - uid: 20057 components: - type: Transform - pos: -43.5,-55.5 + pos: -70.5,4.5 parent: 1 - - uid: 18481 + - uid: 20076 components: - type: Transform - pos: -58.5,-41.5 + pos: -72.5,5.5 parent: 1 - - uid: 18482 + - uid: 20077 components: - type: Transform - pos: -57.5,-41.5 + pos: -72.5,4.5 parent: 1 - - uid: 18483 + - uid: 20078 components: - type: Transform - pos: -56.5,-41.5 + pos: -72.5,3.5 parent: 1 - - uid: 18484 + - uid: 20079 components: - type: Transform - pos: -55.5,-41.5 + pos: -72.5,2.5 parent: 1 - - uid: 18485 + - uid: 20080 components: - type: Transform - pos: -54.5,-41.5 + pos: -72.5,1.5 parent: 1 - - uid: 18486 + - uid: 20081 components: - type: Transform - pos: -54.5,-40.5 + pos: -72.5,0.5 parent: 1 - - uid: 18487 + - uid: 20082 components: - type: Transform - pos: -54.5,-40.5 + pos: -72.5,-0.5 parent: 1 - - uid: 18488 + - uid: 20083 components: - type: Transform - pos: -53.5,-41.5 + pos: -72.5,-1.5 parent: 1 - - uid: 18489 + - uid: 20084 components: - type: Transform - pos: -52.5,-41.5 + pos: -72.5,-2.5 parent: 1 - - uid: 18490 + - uid: 20085 components: - type: Transform - pos: -52.5,-40.5 + pos: -72.5,-3.5 parent: 1 - - uid: 18491 + - uid: 20086 components: - type: Transform - pos: -52.5,-39.5 + pos: -72.5,-4.5 parent: 1 - - uid: 18492 + - uid: 20087 components: - type: Transform - pos: -52.5,-38.5 + pos: -72.5,-5.5 parent: 1 - - uid: 18493 + - uid: 20088 components: - type: Transform - pos: -52.5,-37.5 + pos: -72.5,-6.5 parent: 1 - - uid: 18494 + - uid: 20089 components: - type: Transform - pos: -52.5,-36.5 + pos: -71.5,-6.5 parent: 1 - - uid: 18495 + - uid: 20090 components: - type: Transform - pos: -52.5,-35.5 + pos: -70.5,-6.5 parent: 1 - - uid: 18496 + - uid: 20100 components: - type: Transform - pos: -52.5,-34.5 + pos: -41.5,10.5 parent: 1 - - uid: 18497 + - uid: 20103 components: - type: Transform - pos: -52.5,-33.5 + pos: -50.5,13.5 parent: 1 - - uid: 18498 + - uid: 20104 components: - type: Transform - pos: -52.5,-32.5 + pos: -50.5,12.5 parent: 1 - - uid: 18499 + - uid: 20105 components: - type: Transform - pos: -52.5,-31.5 + pos: -50.5,11.5 parent: 1 - - uid: 18500 + - uid: 20106 components: - type: Transform - pos: -52.5,-30.5 + pos: -50.5,10.5 parent: 1 - - uid: 18501 + - uid: 20107 components: - type: Transform - pos: -52.5,-29.5 + pos: -49.5,10.5 parent: 1 - - uid: 18502 + - uid: 20108 components: - type: Transform - pos: -52.5,-28.5 + pos: -48.5,10.5 parent: 1 - - uid: 18503 + - uid: 20109 components: - type: Transform - pos: -52.5,-27.5 + pos: -47.5,10.5 parent: 1 - - uid: 18504 + - uid: 20110 components: - type: Transform - pos: -52.5,-26.5 + pos: -46.5,10.5 parent: 1 - - uid: 18505 + - uid: 20111 components: - type: Transform - pos: -52.5,-25.5 + pos: -41.5,11.5 parent: 1 - - uid: 18506 + - uid: 20112 components: - type: Transform - pos: -52.5,-24.5 + pos: -41.5,12.5 parent: 1 - - uid: 18507 + - uid: 20114 components: - type: Transform - pos: -52.5,-23.5 + pos: -46.5,9.5 parent: 1 - - uid: 18508 + - uid: 20115 components: - type: Transform - pos: -52.5,-22.5 + pos: -45.5,9.5 parent: 1 - - uid: 18509 + - uid: 20116 components: - type: Transform - pos: -52.5,-21.5 + pos: -44.5,9.5 parent: 1 - - uid: 18510 + - uid: 20117 components: - type: Transform - pos: -53.5,-21.5 + pos: -43.5,9.5 parent: 1 - - uid: 18511 + - uid: 20118 components: - type: Transform - pos: -54.5,-21.5 + pos: -42.5,9.5 parent: 1 - - uid: 18512 + - uid: 20119 components: - type: Transform - pos: -54.5,-22.5 + pos: -41.5,9.5 parent: 1 - - uid: 18513 + - uid: 20120 components: - type: Transform - pos: -51.5,-35.5 + pos: -41.5,8.5 parent: 1 - - uid: 18514 + - uid: 20121 components: - type: Transform - pos: -50.5,-35.5 + pos: -41.5,7.5 parent: 1 - - uid: 18515 + - uid: 20122 components: - type: Transform - pos: -49.5,-35.5 + pos: -41.5,6.5 parent: 1 - - uid: 18516 + - uid: 20123 components: - type: Transform - pos: -48.5,-35.5 + pos: -41.5,5.5 parent: 1 - - uid: 18517 + - uid: 20124 components: - type: Transform - pos: -47.5,-35.5 + pos: -41.5,4.5 parent: 1 - - uid: 18518 + - uid: 20125 components: - type: Transform - pos: -46.5,-35.5 + pos: -41.5,3.5 parent: 1 - - uid: 18519 + - uid: 20126 components: - type: Transform - pos: -45.5,-35.5 + pos: -42.5,3.5 parent: 1 - - uid: 18520 + - uid: 20127 components: - type: Transform - pos: -44.5,-35.5 + pos: -43.5,3.5 parent: 1 - - uid: 18521 + - uid: 20128 components: - type: Transform - pos: -43.5,-35.5 + pos: -44.5,3.5 parent: 1 - - uid: 18522 + - uid: 20129 components: - type: Transform - pos: -43.5,-34.5 + pos: -45.5,3.5 parent: 1 - - uid: 18523 + - uid: 20130 components: - type: Transform - pos: -43.5,-33.5 + pos: -46.5,3.5 parent: 1 - - uid: 18524 + - uid: 20131 components: - type: Transform - pos: -43.5,-32.5 + pos: -46.5,2.5 parent: 1 - - uid: 18525 + - uid: 20132 components: - type: Transform - pos: -42.5,-32.5 + pos: -46.5,1.5 parent: 1 - - uid: 18526 + - uid: 20133 components: - type: Transform - pos: -53.5,-42.5 + pos: -46.5,0.5 parent: 1 - - uid: 18527 + - uid: 20134 components: - type: Transform - pos: -53.5,-43.5 + pos: -46.5,-0.5 parent: 1 - - uid: 18528 + - uid: 20135 components: - type: Transform - pos: -53.5,-44.5 + pos: -46.5,-1.5 parent: 1 - - uid: 18529 + - uid: 20136 components: - type: Transform - pos: -53.5,-45.5 + pos: -46.5,-2.5 parent: 1 - - uid: 18530 + - uid: 20137 components: - type: Transform - pos: -53.5,-46.5 + pos: -46.5,-3.5 parent: 1 - - uid: 18531 + - uid: 20138 components: - type: Transform - pos: -53.5,-47.5 + pos: -47.5,-3.5 parent: 1 - - uid: 18532 + - uid: 20139 components: - type: Transform - pos: -53.5,-48.5 + pos: -48.5,-3.5 parent: 1 - - uid: 18533 + - uid: 20140 components: - type: Transform - pos: -53.5,-49.5 + pos: -49.5,-3.5 parent: 1 - - uid: 18534 + - uid: 20141 components: - type: Transform - pos: -54.5,-49.5 + pos: -50.5,-3.5 parent: 1 - - uid: 18535 + - uid: 20142 components: - type: Transform - pos: -55.5,-49.5 + pos: -51.5,-3.5 parent: 1 - - uid: 18536 + - uid: 20143 components: - type: Transform - pos: -56.5,-49.5 + pos: -52.5,-3.5 parent: 1 - - uid: 18537 + - uid: 20144 components: - type: Transform - pos: -57.5,-49.5 + pos: -53.5,-3.5 parent: 1 - - uid: 18538 + - uid: 20145 components: - type: Transform - pos: -58.5,-49.5 + pos: -54.5,-3.5 parent: 1 - - uid: 18539 + - uid: 20261 components: - type: Transform - pos: -59.5,-49.5 + pos: -21.5,22.5 parent: 1 - - uid: 18540 + - uid: 20262 components: - type: Transform - pos: -60.5,-49.5 + pos: -21.5,21.5 parent: 1 - - uid: 18541 + - uid: 20263 components: - type: Transform - pos: -60.5,-50.5 + pos: -22.5,21.5 parent: 1 - - uid: 18542 + - uid: 20264 components: - type: Transform - pos: -60.5,-51.5 + pos: -23.5,21.5 parent: 1 - - uid: 18709 + - uid: 20265 components: - type: Transform - pos: -64.5,-35.5 + pos: -24.5,21.5 parent: 1 - - uid: 18710 + - uid: 20266 components: - type: Transform - pos: -65.5,-35.5 + pos: -25.5,21.5 parent: 1 - - uid: 18711 + - uid: 20267 components: - type: Transform - pos: -66.5,-35.5 + pos: -25.5,22.5 parent: 1 - - uid: 18712 + - uid: 20268 components: - type: Transform - pos: -67.5,-35.5 + pos: -25.5,23.5 parent: 1 - - uid: 18713 + - uid: 20388 components: - type: Transform - pos: -68.5,-35.5 + pos: -96.5,-77.5 parent: 1 - - uid: 18714 + - uid: 20468 components: - type: Transform - pos: -69.5,-35.5 + pos: -61.5,20.5 parent: 1 - - uid: 18715 + - uid: 20469 components: - type: Transform - pos: -70.5,-35.5 + pos: -61.5,21.5 parent: 1 - - uid: 18716 + - uid: 20470 components: - type: Transform - pos: -71.5,-35.5 + pos: -60.5,21.5 parent: 1 - - uid: 18717 + - uid: 20471 components: - type: Transform - pos: -72.5,-35.5 + pos: -59.5,21.5 parent: 1 - - uid: 18718 + - uid: 20472 components: - type: Transform - pos: -72.5,-34.5 + pos: -58.5,21.5 parent: 1 - - uid: 18719 + - uid: 20473 components: - type: Transform - pos: -72.5,-33.5 + pos: -57.5,21.5 parent: 1 - - uid: 18720 + - uid: 20474 components: - type: Transform - pos: -72.5,-32.5 + pos: -56.5,21.5 parent: 1 - - uid: 18721 + - uid: 20475 components: - type: Transform - pos: -72.5,-31.5 + pos: -56.5,23.5 parent: 1 - - uid: 18722 + - uid: 20476 components: - type: Transform - pos: -72.5,-30.5 + pos: -56.5,24.5 parent: 1 - - uid: 18723 + - uid: 20477 components: - type: Transform - pos: -72.5,-29.5 + pos: -56.5,25.5 parent: 1 - - uid: 18724 + - uid: 20478 components: - type: Transform - pos: -72.5,-28.5 + pos: -56.5,26.5 parent: 1 - - uid: 18725 + - uid: 20479 components: - type: Transform - pos: -72.5,-27.5 + pos: -56.5,27.5 parent: 1 - - uid: 18726 + - uid: 20480 components: - type: Transform - pos: -72.5,-26.5 + pos: -56.5,28.5 parent: 1 - - uid: 18727 + - uid: 20481 components: - type: Transform - pos: -71.5,-26.5 + pos: -56.5,29.5 parent: 1 - - uid: 18728 + - uid: 20483 components: - type: Transform - pos: -68.5,-34.5 + pos: -55.5,29.5 parent: 1 - - uid: 18729 + - uid: 20484 components: - type: Transform - pos: -68.5,-33.5 + pos: -54.5,29.5 parent: 1 - - uid: 18730 + - uid: 20485 components: - type: Transform - pos: -68.5,-32.5 + pos: -53.5,29.5 parent: 1 - - uid: 18731 + - uid: 20486 components: - type: Transform - pos: -68.5,-31.5 + pos: -52.5,29.5 parent: 1 - - uid: 18732 + - uid: 20487 components: - type: Transform - pos: -68.5,-30.5 + pos: -51.5,29.5 parent: 1 - - uid: 18733 + - uid: 20488 components: - type: Transform - pos: -68.5,-29.5 + pos: -50.5,29.5 parent: 1 - - uid: 18734 + - uid: 20489 components: - type: Transform - pos: -67.5,-29.5 + pos: -50.5,30.5 parent: 1 - - uid: 18735 + - uid: 20490 components: - type: Transform - pos: -66.5,-29.5 + pos: -50.5,31.5 parent: 1 - - uid: 18736 + - uid: 20568 components: - type: Transform - pos: -65.5,-29.5 + pos: -42.5,2.5 parent: 1 - - uid: 18737 + - uid: 20569 components: - type: Transform - pos: -64.5,-29.5 + pos: -42.5,1.5 parent: 1 - - uid: 18738 + - uid: 20636 components: - type: Transform - pos: -63.5,-29.5 + pos: 14.5,-27.5 parent: 1 - - uid: 18741 + - uid: 20638 components: - type: Transform - pos: -72.5,-25.5 + pos: 10.5,-43.5 parent: 1 - - uid: 18742 + - uid: 20639 components: - type: Transform - pos: -72.5,-24.5 + pos: 9.5,-43.5 parent: 1 - - uid: 18743 + - uid: 20640 components: - type: Transform - pos: -73.5,-24.5 + pos: 8.5,-43.5 parent: 1 - - uid: 18744 + - uid: 20641 components: - type: Transform - pos: -74.5,-24.5 + pos: 7.5,-43.5 parent: 1 - - uid: 18745 + - uid: 20642 components: - type: Transform - pos: -75.5,-24.5 + pos: 6.5,-43.5 parent: 1 - - uid: 18746 + - uid: 20643 components: - type: Transform - pos: -76.5,-24.5 + pos: 5.5,-43.5 parent: 1 - - uid: 18747 + - uid: 20644 components: - type: Transform - pos: -77.5,-24.5 + pos: 4.5,-43.5 parent: 1 - - uid: 18748 + - uid: 20645 components: - type: Transform - pos: -78.5,-24.5 + pos: 3.5,-43.5 parent: 1 - - uid: 18749 + - uid: 20646 components: - type: Transform - pos: -79.5,-24.5 + pos: 2.5,-43.5 parent: 1 - - uid: 18750 + - uid: 20647 components: - type: Transform - pos: -80.5,-24.5 + pos: 1.5,-43.5 parent: 1 - - uid: 18751 + - uid: 20648 components: - type: Transform - pos: -81.5,-24.5 + pos: 0.5,-43.5 parent: 1 - - uid: 18752 + - uid: 20649 components: - type: Transform - pos: -81.5,-23.5 + pos: -0.5,-43.5 parent: 1 - - uid: 18753 + - uid: 20650 components: - type: Transform - pos: -81.5,-22.5 + pos: -1.5,-43.5 parent: 1 - - uid: 18867 + - uid: 20651 components: - type: Transform - pos: -92.5,-34.5 + pos: -2.5,-43.5 parent: 1 - - uid: 18870 + - uid: 20652 components: - type: Transform - pos: -76.5,-55.5 + pos: -2.5,-44.5 parent: 1 - - uid: 18872 + - uid: 20653 components: - type: Transform - pos: -89.5,-35.5 + pos: -3.5,-44.5 parent: 1 - - uid: 18873 + - uid: 20847 components: - type: Transform - pos: -88.5,-35.5 + pos: -25.5,24.5 parent: 1 - - uid: 18877 + - uid: 20848 components: - type: Transform - pos: -94.5,-60.5 + pos: -25.5,25.5 parent: 1 - - uid: 18880 + - uid: 20849 components: - type: Transform - pos: -91.5,-58.5 + pos: -25.5,26.5 parent: 1 - - uid: 18905 + - uid: 20850 components: - type: Transform - pos: -89.5,-58.5 + pos: -25.5,27.5 parent: 1 - - uid: 18906 + - uid: 20851 components: - type: Transform - pos: -87.5,-58.5 + pos: -26.5,27.5 parent: 1 - - uid: 18908 + - uid: 20951 components: - type: Transform - pos: -103.5,-19.5 + pos: -24.5,13.5 parent: 1 - - uid: 18919 + - uid: 20952 components: - type: Transform - pos: -85.5,-58.5 + pos: -24.5,14.5 parent: 1 - - uid: 18992 + - uid: 20953 components: - type: Transform - pos: -62.5,-28.5 + pos: -24.5,15.5 parent: 1 - - uid: 19022 + - uid: 20954 components: - type: Transform - pos: -69.5,-54.5 + pos: -25.5,13.5 parent: 1 - - uid: 19023 + - uid: 20955 components: - type: Transform - pos: -70.5,-54.5 + pos: -26.5,13.5 parent: 1 - - uid: 19024 + - uid: 20956 components: - type: Transform - pos: -71.5,-54.5 + pos: -26.5,12.5 parent: 1 - - uid: 19026 + - uid: 20957 components: - type: Transform - pos: -72.5,-54.5 + pos: -26.5,11.5 parent: 1 - - uid: 19027 + - uid: 20958 components: - type: Transform - pos: -73.5,-54.5 + pos: -26.5,10.5 parent: 1 - - uid: 19142 + - uid: 20959 components: - type: Transform - pos: -69.5,-55.5 + pos: -26.5,9.5 parent: 1 - - uid: 19144 + - uid: 20960 components: - type: Transform - pos: -87.5,-35.5 + pos: -26.5,8.5 parent: 1 - - uid: 19145 + - uid: 20961 components: - type: Transform - pos: -86.5,-35.5 + pos: -27.5,8.5 parent: 1 - - uid: 19146 + - uid: 20962 components: - type: Transform - pos: -85.5,-35.5 + pos: -28.5,8.5 parent: 1 - - uid: 19158 + - uid: 20963 components: - type: Transform - pos: -77.5,-39.5 + pos: -28.5,7.5 parent: 1 - - uid: 19159 + - uid: 20964 components: - type: Transform - pos: -76.5,-39.5 + pos: -28.5,6.5 parent: 1 - - uid: 19160 + - uid: 20965 components: - type: Transform - pos: -75.5,-39.5 + pos: -28.5,5.5 parent: 1 - - uid: 19161 + - uid: 20966 components: - type: Transform - pos: -74.5,-39.5 + pos: -29.5,5.5 parent: 1 - - uid: 19162 + - uid: 20967 components: - type: Transform - pos: -74.5,-40.5 + pos: -30.5,5.5 parent: 1 - - uid: 19163 + - uid: 20968 components: - type: Transform - pos: -74.5,-41.5 + pos: -31.5,5.5 parent: 1 - - uid: 19164 + - uid: 20969 components: - type: Transform - pos: -74.5,-42.5 + pos: -32.5,5.5 parent: 1 - - uid: 19165 + - uid: 20970 components: - type: Transform - pos: -74.5,-43.5 + pos: -32.5,4.5 parent: 1 - - uid: 19166 + - uid: 20971 components: - type: Transform - pos: -74.5,-44.5 + pos: -32.5,3.5 parent: 1 - - uid: 19167 + - uid: 20972 components: - type: Transform - pos: -74.5,-45.5 + pos: -32.5,2.5 parent: 1 - - uid: 19168 + - uid: 20973 components: - type: Transform - pos: -74.5,-46.5 + pos: -32.5,1.5 parent: 1 - - uid: 19169 + - uid: 20974 components: - type: Transform - pos: -74.5,-47.5 + pos: -32.5,0.5 parent: 1 - - uid: 19170 + - uid: 20975 components: - type: Transform - pos: -74.5,-48.5 + pos: -31.5,0.5 parent: 1 - - uid: 19171 + - uid: 20976 components: - type: Transform - pos: -74.5,-49.5 + pos: -28.5,4.5 parent: 1 - - uid: 19172 + - uid: 20977 components: - type: Transform - pos: -74.5,-50.5 + pos: -28.5,3.5 parent: 1 - - uid: 19173 + - uid: 20978 components: - type: Transform - pos: -74.5,-51.5 + pos: -28.5,2.5 parent: 1 - - uid: 19174 + - uid: 20979 components: - type: Transform - pos: -74.5,-52.5 + pos: -28.5,1.5 parent: 1 - - uid: 19175 + - uid: 20980 components: - type: Transform - pos: -74.5,-53.5 + pos: -28.5,0.5 parent: 1 - - uid: 19176 + - uid: 20981 components: - type: Transform - pos: -74.5,-54.5 + pos: -28.5,-0.5 parent: 1 - - uid: 19177 + - uid: 20982 components: - type: Transform - pos: -69.5,-56.5 + pos: -28.5,-1.5 parent: 1 - - uid: 19178 + - uid: 20983 components: - type: Transform - pos: -68.5,-56.5 + pos: -28.5,-2.5 parent: 1 - - uid: 19179 + - uid: 20984 components: - type: Transform - pos: -67.5,-56.5 + pos: -27.5,-2.5 parent: 1 - - uid: 19180 + - uid: 20985 components: - type: Transform - pos: -66.5,-56.5 + pos: -26.5,-2.5 parent: 1 - - uid: 19181 + - uid: 20986 components: - type: Transform - pos: -65.5,-56.5 + pos: -25.5,-2.5 parent: 1 - - uid: 19182 + - uid: 20987 components: - type: Transform - pos: -64.5,-56.5 + pos: -25.5,-3.5 parent: 1 - - uid: 19183 + - uid: 20988 components: - type: Transform - pos: -63.5,-56.5 + pos: -25.5,-4.5 parent: 1 - - uid: 19184 + - uid: 20989 components: - type: Transform - pos: -63.5,-57.5 + pos: -25.5,-5.5 parent: 1 - - uid: 19185 + - uid: 20990 components: - type: Transform - pos: -63.5,-58.5 + pos: -25.5,-6.5 parent: 1 - - uid: 19186 + - uid: 20991 components: - type: Transform - pos: -63.5,-59.5 + pos: -25.5,-7.5 parent: 1 - - uid: 19187 + - uid: 20992 components: - type: Transform - pos: -63.5,-60.5 + pos: -25.5,-8.5 parent: 1 - - uid: 19188 + - uid: 20993 components: - type: Transform - pos: -63.5,-61.5 + pos: -25.5,-9.5 parent: 1 - - uid: 19189 + - uid: 20994 components: - type: Transform - pos: -63.5,-62.5 + pos: -25.5,-10.5 parent: 1 - - uid: 19190 + - uid: 20995 components: - type: Transform - pos: -63.5,-63.5 + pos: -25.5,-11.5 parent: 1 - - uid: 19191 + - uid: 20996 components: - type: Transform - pos: -63.5,-64.5 + pos: -25.5,-12.5 parent: 1 - - uid: 19192 + - uid: 20997 components: - type: Transform - pos: -63.5,-65.5 + pos: -25.5,-13.5 parent: 1 - - uid: 19193 + - uid: 20998 components: - type: Transform - pos: -62.5,-65.5 + pos: -25.5,-14.5 parent: 1 - - uid: 19194 + - uid: 20999 components: - type: Transform - pos: -61.5,-65.5 + pos: -26.5,-14.5 parent: 1 - - uid: 19195 + - uid: 21000 components: - type: Transform - pos: -60.5,-65.5 + pos: -27.5,-14.5 parent: 1 - - uid: 19196 + - uid: 21001 components: - type: Transform - pos: -60.5,-66.5 + pos: -27.5,-15.5 parent: 1 - - uid: 19197 + - uid: 21002 components: - type: Transform - pos: -60.5,-67.5 + pos: -27.5,-16.5 parent: 1 - - uid: 19198 + - uid: 21003 components: - type: Transform - pos: -60.5,-68.5 + pos: -26.5,-16.5 parent: 1 - - uid: 19222 + - uid: 21004 components: - type: Transform - pos: -83.5,-58.5 + pos: -26.5,-17.5 parent: 1 - - uid: 19223 + - uid: 21005 components: - type: Transform - pos: -81.5,-58.5 + pos: -26.5,-18.5 parent: 1 - - uid: 19290 + - uid: 21006 components: - type: Transform - pos: -78.5,-58.5 + pos: -26.5,-19.5 parent: 1 - - uid: 19414 + - uid: 21007 components: - type: Transform - pos: -56.5,22.5 + pos: -26.5,-20.5 parent: 1 - - uid: 19438 + - uid: 21008 components: - type: Transform - pos: -108.5,0.5 + pos: -26.5,-21.5 parent: 1 - - uid: 19439 + - uid: 21009 components: - type: Transform - pos: -109.5,0.5 + pos: -27.5,-21.5 parent: 1 - - uid: 19440 + - uid: 21010 components: - type: Transform - pos: -110.5,0.5 + pos: -27.5,-22.5 parent: 1 - - uid: 19441 + - uid: 21011 components: - type: Transform - pos: -110.5,1.5 + pos: -27.5,-23.5 parent: 1 - - uid: 19442 + - uid: 21012 components: - type: Transform - pos: -111.5,1.5 + pos: -26.5,-23.5 parent: 1 - - uid: 19443 + - uid: 21013 components: - type: Transform - pos: -99.5,25.5 + pos: -25.5,-23.5 parent: 1 - - uid: 19444 + - uid: 21014 components: - type: Transform - pos: -99.5,24.5 + pos: -25.5,-22.5 parent: 1 - - uid: 19445 + - uid: 21017 components: - type: Transform - pos: -99.5,23.5 + pos: -25.5,11.5 parent: 1 - - uid: 19446 + - uid: 21018 components: - type: Transform - pos: -99.5,22.5 + pos: -27.5,11.5 parent: 1 - - uid: 19447 + - uid: 21019 components: - type: Transform - pos: -100.5,22.5 + pos: -28.5,11.5 parent: 1 - - uid: 19448 + - uid: 21224 components: - type: Transform - pos: -100.5,21.5 + pos: -17.5,21.5 parent: 1 - - uid: 19449 + - uid: 21225 components: - type: Transform - pos: -100.5,20.5 + pos: -17.5,22.5 parent: 1 - - uid: 19450 + - uid: 21226 components: - type: Transform - pos: -100.5,19.5 + pos: -17.5,23.5 parent: 1 - - uid: 19451 + - uid: 21227 components: - type: Transform - pos: -100.5,18.5 + pos: -17.5,24.5 parent: 1 - - uid: 19452 + - uid: 21228 components: - type: Transform - pos: -100.5,17.5 + pos: -17.5,25.5 parent: 1 - - uid: 19453 + - uid: 21229 components: - type: Transform - pos: -100.5,16.5 + pos: -21.5,20.5 parent: 1 - - uid: 19454 + - uid: 21230 components: - type: Transform - pos: -100.5,15.5 + pos: -20.5,20.5 parent: 1 - - uid: 19455 + - uid: 21231 components: - type: Transform - pos: -100.5,14.5 + pos: -19.5,20.5 parent: 1 - - uid: 19456 + - uid: 21232 components: - type: Transform - pos: -99.5,14.5 + pos: -18.5,20.5 parent: 1 - - uid: 19457 + - uid: 21233 components: - type: Transform - pos: -99.5,13.5 + pos: -17.5,20.5 parent: 1 - - uid: 19458 + - uid: 21234 components: - type: Transform - pos: -98.5,13.5 + pos: -16.5,25.5 parent: 1 - - uid: 19459 + - uid: 21235 components: - type: Transform - pos: -98.5,12.5 + pos: -15.5,25.5 parent: 1 - - uid: 19460 + - uid: 21236 components: - type: Transform - pos: -98.5,11.5 + pos: -14.5,25.5 parent: 1 - - uid: 19461 + - uid: 21237 components: - type: Transform - pos: -98.5,10.5 + pos: -13.5,25.5 parent: 1 - - uid: 19462 + - uid: 21238 components: - type: Transform - pos: -98.5,9.5 + pos: -12.5,25.5 parent: 1 - - uid: 19463 + - uid: 21239 components: - type: Transform - pos: -98.5,8.5 + pos: -12.5,26.5 parent: 1 - - uid: 19464 + - uid: 21240 components: - type: Transform - pos: -98.5,7.5 + pos: -12.5,27.5 parent: 1 - - uid: 19465 + - uid: 21241 components: - type: Transform - pos: -98.5,6.5 + pos: -12.5,28.5 parent: 1 - - uid: 19466 + - uid: 21316 components: - type: Transform - pos: -99.5,6.5 + pos: -10.5,14.5 parent: 1 - - uid: 19467 + - uid: 21327 components: - type: Transform - pos: -100.5,6.5 + pos: 17.5,16.5 parent: 1 - - uid: 19468 + - uid: 21328 components: - type: Transform - pos: -101.5,6.5 + pos: 17.5,15.5 parent: 1 - - uid: 19469 + - uid: 21401 components: - type: Transform - pos: -102.5,6.5 + pos: -21.5,13.5 parent: 1 - - uid: 19470 + - uid: 21402 components: - type: Transform - pos: -103.5,6.5 + pos: -21.5,14.5 parent: 1 - - uid: 19471 + - uid: 21403 components: - type: Transform - pos: -103.5,7.5 + pos: -20.5,14.5 parent: 1 - - uid: 19472 + - uid: 21404 components: - type: Transform - pos: -103.5,8.5 + pos: -19.5,14.5 parent: 1 - - uid: 19473 + - uid: 21405 components: - type: Transform - pos: -102.5,5.5 + pos: -18.5,14.5 parent: 1 - - uid: 19474 + - uid: 21406 components: - type: Transform - pos: -102.5,4.5 + pos: -17.5,14.5 parent: 1 - - uid: 19475 + - uid: 21407 components: - type: Transform - pos: -102.5,3.5 + pos: -16.5,14.5 parent: 1 - - uid: 19476 + - uid: 21408 components: - type: Transform - pos: -102.5,2.5 + pos: -15.5,14.5 parent: 1 - - uid: 19478 + - uid: 21409 components: - type: Transform - pos: -102.5,1.5 + pos: -14.5,14.5 parent: 1 - - uid: 19479 + - uid: 21410 components: - type: Transform - pos: -103.5,1.5 + pos: -13.5,14.5 parent: 1 - - uid: 19480 + - uid: 21411 components: - type: Transform - pos: -104.5,1.5 + pos: -13.5,13.5 parent: 1 - - uid: 19481 + - uid: 21412 components: - type: Transform - pos: -104.5,0.5 + pos: -13.5,6.5 parent: 1 - - uid: 19482 + - uid: 21413 components: - type: Transform - pos: -105.5,1.5 + pos: -13.5,12.5 parent: 1 - - uid: 19483 + - uid: 21414 components: - type: Transform - pos: -106.5,1.5 + pos: -13.5,11.5 parent: 1 - - uid: 19484 + - uid: 21415 components: - type: Transform - pos: -106.5,0.5 + pos: -14.5,6.5 parent: 1 - - uid: 19512 + - uid: 21416 components: - type: Transform - pos: -105.5,8.5 + pos: -13.5,10.5 parent: 1 - - uid: 19513 + - uid: 21417 components: - type: Transform - pos: -105.5,9.5 + pos: -13.5,9.5 parent: 1 - - uid: 19608 + - uid: 21418 components: - type: Transform - pos: -97.5,25.5 + pos: -13.5,8.5 parent: 1 - - uid: 19609 + - uid: 21419 components: - type: Transform - pos: -97.5,24.5 + pos: -13.5,7.5 parent: 1 - - uid: 19610 + - uid: 21420 components: - type: Transform - pos: -97.5,23.5 + pos: -15.5,6.5 parent: 1 - - uid: 19611 + - uid: 21421 components: - type: Transform - pos: -97.5,22.5 + pos: -16.5,6.5 parent: 1 - - uid: 19612 + - uid: 21422 components: - type: Transform - pos: -97.5,21.5 + pos: -17.5,6.5 parent: 1 - - uid: 19617 + - uid: 21423 components: - type: Transform - pos: -98.5,21.5 + pos: -18.5,6.5 parent: 1 - - uid: 19618 + - uid: 21424 components: - type: Transform - pos: -98.5,20.5 + pos: -19.5,6.5 parent: 1 - - uid: 19619 + - uid: 21425 components: - type: Transform - pos: -98.5,19.5 + pos: -19.5,7.5 parent: 1 - - uid: 19620 + - uid: 21426 components: - type: Transform - pos: -98.5,18.5 + pos: -13.5,5.5 parent: 1 - - uid: 19621 + - uid: 21427 components: - type: Transform - pos: -97.5,18.5 + pos: -13.5,4.5 parent: 1 - - uid: 19622 + - uid: 21428 components: - type: Transform - pos: -96.5,18.5 + pos: -13.5,3.5 parent: 1 - - uid: 19623 + - uid: 21429 components: - type: Transform - pos: -95.5,18.5 + pos: -13.5,2.5 parent: 1 - - uid: 19624 + - uid: 21430 components: - type: Transform - pos: -94.5,18.5 + pos: -13.5,1.5 parent: 1 - - uid: 19625 + - uid: 21431 components: - type: Transform - pos: -93.5,18.5 + pos: -13.5,0.5 parent: 1 - - uid: 19626 + - uid: 21432 components: - type: Transform - pos: -92.5,18.5 + pos: -13.5,-0.5 parent: 1 - - uid: 19627 + - uid: 21433 components: - type: Transform - pos: -91.5,18.5 + pos: -13.5,-1.5 parent: 1 - - uid: 19628 + - uid: 21434 components: - type: Transform - pos: -90.5,18.5 + pos: -13.5,-2.5 parent: 1 - - uid: 19629 + - uid: 21435 components: - type: Transform - pos: -89.5,18.5 + pos: -13.5,-3.5 parent: 1 - - uid: 19630 + - uid: 21436 components: - type: Transform - pos: -88.5,18.5 + pos: -13.5,-4.5 parent: 1 - - uid: 19631 + - uid: 21437 components: - type: Transform - pos: -88.5,17.5 + pos: -13.5,-5.5 parent: 1 - - uid: 19632 + - uid: 21438 components: - type: Transform - pos: -88.5,16.5 + pos: -13.5,-6.5 parent: 1 - - uid: 19633 + - uid: 21439 components: - type: Transform - pos: -88.5,15.5 + pos: -13.5,-7.5 parent: 1 - - uid: 19634 + - uid: 21440 components: - type: Transform - pos: -88.5,14.5 + pos: -13.5,-8.5 parent: 1 - - uid: 19635 + - uid: 21441 components: - type: Transform - pos: -88.5,13.5 + pos: -12.5,-8.5 parent: 1 - - uid: 19636 + - uid: 21442 components: - type: Transform - pos: -88.5,12.5 + pos: -12.5,-9.5 parent: 1 - - uid: 19637 + - uid: 21443 components: - type: Transform - pos: -89.5,12.5 + pos: -12.5,-10.5 parent: 1 - - uid: 19638 + - uid: 21444 components: - type: Transform - pos: -87.5,12.5 + pos: -12.5,-11.5 parent: 1 - - uid: 19639 + - uid: 21445 components: - type: Transform - pos: -87.5,11.5 + pos: -12.5,-12.5 parent: 1 - - uid: 19640 + - uid: 21446 components: - type: Transform - pos: -87.5,10.5 + pos: -12.5,-13.5 parent: 1 - - uid: 19641 + - uid: 21447 components: - type: Transform - pos: -87.5,9.5 + pos: -12.5,-14.5 parent: 1 - - uid: 19642 + - uid: 21448 components: - type: Transform - pos: -88.5,9.5 + pos: -12.5,-15.5 parent: 1 - - uid: 19643 + - uid: 21449 components: - type: Transform - pos: -89.5,9.5 + pos: -12.5,-16.5 parent: 1 - - uid: 19644 + - uid: 21450 components: - type: Transform - pos: -87.5,8.5 + pos: -12.5,-17.5 parent: 1 - - uid: 19645 + - uid: 21451 components: - type: Transform - pos: -86.5,8.5 + pos: -12.5,-18.5 parent: 1 - - uid: 19646 + - uid: 21452 components: - type: Transform - pos: -85.5,8.5 + pos: -12.5,-19.5 parent: 1 - - uid: 19647 + - uid: 21453 components: - type: Transform - pos: -84.5,8.5 + pos: -12.5,-20.5 parent: 1 - - uid: 19648 + - uid: 21454 components: - type: Transform - pos: -83.5,8.5 + pos: -12.5,-21.5 parent: 1 - - uid: 19649 + - uid: 21455 components: - type: Transform - pos: -82.5,8.5 + pos: -11.5,-21.5 parent: 1 - - uid: 19650 + - uid: 21456 components: - type: Transform - pos: -81.5,8.5 + pos: -13.5,-11.5 parent: 1 - - uid: 19652 + - uid: 21457 components: - type: Transform - pos: -88.5,8.5 + pos: -14.5,-11.5 parent: 1 - - uid: 19653 + - uid: 21458 components: - type: Transform - pos: -88.5,7.5 + pos: -15.5,-11.5 parent: 1 - - uid: 19654 + - uid: 21459 components: - type: Transform - pos: -88.5,6.5 + pos: -16.5,-11.5 parent: 1 - - uid: 19655 + - uid: 21460 components: - type: Transform - pos: -88.5,5.5 + pos: -16.5,-12.5 parent: 1 - - uid: 19656 + - uid: 21461 components: - type: Transform - pos: -88.5,4.5 + pos: -16.5,-13.5 parent: 1 - - uid: 19657 + - uid: 21462 components: - type: Transform - pos: -88.5,3.5 + pos: -16.5,-14.5 parent: 1 - - uid: 19658 + - uid: 21463 components: - type: Transform - pos: -88.5,2.5 + pos: -16.5,-15.5 parent: 1 - - uid: 19659 + - uid: 21464 components: - type: Transform - pos: -88.5,1.5 + pos: -16.5,-16.5 parent: 1 - - uid: 19660 + - uid: 21582 components: - type: Transform - pos: -88.5,0.5 + pos: 17.5,14.5 parent: 1 - - uid: 19661 + - uid: 21583 components: - type: Transform - pos: -88.5,-0.5 + pos: 16.5,14.5 parent: 1 - - uid: 19662 + - uid: 21584 components: - type: Transform - pos: -88.5,-1.5 + pos: 15.5,14.5 parent: 1 - - uid: 19663 + - uid: 21585 components: - type: Transform - pos: -88.5,-2.5 + pos: 14.5,14.5 parent: 1 - - uid: 19664 + - uid: 21586 components: - type: Transform - pos: -88.5,-3.5 + pos: 13.5,14.5 parent: 1 - - uid: 19665 + - uid: 21587 components: - type: Transform - pos: -88.5,-4.5 + pos: 12.5,14.5 parent: 1 - - uid: 19666 + - uid: 21588 components: - type: Transform - pos: -88.5,-5.5 + pos: 12.5,13.5 parent: 1 - - uid: 19667 + - uid: 21589 components: - type: Transform - pos: -88.5,-6.5 + pos: 12.5,12.5 parent: 1 - - uid: 19668 + - uid: 21590 components: - type: Transform - pos: -88.5,-7.5 + pos: 12.5,11.5 parent: 1 - - uid: 19866 + - uid: 21591 components: - type: Transform - pos: -96.5,21.5 + pos: 12.5,10.5 parent: 1 - - uid: 19867 + - uid: 21592 components: - type: Transform - pos: -95.5,21.5 + pos: 12.5,9.5 parent: 1 - - uid: 19868 + - uid: 21593 components: - type: Transform - pos: -94.5,21.5 + pos: 12.5,8.5 parent: 1 - - uid: 19869 + - uid: 21594 components: - type: Transform - pos: -93.5,21.5 + pos: 12.5,7.5 parent: 1 - - uid: 19870 + - uid: 21595 components: - type: Transform - pos: -92.5,21.5 + pos: 12.5,6.5 parent: 1 - - uid: 19871 + - uid: 21596 components: - type: Transform - pos: -91.5,21.5 + pos: 12.5,5.5 parent: 1 - - uid: 19872 + - uid: 21597 components: - type: Transform - pos: -90.5,21.5 + pos: 12.5,4.5 parent: 1 - - uid: 19873 + - uid: 21598 components: - type: Transform - pos: -89.5,21.5 + pos: 12.5,3.5 parent: 1 - - uid: 19874 + - uid: 21599 components: - type: Transform - pos: -88.5,21.5 + pos: 12.5,2.5 parent: 1 - - uid: 19875 + - uid: 21600 components: - type: Transform - pos: -87.5,21.5 + pos: 12.5,1.5 parent: 1 - - uid: 19876 + - uid: 21601 components: - type: Transform - pos: -86.5,21.5 + pos: 12.5,0.5 parent: 1 - - uid: 19877 + - uid: 21602 components: - type: Transform - pos: -85.5,21.5 + pos: 12.5,-0.5 parent: 1 - - uid: 19878 + - uid: 21603 components: - type: Transform - pos: -84.5,21.5 + pos: 12.5,-1.5 parent: 1 - - uid: 19879 + - uid: 21604 components: - type: Transform - pos: -83.5,21.5 + pos: 12.5,-2.5 parent: 1 - - uid: 19880 + - uid: 21605 components: - type: Transform - pos: -82.5,21.5 + pos: 12.5,-3.5 parent: 1 - - uid: 19881 + - uid: 21606 components: - type: Transform - pos: -81.5,21.5 + pos: 12.5,-4.5 parent: 1 - - uid: 19882 + - uid: 21607 components: - type: Transform - pos: -80.5,21.5 + pos: 12.5,-5.5 parent: 1 - - uid: 19883 + - uid: 21610 components: - type: Transform - pos: -79.5,21.5 + pos: 11.5,-7.5 parent: 1 - - uid: 19884 + - uid: 21611 components: - type: Transform - pos: -78.5,21.5 + pos: 10.5,-7.5 parent: 1 - - uid: 19885 + - uid: 21612 components: - type: Transform - pos: -77.5,21.5 + pos: 9.5,-7.5 parent: 1 - - uid: 19886 + - uid: 21613 components: - type: Transform - pos: -76.5,21.5 + pos: 8.5,-7.5 parent: 1 - - uid: 19887 + - uid: 21614 components: - type: Transform - pos: -75.5,21.5 + pos: 7.5,-7.5 parent: 1 - - uid: 19888 + - uid: 21615 components: - type: Transform - pos: -74.5,21.5 + pos: 6.5,-7.5 parent: 1 - - uid: 19889 + - uid: 21616 components: - type: Transform - pos: -74.5,22.5 + pos: 5.5,-7.5 parent: 1 - - uid: 19890 + - uid: 21617 components: - type: Transform - pos: -74.5,23.5 + pos: 4.5,-7.5 parent: 1 - - uid: 19891 + - uid: 21618 components: - type: Transform - pos: -74.5,24.5 + pos: 3.5,-7.5 parent: 1 - - uid: 19892 + - uid: 21619 components: - type: Transform - pos: -74.5,25.5 + pos: 2.5,-7.5 parent: 1 - - uid: 19893 + - uid: 21620 components: - type: Transform - pos: -74.5,26.5 + pos: 1.5,-7.5 parent: 1 - - uid: 19894 + - uid: 21621 components: - type: Transform - pos: -75.5,26.5 + pos: 0.5,-7.5 parent: 1 - - uid: 19895 + - uid: 21622 components: - type: Transform - pos: -76.5,26.5 + pos: 0.5,-8.5 parent: 1 - - uid: 19896 + - uid: 21623 components: - type: Transform - pos: -77.5,26.5 + pos: 0.5,-9.5 parent: 1 - - uid: 19897 + - uid: 21624 components: - type: Transform - pos: -77.5,27.5 + pos: 0.5,-10.5 parent: 1 - - uid: 19898 + - uid: 21625 components: - type: Transform - pos: -77.5,28.5 + pos: 0.5,-11.5 parent: 1 - - uid: 19899 + - uid: 21626 components: - type: Transform - pos: -77.5,29.5 + pos: 0.5,-12.5 parent: 1 - - uid: 19951 + - uid: 21627 components: - type: Transform - pos: -52.5,13.5 + pos: 1.5,-12.5 parent: 1 - - uid: 19952 + - uid: 21628 components: - type: Transform - pos: -52.5,12.5 + pos: 10.5,-8.5 parent: 1 - - uid: 19953 + - uid: 21629 components: - type: Transform - pos: -52.5,11.5 + pos: 10.5,-9.5 parent: 1 - - uid: 19954 + - uid: 21630 components: - type: Transform - pos: -52.5,10.5 + pos: 10.5,-10.5 parent: 1 - - uid: 19955 + - uid: 21631 components: - type: Transform - pos: -52.5,9.5 + pos: 10.5,-11.5 parent: 1 - - uid: 19956 + - uid: 21632 components: - type: Transform - pos: -53.5,9.5 + pos: 10.5,-12.5 parent: 1 - - uid: 19957 + - uid: 21633 components: - type: Transform - pos: -54.5,9.5 + pos: 10.5,-13.5 parent: 1 - - uid: 19958 + - uid: 21634 components: - type: Transform - pos: -55.5,9.5 + pos: 10.5,-14.5 parent: 1 - - uid: 19959 + - uid: 21635 components: - type: Transform - pos: -56.5,9.5 + pos: 10.5,-15.5 parent: 1 - - uid: 19960 + - uid: 21636 components: - type: Transform - pos: -57.5,9.5 + pos: 10.5,-16.5 parent: 1 - - uid: 19961 + - uid: 21637 components: - type: Transform - pos: -58.5,9.5 + pos: 10.5,-17.5 parent: 1 - - uid: 19962 + - uid: 21638 components: - type: Transform - pos: -59.5,9.5 + pos: 10.5,-18.5 parent: 1 - - uid: 19963 + - uid: 21639 components: - type: Transform - pos: -60.5,9.5 + pos: 10.5,-19.5 parent: 1 - - uid: 19964 + - uid: 21640 components: - type: Transform - pos: -61.5,9.5 + pos: 11.5,-19.5 parent: 1 - - uid: 19965 + - uid: 21641 components: - type: Transform - pos: -62.5,9.5 + pos: 12.5,-19.5 parent: 1 - - uid: 19966 + - uid: 21642 components: - type: Transform - pos: -63.5,9.5 + pos: 13.5,-19.5 parent: 1 - - uid: 19967 + - uid: 21643 components: - type: Transform - pos: -64.5,9.5 + pos: 14.5,-19.5 parent: 1 - - uid: 19968 + - uid: 21644 components: - type: Transform - pos: -65.5,9.5 + pos: 15.5,-19.5 parent: 1 - - uid: 19969 + - uid: 21645 components: - type: Transform - pos: -65.5,10.5 + pos: 15.5,-18.5 parent: 1 - - uid: 19970 + - uid: 21646 components: - type: Transform - pos: -65.5,11.5 + pos: 15.5,-17.5 parent: 1 - - uid: 19971 + - uid: 21657 components: - type: Transform - pos: -65.5,12.5 + pos: 19.5,5.5 parent: 1 - - uid: 19972 + - uid: 21658 components: - type: Transform - pos: -65.5,13.5 + pos: 20.5,5.5 parent: 1 - - uid: 19973 + - uid: 21659 components: - type: Transform - pos: -65.5,14.5 + pos: 21.5,5.5 parent: 1 - - uid: 19974 + - uid: 21662 components: - type: Transform - pos: -65.5,15.5 + pos: 18.5,5.5 parent: 1 - - uid: 19975 + - uid: 21663 components: - type: Transform - pos: -65.5,16.5 + pos: 18.5,4.5 parent: 1 - - uid: 19976 + - uid: 21664 components: - type: Transform - pos: -65.5,17.5 + pos: 13.5,-7.5 parent: 1 - - uid: 19977 + - uid: 21665 components: - type: Transform - pos: -65.5,18.5 + pos: 13.5,-8.5 parent: 1 - - uid: 19978 + - uid: 21666 components: - type: Transform - pos: -65.5,19.5 + pos: 13.5,-9.5 parent: 1 - - uid: 19979 + - uid: 21667 components: - type: Transform - pos: -66.5,19.5 + pos: 13.5,-10.5 parent: 1 - - uid: 19980 + - uid: 21668 components: - type: Transform - pos: -67.5,19.5 + pos: 13.5,-11.5 parent: 1 - - uid: 19981 + - uid: 21670 components: - type: Transform - pos: -68.5,19.5 + pos: -0.5,-12.5 parent: 1 - - uid: 19982 + - uid: 21671 components: - type: Transform - pos: -66.5,20.5 + pos: -1.5,-12.5 parent: 1 - - uid: 19983 + - uid: 21672 components: - type: Transform - pos: -66.5,21.5 + pos: -2.5,-12.5 parent: 1 - - uid: 19984 + - uid: 21674 components: - type: Transform - pos: -66.5,22.5 + pos: 0.5,-13.5 parent: 1 - - uid: 19985 + - uid: 21675 components: - type: Transform - pos: -66.5,23.5 + pos: 0.5,-14.5 parent: 1 - - uid: 19986 + - uid: 21676 components: - type: Transform - pos: -66.5,24.5 + pos: 0.5,-15.5 parent: 1 - - uid: 19987 + - uid: 21677 components: - type: Transform - pos: -66.5,25.5 + pos: 0.5,-16.5 parent: 1 - - uid: 19988 + - uid: 21678 components: - type: Transform - pos: -66.5,26.5 + pos: 0.5,-17.5 parent: 1 - - uid: 19989 + - uid: 21679 components: - type: Transform - pos: -66.5,27.5 + pos: 0.5,-18.5 parent: 1 - - uid: 19990 + - uid: 21680 components: - type: Transform - pos: -66.5,28.5 + pos: 0.5,-19.5 parent: 1 - - uid: 19991 + - uid: 21681 components: - type: Transform - pos: -66.5,29.5 + pos: 1.5,-19.5 parent: 1 - - uid: 20019 + - uid: 21682 components: - type: Transform - pos: -64.5,19.5 + pos: 1.5,-20.5 parent: 1 - - uid: 20020 + - uid: 21683 components: - type: Transform - pos: -63.5,19.5 + pos: 2.5,-20.5 parent: 1 - - uid: 20021 + - uid: 21918 components: - type: Transform - pos: -62.5,19.5 + pos: 21.5,8.5 parent: 1 - - uid: 20022 + - uid: 21919 components: - type: Transform - pos: -61.5,19.5 + pos: 20.5,8.5 parent: 1 - - uid: 20023 + - uid: 21920 components: - type: Transform - pos: -61.5,18.5 + pos: 20.5,9.5 parent: 1 - - uid: 20024 + - uid: 21943 components: - type: Transform - pos: -61.5,17.5 + pos: 19.5,8.5 parent: 1 - - uid: 20025 + - uid: 22020 components: - type: Transform - pos: -60.5,17.5 + pos: 8.5,-37.5 parent: 1 - - uid: 20026 + - uid: 22023 components: - type: Transform - pos: -59.5,17.5 + pos: 6.5,-38.5 parent: 1 - - uid: 20027 + - uid: 22024 components: - type: Transform - pos: -59.5,18.5 + pos: 5.5,-38.5 parent: 1 - - uid: 20044 + - uid: 22025 components: - type: Transform - pos: -66.5,9.5 + pos: 4.5,-38.5 parent: 1 - - uid: 20045 + - uid: 22026 components: - type: Transform - pos: -67.5,9.5 + pos: 3.5,-38.5 parent: 1 - - uid: 20046 + - uid: 22027 components: - type: Transform - pos: -68.5,9.5 + pos: 2.5,-38.5 parent: 1 - - uid: 20047 + - uid: 22028 components: - type: Transform - pos: -69.5,9.5 + pos: 2.5,-37.5 parent: 1 - - uid: 20048 + - uid: 22029 components: - type: Transform - pos: -70.5,9.5 + pos: 2.5,-36.5 parent: 1 - - uid: 20049 + - uid: 22030 components: - type: Transform - pos: -71.5,9.5 + pos: 2.5,-35.5 parent: 1 - - uid: 20050 + - uid: 22031 components: - type: Transform - pos: -72.5,9.5 + pos: 2.5,-34.5 parent: 1 - - uid: 20051 + - uid: 22032 components: - type: Transform - pos: -72.5,8.5 + pos: 2.5,-33.5 parent: 1 - - uid: 20052 + - uid: 22033 components: - type: Transform - pos: -72.5,7.5 + pos: 1.5,-33.5 parent: 1 - - uid: 20053 + - uid: 22034 components: - type: Transform - pos: -72.5,6.5 + pos: 0.5,-33.5 parent: 1 - - uid: 20054 + - uid: 22703 components: - type: Transform - pos: -71.5,6.5 + pos: -24.5,-45.5 parent: 1 - - uid: 20055 + - uid: 23002 components: - type: Transform - pos: -70.5,6.5 + pos: -97.5,-9.5 parent: 1 - - uid: 20056 + - uid: 23053 components: - type: Transform - pos: -70.5,5.5 + pos: -96.5,-10.5 parent: 1 - - uid: 20057 + - uid: 23064 components: - type: Transform - pos: -70.5,4.5 + pos: -91.5,-35.5 parent: 1 - - uid: 20076 + - uid: 23456 components: - type: Transform - pos: -72.5,5.5 + pos: 88.5,28.5 parent: 1 - - uid: 20077 + - uid: 23457 components: - type: Transform - pos: -72.5,4.5 + pos: 88.5,27.5 parent: 1 - - uid: 20078 + - uid: 23462 components: - type: Transform - pos: -72.5,3.5 + pos: 87.5,26.5 parent: 1 - - uid: 20079 + - uid: 23463 components: - type: Transform - pos: -72.5,2.5 + pos: 87.5,25.5 parent: 1 - - uid: 20080 + - uid: 23464 components: - type: Transform - pos: -72.5,1.5 + pos: 88.5,26.5 parent: 1 - - uid: 20081 + - uid: 23465 components: - type: Transform - pos: -72.5,0.5 + pos: 88.5,25.5 parent: 1 - - uid: 20082 + - uid: 23842 components: - type: Transform - pos: -72.5,-0.5 + pos: -80.5,6.5 parent: 1 - - uid: 20083 + - uid: 24416 components: - type: Transform - pos: -72.5,-1.5 + pos: -85.5,-37.5 parent: 1 - - uid: 20084 + - uid: 24426 components: - type: Transform - pos: -72.5,-2.5 + pos: -97.5,-10.5 parent: 1 - - uid: 20085 + - uid: 24610 components: - type: Transform - pos: -72.5,-3.5 + pos: -50.5,-75.5 parent: 1 - - uid: 20086 + - uid: 24611 components: - type: Transform - pos: -72.5,-4.5 + pos: -50.5,-74.5 parent: 1 - - uid: 20087 + - uid: 24612 components: - type: Transform - pos: -72.5,-5.5 + pos: -51.5,-74.5 parent: 1 - - uid: 20088 + - uid: 24613 components: - type: Transform - pos: -72.5,-6.5 + pos: -52.5,-74.5 parent: 1 - - uid: 20089 + - uid: 24614 components: - type: Transform - pos: -71.5,-6.5 + pos: -53.5,-70.5 parent: 1 - - uid: 20090 + - uid: 24615 components: - type: Transform - pos: -70.5,-6.5 + pos: -53.5,-68.5 parent: 1 - - uid: 20100 + - uid: 24616 components: - type: Transform - pos: -41.5,10.5 + pos: -53.5,-67.5 parent: 1 - - uid: 20103 + - uid: 24617 components: - type: Transform - pos: -50.5,13.5 + pos: -53.5,-65.5 parent: 1 - - uid: 20104 + - uid: 24618 components: - type: Transform - pos: -50.5,12.5 + pos: -53.5,-66.5 parent: 1 - - uid: 20105 + - uid: 24619 components: - type: Transform - pos: -50.5,11.5 + pos: -51.5,-64.5 parent: 1 - - uid: 20106 + - uid: 24620 components: - type: Transform - pos: -50.5,10.5 + pos: -50.5,-64.5 parent: 1 - - uid: 20107 + - uid: 24621 components: - type: Transform - pos: -49.5,10.5 + pos: -49.5,-64.5 parent: 1 - - uid: 20108 + - uid: 24622 components: - type: Transform - pos: -48.5,10.5 + pos: -49.5,-63.5 parent: 1 - - uid: 20109 + - uid: 24623 components: - type: Transform - pos: -47.5,10.5 + pos: -53.5,-64.5 parent: 1 - - uid: 20110 + - uid: 24624 components: - type: Transform - pos: -46.5,10.5 + pos: -52.5,-64.5 parent: 1 - - uid: 20111 + - uid: 24626 components: - type: Transform - pos: -41.5,11.5 + pos: -43.5,-75.5 parent: 1 - - uid: 20112 + - uid: 24745 components: - type: Transform - pos: -41.5,12.5 + pos: -85.5,-36.5 parent: 1 - - uid: 20114 + - uid: 24757 components: - type: Transform - pos: -46.5,9.5 + pos: -94.5,-61.5 parent: 1 - - uid: 20115 + - uid: 24758 components: - type: Transform - pos: -45.5,9.5 + pos: -76.5,-54.5 parent: 1 - - uid: 20116 + - uid: 24759 components: - type: Transform - pos: -44.5,9.5 + pos: -77.5,-58.5 parent: 1 - - uid: 20117 + - uid: 24760 components: - type: Transform - pos: -43.5,9.5 + pos: -79.5,-58.5 parent: 1 - - uid: 20118 + - uid: 24761 components: - type: Transform - pos: -42.5,9.5 + pos: -93.5,-61.5 parent: 1 - - uid: 20119 + - uid: 24764 components: - type: Transform - pos: -41.5,9.5 + pos: -76.5,-57.5 parent: 1 - - uid: 20120 + - uid: 25982 components: - type: Transform - pos: -41.5,8.5 + pos: -107.5,-7.5 parent: 1 - - uid: 20121 + - uid: 28614 components: - type: Transform - pos: -41.5,7.5 + pos: -45.5,-75.5 parent: 1 - - uid: 20122 + - uid: 29532 components: - type: Transform - pos: -41.5,6.5 + pos: -44.5,-75.5 parent: 1 - - uid: 20123 + - uid: 29533 components: - type: Transform - pos: -41.5,5.5 + pos: -46.5,-75.5 parent: 1 - - uid: 20124 + - uid: 29534 components: - type: Transform - pos: -41.5,4.5 + pos: -41.5,-75.5 parent: 1 - - uid: 20125 + - uid: 29535 components: - type: Transform - pos: -41.5,3.5 + pos: -39.5,-75.5 parent: 1 - - uid: 20126 + - uid: 29536 components: - type: Transform - pos: -42.5,3.5 + pos: -42.5,-75.5 parent: 1 - - uid: 20127 + - uid: 29537 components: - type: Transform - pos: -43.5,3.5 + pos: -38.5,-75.5 parent: 1 - - uid: 20128 + - uid: 29898 components: - type: Transform - pos: -44.5,3.5 + pos: -1.5,-32.5 parent: 1 - - uid: 20129 + - uid: 30377 components: - type: Transform - pos: -45.5,3.5 + pos: -38.5,-74.5 parent: 1 - - uid: 20130 + - uid: 32385 components: - type: Transform - pos: -46.5,3.5 + pos: -37.5,-74.5 parent: 1 - - uid: 20131 + - uid: 32386 components: - type: Transform - pos: -46.5,2.5 + pos: -36.5,-74.5 parent: 1 - - uid: 20132 + - uid: 32392 components: - type: Transform - pos: -46.5,1.5 + pos: -35.5,-74.5 parent: 1 - - uid: 20133 + - uid: 32393 components: - type: Transform - pos: -46.5,0.5 + pos: -34.5,-74.5 parent: 1 - - uid: 20134 + - uid: 32394 components: - type: Transform - pos: -46.5,-0.5 + pos: -34.5,-72.5 parent: 1 - - uid: 20135 + - uid: 32395 components: - type: Transform - pos: -46.5,-1.5 + pos: -34.5,-71.5 parent: 1 - - uid: 20136 + - uid: 32396 components: - type: Transform - pos: -46.5,-2.5 + pos: -33.5,-71.5 parent: 1 - - uid: 20137 + - uid: 32397 components: - type: Transform - pos: -46.5,-3.5 + pos: -32.5,-71.5 parent: 1 - - uid: 20138 + - uid: 32398 components: - type: Transform - pos: -47.5,-3.5 + pos: -31.5,-71.5 parent: 1 - - uid: 20139 + - uid: 32400 components: - type: Transform - pos: -48.5,-3.5 + pos: -11.5,-59.5 parent: 1 - - uid: 20140 + - uid: 32413 components: - type: Transform - pos: -49.5,-3.5 + pos: 20.5,-45.5 parent: 1 - - uid: 20141 + - uid: 32414 components: - type: Transform - pos: -50.5,-3.5 + pos: 21.5,-45.5 parent: 1 - - uid: 20142 + - uid: 32415 components: - type: Transform - pos: -51.5,-3.5 + pos: 22.5,-45.5 parent: 1 - - uid: 20143 + - uid: 32416 components: - type: Transform - pos: -52.5,-3.5 + pos: 23.5,-45.5 parent: 1 - - uid: 20144 + - uid: 32417 components: - type: Transform - pos: -53.5,-3.5 + pos: 15.5,-45.5 parent: 1 - - uid: 20145 + - uid: 32418 components: - type: Transform - pos: -54.5,-3.5 + pos: 16.5,-45.5 parent: 1 - - uid: 20261 + - uid: 32419 components: - type: Transform - pos: -21.5,22.5 + pos: 24.5,-45.5 parent: 1 - - uid: 20262 + - uid: 32420 components: - type: Transform - pos: -21.5,21.5 + pos: 25.5,-45.5 parent: 1 - - uid: 20263 + - uid: 32421 components: - type: Transform - pos: -22.5,21.5 + pos: 34.5,-44.5 parent: 1 - - uid: 20264 + - uid: 32423 components: - type: Transform - pos: -23.5,21.5 + pos: -47.5,-75.5 parent: 1 - - uid: 20265 + - uid: 32424 components: - type: Transform - pos: -24.5,21.5 + pos: -48.5,-75.5 parent: 1 - - uid: 20266 + - uid: 32425 components: - type: Transform - pos: -25.5,21.5 + pos: -49.5,-75.5 parent: 1 - - uid: 20267 + - uid: 32426 components: - type: Transform - pos: -25.5,22.5 + pos: -53.5,-74.5 parent: 1 - - uid: 20268 + - uid: 32427 components: - type: Transform - pos: -25.5,23.5 + pos: -53.5,-73.5 parent: 1 - - uid: 20388 + - uid: 32428 components: - type: Transform - pos: -96.5,-77.5 + pos: -53.5,-72.5 parent: 1 - - uid: 20468 + - uid: 32429 components: - type: Transform - pos: -61.5,20.5 + pos: -53.5,-71.5 parent: 1 - - uid: 20469 + - uid: 32430 components: - type: Transform - pos: -61.5,21.5 + pos: -53.5,-69.5 parent: 1 - - uid: 20470 + - uid: 32614 components: - type: Transform - pos: -60.5,21.5 + pos: -43.5,12.5 parent: 1 - - uid: 20471 + - uid: 32635 components: - type: Transform - pos: -59.5,21.5 + pos: -44.5,12.5 parent: 1 - - uid: 20472 + - uid: 32636 components: - type: Transform - pos: -58.5,21.5 + pos: -44.5,13.5 parent: 1 - - uid: 20473 + - uid: 32637 components: - type: Transform - pos: -57.5,21.5 + pos: -45.5,13.5 parent: 1 - - uid: 20474 + - uid: 32735 components: - type: Transform - pos: -56.5,21.5 + pos: -113.5,-37.5 parent: 1 - - uid: 20475 + - uid: 32736 components: - type: Transform - pos: -56.5,23.5 + pos: -112.5,-37.5 parent: 1 - - uid: 20476 + - uid: 32737 components: - type: Transform - pos: -56.5,24.5 + pos: -111.5,-37.5 parent: 1 - - uid: 20477 + - uid: 32738 components: - type: Transform - pos: -56.5,25.5 + pos: -111.5,-36.5 parent: 1 - - uid: 20478 + - uid: 32739 components: - type: Transform - pos: -56.5,26.5 + pos: -110.5,-36.5 parent: 1 - - uid: 20479 + - uid: 32740 components: - type: Transform - pos: -56.5,27.5 + pos: -109.5,-36.5 parent: 1 - - uid: 20480 + - uid: 32741 components: - type: Transform - pos: -56.5,28.5 + pos: -108.5,-36.5 parent: 1 - - uid: 20481 + - uid: 33525 components: - type: Transform - pos: -56.5,29.5 + pos: -78.5,6.5 parent: 1 - - uid: 20483 + - uid: 33841 components: - type: Transform - pos: -55.5,29.5 + pos: -104.5,-29.5 parent: 1 - - uid: 20484 + - uid: 33843 components: - type: Transform - pos: -54.5,29.5 + pos: -105.5,-20.5 parent: 1 - - uid: 20485 + - uid: 33851 components: - type: Transform - pos: -53.5,29.5 + pos: -90.5,-58.5 parent: 1 - - uid: 20486 + - uid: 33852 components: - type: Transform - pos: -52.5,29.5 + pos: -88.5,-58.5 parent: 1 - - uid: 20487 + - uid: 34133 components: - type: Transform - pos: -51.5,29.5 + pos: -86.5,-58.5 parent: 1 - - uid: 20488 + - uid: 34134 components: - type: Transform - pos: -50.5,29.5 + pos: -84.5,-58.5 parent: 1 - - uid: 20489 + - uid: 34135 components: - type: Transform - pos: -50.5,30.5 + pos: -82.5,-58.5 parent: 1 - - uid: 20490 + - uid: 34181 components: - type: Transform - pos: -50.5,31.5 + pos: -80.5,-58.5 parent: 1 - - uid: 20568 + - uid: 34764 components: - type: Transform - pos: -42.5,2.5 + pos: -75.5,-54.5 parent: 1 - - uid: 20569 + - uid: 36470 components: - type: Transform - pos: -42.5,1.5 + pos: -77.5,6.5 parent: 1 - - uid: 20636 + - uid: 36473 components: - type: Transform - pos: 14.5,-27.5 + pos: -76.5,6.5 parent: 1 - - uid: 20638 + - uid: 36475 components: - type: Transform - pos: 10.5,-43.5 + pos: -75.5,6.5 parent: 1 - - uid: 20639 + - uid: 38666 components: - type: Transform - pos: 9.5,-43.5 + pos: -44.5,39.5 parent: 1 - - uid: 20640 + - uid: 38667 components: - type: Transform - pos: 8.5,-43.5 + pos: -44.5,38.5 parent: 1 - - uid: 20641 + - uid: 38668 components: - type: Transform - pos: 7.5,-43.5 + pos: -44.5,37.5 parent: 1 - - uid: 20642 + - uid: 38669 components: - type: Transform - pos: 6.5,-43.5 + pos: -44.5,36.5 parent: 1 - - uid: 20643 + - uid: 38670 components: - type: Transform - pos: 5.5,-43.5 + pos: -43.5,36.5 parent: 1 - - uid: 20644 + - uid: 38671 components: - type: Transform - pos: 4.5,-43.5 + pos: -42.5,36.5 parent: 1 - - uid: 20645 + - uid: 38672 components: - type: Transform - pos: 3.5,-43.5 + pos: -41.5,36.5 parent: 1 - - uid: 20646 + - uid: 38673 components: - type: Transform - pos: 2.5,-43.5 + pos: -40.5,36.5 parent: 1 - - uid: 20647 + - uid: 38674 components: - type: Transform - pos: 1.5,-43.5 + pos: -39.5,36.5 parent: 1 - - uid: 20648 + - uid: 38675 components: - type: Transform - pos: 0.5,-43.5 + pos: -38.5,36.5 parent: 1 - - uid: 20649 + - uid: 38676 components: - type: Transform - pos: -0.5,-43.5 + pos: -37.5,36.5 parent: 1 - - uid: 20650 + - uid: 38677 components: - type: Transform - pos: -1.5,-43.5 + pos: -36.5,36.5 parent: 1 - - uid: 20651 + - uid: 38678 components: - type: Transform - pos: -2.5,-43.5 + pos: -35.5,36.5 parent: 1 - - uid: 20652 + - uid: 38679 components: - type: Transform - pos: -2.5,-44.5 + pos: -34.5,36.5 parent: 1 - - uid: 20653 + - uid: 38680 components: - type: Transform - pos: -3.5,-44.5 + pos: -33.5,36.5 parent: 1 - - uid: 20847 + - uid: 38681 components: - type: Transform - pos: -25.5,24.5 + pos: -32.5,36.5 parent: 1 - - uid: 20848 + - uid: 38682 components: - type: Transform - pos: -25.5,25.5 + pos: -31.5,36.5 parent: 1 - - uid: 20849 + - uid: 38683 components: - type: Transform - pos: -25.5,26.5 + pos: -30.5,36.5 parent: 1 - - uid: 20850 + - uid: 38684 components: - type: Transform - pos: -25.5,27.5 + pos: -29.5,36.5 parent: 1 - - uid: 20851 + - uid: 38685 components: - type: Transform - pos: -26.5,27.5 + pos: -28.5,36.5 parent: 1 - - uid: 20951 + - uid: 38686 components: - type: Transform - pos: -24.5,13.5 + pos: -27.5,36.5 parent: 1 - - uid: 20952 + - uid: 38687 components: - type: Transform - pos: -24.5,14.5 + pos: -26.5,36.5 parent: 1 - - uid: 20953 + - uid: 38688 components: - type: Transform - pos: -24.5,15.5 + pos: -25.5,36.5 parent: 1 - - uid: 20954 + - uid: 38689 components: - type: Transform - pos: -25.5,13.5 + pos: -25.5,37.5 parent: 1 - - uid: 20955 + - uid: 38690 components: - type: Transform - pos: -26.5,13.5 + pos: -25.5,38.5 parent: 1 - - uid: 20956 + - uid: 38691 components: - type: Transform - pos: -26.5,12.5 + pos: -24.5,36.5 parent: 1 - - uid: 20957 + - uid: 38692 components: - type: Transform - pos: -26.5,11.5 + pos: -23.5,36.5 parent: 1 - - uid: 20958 + - uid: 38693 components: - type: Transform - pos: -26.5,10.5 + pos: -22.5,36.5 parent: 1 - - uid: 20959 + - uid: 38694 components: - type: Transform - pos: -26.5,9.5 + pos: -21.5,36.5 parent: 1 - - uid: 20960 + - uid: 38695 components: - type: Transform - pos: -26.5,8.5 + pos: -20.5,36.5 parent: 1 - - uid: 20961 + - uid: 38696 components: - type: Transform - pos: -27.5,8.5 + pos: -19.5,36.5 parent: 1 - - uid: 20962 + - uid: 38697 components: - type: Transform - pos: -28.5,8.5 + pos: -18.5,36.5 parent: 1 - - uid: 20963 + - uid: 38698 components: - type: Transform - pos: -28.5,7.5 + pos: -17.5,36.5 parent: 1 - - uid: 20964 + - uid: 38699 components: - type: Transform - pos: -28.5,6.5 + pos: -17.5,35.5 parent: 1 - - uid: 20965 + - uid: 38700 components: - type: Transform - pos: -28.5,5.5 + pos: -17.5,34.5 parent: 1 - - uid: 20966 + - uid: 38701 components: - type: Transform - pos: -29.5,5.5 + pos: -17.5,33.5 parent: 1 - - uid: 20967 + - uid: 38702 components: - type: Transform - pos: -30.5,5.5 + pos: -17.5,32.5 parent: 1 - - uid: 20968 + - uid: 38703 components: - type: Transform - pos: -31.5,5.5 + pos: -17.5,31.5 parent: 1 - - uid: 20969 + - uid: 38704 components: - type: Transform - pos: -32.5,5.5 + pos: -17.5,30.5 parent: 1 - - uid: 20970 + - uid: 38705 components: - type: Transform - pos: -32.5,4.5 + pos: -17.5,29.5 parent: 1 - - uid: 20971 + - uid: 38706 components: - type: Transform - pos: -32.5,3.5 + pos: -17.5,28.5 parent: 1 - - uid: 20972 + - uid: 38707 components: - type: Transform - pos: -32.5,2.5 + pos: -17.5,27.5 parent: 1 - - uid: 20973 + - uid: 38708 components: - type: Transform - pos: -32.5,1.5 + pos: -17.5,26.5 parent: 1 - - uid: 20974 + - uid: 38711 components: - type: Transform - pos: -32.5,0.5 + pos: -16.5,36.5 parent: 1 - - uid: 20975 + - uid: 38712 components: - type: Transform - pos: -31.5,0.5 + pos: -15.5,36.5 parent: 1 - - uid: 20976 + - uid: 38713 components: - type: Transform - pos: -28.5,4.5 + pos: -14.5,36.5 parent: 1 - - uid: 20977 + - uid: 38714 components: - type: Transform - pos: -28.5,3.5 + pos: -13.5,36.5 parent: 1 - - uid: 20978 + - uid: 38715 components: - type: Transform - pos: -28.5,2.5 + pos: -12.5,36.5 parent: 1 - - uid: 20979 + - uid: 38716 components: - type: Transform - pos: -28.5,1.5 + pos: -11.5,36.5 parent: 1 - - uid: 20980 + - uid: 38717 components: - type: Transform - pos: -28.5,0.5 + pos: -10.5,36.5 parent: 1 - - uid: 20981 + - uid: 38718 components: - type: Transform - pos: -28.5,-0.5 + pos: -9.5,36.5 parent: 1 - - uid: 20982 + - uid: 38719 components: - type: Transform - pos: -28.5,-1.5 + pos: -8.5,36.5 parent: 1 - - uid: 20983 + - uid: 38720 components: - type: Transform - pos: -28.5,-2.5 + pos: -7.5,36.5 parent: 1 - - uid: 20984 + - uid: 38721 components: - type: Transform - pos: -27.5,-2.5 + pos: -6.5,36.5 parent: 1 - - uid: 20985 + - uid: 38722 components: - type: Transform - pos: -26.5,-2.5 + pos: -5.5,36.5 parent: 1 - - uid: 20986 + - uid: 38723 components: - type: Transform - pos: -25.5,-2.5 + pos: -4.5,36.5 parent: 1 - - uid: 20987 + - uid: 38724 components: - type: Transform - pos: -25.5,-3.5 + pos: -3.5,36.5 parent: 1 - - uid: 20988 + - uid: 38725 components: - type: Transform - pos: -25.5,-4.5 + pos: -2.5,36.5 parent: 1 - - uid: 20989 + - uid: 38726 components: - type: Transform - pos: -25.5,-5.5 + pos: -1.5,36.5 parent: 1 - - uid: 20990 + - uid: 38727 components: - type: Transform - pos: -25.5,-6.5 + pos: -0.5,36.5 parent: 1 - - uid: 20991 + - uid: 38728 components: - type: Transform - pos: -25.5,-7.5 + pos: 0.5,36.5 parent: 1 - - uid: 20992 + - uid: 38729 components: - type: Transform - pos: -25.5,-8.5 + pos: 1.5,36.5 parent: 1 - - uid: 20993 + - uid: 38730 components: - type: Transform - pos: -25.5,-9.5 + pos: 1.5,37.5 parent: 1 - - uid: 20994 + - uid: 38731 components: - type: Transform - pos: -25.5,-10.5 + pos: 1.5,38.5 parent: 1 - - uid: 20995 + - uid: 38732 components: - type: Transform - pos: -25.5,-11.5 + pos: 1.5,39.5 parent: 1 - - uid: 20996 + - uid: 38733 components: - type: Transform - pos: -25.5,-12.5 + pos: -11.5,35.5 parent: 1 - - uid: 20997 + - uid: 38734 components: - type: Transform - pos: -25.5,-13.5 + pos: -11.5,34.5 parent: 1 - - uid: 20998 + - uid: 38897 components: - type: Transform - pos: -25.5,-14.5 + pos: 19.5,-45.5 parent: 1 - - uid: 20999 + - uid: 38899 components: - type: Transform - pos: -26.5,-14.5 + pos: 17.5,-45.5 parent: 1 - - uid: 21000 + - uid: 38903 components: - type: Transform - pos: -27.5,-14.5 + pos: 14.5,-45.5 parent: 1 - - uid: 21001 + - uid: 38914 components: - type: Transform - pos: -27.5,-15.5 + pos: 14.5,-44.5 parent: 1 - - uid: 21002 + - uid: 38916 components: - type: Transform - pos: -27.5,-16.5 + pos: 14.5,-43.5 parent: 1 - - uid: 21003 + - uid: 39056 components: - type: Transform - pos: -26.5,-16.5 + pos: -105.5,-18.5 parent: 1 - - uid: 21004 + - uid: 39057 components: - type: Transform - pos: -26.5,-17.5 + pos: -104.5,-18.5 parent: 1 - - uid: 21005 + - uid: 39058 components: - type: Transform - pos: -26.5,-18.5 + pos: -103.5,-18.5 parent: 1 - - uid: 21006 + - uid: 39059 components: - type: Transform - pos: -26.5,-19.5 + pos: -103.5,-19.5 parent: 1 - - uid: 21007 + - uid: 39073 components: - type: Transform - pos: -26.5,-20.5 + pos: -106.5,-26.5 parent: 1 - - uid: 21008 + - uid: 39074 components: - type: Transform - pos: -26.5,-21.5 + pos: -107.5,-26.5 parent: 1 - - uid: 21009 + - uid: 39075 components: - type: Transform - pos: -27.5,-21.5 + pos: -108.5,-26.5 parent: 1 - - uid: 21010 + - uid: 39076 components: - type: Transform - pos: -27.5,-22.5 + pos: -109.5,-26.5 parent: 1 - - uid: 21011 + - uid: 39077 components: - type: Transform - pos: -27.5,-23.5 + pos: -110.5,-26.5 parent: 1 - - uid: 21012 + - uid: 39078 components: - type: Transform - pos: -26.5,-23.5 + pos: -111.5,-26.5 parent: 1 - - uid: 21013 + - uid: 39079 components: - type: Transform - pos: -25.5,-23.5 + pos: -112.5,-26.5 parent: 1 - - uid: 21014 + - uid: 39080 components: - type: Transform - pos: -25.5,-22.5 + pos: -113.5,-26.5 parent: 1 - - uid: 21017 + - uid: 39081 components: - type: Transform - pos: -25.5,11.5 + pos: -114.5,-26.5 parent: 1 - - uid: 21018 + - uid: 39082 components: - type: Transform - pos: -27.5,11.5 + pos: -114.5,-25.5 parent: 1 - - uid: 21019 + - uid: 39083 components: - type: Transform - pos: -28.5,11.5 + pos: -114.5,-24.5 parent: 1 - - uid: 21224 + - uid: 39084 components: - type: Transform - pos: -17.5,21.5 + pos: -114.5,-23.5 parent: 1 - - uid: 21225 + - uid: 39157 components: - type: Transform - pos: -17.5,22.5 + pos: -59.5,-41.5 parent: 1 - - uid: 21226 + - uid: 39158 components: - type: Transform - pos: -17.5,23.5 + pos: -59.5,-40.5 parent: 1 - - uid: 21227 + - uid: 39159 components: - type: Transform - pos: -17.5,24.5 + pos: -59.5,-39.5 parent: 1 - - uid: 21228 + - uid: 39160 components: - type: Transform - pos: -17.5,25.5 + pos: -59.5,-38.5 parent: 1 - - uid: 21229 + - uid: 39161 components: - type: Transform - pos: -21.5,20.5 + pos: -60.5,-38.5 parent: 1 - - uid: 21230 + - uid: 39162 components: - type: Transform - pos: -20.5,20.5 + pos: -61.5,-38.5 parent: 1 - - uid: 21231 + - uid: 39163 components: - type: Transform - pos: -19.5,20.5 + pos: -62.5,-38.5 parent: 1 - - uid: 21232 + - uid: 39164 components: - type: Transform - pos: -18.5,20.5 + pos: -63.5,-38.5 parent: 1 - - uid: 21233 + - uid: 39165 components: - type: Transform - pos: -17.5,20.5 + pos: -63.5,-39.5 parent: 1 - - uid: 21234 + - uid: 39166 components: - type: Transform - pos: -16.5,25.5 + pos: -63.5,-40.5 parent: 1 - - uid: 21235 + - uid: 39167 components: - type: Transform - pos: -15.5,25.5 + pos: -62.5,-40.5 parent: 1 - - uid: 21236 + - uid: 39172 components: - type: Transform - pos: -14.5,25.5 + pos: -139.5,-39.5 parent: 1 - - uid: 21237 + - uid: 39173 components: - type: Transform - pos: -13.5,25.5 + pos: -140.5,-39.5 parent: 1 - - uid: 21238 + - uid: 39174 components: - type: Transform - pos: -12.5,25.5 + pos: -140.5,-40.5 parent: 1 - - uid: 21239 + - uid: 39318 components: - type: Transform - pos: -12.5,26.5 + pos: -99.5,-76.5 parent: 1 - - uid: 21240 + - uid: 39319 components: - type: Transform - pos: -12.5,27.5 + pos: -99.5,-77.5 parent: 1 - - uid: 21241 + - uid: 39320 components: - type: Transform - pos: -12.5,28.5 + pos: -98.5,-77.5 parent: 1 - - uid: 21327 + - uid: 39321 components: - type: Transform - pos: 17.5,16.5 + pos: -97.5,-77.5 parent: 1 - - uid: 21328 + - uid: 39322 components: - type: Transform - pos: 17.5,15.5 + pos: -97.5,-78.5 parent: 1 - - uid: 21401 + - uid: 39323 components: - type: Transform - pos: -21.5,13.5 + pos: -97.5,-79.5 parent: 1 - - uid: 21402 + - uid: 39324 components: - type: Transform - pos: -21.5,14.5 + pos: -97.5,-80.5 parent: 1 - - uid: 21403 + - uid: 39325 components: - type: Transform - pos: -20.5,14.5 + pos: -96.5,-80.5 parent: 1 - - uid: 21404 + - uid: 39326 components: - type: Transform - pos: -19.5,14.5 + pos: -95.5,-80.5 parent: 1 - - uid: 21405 + - uid: 39327 components: - type: Transform - pos: -18.5,14.5 + pos: -94.5,-80.5 parent: 1 - - uid: 21406 + - uid: 39328 components: - type: Transform - pos: -17.5,14.5 + pos: -93.5,-80.5 parent: 1 - - uid: 21407 + - uid: 39329 components: - type: Transform - pos: -16.5,14.5 + pos: -92.5,-80.5 parent: 1 - - uid: 21408 + - uid: 39330 components: - type: Transform - pos: -15.5,14.5 + pos: -91.5,-80.5 parent: 1 - - uid: 21409 + - uid: 39331 components: - type: Transform - pos: -14.5,14.5 + pos: -91.5,-79.5 parent: 1 - - uid: 21410 + - uid: 39332 components: - type: Transform - pos: -13.5,14.5 + pos: -91.5,-78.5 parent: 1 - - uid: 21411 + - uid: 39333 components: - type: Transform - pos: -13.5,13.5 + pos: -91.5,-77.5 parent: 1 - - uid: 21412 + - uid: 39334 components: - type: Transform - pos: -13.5,6.5 + pos: -91.5,-76.5 parent: 1 - - uid: 21413 + - uid: 39335 components: - type: Transform - pos: -13.5,12.5 + pos: -91.5,-75.5 parent: 1 - - uid: 21414 + - uid: 39336 components: - type: Transform - pos: -13.5,11.5 + pos: -91.5,-74.5 parent: 1 - - uid: 21415 + - uid: 39337 components: - type: Transform - pos: -14.5,6.5 + pos: -91.5,-73.5 parent: 1 - - uid: 21416 + - uid: 39338 components: - type: Transform - pos: -13.5,10.5 + pos: -91.5,-72.5 parent: 1 - - uid: 21417 + - uid: 39339 components: - type: Transform - pos: -13.5,9.5 + pos: -91.5,-71.5 parent: 1 - - uid: 21418 + - uid: 39340 components: - type: Transform - pos: -13.5,8.5 + pos: -91.5,-70.5 parent: 1 - - uid: 21419 + - uid: 39341 components: - type: Transform - pos: -13.5,7.5 + pos: -91.5,-69.5 parent: 1 - - uid: 21420 + - uid: 39342 components: - type: Transform - pos: -15.5,6.5 + pos: -91.5,-68.5 parent: 1 - - uid: 21421 + - uid: 39343 components: - type: Transform - pos: -16.5,6.5 + pos: -91.5,-67.5 parent: 1 - - uid: 21422 + - uid: 39344 components: - type: Transform - pos: -17.5,6.5 + pos: -91.5,-66.5 parent: 1 - - uid: 21423 + - uid: 39345 components: - type: Transform - pos: -18.5,6.5 + pos: -91.5,-65.5 parent: 1 - - uid: 21424 + - uid: 39346 components: - type: Transform - pos: -19.5,6.5 + pos: -91.5,-64.5 parent: 1 - - uid: 21425 + - uid: 39347 components: - type: Transform - pos: -19.5,7.5 + pos: -91.5,-63.5 parent: 1 - - uid: 21426 + - uid: 39348 components: - type: Transform - pos: -13.5,5.5 + pos: -91.5,-62.5 parent: 1 - - uid: 21427 + - uid: 39349 components: - type: Transform - pos: -13.5,4.5 + pos: -91.5,-61.5 parent: 1 - - uid: 21428 + - uid: 39350 components: - type: Transform - pos: -13.5,3.5 + pos: -91.5,-60.5 parent: 1 - - uid: 21429 + - uid: 39351 components: - type: Transform - pos: -13.5,2.5 + pos: -91.5,-59.5 parent: 1 - - uid: 21430 + - uid: 39352 components: - type: Transform - pos: -13.5,1.5 + pos: -92.5,-59.5 parent: 1 - - uid: 21431 + - uid: 39353 components: - type: Transform - pos: -13.5,0.5 + pos: -93.5,-59.5 parent: 1 - - uid: 21432 + - uid: 39354 components: - type: Transform - pos: -13.5,-0.5 + pos: -94.5,-59.5 parent: 1 - - uid: 21433 + - uid: 39622 components: - type: Transform - pos: -13.5,-1.5 + pos: 12.5,-42.5 parent: 1 - - uid: 21434 + - uid: 39624 components: - type: Transform - pos: -13.5,-2.5 + pos: 11.5,-42.5 parent: 1 - - uid: 21435 + - uid: 39629 components: - type: Transform - pos: -13.5,-3.5 + pos: 14.5,-42.5 parent: 1 - - uid: 21436 + - uid: 39631 components: - type: Transform - pos: -13.5,-4.5 + pos: 13.5,-42.5 parent: 1 - - uid: 21437 + - uid: 39634 components: - type: Transform - pos: -13.5,-5.5 + pos: 18.5,-45.5 parent: 1 - - uid: 21438 + - uid: 39640 components: - type: Transform - pos: -13.5,-6.5 + pos: 46.5,-43.5 parent: 1 - - uid: 21439 + - uid: 39641 components: - type: Transform - pos: -13.5,-7.5 + pos: -40.5,-75.5 parent: 1 - - uid: 21440 + - uid: 39650 components: - type: Transform - pos: -13.5,-8.5 + pos: 58.5,-52.5 parent: 1 - - uid: 21441 + - uid: 39651 components: - type: Transform - pos: -12.5,-8.5 + pos: -20.5,-47.5 parent: 1 - - uid: 21442 + - uid: 39652 components: - type: Transform - pos: -12.5,-9.5 + pos: -20.5,-46.5 parent: 1 - - uid: 21443 + - uid: 39717 components: - type: Transform - pos: -12.5,-10.5 + pos: -34.5,-73.5 parent: 1 - - uid: 21444 + - uid: 39718 components: - type: Transform - pos: -12.5,-11.5 + pos: 18.5,1.5 parent: 1 - - uid: 21445 + - uid: 39719 components: - type: Transform - pos: -12.5,-12.5 + pos: 18.5,0.5 parent: 1 - - uid: 21446 + - uid: 39720 components: - type: Transform - pos: -12.5,-13.5 + pos: 18.5,-0.5 parent: 1 - - uid: 21447 + - uid: 39721 components: - type: Transform - pos: -12.5,-14.5 + pos: 18.5,-1.5 parent: 1 - - uid: 21448 + - uid: 39722 components: - type: Transform - pos: -12.5,-15.5 + pos: 18.5,-2.5 parent: 1 - - uid: 21449 + - uid: 39723 components: - type: Transform - pos: -12.5,-16.5 + pos: 18.5,-3.5 parent: 1 - - uid: 21450 + - uid: 39724 components: - type: Transform - pos: -12.5,-17.5 + pos: 18.5,-4.5 parent: 1 - - uid: 21451 + - uid: 39725 components: - type: Transform - pos: -12.5,-18.5 + pos: 18.5,-5.5 parent: 1 - - uid: 21452 + - uid: 39726 components: - type: Transform - pos: -12.5,-19.5 + pos: 18.5,-6.5 parent: 1 - - uid: 21453 + - uid: 39727 components: - type: Transform - pos: -12.5,-20.5 + pos: 17.5,-6.5 parent: 1 - - uid: 21454 + - uid: 39728 components: - type: Transform - pos: -12.5,-21.5 + pos: 16.5,-6.5 parent: 1 - - uid: 21455 + - uid: 39729 components: - type: Transform - pos: -11.5,-21.5 + pos: 16.5,-7.5 parent: 1 - - uid: 21456 + - uid: 39730 components: - type: Transform - pos: -13.5,-11.5 + pos: 15.5,-7.5 parent: 1 - - uid: 21457 + - uid: 39744 components: - type: Transform - pos: -14.5,-11.5 + pos: 39.5,-10.5 parent: 1 - - uid: 21458 + - uid: 39745 components: - type: Transform - pos: -15.5,-11.5 + pos: 32.5,-9.5 parent: 1 - - uid: 21459 + - uid: 39746 components: - type: Transform - pos: -16.5,-11.5 + pos: 33.5,-9.5 parent: 1 - - uid: 21460 + - uid: 39747 components: - type: Transform - pos: -16.5,-12.5 + pos: 34.5,-9.5 parent: 1 - - uid: 21461 + - uid: 39748 components: - type: Transform - pos: -16.5,-13.5 + pos: 30.5,-9.5 parent: 1 - - uid: 21462 + - uid: 39749 components: - type: Transform - pos: -16.5,-14.5 + pos: 30.5,-8.5 parent: 1 - - uid: 21463 + - uid: 39752 components: - type: Transform - pos: -16.5,-15.5 + pos: 35.5,-9.5 parent: 1 - - uid: 21464 + - uid: 39753 components: - type: Transform - pos: -16.5,-16.5 + pos: 36.5,-9.5 parent: 1 - - uid: 21582 + - uid: 39754 components: - type: Transform - pos: 17.5,14.5 + pos: 37.5,-9.5 parent: 1 - - uid: 21583 + - uid: 39755 components: - type: Transform - pos: 16.5,14.5 + pos: 38.5,-9.5 parent: 1 - - uid: 21584 + - uid: 39756 components: - type: Transform - pos: 15.5,14.5 + pos: 39.5,-9.5 parent: 1 - - uid: 21585 + - uid: 39757 components: - type: Transform - pos: 14.5,14.5 + pos: 40.5,-9.5 parent: 1 - - uid: 21586 + - uid: 39758 components: - type: Transform - pos: 13.5,14.5 + pos: 41.5,-9.5 parent: 1 - - uid: 21587 + - uid: 39759 components: - type: Transform - pos: 12.5,14.5 + pos: 42.5,-8.5 parent: 1 - - uid: 21588 + - uid: 39760 components: - type: Transform - pos: 12.5,13.5 + pos: 42.5,-7.5 parent: 1 - - uid: 21589 + - uid: 39761 components: - type: Transform - pos: 12.5,12.5 + pos: 42.5,-6.5 parent: 1 - - uid: 21590 + - uid: 39762 components: - type: Transform - pos: 12.5,11.5 + pos: 31.5,-9.5 parent: 1 - - uid: 21591 + - uid: 39763 components: - type: Transform - pos: 12.5,10.5 + pos: 43.5,-6.5 parent: 1 - - uid: 21592 + - uid: 39764 components: - type: Transform - pos: 12.5,9.5 + pos: 40.5,-10.5 parent: 1 - - uid: 21593 + - uid: 39765 components: - type: Transform - pos: 12.5,8.5 + pos: 43.5,-5.5 parent: 1 - - uid: 21594 + - uid: 39766 components: - type: Transform - pos: 12.5,7.5 + pos: 43.5,-4.5 parent: 1 - - uid: 21595 + - uid: 39878 components: - type: Transform - pos: 12.5,6.5 + pos: 59.5,-56.5 parent: 1 - - uid: 21596 + - uid: 39879 components: - type: Transform - pos: 12.5,5.5 + pos: 59.5,-55.5 parent: 1 - - uid: 21597 + - uid: 39880 components: - type: Transform - pos: 12.5,4.5 + pos: 59.5,-54.5 parent: 1 - - uid: 21598 + - uid: 39883 components: - type: Transform - pos: 12.5,3.5 + pos: 58.5,-53.5 parent: 1 - - uid: 21599 + - uid: 39890 components: - type: Transform - pos: 12.5,2.5 + pos: 58.5,-54.5 parent: 1 - - uid: 21600 + - uid: 39963 components: - type: Transform - pos: 12.5,1.5 + pos: -49.5,-59.5 parent: 1 - - uid: 21601 + - uid: 39964 components: - type: Transform - pos: 12.5,0.5 + pos: -48.5,-59.5 parent: 1 - - uid: 21602 + - uid: 39965 components: - type: Transform - pos: 12.5,-0.5 + pos: -47.5,-59.5 parent: 1 - - uid: 21603 + - uid: 39966 components: - type: Transform - pos: 12.5,-1.5 + pos: -46.5,-59.5 parent: 1 - - uid: 21604 + - uid: 39967 components: - type: Transform - pos: 12.5,-2.5 + pos: -45.5,-59.5 parent: 1 - - uid: 21605 + - uid: 39968 components: - type: Transform - pos: 12.5,-3.5 + pos: -45.5,-58.5 parent: 1 - - uid: 21606 + - uid: 39969 components: - type: Transform - pos: 12.5,-4.5 + pos: -45.5,-57.5 parent: 1 - - uid: 21607 + - uid: 39970 components: - type: Transform - pos: 12.5,-5.5 + pos: -45.5,-56.5 parent: 1 - - uid: 21610 + - uid: 39971 components: - type: Transform - pos: 11.5,-7.5 + pos: -45.5,-55.5 parent: 1 - - uid: 21611 + - uid: 39972 components: - type: Transform - pos: 10.5,-7.5 + pos: -45.5,-54.5 parent: 1 - - uid: 21612 + - uid: 39973 components: - type: Transform - pos: 9.5,-7.5 + pos: -45.5,-53.5 parent: 1 - - uid: 21613 + - uid: 39974 components: - type: Transform - pos: 8.5,-7.5 + pos: -45.5,-52.5 parent: 1 - - uid: 21614 + - uid: 39975 components: - type: Transform - pos: 7.5,-7.5 + pos: -45.5,-51.5 parent: 1 - - uid: 21615 + - uid: 39976 components: - type: Transform - pos: 6.5,-7.5 + pos: -44.5,-51.5 parent: 1 - - uid: 21616 + - uid: 39977 components: - type: Transform - pos: 5.5,-7.5 + pos: -43.5,-51.5 parent: 1 - - uid: 21617 + - uid: 39978 components: - type: Transform - pos: 4.5,-7.5 + pos: -42.5,-51.5 parent: 1 - - uid: 21618 + - uid: 39979 components: - type: Transform - pos: 3.5,-7.5 + pos: -41.5,-51.5 parent: 1 - - uid: 21619 + - uid: 39980 components: - type: Transform - pos: 2.5,-7.5 + pos: -40.5,-51.5 parent: 1 - - uid: 21620 + - uid: 39981 components: - type: Transform - pos: 1.5,-7.5 + pos: -39.5,-51.5 parent: 1 - - uid: 21621 + - uid: 39982 components: - type: Transform - pos: 0.5,-7.5 + pos: -23.5,-47.5 parent: 1 - - uid: 21622 + - uid: 39983 components: - type: Transform - pos: 0.5,-8.5 + pos: -22.5,-47.5 parent: 1 - - uid: 21623 + - uid: 39984 components: - type: Transform - pos: 0.5,-9.5 + pos: -21.5,-47.5 parent: 1 - - uid: 21624 + - uid: 39985 components: - type: Transform - pos: 0.5,-10.5 + pos: -24.5,-72.5 parent: 1 - - uid: 21625 + - uid: 39986 components: - type: Transform - pos: 0.5,-11.5 + pos: -25.5,-72.5 parent: 1 - - uid: 21626 + - uid: 39987 components: - type: Transform - pos: 0.5,-12.5 + pos: -25.5,-71.5 parent: 1 - - uid: 21627 + - uid: 39988 components: - type: Transform - pos: 1.5,-12.5 + pos: -25.5,-70.5 parent: 1 - - uid: 21628 + - uid: 39989 components: - type: Transform - pos: 10.5,-8.5 + pos: -24.5,-70.5 parent: 1 - - uid: 21629 + - uid: 39990 components: - type: Transform - pos: 10.5,-9.5 + pos: -23.5,-70.5 parent: 1 - - uid: 21630 + - uid: 39991 components: - type: Transform - pos: 10.5,-10.5 + pos: -22.5,-70.5 parent: 1 - - uid: 21631 + - uid: 39992 components: - type: Transform - pos: 10.5,-11.5 + pos: -21.5,-70.5 parent: 1 - - uid: 21632 + - uid: 39993 components: - type: Transform - pos: 10.5,-12.5 + pos: -20.5,-70.5 parent: 1 - - uid: 21633 + - uid: 39994 components: - type: Transform - pos: 10.5,-13.5 + pos: -19.5,-70.5 parent: 1 - - uid: 21634 + - uid: 39995 components: - type: Transform - pos: 10.5,-14.5 + pos: -18.5,-70.5 parent: 1 - - uid: 21635 + - uid: 39996 components: - type: Transform - pos: 10.5,-15.5 + pos: -17.5,-70.5 parent: 1 - - uid: 21636 + - uid: 39997 components: - type: Transform - pos: 10.5,-16.5 + pos: -16.5,-70.5 parent: 1 - - uid: 21637 + - uid: 39998 components: - type: Transform - pos: 10.5,-17.5 + pos: -16.5,-69.5 parent: 1 - - uid: 21638 + - uid: 39999 components: - type: Transform - pos: 10.5,-18.5 + pos: -16.5,-68.5 parent: 1 - - uid: 21639 + - uid: 40000 components: - type: Transform - pos: 10.5,-19.5 + pos: -16.5,-67.5 parent: 1 - - uid: 21640 + - uid: 40001 components: - type: Transform - pos: 11.5,-19.5 + pos: -16.5,-66.5 parent: 1 - - uid: 21641 + - uid: 40002 components: - type: Transform - pos: 12.5,-19.5 + pos: -16.5,-65.5 parent: 1 - - uid: 21642 + - uid: 40003 components: - type: Transform - pos: 13.5,-19.5 + pos: -16.5,-64.5 parent: 1 - - uid: 21643 + - uid: 40004 components: - type: Transform - pos: 14.5,-19.5 + pos: -16.5,-63.5 parent: 1 - - uid: 21644 + - uid: 40005 components: - type: Transform - pos: 15.5,-19.5 + pos: -16.5,-62.5 parent: 1 - - uid: 21645 + - uid: 40006 components: - type: Transform - pos: 15.5,-18.5 + pos: -16.5,-61.5 parent: 1 - - uid: 21646 + - uid: 40007 components: - type: Transform - pos: 15.5,-17.5 + pos: -16.5,-60.5 parent: 1 - - uid: 21657 + - uid: 40008 components: - type: Transform - pos: 19.5,5.5 + pos: -16.5,-59.5 parent: 1 - - uid: 21658 + - uid: 40009 components: - type: Transform - pos: 20.5,5.5 + pos: -16.5,-58.5 parent: 1 - - uid: 21659 + - uid: 40010 components: - type: Transform - pos: 21.5,5.5 + pos: -16.5,-57.5 parent: 1 - - uid: 21662 + - uid: 40011 components: - type: Transform - pos: 18.5,5.5 + pos: -16.5,-56.5 parent: 1 - - uid: 21663 + - uid: 40012 components: - type: Transform - pos: 18.5,4.5 + pos: -16.5,-55.5 parent: 1 - - uid: 21664 + - uid: 40013 components: - type: Transform - pos: 13.5,-7.5 + pos: -16.5,-54.5 parent: 1 - - uid: 21665 + - uid: 40014 components: - type: Transform - pos: 13.5,-8.5 + pos: -16.5,-53.5 parent: 1 - - uid: 21666 + - uid: 40015 components: - type: Transform - pos: 13.5,-9.5 + pos: -16.5,-52.5 parent: 1 - - uid: 21667 + - uid: 40016 components: - type: Transform - pos: 13.5,-10.5 + pos: -16.5,-51.5 parent: 1 - - uid: 21668 + - uid: 40017 components: - type: Transform - pos: 13.5,-11.5 + pos: -15.5,-51.5 parent: 1 - - uid: 21670 + - uid: 40018 components: - type: Transform - pos: -0.5,-12.5 + pos: -15.5,-50.5 parent: 1 - - uid: 21671 + - uid: 40019 components: - type: Transform - pos: -1.5,-12.5 + pos: -15.5,-49.5 parent: 1 - - uid: 21672 + - uid: 40020 components: - type: Transform - pos: -2.5,-12.5 + pos: -15.5,-48.5 parent: 1 - - uid: 21674 + - uid: 40021 components: - type: Transform - pos: 0.5,-13.5 + pos: -14.5,-48.5 parent: 1 - - uid: 21675 + - uid: 40022 components: - type: Transform - pos: 0.5,-14.5 + pos: -13.5,-48.5 parent: 1 - - uid: 21676 + - uid: 40023 components: - type: Transform - pos: 0.5,-15.5 + pos: -12.5,-48.5 parent: 1 - - uid: 21677 + - uid: 40024 components: - type: Transform - pos: 0.5,-16.5 + pos: -12.5,-49.5 parent: 1 - - uid: 21678 + - uid: 40025 components: - type: Transform - pos: 0.5,-17.5 + pos: -12.5,-50.5 parent: 1 - - uid: 21679 + - uid: 40026 components: - type: Transform - pos: 0.5,-18.5 + pos: -12.5,-51.5 parent: 1 - - uid: 21680 + - uid: 40027 components: - type: Transform - pos: 0.5,-19.5 + pos: -12.5,-52.5 parent: 1 - - uid: 21681 + - uid: 40028 components: - type: Transform - pos: 1.5,-19.5 + pos: -12.5,-53.5 parent: 1 - - uid: 21682 + - uid: 40029 components: - type: Transform - pos: 1.5,-20.5 + pos: -11.5,-53.5 parent: 1 - - uid: 21683 + - uid: 40030 components: - type: Transform - pos: 2.5,-20.5 + pos: -10.5,-53.5 parent: 1 - - uid: 21918 + - uid: 40032 components: - type: Transform - pos: 21.5,8.5 + pos: 26.5,-45.5 parent: 1 - - uid: 21919 + - uid: 40033 components: - type: Transform - pos: 20.5,8.5 + pos: 27.5,-45.5 parent: 1 - - uid: 21920 + - uid: 40034 components: - type: Transform - pos: 20.5,9.5 + pos: 28.5,-45.5 parent: 1 - - uid: 21943 + - uid: 40035 components: - type: Transform - pos: 19.5,8.5 + pos: 29.5,-45.5 parent: 1 - - uid: 22020 + - uid: 40036 components: - type: Transform - pos: 8.5,-37.5 + pos: 30.5,-45.5 parent: 1 - - uid: 22023 + - uid: 40037 components: - type: Transform - pos: 6.5,-38.5 + pos: 31.5,-45.5 parent: 1 - - uid: 22024 + - uid: 40038 components: - type: Transform - pos: 5.5,-38.5 + pos: 32.5,-45.5 parent: 1 - - uid: 22025 + - uid: 40039 components: - type: Transform - pos: 4.5,-38.5 + pos: 33.5,-45.5 parent: 1 - - uid: 22026 + - uid: 40040 components: - type: Transform - pos: 3.5,-38.5 + pos: 33.5,-44.5 parent: 1 - - uid: 22027 + - uid: 40043 components: - type: Transform - pos: 2.5,-38.5 + pos: 35.5,-44.5 parent: 1 - - uid: 22028 + - uid: 40044 components: - type: Transform - pos: 2.5,-37.5 + pos: 36.5,-44.5 parent: 1 - - uid: 22029 + - uid: 40045 components: - type: Transform - pos: 2.5,-36.5 + pos: 37.5,-44.5 parent: 1 - - uid: 22030 + - uid: 40046 components: - type: Transform - pos: 2.5,-35.5 + pos: 38.5,-44.5 parent: 1 - - uid: 22031 + - uid: 40047 components: - type: Transform - pos: 2.5,-34.5 + pos: 39.5,-44.5 parent: 1 - - uid: 22032 + - uid: 40048 components: - type: Transform - pos: 2.5,-33.5 + pos: 40.5,-44.5 parent: 1 - - uid: 22033 + - uid: 40050 components: - type: Transform - pos: 1.5,-33.5 + pos: 43.5,-44.5 parent: 1 - - uid: 22034 + - uid: 40051 components: - type: Transform - pos: 0.5,-33.5 + pos: 46.5,-44.5 parent: 1 - - uid: 22703 + - uid: 40052 components: - type: Transform - pos: -24.5,-45.5 + pos: 46.5,-41.5 parent: 1 - - uid: 23002 + - uid: 40053 components: - type: Transform - pos: -97.5,-9.5 + pos: 46.5,-40.5 parent: 1 - - uid: 23053 + - uid: 40054 components: - type: Transform - pos: -96.5,-10.5 + pos: 47.5,-40.5 parent: 1 - - uid: 23064 + - uid: 40055 components: - type: Transform - pos: -91.5,-35.5 + pos: 48.5,-40.5 parent: 1 - - uid: 23456 + - uid: 40056 components: - type: Transform - pos: 88.5,28.5 + pos: 49.5,-40.5 parent: 1 - - uid: 23457 + - uid: 40057 components: - type: Transform - pos: 88.5,27.5 + pos: 50.5,-40.5 parent: 1 - - uid: 23462 + - uid: 40058 components: - type: Transform - pos: 87.5,26.5 + pos: 51.5,-40.5 parent: 1 - - uid: 23463 + - uid: 40059 components: - type: Transform - pos: 87.5,25.5 + pos: 52.5,-40.5 parent: 1 - - uid: 23464 + - uid: 40060 components: - type: Transform - pos: 88.5,26.5 + pos: 53.5,-40.5 parent: 1 - - uid: 23465 + - uid: 40061 components: - type: Transform - pos: 88.5,25.5 + pos: 54.5,-40.5 parent: 1 - - uid: 23842 + - uid: 40062 components: - type: Transform - pos: -80.5,6.5 + pos: 55.5,-40.5 parent: 1 - - uid: 24416 + - uid: 40063 components: - type: Transform - pos: -85.5,-37.5 + pos: 56.5,-40.5 parent: 1 - - uid: 24426 + - uid: 40064 components: - type: Transform - pos: -97.5,-10.5 + pos: 57.5,-40.5 parent: 1 - - uid: 24610 + - uid: 40065 components: - type: Transform - pos: -50.5,-75.5 + pos: 58.5,-40.5 parent: 1 - - uid: 24611 + - uid: 40066 components: - type: Transform - pos: -50.5,-74.5 + pos: 58.5,-39.5 parent: 1 - - uid: 24612 + - uid: 40067 components: - type: Transform - pos: -51.5,-74.5 + pos: 58.5,-38.5 parent: 1 - - uid: 24613 + - uid: 40072 components: - type: Transform - pos: -52.5,-74.5 + pos: -12.5,-54.5 parent: 1 - - uid: 24614 + - uid: 40073 components: - type: Transform - pos: -53.5,-70.5 + pos: -12.5,-55.5 parent: 1 - - uid: 24615 + - uid: 40074 components: - type: Transform - pos: -53.5,-68.5 + pos: -12.5,-56.5 parent: 1 - - uid: 24616 + - uid: 40075 components: - type: Transform - pos: -53.5,-67.5 + pos: -12.5,-57.5 parent: 1 - - uid: 24617 + - uid: 40076 components: - type: Transform - pos: -53.5,-65.5 + pos: -12.5,-58.5 parent: 1 - - uid: 24618 + - uid: 40077 components: - type: Transform - pos: -53.5,-66.5 + pos: -12.5,-59.5 parent: 1 - - uid: 24619 + - uid: 40078 components: - type: Transform - pos: -51.5,-64.5 + pos: -10.5,-59.5 parent: 1 - - uid: 24620 + - uid: 40079 components: - type: Transform - pos: -50.5,-64.5 + pos: -9.5,-59.5 parent: 1 - - uid: 24621 + - uid: 40080 components: - type: Transform - pos: -49.5,-64.5 + pos: -8.5,-59.5 parent: 1 - - uid: 24622 + - uid: 40081 components: - type: Transform - pos: -49.5,-63.5 + pos: -7.5,-59.5 parent: 1 - - uid: 24623 + - uid: 40082 components: - type: Transform - pos: -53.5,-64.5 + pos: -6.5,-59.5 parent: 1 - - uid: 24624 + - uid: 40083 components: - type: Transform - pos: -52.5,-64.5 + pos: -5.5,-59.5 parent: 1 - - uid: 24626 + - uid: 40084 components: - type: Transform - pos: -43.5,-75.5 + pos: -4.5,-59.5 parent: 1 - - uid: 24745 + - uid: 40085 components: - type: Transform - pos: -85.5,-36.5 + pos: -3.5,-59.5 parent: 1 - - uid: 24757 + - uid: 40086 components: - type: Transform - pos: -94.5,-61.5 + pos: -2.5,-59.5 parent: 1 - - uid: 24758 + - uid: 40087 components: - type: Transform - pos: -76.5,-54.5 + pos: -1.5,-59.5 parent: 1 - - uid: 24759 + - uid: 40088 components: - type: Transform - pos: -77.5,-58.5 + pos: -0.5,-59.5 parent: 1 - - uid: 24760 + - uid: 40089 components: - type: Transform - pos: -79.5,-58.5 + pos: 0.5,-59.5 parent: 1 - - uid: 24761 + - uid: 40090 components: - type: Transform - pos: -93.5,-61.5 + pos: 1.5,-59.5 parent: 1 - - uid: 24764 + - uid: 40091 components: - type: Transform - pos: -76.5,-57.5 + pos: 2.5,-59.5 parent: 1 - - uid: 25982 + - uid: 40092 components: - type: Transform - pos: -107.5,-7.5 + pos: 3.5,-59.5 parent: 1 - - uid: 28614 + - uid: 40093 components: - type: Transform - pos: -45.5,-75.5 + pos: 3.5,-58.5 parent: 1 - - uid: 29532 + - uid: 40094 components: - type: Transform - pos: -44.5,-75.5 + pos: 3.5,-57.5 parent: 1 - - uid: 29533 + - uid: 40096 components: - type: Transform - pos: -46.5,-75.5 + pos: 4.5,-59.5 parent: 1 - - uid: 29534 + - uid: 40097 components: - type: Transform - pos: -41.5,-75.5 + pos: 5.5,-59.5 parent: 1 - - uid: 29535 + - uid: 40098 components: - type: Transform - pos: -39.5,-75.5 + pos: 6.5,-59.5 parent: 1 - - uid: 29536 + - uid: 40099 components: - type: Transform - pos: -42.5,-75.5 + pos: 7.5,-59.5 parent: 1 - - uid: 29537 + - uid: 40100 components: - type: Transform - pos: -38.5,-75.5 + pos: 8.5,-59.5 parent: 1 - - uid: 29898 + - uid: 40101 components: - type: Transform - pos: -1.5,-32.5 + pos: 9.5,-59.5 parent: 1 - - uid: 30377 + - uid: 40102 components: - type: Transform - pos: -38.5,-74.5 + pos: 10.5,-59.5 parent: 1 - - uid: 32385 + - uid: 40103 components: - type: Transform - pos: -37.5,-74.5 + pos: 11.5,-59.5 parent: 1 - - uid: 32386 + - uid: 40104 components: - type: Transform - pos: -36.5,-74.5 + pos: 12.5,-59.5 parent: 1 - - uid: 32392 + - uid: 40105 components: - type: Transform - pos: -35.5,-74.5 + pos: 13.5,-59.5 parent: 1 - - uid: 32393 + - uid: 40106 components: - type: Transform - pos: -34.5,-74.5 + pos: 14.5,-59.5 parent: 1 - - uid: 32394 + - uid: 40107 components: - type: Transform - pos: -34.5,-72.5 + pos: 15.5,-59.5 parent: 1 - - uid: 32395 + - uid: 40108 components: - type: Transform - pos: -34.5,-71.5 + pos: 16.5,-59.5 parent: 1 - - uid: 32396 + - uid: 40109 components: - type: Transform - pos: -33.5,-71.5 + pos: 17.5,-59.5 parent: 1 - - uid: 32397 + - uid: 40110 components: - type: Transform - pos: -32.5,-71.5 + pos: 18.5,-59.5 parent: 1 - - uid: 32398 + - uid: 40111 components: - type: Transform - pos: -31.5,-71.5 + pos: 19.5,-59.5 parent: 1 - - uid: 32400 + - uid: 40112 components: - type: Transform - pos: -11.5,-59.5 + pos: 20.5,-59.5 parent: 1 - - uid: 32413 + - uid: 40113 components: - type: Transform - pos: 20.5,-45.5 + pos: 21.5,-59.5 parent: 1 - - uid: 32414 + - uid: 40114 components: - type: Transform - pos: 21.5,-45.5 + pos: 22.5,-59.5 parent: 1 - - uid: 32415 + - uid: 40115 components: - type: Transform - pos: 22.5,-45.5 + pos: 23.5,-59.5 parent: 1 - - uid: 32416 + - uid: 40116 components: - type: Transform - pos: 23.5,-45.5 + pos: 24.5,-59.5 parent: 1 - - uid: 32417 + - uid: 40117 components: - type: Transform - pos: 15.5,-45.5 + pos: 25.5,-59.5 parent: 1 - - uid: 32418 + - uid: 40118 components: - type: Transform - pos: 16.5,-45.5 + pos: 26.5,-59.5 parent: 1 - - uid: 32419 + - uid: 40119 components: - type: Transform - pos: 24.5,-45.5 + pos: 27.5,-59.5 parent: 1 - - uid: 32420 + - uid: 40120 components: - type: Transform - pos: 25.5,-45.5 + pos: 28.5,-59.5 parent: 1 - - uid: 32421 + - uid: 40121 components: - type: Transform - pos: 34.5,-44.5 + pos: 29.5,-59.5 parent: 1 - - uid: 32423 + - uid: 40122 components: - type: Transform - pos: -47.5,-75.5 + pos: 30.5,-59.5 parent: 1 - - uid: 32424 + - uid: 40123 components: - type: Transform - pos: -48.5,-75.5 + pos: 31.5,-59.5 parent: 1 - - uid: 32425 + - uid: 40124 components: - type: Transform - pos: -49.5,-75.5 + pos: 32.5,-59.5 parent: 1 - - uid: 32426 + - uid: 40125 components: - type: Transform - pos: -53.5,-74.5 + pos: 33.5,-59.5 parent: 1 - - uid: 32427 + - uid: 40126 components: - type: Transform - pos: -53.5,-73.5 + pos: 34.5,-59.5 parent: 1 - - uid: 32428 + - uid: 40127 components: - type: Transform - pos: -53.5,-72.5 + pos: 35.5,-59.5 parent: 1 - - uid: 32429 + - uid: 40128 components: - type: Transform - pos: -53.5,-71.5 + pos: 36.5,-59.5 parent: 1 - - uid: 32430 + - uid: 40129 components: - type: Transform - pos: -53.5,-69.5 + pos: 37.5,-59.5 parent: 1 - - uid: 32614 + - uid: 40130 components: - type: Transform - pos: -43.5,12.5 + pos: 37.5,-58.5 parent: 1 - - uid: 32635 + - uid: 40131 components: - type: Transform - pos: -44.5,12.5 + pos: 37.5,-57.5 parent: 1 - - uid: 32636 + - uid: 40132 components: - type: Transform - pos: -44.5,13.5 + pos: 37.5,-56.5 parent: 1 - - uid: 32637 + - uid: 40133 components: - type: Transform - pos: -45.5,13.5 + pos: 37.5,-55.5 parent: 1 - - uid: 32735 + - uid: 40134 components: - type: Transform - pos: -113.5,-37.5 + pos: 37.5,-54.5 parent: 1 - - uid: 32736 + - uid: 40135 components: - type: Transform - pos: -112.5,-37.5 + pos: 37.5,-53.5 parent: 1 - - uid: 32737 + - uid: 40136 components: - type: Transform - pos: -111.5,-37.5 + pos: 36.5,-53.5 parent: 1 - - uid: 32738 + - uid: 40137 components: - type: Transform - pos: -111.5,-36.5 + pos: 36.5,-52.5 parent: 1 - - uid: 32739 + - uid: 40138 components: - type: Transform - pos: -110.5,-36.5 + pos: 38.5,-59.5 parent: 1 - - uid: 32740 + - uid: 40139 components: - type: Transform - pos: -109.5,-36.5 + pos: 39.5,-59.5 parent: 1 - - uid: 32741 + - uid: 40140 components: - type: Transform - pos: -108.5,-36.5 + pos: 40.5,-59.5 parent: 1 - - uid: 33525 + - uid: 40141 components: - type: Transform - pos: -78.5,6.5 + pos: 41.5,-59.5 parent: 1 - - uid: 33841 + - uid: 40142 components: - type: Transform - pos: -104.5,-29.5 + pos: 42.5,-59.5 parent: 1 - - uid: 33843 + - uid: 40143 components: - type: Transform - pos: -105.5,-20.5 + pos: 43.5,-59.5 parent: 1 - - uid: 33851 + - uid: 40144 components: - type: Transform - pos: -90.5,-58.5 + pos: 44.5,-59.5 parent: 1 - - uid: 33852 + - uid: 40145 components: - type: Transform - pos: -88.5,-58.5 + pos: 45.5,-59.5 parent: 1 - - uid: 34133 + - uid: 40146 components: - type: Transform - pos: -86.5,-58.5 + pos: 46.5,-59.5 parent: 1 - - uid: 34134 + - uid: 40147 components: - type: Transform - pos: -84.5,-58.5 + pos: 46.5,-58.5 parent: 1 - - uid: 34135 + - uid: 40148 components: - type: Transform - pos: -82.5,-58.5 + pos: 46.5,-57.5 parent: 1 - - uid: 34181 + - uid: 40149 components: - type: Transform - pos: -80.5,-58.5 + pos: 46.5,-56.5 parent: 1 - - uid: 34764 + - uid: 40150 components: - type: Transform - pos: -75.5,-54.5 + pos: 47.5,-56.5 parent: 1 - - uid: 36470 + - uid: 40151 components: - type: Transform - pos: -77.5,6.5 + pos: 48.5,-56.5 parent: 1 - - uid: 36473 + - uid: 40815 components: - type: Transform - pos: -76.5,6.5 + pos: 44.5,-4.5 parent: 1 - - uid: 36475 + - uid: 40821 components: - type: Transform - pos: -75.5,6.5 + pos: 44.5,-3.5 parent: 1 - - uid: 38666 + - uid: 40917 components: - type: Transform - pos: -44.5,39.5 + pos: 41.5,-8.5 parent: 1 - - uid: 38667 + - uid: 41879 components: - type: Transform - pos: -44.5,38.5 + pos: 23.5,5.5 parent: 1 - - uid: 38668 + - uid: 41880 components: - type: Transform - pos: -44.5,37.5 + pos: 24.5,5.5 parent: 1 - - uid: 38669 + - uid: 41881 components: - type: Transform - pos: -44.5,36.5 + pos: 24.5,6.5 parent: 1 - - uid: 38670 + - uid: 41882 components: - type: Transform - pos: -43.5,36.5 + pos: 24.5,7.5 parent: 1 - - uid: 38671 + - uid: 41883 components: - type: Transform - pos: -42.5,36.5 + pos: 24.5,8.5 parent: 1 - - uid: 38672 + - uid: 41884 components: - type: Transform - pos: -41.5,36.5 + pos: 23.5,8.5 parent: 1 - - uid: 38673 + - uid: 41885 components: - type: Transform - pos: -40.5,36.5 + pos: 22.5,8.5 parent: 1 - - uid: 38674 + - uid: 42427 components: - type: Transform - pos: -39.5,36.5 + pos: -24.5,-10.5 parent: 1 - - uid: 38675 + - uid: 42429 components: - type: Transform - pos: -38.5,36.5 + pos: -27.5,2.5 parent: 1 - - uid: 38676 + - uid: 42430 components: - type: Transform - pos: -37.5,36.5 + pos: -26.5,2.5 parent: 1 - - uid: 38677 + - uid: 42431 components: - type: Transform - pos: -36.5,36.5 + pos: -25.5,2.5 parent: 1 - - uid: 38678 + - uid: 42432 components: - type: Transform - pos: -35.5,36.5 + pos: -25.5,3.5 parent: 1 - - uid: 38679 + - uid: 42433 components: - type: Transform - pos: -34.5,36.5 + pos: -25.5,4.5 parent: 1 - - uid: 38680 + - uid: 42434 components: - type: Transform - pos: -33.5,36.5 + pos: -25.5,5.5 parent: 1 - - uid: 38681 + - uid: 42435 components: - type: Transform - pos: -32.5,36.5 + pos: -26.5,5.5 parent: 1 - - uid: 38682 + - uid: 42436 components: - type: Transform - pos: -31.5,36.5 + pos: -27.5,5.5 parent: 1 - - uid: 38683 +- proto: CableMVStack + entities: + - uid: 3219 components: - type: Transform - pos: -30.5,36.5 + pos: -120.43417,-23.48157 parent: 1 - - uid: 38684 + - uid: 8847 components: - type: Transform - pos: -29.5,36.5 + rot: 1.5707963267948966 rad + pos: -99.49287,-1.3044977 parent: 1 - - uid: 38685 +- proto: CableMVStack1 + entities: + - uid: 36358 components: - type: Transform - pos: -28.5,36.5 + rot: 1.5707963267948966 rad + pos: -133.8804,-47.437923 parent: 1 - - uid: 38686 + - uid: 36359 components: - type: Transform - pos: -27.5,36.5 + rot: 1.5707963267948966 rad + pos: -134.3429,-47.525486 parent: 1 - - uid: 38687 +- proto: CableTerminal + entities: + - uid: 5881 components: - type: Transform - pos: -26.5,36.5 + rot: 3.141592653589793 rad + pos: -110.5,-22.5 parent: 1 - - uid: 38688 + - uid: 6730 components: - type: Transform - pos: -25.5,36.5 + rot: -1.5707963267948966 rad + pos: -63.5,-42.5 parent: 1 - - uid: 38689 + - uid: 8280 components: - type: Transform - pos: -25.5,37.5 + rot: 1.5707963267948966 rad + pos: -109.5,-0.5 parent: 1 - - uid: 38690 + - uid: 8973 components: - type: Transform - pos: -25.5,38.5 + rot: 3.141592653589793 rad + pos: -112.5,-22.5 parent: 1 - - uid: 38691 + - uid: 10919 components: - type: Transform - pos: -24.5,36.5 + pos: 61.5,-55.5 parent: 1 - - uid: 38692 + - uid: 13298 components: - type: Transform - pos: -23.5,36.5 + rot: 3.141592653589793 rad + pos: -111.5,-22.5 parent: 1 - - uid: 38693 + - uid: 14972 components: - type: Transform - pos: -22.5,36.5 + rot: -1.5707963267948966 rad + pos: 16.5,18.5 parent: 1 - - uid: 38694 + - uid: 16251 components: - type: Transform - pos: -21.5,36.5 + pos: -111.5,8.5 parent: 1 - - uid: 38695 + - uid: 33523 components: - type: Transform - pos: -20.5,36.5 + rot: 3.141592653589793 rad + pos: -62.5,-34.5 parent: 1 - - uid: 38696 + - uid: 34246 components: - type: Transform - pos: -19.5,36.5 + rot: 1.5707963267948966 rad + pos: -146.5,-39.5 parent: 1 - - uid: 38697 + - uid: 35608 components: - type: Transform - pos: -18.5,36.5 + rot: 1.5707963267948966 rad + pos: -115.5,-84.5 parent: 1 - - uid: 38698 + - uid: 42454 components: - type: Transform - pos: -17.5,36.5 + rot: 3.141592653589793 rad + pos: -113.5,-22.5 parent: 1 - - uid: 38699 +- proto: CandlePurple + entities: + - uid: 9825 components: - type: Transform - pos: -17.5,35.5 + pos: -24.965246,-53.26391 parent: 1 - - uid: 38700 + - uid: 36501 components: - type: Transform - pos: -17.5,34.5 + pos: -118.35001,-59.475918 parent: 1 - - uid: 38701 +- proto: CandleRed + entities: + - uid: 33543 components: - type: Transform - pos: -17.5,33.5 + pos: -26.379585,-53.50056 parent: 1 - - uid: 38702 +- proto: CandleSmall + entities: + - uid: 33544 components: - type: Transform - pos: -17.5,32.5 + pos: -37.274788,-7.318153 parent: 1 - - uid: 38703 + - uid: 33545 components: - type: Transform - pos: -17.5,31.5 + pos: -36.88937,-4.316068 parent: 1 - - uid: 38704 + - uid: 33546 components: - type: Transform - pos: -17.5,30.5 + pos: -37.462288,-1.2305918 parent: 1 - - uid: 38705 + - uid: 33547 components: - type: Transform - pos: -17.5,29.5 + pos: -31.3307,-5.6101155 parent: 1 - - uid: 38706 +- proto: CandyBowl + entities: + - uid: 42060 components: - type: Transform - pos: -17.5,28.5 + pos: -75.52153,-18.38139 parent: 1 - - uid: 38707 +- proto: CannabisSeeds + entities: + - uid: 1419 components: - type: Transform - pos: -17.5,27.5 - parent: 1 - - uid: 38708 + parent: 1287 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 31059 components: - type: Transform - pos: -17.5,26.5 - parent: 1 - - uid: 38711 + parent: 31058 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 33556 components: - type: Transform - pos: -16.5,36.5 + pos: -81.48045,-48.51143 parent: 1 - - uid: 38712 +- proto: CapacitorStockPart + entities: + - uid: 7070 components: - type: Transform - pos: -15.5,36.5 + rot: -1.5707963267948966 rad + pos: -38.589684,-61.01759 parent: 1 - - uid: 38713 + - uid: 7076 components: - type: Transform - pos: -14.5,36.5 + pos: -38.290207,-61.00456 parent: 1 - - uid: 38714 + - uid: 28753 components: - type: Transform - pos: -13.5,36.5 + pos: 15.5063925,-26.13142 parent: 1 - - uid: 38715 + - uid: 28754 components: - type: Transform - pos: -12.5,36.5 + pos: 15.610559,-26.444138 parent: 1 - - uid: 38716 + - uid: 30384 components: - type: Transform - pos: -11.5,36.5 + rot: -1.5707963267948966 rad + pos: -24.50176,-74.0715 parent: 1 - - uid: 38717 + - uid: 30878 components: - type: Transform - pos: -10.5,36.5 + pos: -58.585377,-80.38974 parent: 1 - - uid: 38718 + - uid: 31188 components: - type: Transform - pos: -9.5,36.5 + pos: 17.789978,16.509428 parent: 1 - - uid: 38719 + - uid: 31189 components: - type: Transform - pos: -8.5,36.5 + pos: 17.633728,16.446884 parent: 1 - - uid: 38720 + - uid: 32102 components: - type: Transform - pos: -7.5,36.5 + pos: -22.391853,13.492632 parent: 1 - - uid: 38721 +- proto: CarbonDioxideCanister + entities: + - uid: 34089 components: - type: Transform - pos: -6.5,36.5 + pos: -111.5,-55.5 parent: 1 - - uid: 38722 +- proto: Carpet + entities: + - uid: 2340 components: - type: Transform - pos: -5.5,36.5 + pos: 23.5,-48.5 parent: 1 - - uid: 38723 + - uid: 23714 components: - type: Transform - pos: -4.5,36.5 + pos: 22.5,-48.5 parent: 1 - - uid: 38724 + - uid: 23715 components: - type: Transform - pos: -3.5,36.5 + pos: 21.5,-51.5 parent: 1 - - uid: 38725 + - uid: 23716 components: - type: Transform - pos: -2.5,36.5 + pos: 21.5,-50.5 parent: 1 - - uid: 38726 + - uid: 23719 components: - type: Transform - pos: -1.5,36.5 + pos: 22.5,-49.5 parent: 1 - - uid: 38727 + - uid: 23720 components: - type: Transform - pos: -0.5,36.5 + pos: 23.5,-50.5 parent: 1 - - uid: 38728 + - uid: 23721 components: - type: Transform - pos: 0.5,36.5 + pos: 23.5,-51.5 parent: 1 - - uid: 38729 + - uid: 23722 components: - type: Transform - pos: 1.5,36.5 + pos: 20.5,-51.5 parent: 1 - - uid: 38730 + - uid: 23723 components: - type: Transform - pos: 1.5,37.5 + pos: 20.5,-49.5 parent: 1 - - uid: 38731 + - uid: 23724 components: - type: Transform - pos: 1.5,38.5 + pos: 23.5,-49.5 parent: 1 - - uid: 38732 + - uid: 23725 components: - type: Transform - pos: 1.5,39.5 + pos: 22.5,-51.5 parent: 1 - - uid: 38733 + - uid: 23726 components: - type: Transform - pos: -11.5,35.5 + pos: 20.5,-48.5 parent: 1 - - uid: 38734 + - uid: 23727 components: - type: Transform - pos: -11.5,34.5 + pos: 21.5,-49.5 parent: 1 - - uid: 38897 + - uid: 23728 components: - type: Transform - pos: 19.5,-45.5 + pos: 20.5,-50.5 parent: 1 - - uid: 38899 + - uid: 23729 components: - type: Transform - pos: 17.5,-45.5 + pos: 21.5,-48.5 parent: 1 - - uid: 38903 + - uid: 23730 components: - type: Transform - pos: 14.5,-45.5 + pos: 22.5,-50.5 parent: 1 - - uid: 38914 + - uid: 36773 components: - type: Transform - pos: 14.5,-44.5 + rot: 3.141592653589793 rad + pos: 36.5,-29.5 parent: 1 - - uid: 38916 + - uid: 36774 components: - type: Transform - pos: 14.5,-43.5 + rot: 3.141592653589793 rad + pos: 36.5,-30.5 parent: 1 - - uid: 39056 + - uid: 36775 components: - type: Transform - pos: -105.5,-18.5 + rot: 3.141592653589793 rad + pos: 36.5,-31.5 parent: 1 - - uid: 39057 + - uid: 36776 components: - type: Transform - pos: -104.5,-18.5 + rot: 3.141592653589793 rad + pos: 37.5,-29.5 parent: 1 - - uid: 39058 + - uid: 36777 components: - type: Transform - pos: -103.5,-18.5 + rot: 3.141592653589793 rad + pos: 37.5,-30.5 parent: 1 - - uid: 39059 + - uid: 36778 components: - type: Transform - pos: -103.5,-19.5 + rot: 3.141592653589793 rad + pos: 37.5,-31.5 parent: 1 - - uid: 39073 + - uid: 36779 components: - type: Transform - pos: -106.5,-26.5 + rot: 3.141592653589793 rad + pos: 38.5,-29.5 parent: 1 - - uid: 39074 + - uid: 36780 components: - type: Transform - pos: -107.5,-26.5 + rot: 3.141592653589793 rad + pos: 38.5,-30.5 parent: 1 - - uid: 39075 + - uid: 36781 components: - type: Transform - pos: -108.5,-26.5 + rot: 3.141592653589793 rad + pos: 38.5,-31.5 parent: 1 - - uid: 39076 +- proto: CarpetBlack + entities: + - uid: 6931 components: - type: Transform - pos: -109.5,-26.5 + pos: -19.5,-35.5 parent: 1 - - uid: 39077 + - uid: 6933 components: - type: Transform - pos: -110.5,-26.5 + pos: -22.5,-31.5 parent: 1 - - uid: 39078 + - uid: 6934 components: - type: Transform - pos: -111.5,-26.5 + pos: -22.5,-33.5 parent: 1 - - uid: 39079 + - uid: 7013 components: - type: Transform - pos: -112.5,-26.5 + pos: -20.5,-31.5 parent: 1 - - uid: 39080 + - uid: 7014 components: - type: Transform - pos: -113.5,-26.5 + pos: -21.5,-34.5 parent: 1 - - uid: 39081 + - uid: 7015 components: - type: Transform - pos: -114.5,-26.5 + pos: -21.5,-33.5 parent: 1 - - uid: 39082 + - uid: 7016 components: - type: Transform - pos: -114.5,-25.5 + pos: -21.5,-32.5 parent: 1 - - uid: 39083 + - uid: 7017 components: - type: Transform - pos: -114.5,-24.5 + pos: -20.5,-35.5 parent: 1 - - uid: 39084 + - uid: 7018 components: - type: Transform - pos: -114.5,-23.5 + pos: -20.5,-32.5 parent: 1 - - uid: 39157 + - uid: 7019 components: - type: Transform - pos: -59.5,-41.5 + pos: -22.5,-32.5 parent: 1 - - uid: 39158 + - uid: 7022 components: - type: Transform - pos: -59.5,-40.5 + pos: -21.5,-35.5 parent: 1 - - uid: 39159 + - uid: 7023 components: - type: Transform - pos: -59.5,-39.5 + pos: -22.5,-34.5 parent: 1 - - uid: 39160 + - uid: 7024 components: - type: Transform - pos: -59.5,-38.5 + pos: -20.5,-33.5 parent: 1 - - uid: 39161 + - uid: 7025 components: - type: Transform - pos: -60.5,-38.5 + pos: -21.5,-31.5 parent: 1 - - uid: 39162 + - uid: 7026 components: - type: Transform - pos: -61.5,-38.5 + pos: -19.5,-32.5 parent: 1 - - uid: 39163 + - uid: 7027 components: - type: Transform - pos: -62.5,-38.5 + pos: -22.5,-35.5 parent: 1 - - uid: 39164 + - uid: 7028 components: - type: Transform - pos: -63.5,-38.5 + pos: -19.5,-31.5 parent: 1 - - uid: 39165 + - uid: 7029 components: - type: Transform - pos: -63.5,-39.5 + pos: -20.5,-34.5 parent: 1 - - uid: 39166 + - uid: 7030 components: - type: Transform - pos: -63.5,-40.5 + pos: -19.5,-31.5 parent: 1 - - uid: 39167 + - uid: 7031 components: - type: Transform - pos: -62.5,-40.5 + pos: -19.5,-33.5 parent: 1 - - uid: 39172 + - uid: 7032 components: - type: Transform - pos: -139.5,-39.5 + pos: -19.5,-34.5 parent: 1 - - uid: 39173 + - uid: 9578 components: - type: Transform - pos: -140.5,-39.5 + pos: -101.5,-26.5 parent: 1 - - uid: 39174 + - uid: 9579 components: - type: Transform - pos: -140.5,-40.5 + pos: -101.5,-25.5 parent: 1 - - uid: 39318 + - uid: 9604 components: - type: Transform - pos: -99.5,-76.5 + pos: -101.5,-27.5 parent: 1 - - uid: 39319 + - uid: 9665 components: - type: Transform - pos: -99.5,-77.5 + pos: -100.5,-25.5 parent: 1 - - uid: 39320 + - uid: 9723 components: - type: Transform - pos: -98.5,-77.5 + pos: -100.5,-27.5 parent: 1 - - uid: 39321 + - uid: 9724 components: - type: Transform - pos: -97.5,-77.5 + pos: -99.5,-25.5 parent: 1 - - uid: 39322 + - uid: 9725 components: - type: Transform - pos: -97.5,-78.5 + pos: -99.5,-26.5 parent: 1 - - uid: 39323 + - uid: 9726 components: - type: Transform - pos: -97.5,-79.5 + pos: -99.5,-27.5 parent: 1 - - uid: 39324 + - uid: 11846 components: - type: Transform - pos: -97.5,-80.5 + pos: -91.5,-17.5 parent: 1 - - uid: 39325 + - uid: 12472 components: - type: Transform - pos: -96.5,-80.5 + pos: -34.5,1.5 parent: 1 - - uid: 39326 + - uid: 12473 components: - type: Transform - pos: -95.5,-80.5 + pos: -32.5,-2.5 parent: 1 - - uid: 39327 + - uid: 12474 components: - type: Transform - pos: -94.5,-80.5 + pos: -33.5,-3.5 parent: 1 - - uid: 39328 + - uid: 12475 components: - type: Transform - pos: -93.5,-80.5 + pos: -33.5,-0.5 parent: 1 - - uid: 39329 + - uid: 12476 components: - type: Transform - pos: -92.5,-80.5 + pos: -34.5,-1.5 parent: 1 - - uid: 39330 + - uid: 12477 components: - type: Transform - pos: -91.5,-80.5 + pos: -34.5,-7.5 parent: 1 - - uid: 39331 + - uid: 12478 components: - type: Transform - pos: -91.5,-79.5 + pos: -34.5,-6.5 parent: 1 - - uid: 39332 + - uid: 12479 components: - type: Transform - pos: -91.5,-78.5 + pos: -34.5,-5.5 parent: 1 - - uid: 39333 + - uid: 12480 components: - type: Transform - pos: -91.5,-77.5 + pos: -34.5,-4.5 parent: 1 - - uid: 39334 + - uid: 12482 components: - type: Transform - pos: -91.5,-76.5 + pos: -32.5,-1.5 parent: 1 - - uid: 39335 + - uid: 12483 components: - type: Transform - pos: -91.5,-75.5 + pos: -32.5,-0.5 parent: 1 - - uid: 39336 + - uid: 12484 components: - type: Transform - pos: -91.5,-74.5 + pos: -34.5,-3.5 parent: 1 - - uid: 39337 + - uid: 12485 components: - type: Transform - pos: -91.5,-73.5 + pos: -34.5,-2.5 parent: 1 - - uid: 39338 + - uid: 12486 components: - type: Transform - pos: -91.5,-72.5 + pos: -33.5,-4.5 parent: 1 - - uid: 39339 + - uid: 12487 components: - type: Transform - pos: -91.5,-71.5 + pos: -33.5,-5.5 parent: 1 - - uid: 39340 + - uid: 12488 components: - type: Transform - pos: -91.5,-70.5 + pos: -33.5,-6.5 parent: 1 - - uid: 39341 + - uid: 12489 components: - type: Transform - pos: -91.5,-69.5 + pos: -33.5,-7.5 parent: 1 - - uid: 39342 + - uid: 12490 components: - type: Transform - pos: -91.5,-68.5 + pos: -34.5,-8.5 parent: 1 - - uid: 39343 + - uid: 12491 components: - type: Transform - pos: -91.5,-67.5 + pos: -35.5,-0.5 parent: 1 - - uid: 39344 + - uid: 12492 components: - type: Transform - pos: -91.5,-66.5 + pos: -35.5,-1.5 parent: 1 - - uid: 39345 + - uid: 12493 components: - type: Transform - pos: -91.5,-65.5 + pos: -35.5,-2.5 parent: 1 - - uid: 39346 + - uid: 12494 components: - type: Transform - pos: -91.5,-64.5 + pos: -35.5,-3.5 parent: 1 - - uid: 39347 + - uid: 12495 components: - type: Transform - pos: -91.5,-63.5 + pos: -35.5,-4.5 parent: 1 - - uid: 39348 + - uid: 12496 components: - type: Transform - pos: -91.5,-62.5 + pos: -35.5,-5.5 parent: 1 - - uid: 39349 + - uid: 12497 components: - type: Transform - pos: -91.5,-61.5 + pos: -35.5,-6.5 parent: 1 - - uid: 39350 + - uid: 12498 components: - type: Transform - pos: -91.5,-60.5 + pos: -35.5,-7.5 parent: 1 - - uid: 39351 + - uid: 12499 components: - type: Transform - pos: -91.5,-59.5 + pos: -35.5,-8.5 parent: 1 - - uid: 39352 + - uid: 12518 components: - type: Transform - pos: -92.5,-59.5 + pos: -33.5,0.5 parent: 1 - - uid: 39353 + - uid: 12519 components: - type: Transform - pos: -93.5,-59.5 + pos: -34.5,0.5 parent: 1 - - uid: 39354 + - uid: 12520 components: - type: Transform - pos: -94.5,-59.5 + pos: -32.5,-3.5 parent: 1 - - uid: 39622 + - uid: 12521 components: - type: Transform - pos: 12.5,-42.5 + pos: -33.5,-2.5 parent: 1 - - uid: 39624 + - uid: 12522 components: - type: Transform - pos: 11.5,-42.5 + pos: -33.5,-1.5 parent: 1 - - uid: 39629 + - uid: 12523 components: - type: Transform - pos: 14.5,-42.5 + pos: -34.5,-0.5 parent: 1 - - uid: 39631 + - uid: 12524 components: - type: Transform - pos: 13.5,-42.5 + pos: -32.5,-4.5 parent: 1 - - uid: 39634 + - uid: 12525 components: - type: Transform - pos: 18.5,-45.5 + pos: -32.5,-5.5 parent: 1 - - uid: 39640 + - uid: 12526 components: - type: Transform - pos: 46.5,-43.5 + pos: -32.5,-6.5 parent: 1 - - uid: 39641 + - uid: 12527 components: - type: Transform - pos: -40.5,-75.5 + pos: -32.5,-7.5 parent: 1 - - uid: 39650 + - uid: 12528 components: - type: Transform - pos: 58.5,-52.5 + pos: -32.5,1.5 parent: 1 - - uid: 39651 + - uid: 12529 components: - type: Transform - pos: -20.5,-47.5 + pos: -31.5,-4.5 parent: 1 - - uid: 39652 + - uid: 12530 components: - type: Transform - pos: -20.5,-46.5 + pos: -31.5,-5.5 parent: 1 - - uid: 39717 + - uid: 12531 components: - type: Transform - pos: -34.5,-73.5 + pos: -31.5,-6.5 parent: 1 - - uid: 39718 + - uid: 12532 components: - type: Transform - pos: 18.5,1.5 + pos: -31.5,-7.5 parent: 1 - - uid: 39719 + - uid: 12533 components: - type: Transform - pos: 18.5,0.5 + pos: -33.5,1.5 parent: 1 - - uid: 39720 + - uid: 12534 components: - type: Transform - pos: 18.5,-0.5 + pos: -30.5,-4.5 parent: 1 - - uid: 39721 + - uid: 12535 components: - type: Transform - pos: 18.5,-1.5 + pos: -30.5,-5.5 parent: 1 - - uid: 39722 + - uid: 12536 components: - type: Transform - pos: 18.5,-2.5 + pos: -30.5,-6.5 parent: 1 - - uid: 39723 + - uid: 12537 components: - type: Transform - pos: 18.5,-3.5 + pos: -30.5,-7.5 parent: 1 - - uid: 39724 + - uid: 12538 components: - type: Transform - pos: 18.5,-4.5 + pos: -32.5,0.5 parent: 1 - - uid: 39725 + - uid: 12539 components: - type: Transform - pos: 18.5,-5.5 + pos: -33.5,-8.5 parent: 1 - - uid: 39726 + - uid: 12541 components: - type: Transform - pos: 18.5,-6.5 + pos: -32.5,-8.5 parent: 1 - - uid: 39727 + - uid: 12542 components: - type: Transform - pos: 17.5,-6.5 + pos: -31.5,-8.5 parent: 1 - - uid: 39728 + - uid: 12543 components: - type: Transform - pos: 16.5,-6.5 + pos: -30.5,-8.5 parent: 1 - - uid: 39729 + - uid: 16850 components: - type: Transform - pos: 16.5,-7.5 + pos: -100.5,-26.5 parent: 1 - - uid: 39730 + - uid: 17690 components: - type: Transform - pos: 15.5,-7.5 + pos: -90.5,-16.5 parent: 1 - - uid: 39744 + - uid: 17691 components: - type: Transform - pos: 39.5,-10.5 + pos: -89.5,-17.5 parent: 1 - - uid: 39745 + - uid: 17692 components: - type: Transform - pos: 32.5,-9.5 + pos: -88.5,-16.5 parent: 1 - - uid: 39746 + - uid: 17693 components: - type: Transform - pos: 33.5,-9.5 + pos: -87.5,-17.5 parent: 1 - - uid: 39747 + - uid: 23795 components: - type: Transform - pos: 34.5,-9.5 + pos: 36.5,-53.5 parent: 1 - - uid: 39748 + - uid: 23796 components: - type: Transform - pos: 30.5,-9.5 + pos: 37.5,-53.5 parent: 1 - - uid: 39749 + - uid: 23797 components: - type: Transform - pos: 30.5,-8.5 + pos: 38.5,-53.5 parent: 1 - - uid: 39752 + - uid: 23798 components: - type: Transform - pos: 35.5,-9.5 + pos: 39.5,-53.5 parent: 1 - - uid: 39753 + - uid: 23799 components: - type: Transform - pos: 36.5,-9.5 + pos: 36.5,-55.5 parent: 1 - - uid: 39754 + - uid: 23802 components: - type: Transform - pos: 37.5,-9.5 + pos: 37.5,-55.5 parent: 1 - - uid: 39755 + - uid: 23803 components: - type: Transform - pos: 38.5,-9.5 + pos: 38.5,-55.5 parent: 1 - - uid: 39756 + - uid: 23804 components: - type: Transform - pos: 39.5,-9.5 + pos: 39.5,-55.5 parent: 1 - - uid: 39757 + - uid: 23805 components: - type: Transform - pos: 40.5,-9.5 + pos: 37.5,-56.5 parent: 1 - - uid: 39758 + - uid: 23806 components: - type: Transform - pos: 41.5,-9.5 + pos: 38.5,-56.5 parent: 1 - - uid: 39759 + - uid: 23807 components: - type: Transform - pos: 42.5,-8.5 + pos: 38.5,-54.5 parent: 1 - - uid: 39760 + - uid: 23808 components: - type: Transform - pos: 42.5,-7.5 + pos: 37.5,-54.5 parent: 1 - - uid: 39761 + - uid: 23809 components: - type: Transform - pos: 42.5,-6.5 + pos: 37.5,-57.5 parent: 1 - - uid: 39762 + - uid: 23810 components: - type: Transform - pos: 31.5,-9.5 + pos: 38.5,-57.5 parent: 1 - - uid: 39763 + - uid: 30788 components: - type: Transform - pos: 43.5,-6.5 + pos: -72.5,-39.5 parent: 1 - - uid: 39764 + - uid: 30789 components: - type: Transform - pos: 40.5,-10.5 + pos: -72.5,-40.5 parent: 1 - - uid: 39765 + - uid: 30790 components: - type: Transform - pos: 43.5,-5.5 + pos: -71.5,-39.5 parent: 1 - - uid: 39766 + - uid: 30791 components: - type: Transform - pos: 43.5,-4.5 + pos: -71.5,-40.5 parent: 1 - - uid: 39878 + - uid: 30792 components: - type: Transform - pos: 59.5,-56.5 + pos: -70.5,-39.5 parent: 1 - - uid: 39879 + - uid: 30793 components: - type: Transform - pos: 59.5,-55.5 + pos: -70.5,-40.5 parent: 1 - - uid: 39880 + - uid: 30794 components: - type: Transform - pos: 59.5,-54.5 + pos: -69.5,-39.5 parent: 1 - - uid: 39883 + - uid: 30795 components: - type: Transform - pos: 58.5,-53.5 + pos: -69.5,-40.5 parent: 1 - - uid: 39890 +- proto: CarpetBlue + entities: + - uid: 5947 components: - type: Transform - pos: 58.5,-54.5 + pos: -43.5,29.5 parent: 1 - - uid: 39963 + - uid: 5948 components: - type: Transform - pos: -49.5,-59.5 + pos: -44.5,29.5 parent: 1 - - uid: 39964 + - uid: 5949 components: - type: Transform - pos: -48.5,-59.5 + pos: -43.5,30.5 parent: 1 - - uid: 39965 + - uid: 6092 components: - type: Transform - pos: -47.5,-59.5 + pos: -44.5,30.5 parent: 1 - - uid: 39966 + - uid: 7231 components: - type: Transform - pos: -46.5,-59.5 + pos: -45.5,30.5 parent: 1 - - uid: 39967 + - uid: 7232 components: - type: Transform - pos: -45.5,-59.5 + pos: -45.5,29.5 parent: 1 - - uid: 39968 + - uid: 7234 components: - type: Transform - pos: -45.5,-58.5 + pos: -46.5,29.5 parent: 1 - - uid: 39969 + - uid: 7282 components: - type: Transform - pos: -45.5,-57.5 + pos: -46.5,30.5 parent: 1 - - uid: 39970 + - uid: 8198 components: - type: Transform - pos: -45.5,-56.5 + pos: -47.5,30.5 parent: 1 - - uid: 39971 + - uid: 8296 components: - type: Transform - pos: -45.5,-55.5 + pos: -47.5,29.5 parent: 1 - - uid: 39972 + - uid: 8297 components: - type: Transform - pos: -45.5,-54.5 + pos: -49.5,29.5 parent: 1 - - uid: 39973 + - uid: 8298 components: - type: Transform - pos: -45.5,-53.5 + pos: -48.5,29.5 parent: 1 - - uid: 39974 + - uid: 8299 components: - type: Transform - pos: -45.5,-52.5 + pos: -48.5,30.5 parent: 1 - - uid: 39975 + - uid: 8300 components: - type: Transform - pos: -45.5,-51.5 + pos: -49.5,30.5 parent: 1 - - uid: 39976 + - uid: 8301 components: - type: Transform - pos: -44.5,-51.5 + pos: -50.5,29.5 parent: 1 - - uid: 39977 + - uid: 8302 components: - type: Transform - pos: -43.5,-51.5 + pos: -50.5,30.5 parent: 1 - - uid: 39978 + - uid: 8303 components: - type: Transform - pos: -42.5,-51.5 + pos: -51.5,30.5 parent: 1 - - uid: 39979 + - uid: 8304 components: - type: Transform - pos: -41.5,-51.5 + pos: -51.5,29.5 parent: 1 - - uid: 39980 + - uid: 8305 components: - type: Transform - pos: -40.5,-51.5 + pos: -52.5,29.5 parent: 1 - - uid: 39981 + - uid: 8306 components: - type: Transform - pos: -39.5,-51.5 + pos: -52.5,30.5 parent: 1 - - uid: 39982 + - uid: 8307 components: - type: Transform - pos: -23.5,-47.5 + pos: -53.5,30.5 parent: 1 - - uid: 39983 + - uid: 8308 components: - type: Transform - pos: -22.5,-47.5 + pos: -53.5,29.5 parent: 1 - - uid: 39984 + - uid: 9405 components: - type: Transform - pos: -21.5,-47.5 + pos: -13.5,-29.5 parent: 1 - - uid: 39985 + - uid: 9406 components: - type: Transform - pos: -24.5,-72.5 + pos: -13.5,-30.5 parent: 1 - - uid: 39986 + - uid: 9407 components: - type: Transform - pos: -25.5,-72.5 + pos: -13.5,-31.5 parent: 1 - - uid: 39987 + - uid: 9408 components: - type: Transform - pos: -25.5,-71.5 + pos: -12.5,-29.5 parent: 1 - - uid: 39988 + - uid: 9409 components: - type: Transform - pos: -25.5,-70.5 + pos: -12.5,-30.5 parent: 1 - - uid: 39989 + - uid: 9410 components: - type: Transform - pos: -24.5,-70.5 + pos: -12.5,-31.5 parent: 1 - - uid: 39990 + - uid: 9411 components: - type: Transform - pos: -23.5,-70.5 + pos: -11.5,-29.5 parent: 1 - - uid: 39991 + - uid: 9412 components: - type: Transform - pos: -22.5,-70.5 + pos: -11.5,-30.5 parent: 1 - - uid: 39992 + - uid: 9413 components: - type: Transform - pos: -21.5,-70.5 + pos: -11.5,-31.5 parent: 1 - - uid: 39993 + - uid: 9475 components: - type: Transform - pos: -20.5,-70.5 + pos: -57.5,-24.5 parent: 1 - - uid: 39994 + - uid: 9478 components: - type: Transform - pos: -19.5,-70.5 + pos: -57.5,-23.5 parent: 1 - - uid: 39995 + - uid: 12283 components: - type: Transform - pos: -18.5,-70.5 + pos: -57.5,-25.5 parent: 1 - - uid: 39996 + - uid: 12284 components: - type: Transform - pos: -17.5,-70.5 + pos: -56.5,-25.5 parent: 1 - - uid: 39997 + - uid: 12285 components: - type: Transform - pos: -16.5,-70.5 + pos: -56.5,-23.5 parent: 1 - - uid: 39998 + - uid: 12286 components: - type: Transform - pos: -16.5,-69.5 + pos: -56.5,-24.5 parent: 1 - - uid: 39999 + - uid: 12292 components: - type: Transform - pos: -16.5,-68.5 + pos: -55.5,-23.5 parent: 1 - - uid: 40000 + - uid: 12293 components: - type: Transform - pos: -16.5,-67.5 + pos: -55.5,-24.5 parent: 1 - - uid: 40001 + - uid: 12294 components: - type: Transform - pos: -16.5,-66.5 + pos: -55.5,-25.5 parent: 1 - - uid: 40002 + - uid: 23811 components: - type: Transform - pos: -16.5,-65.5 + pos: 32.5,-52.5 parent: 1 - - uid: 40003 + - uid: 23812 components: - type: Transform - pos: -16.5,-64.5 + pos: 32.5,-52.5 parent: 1 - - uid: 40004 + - uid: 23813 components: - type: Transform - pos: -16.5,-63.5 + pos: 32.5,-53.5 parent: 1 - - uid: 40005 + - uid: 23814 components: - type: Transform - pos: -16.5,-62.5 + pos: 33.5,-52.5 parent: 1 - - uid: 40006 + - uid: 23815 components: - type: Transform - pos: -16.5,-61.5 + pos: 33.5,-53.5 parent: 1 - - uid: 40007 + - uid: 32344 components: - type: Transform - pos: -16.5,-60.5 + pos: -88.5,14.5 parent: 1 - - uid: 40008 + - uid: 32345 components: - type: Transform - pos: -16.5,-59.5 + pos: -82.5,16.5 parent: 1 - - uid: 40009 + - uid: 32346 components: - type: Transform - pos: -16.5,-58.5 + pos: -88.5,16.5 parent: 1 - - uid: 40010 + - uid: 32349 components: - type: Transform - pos: -16.5,-57.5 + pos: -88.5,13.5 parent: 1 - - uid: 40011 + - uid: 32350 components: - type: Transform - pos: -16.5,-56.5 + pos: -82.5,14.5 parent: 1 - - uid: 40012 + - uid: 32351 components: - type: Transform - pos: -16.5,-55.5 + pos: -82.5,15.5 parent: 1 - - uid: 40013 + - uid: 32352 components: - type: Transform - pos: -16.5,-54.5 + pos: -82.5,13.5 parent: 1 - - uid: 40014 + - uid: 32357 components: - type: Transform - pos: -16.5,-53.5 + pos: -88.5,15.5 parent: 1 - - uid: 40015 + - uid: 32358 components: - type: Transform - pos: -16.5,-52.5 + pos: -85.5,17.5 parent: 1 - - uid: 40016 + - uid: 32359 components: - type: Transform - pos: -16.5,-51.5 + pos: -84.5,16.5 parent: 1 - - uid: 40017 + - uid: 32361 components: - type: Transform - pos: -15.5,-51.5 + pos: -85.5,14.5 parent: 1 - - uid: 40018 + - uid: 32362 components: - type: Transform - pos: -15.5,-50.5 + pos: -85.5,15.5 parent: 1 - - uid: 40019 + - uid: 32363 components: - type: Transform - pos: -15.5,-49.5 + pos: -85.5,13.5 parent: 1 - - uid: 40020 + - uid: 32364 components: - type: Transform - pos: -15.5,-48.5 + pos: -85.5,12.5 parent: 1 - - uid: 40021 + - uid: 32365 components: - type: Transform - pos: -14.5,-48.5 + pos: -85.5,11.5 parent: 1 - - uid: 40022 + - uid: 32374 components: - type: Transform - pos: -13.5,-48.5 + pos: -83.5,16.5 parent: 1 - - uid: 40023 + - uid: 32375 components: - type: Transform - pos: -12.5,-48.5 + pos: -85.5,16.5 parent: 1 - - uid: 40024 + - uid: 32377 components: - type: Transform - pos: -12.5,-49.5 + pos: -86.5,16.5 parent: 1 - - uid: 40025 + - uid: 32383 components: - type: Transform - pos: -12.5,-50.5 + pos: -87.5,13.5 parent: 1 - - uid: 40026 + - uid: 32387 components: - type: Transform - pos: -12.5,-51.5 + pos: -87.5,16.5 parent: 1 - - uid: 40027 + - uid: 32388 components: - type: Transform - pos: -12.5,-52.5 + pos: -86.5,13.5 parent: 1 - - uid: 40028 + - uid: 32389 components: - type: Transform - pos: -12.5,-53.5 + pos: -84.5,13.5 parent: 1 - - uid: 40029 + - uid: 32390 components: - type: Transform - pos: -11.5,-53.5 + pos: -83.5,13.5 parent: 1 - - uid: 40030 +- proto: CarpetGreen + entities: + - uid: 7587 components: - type: Transform - pos: -10.5,-53.5 + pos: -70.5,18.5 parent: 1 - - uid: 40032 + - uid: 7588 components: - type: Transform - pos: 26.5,-45.5 + pos: -70.5,17.5 parent: 1 - - uid: 40033 + - uid: 7589 components: - type: Transform - pos: 27.5,-45.5 + pos: -69.5,18.5 parent: 1 - - uid: 40034 + - uid: 7590 components: - type: Transform - pos: 28.5,-45.5 + pos: -69.5,17.5 parent: 1 - - uid: 40035 + - uid: 12466 components: - type: Transform - pos: 29.5,-45.5 + pos: -57.5,2.5 parent: 1 - - uid: 40036 + - uid: 12467 components: - type: Transform - pos: 30.5,-45.5 + pos: -57.5,1.5 parent: 1 - - uid: 40037 + - uid: 12468 components: - type: Transform - pos: 31.5,-45.5 + pos: -56.5,2.5 parent: 1 - - uid: 40038 + - uid: 12469 components: - type: Transform - pos: 32.5,-45.5 + pos: -56.5,1.5 parent: 1 - - uid: 40039 + - uid: 12470 components: - type: Transform - pos: 33.5,-45.5 + pos: -55.5,2.5 parent: 1 - - uid: 40040 + - uid: 12471 components: - type: Transform - pos: 33.5,-44.5 + pos: -55.5,1.5 parent: 1 - - uid: 40043 + - uid: 17694 components: - type: Transform - pos: 35.5,-44.5 + pos: -91.5,-16.5 parent: 1 - - uid: 40044 + - uid: 17695 components: - type: Transform - pos: 36.5,-44.5 + pos: -90.5,-17.5 parent: 1 - - uid: 40045 + - uid: 17696 components: - type: Transform - pos: 37.5,-44.5 + pos: -89.5,-16.5 parent: 1 - - uid: 40046 + - uid: 17697 components: - type: Transform - pos: 38.5,-44.5 + pos: -88.5,-17.5 parent: 1 - - uid: 40047 + - uid: 17699 components: - type: Transform - pos: 39.5,-44.5 + pos: -87.5,-16.5 parent: 1 - - uid: 40048 + - uid: 28651 components: - type: Transform - pos: 40.5,-44.5 + pos: -89.5,-21.5 parent: 1 - - uid: 40050 + - uid: 28652 components: - type: Transform - pos: 43.5,-44.5 + pos: -89.5,-20.5 parent: 1 - - uid: 40051 + - uid: 28653 components: - type: Transform - pos: 46.5,-44.5 + pos: -90.5,-21.5 parent: 1 - - uid: 40052 + - uid: 28654 components: - type: Transform - pos: 46.5,-41.5 + pos: -90.5,-20.5 parent: 1 - - uid: 40053 + - uid: 30640 components: - type: Transform - pos: 46.5,-40.5 + pos: -113.5,1.5 parent: 1 - - uid: 40054 + - uid: 30641 components: - type: Transform - pos: 47.5,-40.5 + pos: -113.5,0.5 parent: 1 - - uid: 40055 + - uid: 30642 components: - type: Transform - pos: 48.5,-40.5 + pos: -113.5,-0.5 parent: 1 - - uid: 40056 + - uid: 30643 components: - type: Transform - pos: 49.5,-40.5 + pos: -114.5,1.5 parent: 1 - - uid: 40057 + - uid: 30644 components: - type: Transform - pos: 50.5,-40.5 + pos: -114.5,0.5 parent: 1 - - uid: 40058 + - uid: 30645 components: - type: Transform - pos: 51.5,-40.5 + pos: -114.5,-0.5 parent: 1 - - uid: 40059 +- proto: CarpetOrange + entities: + - uid: 10981 components: - type: Transform - pos: 52.5,-40.5 + pos: -30.5,-18.5 parent: 1 - - uid: 40060 + - uid: 10982 components: - type: Transform - pos: 53.5,-40.5 + pos: -31.5,-17.5 parent: 1 - - uid: 40061 + - uid: 10983 components: - type: Transform - pos: 54.5,-40.5 + pos: -30.5,-17.5 parent: 1 - - uid: 40062 + - uid: 10984 components: - type: Transform - pos: 55.5,-40.5 + pos: -31.5,-18.5 parent: 1 - - uid: 40063 + - uid: 10985 components: - type: Transform - pos: 56.5,-40.5 + pos: -32.5,-17.5 parent: 1 - - uid: 40064 + - uid: 10986 components: - type: Transform - pos: 57.5,-40.5 + pos: -32.5,-18.5 parent: 1 - - uid: 40065 + - uid: 36614 components: - type: Transform - pos: 58.5,-40.5 + pos: -115.5,-76.5 parent: 1 - - uid: 40066 + - uid: 36615 components: - type: Transform - pos: 58.5,-39.5 + pos: -116.5,-76.5 parent: 1 - - uid: 40067 + - uid: 36616 components: - type: Transform - pos: 58.5,-38.5 + pos: -117.5,-76.5 parent: 1 - - uid: 40072 +- proto: CarpetPink + entities: + - uid: 6037 components: - type: Transform - pos: -12.5,-54.5 + pos: -25.5,-36.5 parent: 1 - - uid: 40073 + - uid: 6912 components: - type: Transform - pos: -12.5,-55.5 + pos: -24.5,-28.5 parent: 1 - - uid: 40074 + - uid: 6913 components: - type: Transform - pos: -12.5,-56.5 + pos: -24.5,-30.5 parent: 1 - - uid: 40075 + - uid: 6914 components: - type: Transform - pos: -12.5,-57.5 + pos: -25.5,-29.5 parent: 1 - - uid: 40076 + - uid: 6915 components: - type: Transform - pos: -12.5,-58.5 + pos: -24.5,-34.5 parent: 1 - - uid: 40077 + - uid: 6916 components: - type: Transform - pos: -12.5,-59.5 + pos: -24.5,-36.5 parent: 1 - - uid: 40078 + - uid: 6919 components: - type: Transform - pos: -10.5,-59.5 + pos: -26.5,-33.5 parent: 1 - - uid: 40079 + - uid: 6920 components: - type: Transform - pos: -9.5,-59.5 + pos: -28.5,-33.5 parent: 1 - - uid: 40080 + - uid: 6922 components: - type: Transform - pos: -8.5,-59.5 + pos: -25.5,-28.5 parent: 1 - - uid: 40081 + - uid: 6923 components: - type: Transform - pos: -7.5,-59.5 + pos: -24.5,-32.5 parent: 1 - - uid: 40082 + - uid: 6924 components: - type: Transform - pos: -6.5,-59.5 + pos: -25.5,-35.5 parent: 1 - - uid: 40083 + - uid: 6925 components: - type: Transform - pos: -5.5,-59.5 + pos: -25.5,-33.5 parent: 1 - - uid: 40084 + - uid: 6926 components: - type: Transform - pos: -4.5,-59.5 + pos: -25.5,-31.5 parent: 1 - - uid: 40085 + - uid: 6929 components: - type: Transform - pos: -3.5,-59.5 + pos: -27.5,-32.5 parent: 1 - - uid: 40086 + - uid: 6930 components: - type: Transform - pos: -2.5,-59.5 + pos: -27.5,-34.5 parent: 1 - - uid: 40087 + - uid: 9719 components: - type: Transform - pos: -1.5,-59.5 + pos: -28.5,-34.5 parent: 1 - - uid: 40088 + - uid: 9720 components: - type: Transform - pos: -0.5,-59.5 + pos: -28.5,-32.5 parent: 1 - - uid: 40089 + - uid: 9721 components: - type: Transform - pos: 0.5,-59.5 + pos: -27.5,-33.5 parent: 1 - - uid: 40090 + - uid: 9722 components: - type: Transform - pos: 1.5,-59.5 + pos: -26.5,-34.5 parent: 1 - - uid: 40091 + - uid: 9736 components: - type: Transform - pos: 2.5,-59.5 + pos: -24.5,-37.5 parent: 1 - - uid: 40092 + - uid: 9737 components: - type: Transform - pos: 3.5,-59.5 + pos: -26.5,-32.5 parent: 1 - - uid: 40093 + - uid: 9738 components: - type: Transform - pos: 3.5,-58.5 + pos: -25.5,-32.5 parent: 1 - - uid: 40094 + - uid: 9739 components: - type: Transform - pos: 3.5,-57.5 + pos: -25.5,-34.5 parent: 1 - - uid: 40096 + - uid: 9740 components: - type: Transform - pos: 4.5,-59.5 + pos: -24.5,-35.5 parent: 1 - - uid: 40097 + - uid: 9741 components: - type: Transform - pos: 5.5,-59.5 + pos: -25.5,-30.5 parent: 1 - - uid: 40098 + - uid: 9743 components: - type: Transform - pos: 6.5,-59.5 + pos: -24.5,-29.5 parent: 1 - - uid: 40099 + - uid: 9744 components: - type: Transform - pos: 7.5,-59.5 + pos: -24.5,-31.5 parent: 1 - - uid: 40100 + - uid: 9745 components: - type: Transform - pos: 8.5,-59.5 + pos: -24.5,-33.5 parent: 1 - - uid: 40101 + - uid: 18994 components: - type: Transform - pos: 9.5,-59.5 + pos: -25.5,-37.5 parent: 1 - - uid: 40102 +- proto: CarpetPurple + entities: + - uid: 9174 components: - type: Transform - pos: 10.5,-59.5 + pos: -16.5,30.5 parent: 1 - - uid: 40103 + - uid: 23816 components: - type: Transform - pos: 11.5,-59.5 + pos: 43.5,-53.5 parent: 1 - - uid: 40104 + - uid: 23817 components: - type: Transform - pos: 12.5,-59.5 + pos: 42.5,-53.5 parent: 1 - - uid: 40105 + - uid: 29313 components: - type: Transform - pos: 13.5,-59.5 + pos: 9.5,-50.5 parent: 1 - - uid: 40106 + - uid: 30646 components: - type: Transform - pos: 14.5,-59.5 + pos: -102.5,1.5 parent: 1 - - uid: 40107 + - uid: 30647 components: - type: Transform - pos: 15.5,-59.5 + pos: -102.5,0.5 parent: 1 - - uid: 40108 + - uid: 30648 components: - type: Transform - pos: 16.5,-59.5 + pos: -102.5,-0.5 parent: 1 - - uid: 40109 + - uid: 30649 components: - type: Transform - pos: 17.5,-59.5 + pos: -102.5,-1.5 parent: 1 - - uid: 40110 + - uid: 30650 components: - type: Transform - pos: 18.5,-59.5 + pos: -101.5,1.5 parent: 1 - - uid: 40111 + - uid: 30651 components: - type: Transform - pos: 19.5,-59.5 + pos: -101.5,0.5 parent: 1 - - uid: 40112 + - uid: 30652 components: - type: Transform - pos: 20.5,-59.5 + pos: -101.5,-0.5 parent: 1 - - uid: 40113 + - uid: 30653 components: - type: Transform - pos: 21.5,-59.5 + pos: -101.5,-1.5 parent: 1 - - uid: 40114 + - uid: 30654 components: - type: Transform - pos: 22.5,-59.5 + pos: -100.5,1.5 parent: 1 - - uid: 40115 + - uid: 30655 components: - type: Transform - pos: 23.5,-59.5 + pos: -100.5,0.5 parent: 1 - - uid: 40116 + - uid: 30656 components: - type: Transform - pos: 24.5,-59.5 + pos: -100.5,-0.5 parent: 1 - - uid: 40117 + - uid: 30657 components: - type: Transform - pos: 25.5,-59.5 + pos: -100.5,-1.5 parent: 1 - - uid: 40118 + - uid: 30658 components: - type: Transform - pos: 26.5,-59.5 + pos: -99.5,1.5 parent: 1 - - uid: 40119 + - uid: 30659 components: - type: Transform - pos: 27.5,-59.5 + pos: -99.5,0.5 parent: 1 - - uid: 40120 + - uid: 30660 components: - type: Transform - pos: 28.5,-59.5 + pos: -99.5,-0.5 parent: 1 - - uid: 40121 + - uid: 30661 components: - type: Transform - pos: 29.5,-59.5 + pos: -99.5,-1.5 parent: 1 - - uid: 40122 + - uid: 30662 components: - type: Transform - pos: 30.5,-59.5 + pos: -98.5,1.5 parent: 1 - - uid: 40123 + - uid: 30663 components: - type: Transform - pos: 31.5,-59.5 + pos: -98.5,0.5 parent: 1 - - uid: 40124 + - uid: 30664 components: - type: Transform - pos: 32.5,-59.5 + pos: -98.5,-0.5 parent: 1 - - uid: 40125 + - uid: 30665 components: - type: Transform - pos: 33.5,-59.5 + pos: -98.5,-1.5 parent: 1 - - uid: 40126 + - uid: 31074 components: - type: Transform - pos: 34.5,-59.5 + pos: 10.5,-49.5 parent: 1 - - uid: 40127 + - uid: 31075 components: - type: Transform - pos: 35.5,-59.5 + pos: 9.5,-51.5 parent: 1 - - uid: 40128 + - uid: 31494 components: - type: Transform - pos: 36.5,-59.5 + pos: -16.5,29.5 parent: 1 - - uid: 40129 + - uid: 32196 components: - type: Transform - pos: 37.5,-59.5 + pos: 15.5,-49.5 parent: 1 - - uid: 40130 + - uid: 32197 components: - type: Transform - pos: 37.5,-58.5 + pos: 15.5,-50.5 parent: 1 - - uid: 40131 + - uid: 32203 components: - type: Transform - pos: 37.5,-57.5 + pos: 9.5,-51.5 parent: 1 - - uid: 40132 + - uid: 32204 components: - type: Transform - pos: 37.5,-56.5 + pos: 10.5,-51.5 parent: 1 - - uid: 40133 + - uid: 32222 components: - type: Transform - pos: 37.5,-55.5 + pos: 10.5,-50.5 parent: 1 - - uid: 40134 + - uid: 32224 components: - type: Transform - pos: 37.5,-54.5 + pos: 11.5,-53.5 parent: 1 - - uid: 40135 + - uid: 32225 components: - type: Transform - pos: 37.5,-53.5 + pos: 11.5,-54.5 parent: 1 - - uid: 40136 + - uid: 32226 components: - type: Transform - pos: 36.5,-53.5 + pos: 11.5,-55.5 parent: 1 - - uid: 40137 + - uid: 32227 components: - type: Transform - pos: 36.5,-52.5 + pos: 9.5,-49.5 parent: 1 - - uid: 40138 + - uid: 32228 components: - type: Transform - pos: 38.5,-59.5 + pos: 12.5,-53.5 parent: 1 - - uid: 40139 + - uid: 32229 components: - type: Transform - pos: 39.5,-59.5 + pos: 12.5,-54.5 parent: 1 - - uid: 40140 + - uid: 32230 components: - type: Transform - pos: 40.5,-59.5 + pos: 12.5,-55.5 parent: 1 - - uid: 40141 + - uid: 32319 components: - type: Transform - pos: 41.5,-59.5 + pos: -16.5,31.5 parent: 1 - - uid: 40142 + - uid: 32320 components: - type: Transform - pos: 42.5,-59.5 + pos: -15.5,29.5 parent: 1 - - uid: 40143 + - uid: 32321 components: - type: Transform - pos: 43.5,-59.5 + pos: -14.5,29.5 parent: 1 - - uid: 40144 + - uid: 32322 components: - type: Transform - pos: 44.5,-59.5 + pos: -14.5,30.5 parent: 1 - - uid: 40145 + - uid: 32336 components: - type: Transform - pos: 45.5,-59.5 + pos: -15.5,30.5 parent: 1 - - uid: 40146 + - uid: 32338 components: - type: Transform - pos: 46.5,-59.5 + pos: -15.5,31.5 parent: 1 - - uid: 40147 + - uid: 32339 components: - type: Transform - pos: 46.5,-58.5 + pos: -14.5,31.5 parent: 1 - - uid: 40148 + - uid: 32340 components: - type: Transform - pos: 46.5,-57.5 + pos: -13.5,29.5 parent: 1 - - uid: 40149 + - uid: 32341 components: - type: Transform - pos: 46.5,-56.5 + pos: -13.5,30.5 parent: 1 - - uid: 40150 + - uid: 32342 components: - type: Transform - pos: 47.5,-56.5 + pos: -13.5,31.5 parent: 1 - - uid: 40151 +- proto: CarpetSBlue + entities: + - uid: 2547 components: - type: Transform - pos: 48.5,-56.5 + rot: 3.141592653589793 rad + pos: 2.5,-49.5 parent: 1 - - uid: 40815 + - uid: 2548 components: - type: Transform - pos: 44.5,-4.5 + rot: 3.141592653589793 rad + pos: 2.5,-50.5 parent: 1 - - uid: 40821 + - uid: 2549 components: - type: Transform - pos: 44.5,-3.5 + rot: 3.141592653589793 rad + pos: 2.5,-51.5 parent: 1 - - uid: 40917 + - uid: 2550 components: - type: Transform - pos: 41.5,-8.5 + rot: 3.141592653589793 rad + pos: 3.5,-49.5 parent: 1 - - uid: 41879 + - uid: 2551 components: - type: Transform - pos: 23.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,-50.5 parent: 1 - - uid: 41880 + - uid: 2552 components: - type: Transform - pos: 24.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,-51.5 parent: 1 - - uid: 41881 + - uid: 2553 components: - type: Transform - pos: 24.5,6.5 + rot: 3.141592653589793 rad + pos: 4.5,-49.5 parent: 1 - - uid: 41882 + - uid: 2554 components: - type: Transform - pos: 24.5,7.5 + rot: 3.141592653589793 rad + pos: 4.5,-50.5 parent: 1 - - uid: 41883 + - uid: 2555 components: - type: Transform - pos: 24.5,8.5 + rot: 3.141592653589793 rad + pos: 4.5,-51.5 parent: 1 - - uid: 41884 + - uid: 2556 components: - type: Transform - pos: 23.5,8.5 + rot: 3.141592653589793 rad + pos: 2.5,-54.5 parent: 1 - - uid: 41885 + - uid: 2557 components: - type: Transform - pos: 22.5,8.5 + rot: 3.141592653589793 rad + pos: 2.5,-55.5 parent: 1 - - uid: 42427 + - uid: 2558 components: - type: Transform - pos: -24.5,-10.5 + rot: 3.141592653589793 rad + pos: 2.5,-56.5 parent: 1 - - uid: 42429 + - uid: 2559 components: - type: Transform - pos: -27.5,2.5 + rot: 3.141592653589793 rad + pos: 3.5,-54.5 parent: 1 - - uid: 42430 + - uid: 2560 components: - type: Transform - pos: -26.5,2.5 + rot: 3.141592653589793 rad + pos: 3.5,-55.5 parent: 1 - - uid: 42431 + - uid: 2561 components: - type: Transform - pos: -25.5,2.5 + rot: 3.141592653589793 rad + pos: 3.5,-56.5 parent: 1 - - uid: 42432 + - uid: 2562 components: - type: Transform - pos: -25.5,3.5 + rot: 3.141592653589793 rad + pos: 4.5,-54.5 parent: 1 - - uid: 42433 + - uid: 2563 components: - type: Transform - pos: -25.5,4.5 + rot: 3.141592653589793 rad + pos: 4.5,-55.5 parent: 1 - - uid: 42434 + - uid: 2564 components: - type: Transform - pos: -25.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,-56.5 parent: 1 - - uid: 42435 + - uid: 12772 components: - type: Transform - pos: -26.5,5.5 + rot: 3.141592653589793 rad + pos: -80.5,41.5 parent: 1 - - uid: 42436 + - uid: 12789 components: - type: Transform - pos: -27.5,5.5 + rot: 3.141592653589793 rad + pos: -80.5,40.5 parent: 1 -- proto: CableMVStack - entities: - - uid: 3219 + - uid: 12793 components: - type: Transform - pos: -120.43417,-23.48157 + rot: 3.141592653589793 rad + pos: -80.5,39.5 parent: 1 - - uid: 8847 + - uid: 12803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.49287,-1.3044977 + rot: 3.141592653589793 rad + pos: -81.5,40.5 parent: 1 -- proto: CableMVStack1 - entities: - - uid: 36358 + - uid: 12805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.8804,-47.437923 + rot: 3.141592653589793 rad + pos: -81.5,39.5 parent: 1 - - uid: 36359 + - uid: 12806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.3429,-47.525486 + rot: 3.141592653589793 rad + pos: -83.5,41.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 5881 + - uid: 12809 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,-22.5 + pos: -83.5,40.5 parent: 1 - - uid: 6730 + - uid: 12863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-42.5 + rot: 3.141592653589793 rad + pos: -83.5,39.5 parent: 1 - - uid: 8280 + - uid: 12865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-0.5 + rot: 3.141592653589793 rad + pos: -82.5,41.5 parent: 1 - - uid: 8973 + - uid: 12866 components: - type: Transform rot: 3.141592653589793 rad - pos: -112.5,-22.5 + pos: -82.5,40.5 parent: 1 - - uid: 10919 + - uid: 12867 components: - type: Transform - pos: 61.5,-55.5 + rot: 3.141592653589793 rad + pos: -82.5,39.5 parent: 1 - - uid: 13298 + - uid: 13103 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,-22.5 + pos: -81.5,41.5 parent: 1 - - uid: 14972 + - uid: 30636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,18.5 + pos: -118.5,-2.5 parent: 1 - - uid: 16251 + - uid: 30637 components: - type: Transform - pos: -111.5,8.5 + pos: -118.5,-3.5 parent: 1 - - uid: 33523 + - uid: 30638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-34.5 + pos: -117.5,-2.5 parent: 1 - - uid: 34246 + - uid: 30639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -146.5,-39.5 + pos: -117.5,-3.5 parent: 1 - - uid: 35608 + - uid: 32366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-84.5 + pos: -85.5,10.5 parent: 1 -- proto: CandlePurple +- proto: Catwalk entities: - - uid: 9825 + - uid: 3215 components: - type: Transform - pos: -24.965246,-53.26391 + pos: -112.5,-26.5 parent: 1 - - uid: 36501 + - uid: 3216 components: - type: Transform - pos: -118.35001,-59.475918 + pos: -113.5,-26.5 parent: 1 -- proto: CandleRed - entities: - - uid: 33543 + - uid: 3217 components: - type: Transform - pos: -26.379585,-53.50056 + pos: -114.5,-26.5 parent: 1 -- proto: CandleSmall - entities: - - uid: 33544 + - uid: 4701 components: - type: Transform - pos: -37.274788,-7.318153 + pos: -80.5,-39.5 parent: 1 - - uid: 33545 + - uid: 4702 components: - type: Transform - pos: -36.88937,-4.316068 + pos: -85.5,-37.5 parent: 1 - - uid: 33546 + - uid: 4714 components: - type: Transform - pos: -37.462288,-1.2305918 + pos: -83.5,-39.5 parent: 1 - - uid: 33547 + - uid: 4717 components: - type: Transform - pos: -31.3307,-5.6101155 + pos: -78.5,-39.5 parent: 1 -- proto: CandyBowl - entities: - - uid: 42060 + - uid: 4718 components: - type: Transform - pos: -75.52153,-18.38139 + pos: -77.5,-39.5 parent: 1 -- proto: CannabisSeeds - entities: - - uid: 1419 + - uid: 4741 components: - type: Transform - parent: 1287 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 31059 + pos: -82.5,-39.5 + parent: 1 + - uid: 4743 components: - type: Transform - parent: 31058 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 33556 + pos: -85.5,-39.5 + parent: 1 + - uid: 4766 components: - type: Transform - pos: -81.48045,-48.51143 + pos: -85.5,-36.5 parent: 1 -- proto: CapacitorStockPart - entities: - - uid: 7070 + - uid: 4767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.589684,-61.01759 + pos: -84.5,-39.5 parent: 1 - - uid: 7076 + - uid: 4769 components: - type: Transform - pos: -38.290207,-61.00456 + pos: -79.5,-39.5 parent: 1 - - uid: 28753 + - uid: 4965 components: - type: Transform - pos: 15.5063925,-26.13142 + pos: -96.5,-24.5 parent: 1 - - uid: 28754 + - uid: 5785 components: - type: Transform - pos: 15.610559,-26.444138 + pos: -100.5,65.5 parent: 1 - - uid: 30384 + - uid: 5899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.50176,-74.0715 + pos: -111.5,-26.5 parent: 1 - - uid: 30878 + - uid: 5918 components: - type: Transform - pos: -58.585377,-80.38974 + pos: -110.5,-26.5 parent: 1 - - uid: 31188 + - uid: 5937 components: - type: Transform - pos: 17.789978,16.509428 + pos: -109.5,-26.5 parent: 1 - - uid: 31189 + - uid: 5963 components: - type: Transform - pos: 17.633728,16.446884 + pos: -109.5,-25.5 parent: 1 - - uid: 32102 + - uid: 5981 components: - type: Transform - pos: -22.391853,13.492632 + pos: -96.5,-23.5 parent: 1 -- proto: CarbonDioxideCanister - entities: - - uid: 34089 + - uid: 5995 components: - type: Transform - pos: -111.5,-55.5 + pos: -109.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: Carpet - entities: - - uid: 2340 + - uid: 6187 components: - type: Transform - pos: 23.5,-48.5 + pos: -109.5,-23.5 parent: 1 - - uid: 23714 + - uid: 6571 components: - type: Transform - pos: 22.5,-48.5 + pos: -121.5,-29.5 parent: 1 - - uid: 23715 + - uid: 6585 components: - type: Transform - pos: 21.5,-51.5 + pos: -120.5,-29.5 parent: 1 - - uid: 23716 + - uid: 6716 components: - type: Transform - pos: 21.5,-50.5 + pos: -119.5,-29.5 parent: 1 - - uid: 23719 + - uid: 6774 components: - type: Transform - pos: 22.5,-49.5 + pos: -118.5,-29.5 parent: 1 - - uid: 23720 + - uid: 6775 components: - type: Transform - pos: 23.5,-50.5 + pos: -117.5,-29.5 parent: 1 - - uid: 23721 + - uid: 6776 components: - type: Transform - pos: 23.5,-51.5 + pos: -116.5,-29.5 parent: 1 - - uid: 23722 + - uid: 6789 components: - type: Transform - pos: 20.5,-51.5 + pos: -115.5,-29.5 parent: 1 - - uid: 23723 + - uid: 6917 components: - type: Transform - pos: 20.5,-49.5 + pos: -114.5,-29.5 parent: 1 - - uid: 23724 + - uid: 6918 components: - type: Transform - pos: 23.5,-49.5 + pos: -113.5,-29.5 parent: 1 - - uid: 23725 + - uid: 6927 components: - type: Transform - pos: 22.5,-51.5 + pos: -112.5,-29.5 parent: 1 - - uid: 23726 + - uid: 6928 components: - type: Transform - pos: 20.5,-48.5 + pos: -112.5,-28.5 parent: 1 - - uid: 23727 + - uid: 7038 components: - type: Transform - pos: 21.5,-49.5 + pos: -112.5,-27.5 parent: 1 - - uid: 23728 + - uid: 7046 components: - type: Transform - pos: 20.5,-50.5 + pos: -122.5,-29.5 parent: 1 - - uid: 23729 + - uid: 7922 components: - type: Transform - pos: 21.5,-48.5 + pos: -96.5,-22.5 parent: 1 - - uid: 23730 + - uid: 8862 components: - type: Transform - pos: 22.5,-50.5 + pos: -124.5,-25.5 parent: 1 - - uid: 36773 + - uid: 8863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-29.5 + pos: -96.5,-25.5 parent: 1 - - uid: 36774 + - uid: 8935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-30.5 + pos: -39.5,-81.5 parent: 1 - - uid: 36775 + - uid: 9860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-31.5 + pos: -63.5,-39.5 parent: 1 - - uid: 36776 + - uid: 9861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-29.5 + pos: -63.5,-40.5 parent: 1 - - uid: 36777 + - uid: 12737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-30.5 + pos: -84.5,52.5 parent: 1 - - uid: 36778 + - uid: 12738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-31.5 + pos: -84.5,58.5 parent: 1 - - uid: 36779 + - uid: 12757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-29.5 + pos: -84.5,65.5 parent: 1 - - uid: 36780 + - uid: 13561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-30.5 + pos: -96.5,-27.5 parent: 1 - - uid: 36781 + - uid: 15332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-31.5 + pos: -81.5,-39.5 parent: 1 -- proto: CarpetBlack - entities: - - uid: 6931 + - uid: 15396 components: - type: Transform - pos: -19.5,-35.5 + pos: 62.5,-55.5 parent: 1 - - uid: 6933 + - uid: 15405 components: - type: Transform - pos: -22.5,-31.5 + pos: 63.5,-55.5 parent: 1 - - uid: 6934 + - uid: 15410 components: - type: Transform - pos: -22.5,-33.5 + pos: 63.5,-56.5 parent: 1 - - uid: 7013 + - uid: 15413 components: - type: Transform - pos: -20.5,-31.5 + pos: 63.5,-57.5 parent: 1 - - uid: 7014 + - uid: 15418 components: - type: Transform - pos: -21.5,-34.5 + pos: 64.5,-57.5 parent: 1 - - uid: 7015 + - uid: 15434 components: - type: Transform - pos: -21.5,-33.5 + pos: 65.5,-57.5 parent: 1 - - uid: 7016 + - uid: 15435 components: - type: Transform - pos: -21.5,-32.5 + pos: 66.5,-57.5 parent: 1 - - uid: 7017 + - uid: 15436 components: - type: Transform - pos: -20.5,-35.5 + pos: 67.5,-57.5 parent: 1 - - uid: 7018 + - uid: 15437 components: - type: Transform - pos: -20.5,-32.5 + pos: 68.5,-57.5 parent: 1 - - uid: 7019 + - uid: 15438 components: - type: Transform - pos: -22.5,-32.5 + pos: -110.5,-7.5 parent: 1 - - uid: 7022 + - uid: 15439 components: - type: Transform - pos: -21.5,-35.5 + pos: 69.5,-57.5 parent: 1 - - uid: 7023 + - uid: 15440 components: - type: Transform - pos: -22.5,-34.5 + pos: 70.5,-57.5 parent: 1 - - uid: 7024 + - uid: 15445 components: - type: Transform - pos: -20.5,-33.5 + pos: 71.5,-57.5 parent: 1 - - uid: 7025 + - uid: 15446 components: - type: Transform - pos: -21.5,-31.5 + pos: 72.5,-57.5 parent: 1 - - uid: 7026 + - uid: 15456 components: - type: Transform - pos: -19.5,-32.5 + pos: 73.5,-57.5 parent: 1 - - uid: 7027 + - uid: 15457 components: - type: Transform - pos: -22.5,-35.5 + pos: 75.5,-57.5 parent: 1 - - uid: 7028 + - uid: 15470 components: - type: Transform - pos: -19.5,-31.5 + pos: 74.5,-57.5 parent: 1 - - uid: 7029 + - uid: 15471 components: - type: Transform - pos: -20.5,-34.5 + pos: 76.5,-57.5 parent: 1 - - uid: 7030 + - uid: 15476 components: - type: Transform - pos: -19.5,-31.5 + pos: 77.5,-57.5 parent: 1 - - uid: 7031 + - uid: 15477 components: - type: Transform - pos: -19.5,-33.5 + pos: 78.5,-57.5 parent: 1 - - uid: 7032 + - uid: 15481 components: - type: Transform - pos: -19.5,-34.5 + pos: 79.5,-57.5 parent: 1 - - uid: 9578 + - uid: 15498 components: - type: Transform - pos: -101.5,-26.5 + pos: -85.5,-35.5 parent: 1 - - uid: 9579 + - uid: 15504 components: - type: Transform - pos: -101.5,-25.5 + pos: 80.5,-57.5 parent: 1 - - uid: 9604 + - uid: 15505 components: - type: Transform - pos: -101.5,-27.5 + pos: 81.5,-57.5 parent: 1 - - uid: 9665 + - uid: 15506 components: - type: Transform - pos: -100.5,-25.5 + pos: 82.5,-57.5 parent: 1 - - uid: 9723 + - uid: 15508 components: - type: Transform - pos: -100.5,-27.5 + pos: 83.5,-57.5 parent: 1 - - uid: 9724 + - uid: 15509 components: - type: Transform - pos: -99.5,-25.5 + pos: 84.5,-57.5 parent: 1 - - uid: 9725 + - uid: 15510 components: - type: Transform - pos: -99.5,-26.5 + pos: 85.5,-57.5 parent: 1 - - uid: 9726 + - uid: 15514 components: - type: Transform - pos: -99.5,-27.5 + pos: 86.5,-57.5 parent: 1 - - uid: 11846 + - uid: 15518 components: - type: Transform - pos: -91.5,-17.5 + pos: 87.5,-57.5 parent: 1 - - uid: 12472 + - uid: 15519 components: - type: Transform - pos: -34.5,1.5 + pos: 87.5,-56.5 parent: 1 - - uid: 12473 + - uid: 15520 components: - type: Transform - pos: -32.5,-2.5 + pos: 87.5,-55.5 parent: 1 - - uid: 12474 + - uid: 15521 components: - type: Transform - pos: -33.5,-3.5 + pos: 87.5,-54.5 parent: 1 - - uid: 12475 + - uid: 15522 + components: + - type: Transform + pos: 87.5,-53.5 + parent: 1 + - uid: 15523 components: - type: Transform - pos: -33.5,-0.5 + pos: 87.5,-52.5 parent: 1 - - uid: 12476 + - uid: 15524 components: - type: Transform - pos: -34.5,-1.5 + pos: 87.5,-51.5 parent: 1 - - uid: 12477 + - uid: 15525 components: - type: Transform - pos: -34.5,-7.5 + pos: 87.5,-50.5 parent: 1 - - uid: 12478 + - uid: 15527 components: - type: Transform - pos: -34.5,-6.5 + pos: 87.5,-49.5 parent: 1 - - uid: 12479 + - uid: 15528 components: - type: Transform - pos: -34.5,-5.5 + pos: 87.5,-48.5 parent: 1 - - uid: 12480 + - uid: 15529 components: - type: Transform - pos: -34.5,-4.5 + pos: 87.5,-47.5 parent: 1 - - uid: 12482 + - uid: 15534 components: - type: Transform - pos: -32.5,-1.5 + pos: 87.5,-46.5 parent: 1 - - uid: 12483 + - uid: 15535 components: - type: Transform - pos: -32.5,-0.5 + pos: 87.5,-45.5 parent: 1 - - uid: 12484 + - uid: 15537 components: - type: Transform - pos: -34.5,-3.5 + pos: 87.5,-44.5 parent: 1 - - uid: 12485 + - uid: 15539 components: - type: Transform - pos: -34.5,-2.5 + pos: 87.5,-43.5 parent: 1 - - uid: 12486 + - uid: 15541 components: - type: Transform - pos: -33.5,-4.5 + pos: 87.5,-42.5 parent: 1 - - uid: 12487 + - uid: 15542 components: - type: Transform - pos: -33.5,-5.5 + pos: 87.5,-41.5 parent: 1 - - uid: 12488 + - uid: 15543 components: - type: Transform - pos: -33.5,-6.5 + pos: 87.5,-40.5 parent: 1 - - uid: 12489 + - uid: 15544 components: - type: Transform - pos: -33.5,-7.5 + pos: 87.5,-39.5 parent: 1 - - uid: 12490 + - uid: 15545 components: - type: Transform - pos: -34.5,-8.5 + pos: 87.5,-38.5 parent: 1 - - uid: 12491 + - uid: 15546 components: - type: Transform - pos: -35.5,-0.5 + pos: 87.5,-37.5 parent: 1 - - uid: 12492 + - uid: 15547 components: - type: Transform - pos: -35.5,-1.5 + pos: 86.5,-37.5 parent: 1 - - uid: 12493 + - uid: 15548 components: - type: Transform - pos: -35.5,-2.5 + pos: 85.5,-37.5 parent: 1 - - uid: 12494 + - uid: 15549 components: - type: Transform - pos: -35.5,-3.5 + pos: 84.5,-37.5 parent: 1 - - uid: 12495 + - uid: 15550 components: - type: Transform - pos: -35.5,-4.5 + pos: 83.5,-37.5 parent: 1 - - uid: 12496 + - uid: 15551 components: - type: Transform - pos: -35.5,-5.5 + pos: 82.5,-37.5 parent: 1 - - uid: 12497 + - uid: 15552 components: - type: Transform - pos: -35.5,-6.5 + pos: 81.5,-37.5 parent: 1 - - uid: 12498 + - uid: 15553 components: - type: Transform - pos: -35.5,-7.5 + pos: 80.5,-37.5 parent: 1 - - uid: 12499 + - uid: 15555 components: - type: Transform - pos: -35.5,-8.5 + pos: 79.5,-37.5 parent: 1 - - uid: 12518 + - uid: 15556 components: - type: Transform - pos: -33.5,0.5 + pos: 78.5,-37.5 parent: 1 - - uid: 12519 + - uid: 15558 components: - type: Transform - pos: -34.5,0.5 + pos: 77.5,-37.5 parent: 1 - - uid: 12520 + - uid: 15559 components: - type: Transform - pos: -32.5,-3.5 + pos: 76.5,-37.5 parent: 1 - - uid: 12521 + - uid: 15560 components: - type: Transform - pos: -33.5,-2.5 + pos: 75.5,-37.5 parent: 1 - - uid: 12522 + - uid: 15561 components: - type: Transform - pos: -33.5,-1.5 + pos: 74.5,-37.5 parent: 1 - - uid: 12523 + - uid: 15562 components: - type: Transform - pos: -34.5,-0.5 + pos: 73.5,-37.5 parent: 1 - - uid: 12524 + - uid: 15567 components: - type: Transform - pos: -32.5,-4.5 + pos: 72.5,-37.5 parent: 1 - - uid: 12525 + - uid: 15568 components: - type: Transform - pos: -32.5,-5.5 + pos: 71.5,-37.5 parent: 1 - - uid: 12526 + - uid: 15571 components: - type: Transform - pos: -32.5,-6.5 + pos: 70.5,-37.5 parent: 1 - - uid: 12527 + - uid: 15572 components: - type: Transform - pos: -32.5,-7.5 + pos: 69.5,-37.5 parent: 1 - - uid: 12528 + - uid: 15573 components: - type: Transform - pos: -32.5,1.5 + pos: 68.5,-37.5 parent: 1 - - uid: 12529 + - uid: 15581 components: - type: Transform - pos: -31.5,-4.5 + pos: 67.5,-37.5 parent: 1 - - uid: 12530 + - uid: 15582 components: - type: Transform - pos: -31.5,-5.5 + pos: 66.5,-37.5 parent: 1 - - uid: 12531 + - uid: 15583 components: - type: Transform - pos: -31.5,-6.5 + pos: 65.5,-37.5 parent: 1 - - uid: 12532 + - uid: 15584 components: - type: Transform - pos: -31.5,-7.5 + pos: 64.5,-37.5 parent: 1 - - uid: 12533 + - uid: 15585 components: - type: Transform - pos: -33.5,1.5 + pos: 63.5,-37.5 parent: 1 - - uid: 12534 + - uid: 15587 components: - type: Transform - pos: -30.5,-4.5 + pos: 63.5,-38.5 parent: 1 - - uid: 12535 + - uid: 15595 components: - type: Transform - pos: -30.5,-5.5 + pos: 63.5,-39.5 parent: 1 - - uid: 12536 + - uid: 15596 components: - type: Transform - pos: -30.5,-6.5 + pos: 63.5,-40.5 parent: 1 - - uid: 12537 + - uid: 15602 components: - type: Transform - pos: -30.5,-7.5 + pos: 63.5,-41.5 parent: 1 - - uid: 12538 + - uid: 15604 components: - type: Transform - pos: -32.5,0.5 + pos: 63.5,-42.5 parent: 1 - - uid: 12539 + - uid: 15605 components: - type: Transform - pos: -33.5,-8.5 + pos: 63.5,-43.5 parent: 1 - - uid: 12541 + - uid: 15606 components: - type: Transform - pos: -32.5,-8.5 + pos: 63.5,-44.5 parent: 1 - - uid: 12542 + - uid: 15654 components: - type: Transform - pos: -31.5,-8.5 + pos: 63.5,-45.5 parent: 1 - - uid: 12543 + - uid: 15655 components: - type: Transform - pos: -30.5,-8.5 + pos: 63.5,-46.5 parent: 1 - - uid: 16850 + - uid: 15656 components: - type: Transform - pos: -100.5,-26.5 + pos: 63.5,-47.5 parent: 1 - - uid: 17690 + - uid: 15672 components: - type: Transform - pos: -90.5,-16.5 + pos: 63.5,-48.5 parent: 1 - - uid: 17691 + - uid: 15733 components: - type: Transform - pos: -89.5,-17.5 + pos: 63.5,-49.5 parent: 1 - - uid: 17692 + - uid: 15790 components: - type: Transform - pos: -88.5,-16.5 + pos: 63.5,-50.5 parent: 1 - - uid: 17693 + - uid: 15791 components: - type: Transform - pos: -87.5,-17.5 + pos: 63.5,-51.5 parent: 1 - - uid: 23795 + - uid: 15792 components: - type: Transform - pos: 36.5,-53.5 + pos: 63.5,-52.5 parent: 1 - - uid: 23796 + - uid: 15793 components: - type: Transform - pos: 37.5,-53.5 + pos: 63.5,-53.5 parent: 1 - - uid: 23797 + - uid: 15794 components: - type: Transform - pos: 38.5,-53.5 + pos: 63.5,-54.5 parent: 1 - - uid: 23798 + - uid: 15835 components: - type: Transform - pos: 39.5,-53.5 + pos: 44.5,-40.5 parent: 1 - - uid: 23799 + - uid: 15837 components: - type: Transform - pos: 36.5,-55.5 + pos: -31.5,-69.5 parent: 1 - - uid: 23802 + - uid: 15838 components: - type: Transform - pos: 37.5,-55.5 + pos: 47.5,-40.5 parent: 1 - - uid: 23803 + - uid: 15839 components: - type: Transform - pos: 38.5,-55.5 + pos: 48.5,-40.5 parent: 1 - - uid: 23804 + - uid: 15840 components: - type: Transform - pos: 39.5,-55.5 + pos: 49.5,-40.5 parent: 1 - - uid: 23805 + - uid: 15841 components: - type: Transform - pos: 37.5,-56.5 + pos: 50.5,-40.5 parent: 1 - - uid: 23806 + - uid: 15842 components: - type: Transform - pos: 38.5,-56.5 + pos: 51.5,-40.5 parent: 1 - - uid: 23807 + - uid: 15843 components: - type: Transform - pos: 38.5,-54.5 + pos: 52.5,-40.5 parent: 1 - - uid: 23808 + - uid: 15844 components: - type: Transform - pos: 37.5,-54.5 + pos: 53.5,-40.5 parent: 1 - - uid: 23809 + - uid: 15845 components: - type: Transform - pos: 37.5,-57.5 + pos: 54.5,-40.5 parent: 1 - - uid: 23810 + - uid: 15846 components: - type: Transform - pos: 38.5,-57.5 + pos: 55.5,-40.5 parent: 1 - - uid: 30788 + - uid: 15847 components: - type: Transform - pos: -72.5,-39.5 + pos: 56.5,-40.5 parent: 1 - - uid: 30789 + - uid: 16026 components: - type: Transform - pos: -72.5,-40.5 + pos: -85.5,-38.5 parent: 1 - - uid: 30790 + - uid: 16162 components: - type: Transform - pos: -71.5,-39.5 + pos: -51.5,-79.5 parent: 1 - - uid: 30791 + - uid: 16163 components: - type: Transform - pos: -71.5,-40.5 + pos: -51.5,-80.5 parent: 1 - - uid: 30792 + - uid: 16164 components: - type: Transform - pos: -70.5,-39.5 + pos: -51.5,-81.5 parent: 1 - - uid: 30793 + - uid: 16165 components: - type: Transform - pos: -70.5,-40.5 + pos: -51.5,-82.5 parent: 1 - - uid: 30794 + - uid: 16166 components: - type: Transform - pos: -69.5,-39.5 + pos: -38.5,-79.5 parent: 1 - - uid: 30795 + - uid: 16167 components: - type: Transform - pos: -69.5,-40.5 + pos: -38.5,-80.5 parent: 1 -- proto: CarpetBlue - entities: - - uid: 5947 + - uid: 16168 components: - type: Transform - pos: -43.5,29.5 + pos: -38.5,-81.5 parent: 1 - - uid: 5948 + - uid: 16169 components: - type: Transform - pos: -44.5,29.5 + pos: -38.5,-82.5 parent: 1 - - uid: 5949 + - uid: 16172 components: - type: Transform - pos: -43.5,30.5 + pos: -33.5,-93.5 parent: 1 - - uid: 6092 + - uid: 16173 components: - type: Transform - pos: -44.5,30.5 + pos: -56.5,-93.5 parent: 1 - - uid: 7231 + - uid: 16481 components: - type: Transform - pos: -45.5,30.5 + pos: -96.5,-26.5 parent: 1 - - uid: 7232 + - uid: 16847 components: - type: Transform - pos: -45.5,29.5 + pos: -31.5,-67.5 parent: 1 - - uid: 7234 + - uid: 16853 components: - type: Transform - pos: -46.5,29.5 + pos: -31.5,-66.5 parent: 1 - - uid: 7282 + - uid: 16854 components: - type: Transform - pos: -46.5,30.5 + pos: -31.5,-65.5 parent: 1 - - uid: 8198 + - uid: 16855 components: - type: Transform - pos: -47.5,30.5 + pos: -95.5,9.5 parent: 1 - - uid: 8296 + - uid: 16856 components: - type: Transform - pos: -47.5,29.5 + pos: -96.5,9.5 parent: 1 - - uid: 8297 + - uid: 16857 components: - type: Transform - pos: -49.5,29.5 + pos: -96.5,10.5 parent: 1 - - uid: 8298 + - uid: 16858 components: - type: Transform - pos: -48.5,29.5 + pos: -96.5,12.5 parent: 1 - - uid: 8299 + - uid: 16859 components: - type: Transform - pos: -48.5,30.5 + pos: -97.5,13.5 parent: 1 - - uid: 8300 + - uid: 16861 components: - type: Transform - pos: -49.5,30.5 + pos: -92.5,9.5 parent: 1 - - uid: 8301 + - uid: 16862 components: - type: Transform - pos: -50.5,29.5 + pos: -91.5,9.5 parent: 1 - - uid: 8302 + - uid: 16863 components: - type: Transform - pos: -50.5,30.5 + pos: -97.5,-7.5 parent: 1 - - uid: 8303 + - uid: 16864 components: - type: Transform - pos: -51.5,30.5 + pos: -97.5,-6.5 parent: 1 - - uid: 8304 + - uid: 17437 components: - type: Transform - pos: -51.5,29.5 + pos: -31.5,-64.5 parent: 1 - - uid: 8305 + - uid: 17668 components: - type: Transform - pos: -52.5,29.5 + pos: -31.5,-63.5 parent: 1 - - uid: 8306 + - uid: 17738 components: - type: Transform - pos: -52.5,30.5 + pos: -31.5,-62.5 parent: 1 - - uid: 8307 + - uid: 17739 components: - type: Transform - pos: -53.5,30.5 + pos: -31.5,-61.5 parent: 1 - - uid: 8308 + - uid: 17740 components: - type: Transform - pos: -53.5,29.5 + pos: -31.5,-60.5 parent: 1 - - uid: 9405 + - uid: 17741 components: - type: Transform - pos: -13.5,-29.5 + pos: -31.5,-59.5 parent: 1 - - uid: 9406 + - uid: 17742 components: - type: Transform - pos: -13.5,-30.5 + pos: -31.5,-58.5 parent: 1 - - uid: 9407 + - uid: 17752 components: - type: Transform - pos: -13.5,-31.5 + pos: -31.5,-57.5 parent: 1 - - uid: 9408 + - uid: 17753 components: - type: Transform - pos: -12.5,-29.5 + pos: -30.5,-57.5 parent: 1 - - uid: 9409 + - uid: 18027 components: - type: Transform - pos: -12.5,-30.5 + pos: -30.5,-56.5 parent: 1 - - uid: 9410 + - uid: 18082 components: - type: Transform - pos: -12.5,-31.5 + pos: -95.5,-29.5 parent: 1 - - uid: 9411 + - uid: 18101 components: - type: Transform - pos: -11.5,-29.5 + pos: -29.5,-56.5 parent: 1 - - uid: 9412 + - uid: 18102 components: - type: Transform - pos: -11.5,-30.5 + pos: -28.5,-56.5 parent: 1 - - uid: 9413 + - uid: 18103 components: - type: Transform - pos: -11.5,-31.5 + pos: -27.5,-56.5 parent: 1 - - uid: 9475 + - uid: 18104 components: - type: Transform - pos: -57.5,-24.5 + pos: -26.5,-56.5 parent: 1 - - uid: 9478 + - uid: 18105 components: - type: Transform - pos: -57.5,-23.5 + pos: -25.5,-56.5 parent: 1 - - uid: 12283 + - uid: 18874 components: - type: Transform - pos: -57.5,-25.5 + pos: -96.5,-29.5 parent: 1 - - uid: 12284 + - uid: 18879 components: - type: Transform - pos: -56.5,-25.5 + pos: -93.5,-29.5 parent: 1 - - uid: 12285 + - uid: 18881 components: - type: Transform - pos: -56.5,-23.5 + pos: -88.5,-33.5 parent: 1 - - uid: 12286 + - uid: 18882 components: - type: Transform - pos: -56.5,-24.5 + pos: -88.5,-34.5 parent: 1 - - uid: 12292 + - uid: 18883 components: - type: Transform - pos: -55.5,-23.5 + pos: -90.5,-33.5 parent: 1 - - uid: 12293 + - uid: 18884 components: - type: Transform - pos: -55.5,-24.5 + pos: -91.5,-32.5 parent: 1 - - uid: 12294 + - uid: 18885 components: - type: Transform - pos: -55.5,-25.5 + pos: -91.5,-30.5 parent: 1 - - uid: 23811 + - uid: 18889 components: - type: Transform - pos: 32.5,-52.5 + pos: -92.5,-29.5 parent: 1 - - uid: 23812 + - uid: 19227 components: - type: Transform - pos: 32.5,-52.5 + pos: -109.5,-7.5 parent: 1 - - uid: 23813 + - uid: 19252 components: - type: Transform - pos: 32.5,-53.5 + pos: -94.5,9.5 parent: 1 - - uid: 23814 + - uid: 19287 components: - type: Transform - pos: 33.5,-52.5 + pos: -96.5,-28.5 parent: 1 - - uid: 23815 + - uid: 19927 components: - type: Transform - pos: 33.5,-53.5 + pos: -100.5,58.5 parent: 1 - - uid: 32344 + - uid: 19928 components: - type: Transform - pos: -88.5,14.5 + pos: -100.5,52.5 parent: 1 - - uid: 32345 + - uid: 20770 components: - type: Transform - pos: -82.5,16.5 + pos: -24.5,-56.5 parent: 1 - - uid: 32346 + - uid: 20771 components: - type: Transform - pos: -88.5,16.5 + pos: -23.5,-56.5 parent: 1 - - uid: 32349 + - uid: 20772 components: - type: Transform - pos: -88.5,13.5 + pos: -22.5,-56.5 parent: 1 - - uid: 32350 + - uid: 21280 components: - type: Transform - pos: -82.5,14.5 + pos: -107.5,-7.5 parent: 1 - - uid: 32351 + - uid: 21608 components: - type: Transform - pos: -82.5,15.5 + pos: -21.5,-56.5 parent: 1 - - uid: 32352 + - uid: 21609 components: - type: Transform - pos: -82.5,13.5 + pos: -20.5,-56.5 parent: 1 - - uid: 32357 + - uid: 21931 components: - type: Transform - pos: -88.5,15.5 + pos: -19.5,-56.5 parent: 1 - - uid: 32358 + - uid: 21942 components: - type: Transform - pos: -85.5,17.5 + pos: -18.5,-56.5 parent: 1 - - uid: 32359 + - uid: 22117 components: - type: Transform - pos: -84.5,16.5 + pos: -106.5,-6.5 parent: 1 - - uid: 32361 + - uid: 22301 components: - type: Transform - pos: -85.5,14.5 + pos: 17.5,18.5 parent: 1 - - uid: 32362 + - uid: 22306 components: - type: Transform - pos: -85.5,15.5 + pos: -97.5,-8.5 parent: 1 - - uid: 32363 + - uid: 22392 components: - type: Transform - pos: -85.5,13.5 + pos: 15.5,17.5 parent: 1 - - uid: 32364 + - uid: 22991 components: - type: Transform - pos: -85.5,12.5 + pos: -17.5,-56.5 parent: 1 - - uid: 32365 + - uid: 23049 components: - type: Transform - pos: -85.5,11.5 + pos: -16.5,-56.5 parent: 1 - - uid: 32374 + - uid: 23525 components: - type: Transform - pos: -83.5,16.5 + pos: 9.5,31.5 parent: 1 - - uid: 32375 + - uid: 23526 components: - type: Transform - pos: -85.5,16.5 + pos: 10.5,31.5 parent: 1 - - uid: 32377 + - uid: 23527 components: - type: Transform - pos: -86.5,16.5 + pos: 10.5,30.5 parent: 1 - - uid: 32383 + - uid: 23528 components: - type: Transform - pos: -87.5,13.5 + pos: 11.5,30.5 parent: 1 - - uid: 32387 + - uid: 23529 components: - type: Transform - pos: -87.5,16.5 + pos: 12.5,30.5 parent: 1 - - uid: 32388 + - uid: 23530 components: - type: Transform - pos: -86.5,13.5 + pos: 13.5,30.5 parent: 1 - - uid: 32389 + - uid: 23531 components: - type: Transform - pos: -84.5,13.5 + pos: 14.5,30.5 parent: 1 - - uid: 32390 + - uid: 23532 components: - type: Transform - pos: -83.5,13.5 + pos: 15.5,30.5 parent: 1 -- proto: CarpetGreen - entities: - - uid: 7587 + - uid: 23533 components: - type: Transform - pos: -70.5,18.5 + pos: 16.5,30.5 parent: 1 - - uid: 7588 + - uid: 23534 components: - type: Transform - pos: -70.5,17.5 + pos: 17.5,30.5 parent: 1 - - uid: 7589 + - uid: 23556 components: - type: Transform - pos: -69.5,18.5 + pos: 18.5,30.5 parent: 1 - - uid: 7590 + - uid: 23557 components: - type: Transform - pos: -69.5,17.5 + pos: 19.5,30.5 parent: 1 - - uid: 12466 + - uid: 23558 components: - type: Transform - pos: -57.5,2.5 + pos: 20.5,30.5 parent: 1 - - uid: 12467 + - uid: 23559 components: - type: Transform - pos: -57.5,1.5 + pos: 21.5,30.5 parent: 1 - - uid: 12468 + - uid: 23560 components: - type: Transform - pos: -56.5,2.5 + pos: 22.5,30.5 parent: 1 - - uid: 12469 + - uid: 23561 components: - type: Transform - pos: -56.5,1.5 + pos: 23.5,30.5 parent: 1 - - uid: 12470 + - uid: 23562 components: - type: Transform - pos: -55.5,2.5 + pos: 24.5,30.5 parent: 1 - - uid: 12471 + - uid: 23563 components: - type: Transform - pos: -55.5,1.5 + pos: 25.5,30.5 parent: 1 - - uid: 17694 + - uid: 23564 components: - type: Transform - pos: -91.5,-16.5 + pos: 26.5,30.5 parent: 1 - - uid: 17695 + - uid: 23565 components: - type: Transform - pos: -90.5,-17.5 + pos: 27.5,30.5 parent: 1 - - uid: 17696 + - uid: 23566 components: - type: Transform - pos: -89.5,-16.5 + pos: 28.5,30.5 parent: 1 - - uid: 17697 + - uid: 23567 components: - type: Transform - pos: -88.5,-17.5 + pos: 29.5,30.5 parent: 1 - - uid: 17699 + - uid: 23568 components: - type: Transform - pos: -87.5,-16.5 + pos: 30.5,30.5 parent: 1 - - uid: 28651 + - uid: 23569 components: - type: Transform - pos: -89.5,-21.5 + pos: 31.5,30.5 parent: 1 - - uid: 28652 + - uid: 23570 components: - type: Transform - pos: -89.5,-20.5 + pos: 32.5,30.5 parent: 1 - - uid: 28653 + - uid: 23571 components: - type: Transform - pos: -90.5,-21.5 + pos: 33.5,30.5 parent: 1 - - uid: 28654 + - uid: 23572 components: - type: Transform - pos: -90.5,-20.5 + pos: 34.5,30.5 parent: 1 - - uid: 30640 + - uid: 23573 components: - type: Transform - pos: -113.5,1.5 + pos: 35.5,30.5 parent: 1 - - uid: 30641 + - uid: 23574 components: - type: Transform - pos: -113.5,0.5 + pos: 36.5,30.5 parent: 1 - - uid: 30642 + - uid: 23575 components: - type: Transform - pos: -113.5,-0.5 + pos: 37.5,30.5 parent: 1 - - uid: 30643 + - uid: 23576 components: - type: Transform - pos: -114.5,1.5 + pos: 38.5,30.5 parent: 1 - - uid: 30644 + - uid: 23577 components: - type: Transform - pos: -114.5,0.5 + pos: 39.5,30.5 parent: 1 - - uid: 30645 + - uid: 23578 components: - type: Transform - pos: -114.5,-0.5 + pos: 39.5,29.5 parent: 1 -- proto: CarpetOrange - entities: - - uid: 10981 + - uid: 23579 components: - type: Transform - pos: -30.5,-18.5 + pos: 39.5,28.5 parent: 1 - - uid: 10982 + - uid: 23580 components: - type: Transform - pos: -31.5,-17.5 + pos: 39.5,27.5 parent: 1 - - uid: 10983 + - uid: 23581 components: - type: Transform - pos: -30.5,-17.5 + pos: 39.5,26.5 parent: 1 - - uid: 10984 + - uid: 23582 components: - type: Transform - pos: -31.5,-18.5 + pos: 39.5,25.5 parent: 1 - - uid: 10985 + - uid: 23583 components: - type: Transform - pos: -32.5,-17.5 + pos: 39.5,24.5 parent: 1 - - uid: 10986 + - uid: 23584 components: - type: Transform - pos: -32.5,-18.5 + pos: 39.5,23.5 parent: 1 - - uid: 36614 + - uid: 23585 components: - type: Transform - pos: -115.5,-76.5 + pos: 39.5,22.5 parent: 1 - - uid: 36615 + - uid: 23586 components: - type: Transform - pos: -116.5,-76.5 + pos: 39.5,21.5 parent: 1 - - uid: 36616 + - uid: 23587 components: - type: Transform - pos: -117.5,-76.5 + pos: 39.5,20.5 parent: 1 -- proto: CarpetPink - entities: - - uid: 6037 + - uid: 23588 components: - type: Transform - pos: -25.5,-36.5 + pos: 39.5,19.5 parent: 1 - - uid: 6912 + - uid: 23590 components: - type: Transform - pos: -24.5,-28.5 + pos: 39.5,18.5 parent: 1 - - uid: 6913 + - uid: 23591 components: - type: Transform - pos: -24.5,-30.5 + pos: 39.5,17.5 parent: 1 - - uid: 6914 + - uid: 23652 components: - type: Transform - pos: -25.5,-29.5 + pos: 39.5,16.5 parent: 1 - - uid: 6915 + - uid: 23653 components: - type: Transform - pos: -24.5,-34.5 + pos: 39.5,15.5 parent: 1 - - uid: 6916 + - uid: 23654 components: - type: Transform - pos: -24.5,-36.5 + pos: 39.5,14.5 parent: 1 - - uid: 6919 + - uid: 23655 components: - type: Transform - pos: -26.5,-33.5 + pos: 39.5,13.5 parent: 1 - - uid: 6920 + - uid: 23656 components: - type: Transform - pos: -28.5,-33.5 + pos: 39.5,12.5 parent: 1 - - uid: 6922 + - uid: 23657 components: - type: Transform - pos: -25.5,-28.5 + pos: 39.5,11.5 parent: 1 - - uid: 6923 + - uid: 23658 components: - type: Transform - pos: -24.5,-32.5 + pos: 39.5,10.5 parent: 1 - - uid: 6924 + - uid: 23659 components: - type: Transform - pos: -25.5,-35.5 + pos: 39.5,9.5 parent: 1 - - uid: 6925 + - uid: 23660 components: - type: Transform - pos: -25.5,-33.5 + pos: 39.5,8.5 parent: 1 - - uid: 6926 + - uid: 23661 components: - type: Transform - pos: -25.5,-31.5 + pos: 39.5,7.5 parent: 1 - - uid: 6929 + - uid: 23662 components: - type: Transform - pos: -27.5,-32.5 + pos: 39.5,6.5 parent: 1 - - uid: 6930 + - uid: 23663 components: - type: Transform - pos: -27.5,-34.5 + pos: 39.5,5.5 parent: 1 - - uid: 9719 + - uid: 23664 components: - type: Transform - pos: -28.5,-34.5 + pos: 39.5,4.5 parent: 1 - - uid: 9720 + - uid: 23665 components: - type: Transform - pos: -28.5,-32.5 + pos: 39.5,3.5 parent: 1 - - uid: 9721 + - uid: 23666 components: - type: Transform - pos: -27.5,-33.5 + pos: 39.5,2.5 parent: 1 - - uid: 9722 + - uid: 23667 components: - type: Transform - pos: -26.5,-34.5 + pos: 39.5,1.5 parent: 1 - - uid: 9736 + - uid: 23950 components: - type: Transform - pos: -24.5,-37.5 + pos: -73.5,-38.5 parent: 1 - - uid: 9737 + - uid: 24609 components: - type: Transform - pos: -26.5,-32.5 + pos: -16.5,-55.5 parent: 1 - - uid: 9738 + - uid: 24627 components: - type: Transform - pos: -25.5,-32.5 + pos: -31.5,-70.5 parent: 1 - - uid: 9739 + - uid: 24629 components: - type: Transform - pos: -25.5,-34.5 + pos: -29.5,-70.5 parent: 1 - - uid: 9740 + - uid: 24630 components: - type: Transform - pos: -24.5,-35.5 + pos: -28.5,-70.5 parent: 1 - - uid: 9741 + - uid: 24631 components: - type: Transform - pos: -25.5,-30.5 + pos: -28.5,-71.5 parent: 1 - - uid: 9743 + - uid: 24632 components: - type: Transform - pos: -24.5,-29.5 + pos: -28.5,-72.5 parent: 1 - - uid: 9744 + - uid: 24633 components: - type: Transform - pos: -24.5,-31.5 + pos: -28.5,-73.5 parent: 1 - - uid: 9745 + - uid: 24634 components: - type: Transform - pos: -24.5,-33.5 + pos: -28.5,-74.5 parent: 1 - - uid: 18994 + - uid: 24635 components: - type: Transform - pos: -25.5,-37.5 + pos: -31.5,-71.5 parent: 1 -- proto: CarpetPurple - entities: - - uid: 9174 + - uid: 24636 components: - type: Transform - pos: -16.5,30.5 + pos: -33.5,-71.5 parent: 1 - - uid: 23816 + - uid: 24637 components: - type: Transform - pos: 43.5,-53.5 + pos: -32.5,-71.5 parent: 1 - - uid: 23817 + - uid: 24638 components: - type: Transform - pos: 42.5,-53.5 + pos: -34.5,-71.5 parent: 1 - - uid: 29313 + - uid: 24639 components: - type: Transform - pos: 9.5,-50.5 + pos: -34.5,-72.5 parent: 1 - - uid: 30646 + - uid: 24640 components: - type: Transform - pos: -102.5,1.5 + pos: -34.5,-73.5 parent: 1 - - uid: 30647 + - uid: 24641 components: - type: Transform - pos: -102.5,0.5 + pos: -34.5,-74.5 parent: 1 - - uid: 30648 + - uid: 24642 components: - type: Transform - pos: -102.5,-0.5 + pos: -35.5,-74.5 parent: 1 - - uid: 30649 + - uid: 24643 components: - type: Transform - pos: -102.5,-1.5 + pos: -36.5,-74.5 parent: 1 - - uid: 30650 + - uid: 24644 components: - type: Transform - pos: -101.5,1.5 + pos: -37.5,-74.5 parent: 1 - - uid: 30651 + - uid: 24645 components: - type: Transform - pos: -101.5,0.5 + pos: -38.5,-74.5 parent: 1 - - uid: 30652 + - uid: 24647 components: - type: Transform - pos: -101.5,-0.5 + pos: -40.5,-74.5 parent: 1 - - uid: 30653 + - uid: 24648 components: - type: Transform - pos: -101.5,-1.5 + pos: -41.5,-74.5 parent: 1 - - uid: 30654 + - uid: 24649 components: - type: Transform - pos: -100.5,1.5 + pos: -42.5,-74.5 parent: 1 - - uid: 30655 + - uid: 24651 components: - type: Transform - pos: -100.5,0.5 + pos: -44.5,-74.5 parent: 1 - - uid: 30656 + - uid: 24652 components: - type: Transform - pos: -100.5,-0.5 + pos: -45.5,-74.5 parent: 1 - - uid: 30657 + - uid: 24653 components: - type: Transform - pos: -100.5,-1.5 + pos: -46.5,-74.5 parent: 1 - - uid: 30658 + - uid: 24654 components: - type: Transform - pos: -99.5,1.5 + pos: -47.5,-74.5 parent: 1 - - uid: 30659 + - uid: 24655 components: - type: Transform - pos: -99.5,0.5 + pos: -48.5,-74.5 parent: 1 - - uid: 30660 + - uid: 24656 components: - type: Transform - pos: -99.5,-0.5 + pos: -49.5,-74.5 parent: 1 - - uid: 30661 + - uid: 24657 components: - type: Transform - pos: -99.5,-1.5 + pos: -50.5,-74.5 parent: 1 - - uid: 30662 + - uid: 24658 components: - type: Transform - pos: -98.5,1.5 + pos: -51.5,-74.5 parent: 1 - - uid: 30663 + - uid: 24659 components: - type: Transform - pos: -98.5,0.5 + pos: -52.5,-74.5 parent: 1 - - uid: 30664 + - uid: 24660 components: - type: Transform - pos: -98.5,-0.5 + pos: -53.5,-74.5 parent: 1 - - uid: 30665 + - uid: 24661 components: - type: Transform - pos: -98.5,-1.5 + pos: -53.5,-73.5 parent: 1 - - uid: 31074 + - uid: 24662 components: - type: Transform - pos: 10.5,-49.5 + pos: -53.5,-72.5 parent: 1 - - uid: 31075 + - uid: 24663 components: - type: Transform - pos: 9.5,-51.5 + pos: -53.5,-71.5 parent: 1 - - uid: 31494 + - uid: 24664 components: - type: Transform - pos: -16.5,29.5 + pos: -53.5,-70.5 parent: 1 - - uid: 32196 + - uid: 24665 components: - type: Transform - pos: 15.5,-49.5 + pos: -53.5,-69.5 parent: 1 - - uid: 32197 + - uid: 24667 components: - type: Transform - pos: 15.5,-50.5 + pos: -53.5,-67.5 parent: 1 - - uid: 32203 + - uid: 24668 components: - type: Transform - pos: 9.5,-51.5 + pos: -53.5,-66.5 parent: 1 - - uid: 32204 + - uid: 24669 components: - type: Transform - pos: 10.5,-51.5 + pos: -53.5,-65.5 parent: 1 - - uid: 32222 + - uid: 24670 components: - type: Transform - pos: 10.5,-50.5 + pos: -54.5,-65.5 parent: 1 - - uid: 32224 + - uid: 24671 components: - type: Transform - pos: 11.5,-53.5 + pos: -55.5,-65.5 parent: 1 - - uid: 32225 + - uid: 24672 components: - type: Transform - pos: 11.5,-54.5 + pos: -56.5,-65.5 parent: 1 - - uid: 32226 + - uid: 24673 components: - type: Transform - pos: 11.5,-55.5 + pos: -57.5,-65.5 parent: 1 - - uid: 32227 + - uid: 24674 components: - type: Transform - pos: 9.5,-49.5 + pos: -58.5,-65.5 parent: 1 - - uid: 32228 + - uid: 24675 components: - type: Transform - pos: 12.5,-53.5 + pos: -59.5,-65.5 parent: 1 - - uid: 32229 + - uid: 24676 components: - type: Transform - pos: 12.5,-54.5 + pos: -60.5,-65.5 parent: 1 - - uid: 32230 + - uid: 24677 components: - type: Transform - pos: 12.5,-55.5 + pos: -61.5,-65.5 parent: 1 - - uid: 32319 + - uid: 24678 components: - type: Transform - pos: -16.5,31.5 + pos: -62.5,-65.5 parent: 1 - - uid: 32320 + - uid: 24679 components: - type: Transform - pos: -15.5,29.5 + pos: -63.5,-65.5 parent: 1 - - uid: 32321 + - uid: 24680 components: - type: Transform - pos: -14.5,29.5 + pos: -63.5,-64.5 parent: 1 - - uid: 32322 + - uid: 24681 components: - type: Transform - pos: -14.5,30.5 + pos: -63.5,-63.5 parent: 1 - - uid: 32336 + - uid: 24682 components: - type: Transform - pos: -15.5,30.5 + pos: -63.5,-62.5 parent: 1 - - uid: 32338 + - uid: 24683 components: - type: Transform - pos: -15.5,31.5 + pos: -63.5,-61.5 parent: 1 - - uid: 32339 + - uid: 24684 components: - type: Transform - pos: -14.5,31.5 + pos: -63.5,-60.5 parent: 1 - - uid: 32340 + - uid: 24685 components: - type: Transform - pos: -13.5,29.5 + pos: -63.5,-59.5 parent: 1 - - uid: 32341 + - uid: 24686 components: - type: Transform - pos: -13.5,30.5 + pos: -63.5,-58.5 parent: 1 - - uid: 32342 + - uid: 24687 components: - type: Transform - pos: -13.5,31.5 + pos: -63.5,-57.5 parent: 1 -- proto: CarpetSBlue - entities: - - uid: 2547 + - uid: 24688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-49.5 + pos: -63.5,-56.5 parent: 1 - - uid: 2548 + - uid: 24689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-50.5 + pos: -64.5,-56.5 parent: 1 - - uid: 2549 + - uid: 24690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-51.5 + pos: -65.5,-56.5 parent: 1 - - uid: 2550 + - uid: 24691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-49.5 + pos: -66.5,-56.5 parent: 1 - - uid: 2551 + - uid: 24692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 + pos: -67.5,-56.5 parent: 1 - - uid: 2552 + - uid: 24693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-51.5 + pos: -68.5,-56.5 parent: 1 - - uid: 2553 + - uid: 24694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 + pos: -69.5,-56.5 parent: 1 - - uid: 2554 + - uid: 24695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + pos: -69.5,-55.5 parent: 1 - - uid: 2555 + - uid: 24696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + pos: -69.5,-54.5 parent: 1 - - uid: 2556 + - uid: 24697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-54.5 + pos: -70.5,-54.5 parent: 1 - - uid: 2557 + - uid: 24698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-55.5 + pos: -71.5,-54.5 parent: 1 - - uid: 2558 + - uid: 24699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-56.5 + pos: -72.5,-54.5 parent: 1 - - uid: 2559 + - uid: 24701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-54.5 + pos: -74.5,-54.5 parent: 1 - - uid: 2560 + - uid: 24702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-55.5 + pos: -74.5,-53.5 parent: 1 - - uid: 2561 + - uid: 24703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-56.5 + pos: -74.5,-52.5 parent: 1 - - uid: 2562 + - uid: 24704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-54.5 + pos: -74.5,-51.5 parent: 1 - - uid: 2563 + - uid: 24705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-55.5 + pos: -74.5,-50.5 parent: 1 - - uid: 2564 + - uid: 24706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 + pos: -74.5,-49.5 parent: 1 - - uid: 12772 + - uid: 24707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,41.5 + pos: -74.5,-48.5 parent: 1 - - uid: 12789 + - uid: 24708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,40.5 + pos: -74.5,-47.5 parent: 1 - - uid: 12793 + - uid: 24709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,39.5 + pos: -74.5,-46.5 parent: 1 - - uid: 12803 + - uid: 24710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,40.5 + pos: -74.5,-45.5 parent: 1 - - uid: 12805 + - uid: 24711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,39.5 + pos: -74.5,-44.5 parent: 1 - - uid: 12806 + - uid: 24712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,41.5 + pos: -74.5,-43.5 parent: 1 - - uid: 12809 + - uid: 24713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,40.5 + pos: -74.5,-42.5 parent: 1 - - uid: 12863 + - uid: 24714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,39.5 + pos: -74.5,-41.5 parent: 1 - - uid: 12865 + - uid: 24715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,41.5 + pos: -74.5,-40.5 parent: 1 - - uid: 12866 + - uid: 24716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,40.5 + pos: -74.5,-39.5 parent: 1 - - uid: 12867 + - uid: 24717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,39.5 + pos: -74.5,-38.5 parent: 1 - - uid: 13103 + - uid: 24718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,41.5 + pos: -72.5,-38.5 parent: 1 - - uid: 30636 + - uid: 24719 components: - type: Transform - pos: -118.5,-2.5 + pos: -71.5,-38.5 parent: 1 - - uid: 30637 + - uid: 24720 components: - type: Transform - pos: -118.5,-3.5 + pos: -70.5,-38.5 parent: 1 - - uid: 30638 + - uid: 24721 components: - type: Transform - pos: -117.5,-2.5 + pos: -69.5,-38.5 parent: 1 - - uid: 30639 + - uid: 24722 components: - type: Transform - pos: -117.5,-3.5 + pos: -68.5,-38.5 parent: 1 - - uid: 32366 + - uid: 24723 components: - type: Transform - pos: -85.5,10.5 + pos: -67.5,-38.5 parent: 1 -- proto: Catwalk - entities: - - uid: 3215 + - uid: 24724 components: - type: Transform - pos: -112.5,-26.5 + pos: -66.5,-38.5 parent: 1 - - uid: 3216 + - uid: 24725 components: - type: Transform - pos: -113.5,-26.5 + pos: -65.5,-38.5 parent: 1 - - uid: 3217 + - uid: 24726 components: - type: Transform - pos: -114.5,-26.5 + pos: -64.5,-38.5 parent: 1 - - uid: 4701 + - uid: 24727 components: - type: Transform - pos: -80.5,-39.5 + pos: -63.5,-38.5 parent: 1 - - uid: 4702 + - uid: 24728 components: - type: Transform - pos: -85.5,-37.5 + pos: -62.5,-38.5 parent: 1 - - uid: 4714 + - uid: 24729 components: - type: Transform - pos: -83.5,-39.5 + pos: -61.5,-38.5 parent: 1 - - uid: 4717 + - uid: 24730 components: - type: Transform - pos: -78.5,-39.5 + pos: -60.5,-38.5 parent: 1 - - uid: 4718 + - uid: 24731 components: - type: Transform - pos: -77.5,-39.5 + pos: -65.5,-37.5 parent: 1 - - uid: 4741 + - uid: 24732 components: - type: Transform - pos: -82.5,-39.5 + pos: -65.5,-36.5 parent: 1 - - uid: 4743 + - uid: 24733 components: - type: Transform - pos: -85.5,-39.5 + pos: -65.5,-35.5 parent: 1 - - uid: 4766 + - uid: 24736 components: - type: Transform - pos: -85.5,-36.5 + pos: -75.5,-39.5 parent: 1 - - uid: 4767 + - uid: 24737 components: - type: Transform - pos: -84.5,-39.5 + pos: -76.5,-39.5 parent: 1 - - uid: 4769 + - uid: 24751 components: - type: Transform - pos: -79.5,-39.5 + pos: -86.5,-35.5 parent: 1 - - uid: 4965 + - uid: 24752 components: - type: Transform - pos: -96.5,-24.5 + pos: -87.5,-35.5 parent: 1 - - uid: 5785 + - uid: 24753 components: - type: Transform - pos: -100.5,65.5 + pos: -88.5,-35.5 parent: 1 - - uid: 5899 + - uid: 24765 components: - type: Transform - pos: -111.5,-26.5 + pos: -89.5,-33.5 parent: 1 - - uid: 5918 + - uid: 24766 components: - type: Transform - pos: -110.5,-26.5 + pos: -91.5,-33.5 parent: 1 - - uid: 5937 + - uid: 24767 components: - type: Transform - pos: -109.5,-26.5 + pos: -91.5,-31.5 parent: 1 - - uid: 5963 + - uid: 24768 components: - type: Transform - pos: -109.5,-25.5 + pos: -91.5,-29.5 parent: 1 - - uid: 5981 + - uid: 24780 components: - type: Transform - pos: -96.5,-23.5 + pos: -1.5,-43.5 parent: 1 - - uid: 5995 + - uid: 24781 components: - type: Transform - pos: -109.5,-24.5 + pos: -0.5,-43.5 parent: 1 - - uid: 6187 + - uid: 24782 components: - type: Transform - pos: -109.5,-23.5 + pos: 0.5,-43.5 parent: 1 - - uid: 6571 + - uid: 24783 components: - type: Transform - pos: -121.5,-29.5 + pos: 1.5,-43.5 parent: 1 - - uid: 6585 + - uid: 24784 components: - type: Transform - pos: -120.5,-29.5 + pos: 2.5,-43.5 parent: 1 - - uid: 6716 + - uid: 24785 components: - type: Transform - pos: -119.5,-29.5 + pos: 3.5,-43.5 parent: 1 - - uid: 6774 + - uid: 24786 components: - type: Transform - pos: -118.5,-29.5 + pos: 4.5,-43.5 parent: 1 - - uid: 6775 + - uid: 24787 components: - type: Transform - pos: -117.5,-29.5 + pos: 5.5,-43.5 parent: 1 - - uid: 6776 + - uid: 24788 components: - type: Transform - pos: -116.5,-29.5 + pos: 6.5,-43.5 parent: 1 - - uid: 6789 + - uid: 24789 components: - type: Transform - pos: -115.5,-29.5 + pos: 7.5,-43.5 parent: 1 - - uid: 6917 + - uid: 24790 components: - type: Transform - pos: -114.5,-29.5 + pos: 8.5,-43.5 parent: 1 - - uid: 6918 + - uid: 24791 components: - type: Transform - pos: -113.5,-29.5 + pos: 9.5,-43.5 parent: 1 - - uid: 6927 + - uid: 24792 components: - type: Transform - pos: -112.5,-29.5 + pos: 10.5,-43.5 parent: 1 - - uid: 6928 + - uid: 24793 components: - type: Transform - pos: -112.5,-28.5 + pos: 10.5,-42.5 parent: 1 - - uid: 7038 + - uid: 24794 components: - type: Transform - pos: -112.5,-27.5 + pos: 10.5,-41.5 parent: 1 - - uid: 7046 + - uid: 24795 components: - type: Transform - pos: -122.5,-29.5 + pos: 10.5,-40.5 parent: 1 - - uid: 7922 + - uid: 24796 components: - type: Transform - pos: -96.5,-22.5 + pos: 10.5,-39.5 parent: 1 - - uid: 8862 + - uid: 24797 components: - type: Transform - pos: -124.5,-25.5 + pos: 10.5,-38.5 parent: 1 - - uid: 8863 + - uid: 24798 components: - type: Transform - pos: -96.5,-25.5 + pos: 10.5,-37.5 parent: 1 - - uid: 8935 + - uid: 24799 components: - type: Transform - pos: -39.5,-81.5 + pos: 10.5,-36.5 parent: 1 - - uid: 9860 + - uid: 24800 components: - type: Transform - pos: -63.5,-39.5 + pos: 10.5,-35.5 parent: 1 - - uid: 9861 + - uid: 24801 components: - type: Transform - pos: -63.5,-40.5 + pos: 10.5,-34.5 parent: 1 - - uid: 12737 + - uid: 24802 components: - type: Transform - pos: -84.5,52.5 + pos: 10.5,-33.5 parent: 1 - - uid: 12738 + - uid: 24803 components: - type: Transform - pos: -84.5,58.5 + pos: 10.5,-32.5 parent: 1 - - uid: 12757 + - uid: 24804 components: - type: Transform - pos: -84.5,65.5 + pos: 10.5,-31.5 parent: 1 - - uid: 13561 + - uid: 24805 components: - type: Transform - pos: -96.5,-27.5 + pos: 10.5,-30.5 parent: 1 - - uid: 15332 + - uid: 24806 components: - type: Transform - pos: -81.5,-39.5 + pos: 10.5,-29.5 parent: 1 - - uid: 15396 + - uid: 24807 components: - type: Transform - pos: 62.5,-55.5 + pos: 11.5,-29.5 parent: 1 - - uid: 15405 + - uid: 24808 components: - type: Transform - pos: 63.5,-55.5 + pos: 12.5,-29.5 parent: 1 - - uid: 15410 + - uid: 24809 components: - type: Transform - pos: 63.5,-56.5 + pos: 13.5,-29.5 parent: 1 - - uid: 15413 + - uid: 24810 components: - type: Transform - pos: 63.5,-57.5 + pos: 13.5,-28.5 parent: 1 - - uid: 15418 + - uid: 24811 components: - type: Transform - pos: 64.5,-57.5 + pos: 13.5,-27.5 parent: 1 - - uid: 15434 + - uid: 24812 components: - type: Transform - pos: 65.5,-57.5 + pos: 13.5,-26.5 parent: 1 - - uid: 15435 + - uid: 24813 components: - type: Transform - pos: 66.5,-57.5 + pos: 14.5,-26.5 parent: 1 - - uid: 15436 + - uid: 24814 components: - type: Transform - pos: 67.5,-57.5 + pos: 9.5,-38.5 parent: 1 - - uid: 15437 + - uid: 24815 components: - type: Transform - pos: 68.5,-57.5 + pos: 8.5,-38.5 parent: 1 - - uid: 15438 + - uid: 25548 components: - type: Transform - pos: -110.5,-7.5 + pos: -92.5,-29.5 parent: 1 - - uid: 15439 + - uid: 25983 components: - type: Transform - pos: 69.5,-57.5 + pos: -111.5,-7.5 parent: 1 - - uid: 15440 + - uid: 25984 components: - type: Transform - pos: 70.5,-57.5 + pos: -108.5,-7.5 parent: 1 - - uid: 15445 + - uid: 25985 components: - type: Transform - pos: 71.5,-57.5 + pos: -106.5,-7.5 parent: 1 - - uid: 15446 + - uid: 27497 components: - type: Transform - pos: 72.5,-57.5 + pos: -43.5,9.5 parent: 1 - - uid: 15456 + - uid: 27498 components: - type: Transform - pos: 73.5,-57.5 + pos: -44.5,9.5 parent: 1 - - uid: 15457 + - uid: 27499 components: - type: Transform - pos: 75.5,-57.5 + pos: -45.5,9.5 parent: 1 - - uid: 15470 + - uid: 27500 components: - type: Transform - pos: 74.5,-57.5 + pos: -46.5,9.5 parent: 1 - - uid: 15471 + - uid: 27501 components: - type: Transform - pos: 76.5,-57.5 + pos: -47.5,9.5 parent: 1 - - uid: 15476 + - uid: 27502 components: - type: Transform - pos: 77.5,-57.5 + pos: -48.5,9.5 parent: 1 - - uid: 15477 + - uid: 27503 components: - type: Transform - pos: 78.5,-57.5 + pos: -49.5,9.5 parent: 1 - - uid: 15481 + - uid: 27504 components: - type: Transform - pos: 79.5,-57.5 + pos: -50.5,9.5 parent: 1 - - uid: 15498 + - uid: 27505 components: - type: Transform - pos: -85.5,-35.5 + pos: -51.5,9.5 parent: 1 - - uid: 15504 + - uid: 27506 components: - type: Transform - pos: 80.5,-57.5 + pos: -52.5,9.5 parent: 1 - - uid: 15505 + - uid: 27507 components: - type: Transform - pos: 81.5,-57.5 + pos: -53.5,9.5 parent: 1 - - uid: 15506 + - uid: 27508 components: - type: Transform - pos: 82.5,-57.5 + pos: -54.5,9.5 parent: 1 - - uid: 15508 + - uid: 27509 components: - type: Transform - pos: 83.5,-57.5 + pos: -55.5,9.5 parent: 1 - - uid: 15509 + - uid: 27510 components: - type: Transform - pos: 84.5,-57.5 + pos: -56.5,9.5 parent: 1 - - uid: 15510 + - uid: 27511 components: - type: Transform - pos: 85.5,-57.5 + pos: -121.5,34.5 parent: 1 - - uid: 15514 + - uid: 27512 components: - type: Transform - pos: 86.5,-57.5 + pos: -58.5,9.5 parent: 1 - - uid: 15518 + - uid: 27513 components: - type: Transform - pos: 87.5,-57.5 + pos: -59.5,9.5 parent: 1 - - uid: 15519 + - uid: 27514 components: - type: Transform - pos: 87.5,-56.5 + pos: -60.5,9.5 parent: 1 - - uid: 15520 + - uid: 27515 components: - type: Transform - pos: 87.5,-55.5 + pos: -61.5,9.5 parent: 1 - - uid: 15521 + - uid: 27516 components: - type: Transform - pos: 87.5,-54.5 + pos: -62.5,9.5 parent: 1 - - uid: 15522 + - uid: 27518 components: - type: Transform - pos: 87.5,-53.5 + pos: -64.5,9.5 parent: 1 - - uid: 15523 + - uid: 27519 components: - type: Transform - pos: 87.5,-52.5 + pos: -65.5,9.5 parent: 1 - - uid: 15524 + - uid: 27520 components: - type: Transform - pos: 87.5,-51.5 + pos: -66.5,9.5 parent: 1 - - uid: 15525 + - uid: 27521 components: - type: Transform - pos: 87.5,-50.5 + pos: -67.5,9.5 parent: 1 - - uid: 15527 + - uid: 27522 components: - type: Transform - pos: 87.5,-49.5 + pos: -68.5,9.5 parent: 1 - - uid: 15528 + - uid: 27523 components: - type: Transform - pos: 87.5,-48.5 + pos: -69.5,9.5 parent: 1 - - uid: 15529 + - uid: 27524 components: - type: Transform - pos: 87.5,-47.5 + pos: -70.5,9.5 parent: 1 - - uid: 15534 + - uid: 27525 components: - type: Transform - pos: 87.5,-46.5 + pos: -51.5,10.5 parent: 1 - - uid: 15535 + - uid: 27526 components: - type: Transform - pos: 87.5,-45.5 + pos: -51.5,11.5 parent: 1 - - uid: 15537 + - uid: 27527 components: - type: Transform - pos: 87.5,-44.5 + pos: -51.5,12.5 parent: 1 - - uid: 15539 + - uid: 27528 components: - type: Transform - pos: 87.5,-43.5 + pos: -51.5,13.5 parent: 1 - - uid: 15541 + - uid: 27529 components: - type: Transform - pos: 87.5,-42.5 + pos: -76.5,21.5 parent: 1 - - uid: 15542 + - uid: 27530 components: - type: Transform - pos: 87.5,-41.5 + pos: -77.5,21.5 parent: 1 - - uid: 15543 + - uid: 27531 components: - type: Transform - pos: 87.5,-40.5 + pos: -78.5,21.5 parent: 1 - - uid: 15544 + - uid: 27532 components: - type: Transform - pos: 87.5,-39.5 + pos: -79.5,21.5 parent: 1 - - uid: 15545 + - uid: 27533 components: - type: Transform - pos: 87.5,-38.5 + pos: -80.5,21.5 parent: 1 - - uid: 15546 + - uid: 27534 components: - type: Transform - pos: 87.5,-37.5 + pos: -81.5,21.5 parent: 1 - - uid: 15547 + - uid: 27535 components: - type: Transform - pos: 86.5,-37.5 + pos: -82.5,21.5 parent: 1 - - uid: 15548 + - uid: 27536 components: - type: Transform - pos: 85.5,-37.5 + pos: -83.5,21.5 parent: 1 - - uid: 15549 + - uid: 27537 components: - type: Transform - pos: 84.5,-37.5 + pos: -84.5,21.5 parent: 1 - - uid: 15550 + - uid: 27538 components: - type: Transform - pos: 83.5,-37.5 + pos: -85.5,21.5 parent: 1 - - uid: 15551 + - uid: 27539 components: - type: Transform - pos: 82.5,-37.5 + pos: -86.5,21.5 parent: 1 - - uid: 15552 + - uid: 27540 components: - type: Transform - pos: 81.5,-37.5 + pos: -87.5,21.5 parent: 1 - - uid: 15553 + - uid: 27541 components: - type: Transform - pos: 80.5,-37.5 + pos: -88.5,21.5 parent: 1 - - uid: 15555 + - uid: 27542 components: - type: Transform - pos: 79.5,-37.5 + pos: -89.5,21.5 parent: 1 - - uid: 15556 + - uid: 27543 components: - type: Transform - pos: 78.5,-37.5 + pos: -90.5,21.5 parent: 1 - - uid: 15558 + - uid: 27544 components: - type: Transform - pos: 77.5,-37.5 + pos: -91.5,21.5 parent: 1 - - uid: 15559 + - uid: 27545 components: - type: Transform - pos: 76.5,-37.5 + pos: -92.5,21.5 parent: 1 - - uid: 15560 + - uid: 27546 components: - type: Transform - pos: 75.5,-37.5 + pos: -93.5,21.5 parent: 1 - - uid: 15561 + - uid: 27547 components: - type: Transform - pos: 74.5,-37.5 + pos: -94.5,21.5 parent: 1 - - uid: 15562 + - uid: 27548 components: - type: Transform - pos: 73.5,-37.5 + pos: -95.5,21.5 parent: 1 - - uid: 15567 + - uid: 27549 components: - type: Transform - pos: 72.5,-37.5 + pos: -96.5,21.5 parent: 1 - - uid: 15568 + - uid: 27550 components: - type: Transform - pos: 71.5,-37.5 + pos: -97.5,21.5 parent: 1 - - uid: 15571 + - uid: 27551 components: - type: Transform - pos: 70.5,-37.5 + pos: -98.5,21.5 parent: 1 - - uid: 15572 + - uid: 27552 components: - type: Transform - pos: 69.5,-37.5 + pos: -98.5,22.5 parent: 1 - - uid: 15573 + - uid: 27553 components: - type: Transform - pos: 68.5,-37.5 + pos: -98.5,23.5 parent: 1 - - uid: 15581 + - uid: 27554 components: - type: Transform - pos: 67.5,-37.5 + pos: -98.5,24.5 parent: 1 - - uid: 15582 + - uid: 27555 components: - type: Transform - pos: 66.5,-37.5 + pos: -98.5,25.5 parent: 1 - - uid: 15583 + - uid: 27556 components: - type: Transform - pos: 65.5,-37.5 + pos: -99.5,22.5 parent: 1 - - uid: 15584 + - uid: 27557 components: - type: Transform - pos: 64.5,-37.5 + pos: -100.5,22.5 parent: 1 - - uid: 15585 + - uid: 27558 components: - type: Transform - pos: 63.5,-37.5 + pos: -101.5,22.5 parent: 1 - - uid: 15587 + - uid: 27559 components: - type: Transform - pos: 63.5,-38.5 + pos: -102.5,22.5 parent: 1 - - uid: 15595 + - uid: 27560 components: - type: Transform - pos: 63.5,-39.5 + pos: -122.5,22.5 parent: 1 - - uid: 15596 + - uid: 27561 components: - type: Transform - pos: 63.5,-40.5 + pos: -122.5,21.5 parent: 1 - - uid: 15602 + - uid: 27564 components: - type: Transform - pos: 63.5,-41.5 + pos: -122.5,20.5 parent: 1 - - uid: 15604 + - uid: 27565 components: - type: Transform - pos: 63.5,-42.5 + pos: -122.5,19.5 parent: 1 - - uid: 15605 + - uid: 27566 components: - type: Transform - pos: 63.5,-43.5 + pos: -122.5,18.5 parent: 1 - - uid: 15606 + - uid: 27567 components: - type: Transform - pos: 63.5,-44.5 + pos: -122.5,17.5 parent: 1 - - uid: 15654 + - uid: 27568 components: - type: Transform - pos: 63.5,-45.5 + pos: -122.5,16.5 parent: 1 - - uid: 15655 + - uid: 27569 components: - type: Transform - pos: 63.5,-46.5 + pos: -122.5,15.5 parent: 1 - - uid: 15656 + - uid: 27570 components: - type: Transform - pos: 63.5,-47.5 + pos: -122.5,14.5 parent: 1 - - uid: 15672 + - uid: 27571 components: - type: Transform - pos: 63.5,-48.5 + pos: -122.5,13.5 parent: 1 - - uid: 15733 + - uid: 27572 components: - type: Transform - pos: 63.5,-49.5 + pos: -122.5,12.5 parent: 1 - - uid: 15790 + - uid: 27573 components: - type: Transform - pos: 63.5,-50.5 + pos: -122.5,11.5 parent: 1 - - uid: 15791 + - uid: 27574 components: - type: Transform - pos: 63.5,-51.5 + pos: -122.5,10.5 parent: 1 - - uid: 15792 + - uid: 27575 components: - type: Transform - pos: 63.5,-52.5 + pos: -122.5,9.5 parent: 1 - - uid: 15793 + - uid: 27576 components: - type: Transform - pos: 63.5,-53.5 + pos: -122.5,8.5 parent: 1 - - uid: 15794 + - uid: 27577 components: - type: Transform - pos: 63.5,-54.5 + pos: -122.5,7.5 parent: 1 - - uid: 15835 + - uid: 27578 components: - type: Transform - pos: 44.5,-40.5 + pos: -122.5,6.5 parent: 1 - - uid: 15837 + - uid: 27579 components: - type: Transform - pos: -31.5,-69.5 + pos: -122.5,5.5 parent: 1 - - uid: 15838 + - uid: 27581 components: - type: Transform - pos: 47.5,-40.5 + pos: -122.5,3.5 parent: 1 - - uid: 15839 + - uid: 27582 components: - type: Transform - pos: 48.5,-40.5 + pos: -122.5,2.5 parent: 1 - - uid: 15840 + - uid: 27583 components: - type: Transform - pos: 49.5,-40.5 + pos: -122.5,1.5 parent: 1 - - uid: 15841 + - uid: 27584 components: - type: Transform - pos: 50.5,-40.5 + pos: -122.5,0.5 parent: 1 - - uid: 15842 + - uid: 27585 components: - type: Transform - pos: 51.5,-40.5 + pos: -122.5,-0.5 parent: 1 - - uid: 15843 + - uid: 27586 components: - type: Transform - pos: 52.5,-40.5 + pos: -122.5,-1.5 parent: 1 - - uid: 15844 + - uid: 27587 components: - type: Transform - pos: 53.5,-40.5 + pos: -122.5,-2.5 parent: 1 - - uid: 15845 + - uid: 27588 components: - type: Transform - pos: 54.5,-40.5 + pos: -122.5,-3.5 parent: 1 - - uid: 15846 + - uid: 27589 components: - type: Transform - pos: 55.5,-40.5 + pos: -122.5,-4.5 parent: 1 - - uid: 15847 + - uid: 27590 components: - type: Transform - pos: 56.5,-40.5 + pos: -122.5,-5.5 parent: 1 - - uid: 16026 + - uid: 27591 components: - type: Transform - pos: -85.5,-38.5 + pos: -122.5,-6.5 parent: 1 - - uid: 16162 + - uid: 27592 components: - type: Transform - pos: -51.5,-79.5 + pos: -122.5,-7.5 parent: 1 - - uid: 16163 + - uid: 27593 components: - type: Transform - pos: -51.5,-80.5 + pos: -121.5,-7.5 parent: 1 - - uid: 16164 + - uid: 27594 components: - type: Transform - pos: -51.5,-81.5 + pos: -120.5,-7.5 parent: 1 - - uid: 16165 + - uid: 27595 components: - type: Transform - pos: -51.5,-82.5 + pos: -119.5,-7.5 parent: 1 - - uid: 16166 + - uid: 27597 components: - type: Transform - pos: -38.5,-79.5 + pos: -117.5,-7.5 parent: 1 - - uid: 16167 + - uid: 27598 components: - type: Transform - pos: -38.5,-80.5 + pos: -116.5,-7.5 parent: 1 - - uid: 16168 + - uid: 27599 components: - type: Transform - pos: -38.5,-81.5 + pos: -115.5,-7.5 parent: 1 - - uid: 16169 + - uid: 27600 components: - type: Transform - pos: -38.5,-82.5 + pos: -114.5,-7.5 parent: 1 - - uid: 16172 + - uid: 27601 components: - type: Transform - pos: -33.5,-93.5 + pos: -113.5,-7.5 parent: 1 - - uid: 16173 + - uid: 27602 components: - type: Transform - pos: -56.5,-93.5 + pos: -112.5,-7.5 parent: 1 - - uid: 16481 + - uid: 27610 components: - type: Transform - pos: -96.5,-26.5 + pos: -106.5,-5.5 parent: 1 - - uid: 16847 + - uid: 27611 components: - type: Transform - pos: -31.5,-67.5 + pos: -106.5,-4.5 parent: 1 - - uid: 16853 + - uid: 27612 components: - type: Transform - pos: -31.5,-66.5 + pos: -106.5,-3.5 parent: 1 - - uid: 16854 + - uid: 28520 components: - type: Transform - pos: -31.5,-65.5 + pos: 16.5,15.5 parent: 1 - - uid: 16855 + - uid: 28521 components: - type: Transform - pos: -95.5,9.5 + pos: 16.5,14.5 parent: 1 - - uid: 16856 + - uid: 28522 components: - type: Transform - pos: -96.5,9.5 + pos: 15.5,14.5 parent: 1 - - uid: 16857 + - uid: 28523 components: - type: Transform - pos: -96.5,10.5 + pos: 14.5,14.5 parent: 1 - - uid: 16858 + - uid: 28524 components: - type: Transform - pos: -96.5,12.5 + pos: 13.5,14.5 parent: 1 - - uid: 16859 + - uid: 28600 components: - type: Transform - pos: -97.5,13.5 + pos: -24.5,14.5 parent: 1 - - uid: 16861 + - uid: 28601 components: - type: Transform - pos: -92.5,9.5 + pos: -23.5,14.5 parent: 1 - - uid: 16862 + - uid: 28602 components: - type: Transform - pos: -91.5,9.5 + pos: -22.5,14.5 parent: 1 - - uid: 16863 + - uid: 28603 components: - type: Transform - pos: -97.5,-7.5 + pos: -21.5,14.5 parent: 1 - - uid: 16864 + - uid: 28604 components: - type: Transform - pos: -97.5,-6.5 + pos: -20.5,14.5 parent: 1 - - uid: 17437 + - uid: 28605 components: - type: Transform - pos: -31.5,-64.5 + pos: -19.5,14.5 parent: 1 - - uid: 17668 + - uid: 28606 components: - type: Transform - pos: -31.5,-63.5 + pos: -19.5,15.5 parent: 1 - - uid: 17738 + - uid: 28607 components: - type: Transform - pos: -31.5,-62.5 + pos: -19.5,16.5 parent: 1 - - uid: 17739 + - uid: 28608 components: - type: Transform - pos: -31.5,-61.5 + pos: -18.5,16.5 parent: 1 - - uid: 17740 + - uid: 28609 components: - type: Transform - pos: -31.5,-60.5 + pos: -17.5,16.5 parent: 1 - - uid: 17741 + - uid: 28610 components: - type: Transform - pos: -31.5,-59.5 + pos: -16.5,16.5 parent: 1 - - uid: 17742 + - uid: 28611 components: - type: Transform - pos: -31.5,-58.5 + pos: -16.5,17.5 parent: 1 - - uid: 17752 + - uid: 28612 components: - type: Transform - pos: -31.5,-57.5 + pos: -16.5,18.5 parent: 1 - - uid: 17753 + - uid: 28613 components: - type: Transform - pos: -30.5,-57.5 + pos: -16.5,19.5 parent: 1 - - uid: 18027 + - uid: 28615 components: - type: Transform - pos: -30.5,-56.5 + pos: -17.5,20.5 parent: 1 - - uid: 18082 + - uid: 28616 components: - type: Transform - pos: -95.5,-29.5 + pos: -18.5,20.5 parent: 1 - - uid: 18101 + - uid: 28618 components: - type: Transform - pos: -29.5,-56.5 + pos: -21.5,16.5 parent: 1 - - uid: 18102 + - uid: 28619 components: - type: Transform - pos: -28.5,-56.5 + pos: -22.5,16.5 parent: 1 - - uid: 18103 + - uid: 28620 components: - type: Transform - pos: -27.5,-56.5 + pos: -23.5,16.5 parent: 1 - - uid: 18104 + - uid: 28621 components: - type: Transform - pos: -26.5,-56.5 + pos: -24.5,16.5 parent: 1 - - uid: 18105 + - uid: 28622 components: - type: Transform - pos: -25.5,-56.5 + pos: -25.5,16.5 parent: 1 - - uid: 18874 + - uid: 28623 components: - type: Transform - pos: -96.5,-29.5 + pos: -26.5,16.5 parent: 1 - - uid: 18879 + - uid: 28624 components: - type: Transform - pos: -93.5,-29.5 + pos: -27.5,16.5 parent: 1 - - uid: 18881 + - uid: 28625 components: - type: Transform - pos: -88.5,-33.5 + pos: -28.5,16.5 parent: 1 - - uid: 18882 + - uid: 28626 components: - type: Transform - pos: -88.5,-34.5 + pos: -29.5,16.5 parent: 1 - - uid: 18883 + - uid: 28627 components: - type: Transform - pos: -90.5,-33.5 + pos: -30.5,16.5 parent: 1 - - uid: 18884 + - uid: 28628 components: - type: Transform - pos: -91.5,-32.5 + pos: -31.5,16.5 parent: 1 - - uid: 18885 + - uid: 28629 components: - type: Transform - pos: -91.5,-30.5 + pos: -32.5,16.5 parent: 1 - - uid: 18889 + - uid: 28630 components: - type: Transform - pos: -92.5,-29.5 + pos: -33.5,16.5 parent: 1 - - uid: 19227 + - uid: 28631 components: - type: Transform - pos: -109.5,-7.5 + pos: -34.5,16.5 parent: 1 - - uid: 19252 + - uid: 28632 components: - type: Transform - pos: -94.5,9.5 + pos: -35.5,16.5 parent: 1 - - uid: 19287 + - uid: 28633 components: - type: Transform - pos: -96.5,-28.5 + pos: -36.5,16.5 parent: 1 - - uid: 19927 + - uid: 28634 components: - type: Transform - pos: -100.5,58.5 + pos: -36.5,15.5 parent: 1 - - uid: 19928 + - uid: 28635 components: - type: Transform - pos: -100.5,52.5 + pos: -36.5,14.5 parent: 1 - - uid: 20770 + - uid: 28636 components: - type: Transform - pos: -24.5,-56.5 + pos: -36.5,13.5 parent: 1 - - uid: 20771 + - uid: 28637 components: - type: Transform - pos: -23.5,-56.5 + pos: -36.5,12.5 parent: 1 - - uid: 20772 + - uid: 28638 components: - type: Transform - pos: -22.5,-56.5 + pos: -36.5,11.5 parent: 1 - - uid: 21280 + - uid: 28639 components: - type: Transform - pos: -107.5,-7.5 + pos: -36.5,10.5 parent: 1 - - uid: 21608 + - uid: 28640 components: - type: Transform - pos: -21.5,-56.5 + pos: -36.5,9.5 parent: 1 - - uid: 21609 + - uid: 29215 components: - type: Transform - pos: -20.5,-56.5 + pos: -127.5,34.5 parent: 1 - - uid: 21931 + - uid: 29217 components: - type: Transform - pos: -19.5,-56.5 + pos: 46.5,-40.5 parent: 1 - - uid: 21942 + - uid: 29463 components: - type: Transform - pos: -18.5,-56.5 + pos: 12.5,14.5 parent: 1 - - uid: 22117 + - uid: 29464 components: - type: Transform - pos: -106.5,-6.5 + pos: 12.5,13.5 parent: 1 - - uid: 22301 + - uid: 29465 components: - type: Transform - pos: 17.5,18.5 + pos: 12.5,12.5 parent: 1 - - uid: 22306 + - uid: 29466 components: - type: Transform - pos: -97.5,-8.5 + pos: 12.5,11.5 parent: 1 - - uid: 22392 + - uid: 29471 components: - type: Transform - pos: 15.5,17.5 + pos: 21.5,8.5 parent: 1 - - uid: 22991 + - uid: 29472 components: - type: Transform - pos: -17.5,-56.5 + pos: 20.5,8.5 parent: 1 - - uid: 23049 + - uid: 29527 components: - type: Transform - pos: -16.5,-56.5 + pos: 45.5,-40.5 parent: 1 - - uid: 23525 + - uid: 29528 components: - type: Transform - pos: 9.5,31.5 + pos: 44.5,-40.5 parent: 1 - - uid: 23526 + - uid: 29529 components: - type: Transform - pos: 10.5,31.5 + pos: 43.5,-40.5 parent: 1 - - uid: 23527 + - uid: 30401 components: - type: Transform - pos: 10.5,30.5 + pos: -36.5,8.5 parent: 1 - - uid: 23528 + - uid: 30402 components: - type: Transform - pos: 11.5,30.5 + pos: -42.5,9.5 parent: 1 - - uid: 23529 + - uid: 30404 components: - type: Transform - pos: 12.5,30.5 + pos: -75.5,21.5 parent: 1 - - uid: 23530 + - uid: 30405 components: - type: Transform - pos: 13.5,30.5 + pos: -71.5,9.5 parent: 1 - - uid: 23531 + - uid: 30406 components: - type: Transform - pos: 14.5,30.5 + pos: -2.5,-44.5 parent: 1 - - uid: 23532 + - uid: 30407 components: - type: Transform - pos: 15.5,30.5 + pos: -2.5,-43.5 parent: 1 - - uid: 23533 + - uid: 32295 components: - type: Transform - pos: 16.5,30.5 + pos: 1.5,-30.5 parent: 1 - - uid: 23534 + - uid: 32296 components: - type: Transform - pos: 17.5,30.5 + pos: 3.5,-30.5 parent: 1 - - uid: 23556 + - uid: 32297 components: - type: Transform - pos: 18.5,30.5 + pos: 2.5,-30.5 parent: 1 - - uid: 23557 + - uid: 32298 components: - type: Transform - pos: 19.5,30.5 + pos: 2.5,-31.5 parent: 1 - - uid: 23558 + - uid: 32299 components: - type: Transform - pos: 20.5,30.5 + pos: 2.5,-32.5 parent: 1 - - uid: 23559 + - uid: 32301 components: - type: Transform - pos: 21.5,30.5 + pos: 2.5,-33.5 parent: 1 - - uid: 23560 + - uid: 32399 components: - type: Transform - pos: 22.5,30.5 + pos: -16.5,-51.5 parent: 1 - - uid: 23561 + - uid: 32401 components: - type: Transform - pos: 23.5,30.5 + pos: -16.5,-52.5 parent: 1 - - uid: 23562 + - uid: 32402 components: - type: Transform - pos: 24.5,30.5 + pos: -16.5,-53.5 parent: 1 - - uid: 23563 + - uid: 32403 components: - type: Transform - pos: 25.5,30.5 + pos: -16.5,-54.5 parent: 1 - - uid: 23564 + - uid: 32410 components: - type: Transform - pos: 26.5,30.5 + pos: -13.5,16.5 parent: 1 - - uid: 23565 + - uid: 32411 components: - type: Transform - pos: 27.5,30.5 + pos: -13.5,14.5 parent: 1 - - uid: 23566 + - uid: 32412 components: - type: Transform - pos: 28.5,30.5 + pos: -13.5,12.5 parent: 1 - - uid: 23567 + - uid: 32422 components: - type: Transform - pos: 29.5,30.5 + pos: 33.5,-42.5 parent: 1 - - uid: 23568 + - uid: 32477 components: - type: Transform - pos: 30.5,30.5 + pos: -16.5,20.5 parent: 1 - - uid: 23569 + - uid: 32491 components: - type: Transform - pos: 31.5,30.5 + pos: -13.5,17.5 parent: 1 - - uid: 23570 + - uid: 32492 components: - type: Transform - pos: 32.5,30.5 + pos: -13.5,15.5 parent: 1 - - uid: 23571 + - uid: 32493 components: - type: Transform - pos: 33.5,30.5 + pos: -13.5,13.5 parent: 1 - - uid: 23572 + - uid: 32494 components: - type: Transform - pos: 34.5,30.5 + pos: -13.5,11.5 parent: 1 - - uid: 23573 + - uid: 33019 components: - type: Transform - pos: 35.5,30.5 + pos: -110.5,-36.5 parent: 1 - - uid: 23574 + - uid: 33020 components: - type: Transform - pos: 36.5,30.5 + pos: -109.5,-36.5 parent: 1 - - uid: 23575 + - uid: 33021 components: - type: Transform - pos: 37.5,30.5 + pos: -110.5,-38.5 parent: 1 - - uid: 23576 + - uid: 33022 components: - type: Transform - pos: 38.5,30.5 + pos: -109.5,-38.5 parent: 1 - - uid: 23577 + - uid: 33023 components: - type: Transform - pos: 39.5,30.5 + pos: -111.5,-36.5 parent: 1 - - uid: 23578 + - uid: 33024 components: - type: Transform - pos: 39.5,29.5 + pos: -111.5,-37.5 parent: 1 - - uid: 23579 + - uid: 33025 components: - type: Transform - pos: 39.5,28.5 + pos: -111.5,-38.5 parent: 1 - - uid: 23580 + - uid: 33850 components: - type: Transform - pos: 39.5,27.5 + pos: -94.5,-29.5 parent: 1 - - uid: 23581 + - uid: 34509 components: - type: Transform - pos: 39.5,26.5 + pos: -137.5,-37.5 parent: 1 - - uid: 23582 + - uid: 34510 components: - type: Transform - pos: 39.5,25.5 + pos: -138.5,-37.5 parent: 1 - - uid: 23583 + - uid: 34511 components: - type: Transform - pos: 39.5,24.5 + pos: -139.5,-37.5 parent: 1 - - uid: 23584 + - uid: 34512 components: - type: Transform - pos: 39.5,23.5 + pos: -140.5,-37.5 parent: 1 - - uid: 23585 + - uid: 34513 components: - type: Transform - pos: 39.5,22.5 + pos: -141.5,-37.5 parent: 1 - - uid: 23586 + - uid: 34514 components: - type: Transform - pos: 39.5,21.5 + pos: -142.5,-37.5 parent: 1 - - uid: 23587 + - uid: 34515 components: - type: Transform - pos: 39.5,20.5 + pos: -143.5,-37.5 parent: 1 - - uid: 23588 + - uid: 34516 components: - type: Transform - pos: 39.5,19.5 + pos: -144.5,-37.5 parent: 1 - - uid: 23590 + - uid: 34517 components: - type: Transform - pos: 39.5,18.5 + pos: -141.5,-38.5 parent: 1 - - uid: 23591 + - uid: 34518 components: - type: Transform - pos: 39.5,17.5 + pos: -139.5,-38.5 parent: 1 - - uid: 23652 + - uid: 34519 components: - type: Transform - pos: 39.5,16.5 + pos: -144.5,-38.5 parent: 1 - - uid: 23653 + - uid: 34520 components: - type: Transform - pos: 39.5,15.5 + pos: -144.5,-39.5 parent: 1 - - uid: 23654 + - uid: 34521 components: - type: Transform - pos: 39.5,14.5 + pos: -147.5,-39.5 parent: 1 - - uid: 23655 + - uid: 34522 components: - type: Transform - pos: 39.5,13.5 + pos: -147.5,-40.5 parent: 1 - - uid: 23656 + - uid: 34523 components: - type: Transform - pos: 39.5,12.5 + pos: -147.5,-41.5 parent: 1 - - uid: 23657 + - uid: 34524 components: - type: Transform - pos: 39.5,11.5 + pos: -147.5,-42.5 parent: 1 - - uid: 23658 + - uid: 34525 components: - type: Transform - pos: 39.5,10.5 + pos: -147.5,-43.5 parent: 1 - - uid: 23659 + - uid: 34526 components: - type: Transform - pos: 39.5,9.5 + pos: -148.5,-43.5 parent: 1 - - uid: 23660 + - uid: 34527 components: - type: Transform - pos: 39.5,8.5 + pos: -149.5,-43.5 parent: 1 - - uid: 23661 + - uid: 34528 components: - type: Transform - pos: 39.5,7.5 + pos: -150.5,-43.5 parent: 1 - - uid: 23662 + - uid: 34529 components: - type: Transform - pos: 39.5,6.5 + pos: -151.5,-43.5 parent: 1 - - uid: 23663 + - uid: 34530 components: - type: Transform - pos: 39.5,5.5 + pos: -152.5,-43.5 parent: 1 - - uid: 23664 + - uid: 34531 components: - type: Transform - pos: 39.5,4.5 + pos: -153.5,-43.5 parent: 1 - - uid: 23665 + - uid: 34532 components: - type: Transform - pos: 39.5,3.5 + pos: -153.5,-44.5 parent: 1 - - uid: 23666 + - uid: 34533 components: - type: Transform - pos: 39.5,2.5 + pos: -153.5,-45.5 parent: 1 - - uid: 23667 + - uid: 34534 components: - type: Transform - pos: 39.5,1.5 + pos: -153.5,-46.5 parent: 1 - - uid: 23950 + - uid: 34535 components: - type: Transform - pos: -73.5,-38.5 + pos: -153.5,-47.5 parent: 1 - - uid: 24609 + - uid: 34536 components: - type: Transform - pos: -16.5,-55.5 + pos: -153.5,-48.5 parent: 1 - - uid: 24627 + - uid: 34537 components: - type: Transform - pos: -31.5,-70.5 + pos: -153.5,-49.5 parent: 1 - - uid: 24629 + - uid: 34538 components: - type: Transform - pos: -29.5,-70.5 + pos: -153.5,-50.5 parent: 1 - - uid: 24630 + - uid: 34539 components: - type: Transform - pos: -28.5,-70.5 + pos: -153.5,-51.5 parent: 1 - - uid: 24631 + - uid: 34540 components: - type: Transform - pos: -28.5,-71.5 + pos: -153.5,-52.5 parent: 1 - - uid: 24632 + - uid: 34541 components: - type: Transform - pos: -28.5,-72.5 + pos: -153.5,-53.5 parent: 1 - - uid: 24633 + - uid: 34542 components: - type: Transform - pos: -28.5,-73.5 + pos: -153.5,-54.5 parent: 1 - - uid: 24634 + - uid: 34543 components: - type: Transform - pos: -28.5,-74.5 + pos: -153.5,-55.5 parent: 1 - - uid: 24635 + - uid: 34544 components: - type: Transform - pos: -31.5,-71.5 + pos: -153.5,-56.5 parent: 1 - - uid: 24636 + - uid: 34545 components: - type: Transform - pos: -33.5,-71.5 + pos: -153.5,-57.5 parent: 1 - - uid: 24637 + - uid: 34546 components: - type: Transform - pos: -32.5,-71.5 + pos: -153.5,-58.5 parent: 1 - - uid: 24638 + - uid: 34547 components: - type: Transform - pos: -34.5,-71.5 + pos: -153.5,-59.5 parent: 1 - - uid: 24639 + - uid: 34548 components: - type: Transform - pos: -34.5,-72.5 + pos: -153.5,-60.5 parent: 1 - - uid: 24640 + - uid: 34549 components: - type: Transform - pos: -34.5,-73.5 + pos: -153.5,-61.5 parent: 1 - - uid: 24641 + - uid: 34550 components: - type: Transform - pos: -34.5,-74.5 + pos: -153.5,-62.5 parent: 1 - - uid: 24642 + - uid: 34551 components: - type: Transform - pos: -35.5,-74.5 + pos: -153.5,-63.5 parent: 1 - - uid: 24643 + - uid: 34552 components: - type: Transform - pos: -36.5,-74.5 + pos: -153.5,-64.5 parent: 1 - - uid: 24644 + - uid: 34553 components: - type: Transform - pos: -37.5,-74.5 + pos: -153.5,-65.5 parent: 1 - - uid: 24645 + - uid: 34667 components: - type: Transform - pos: -38.5,-74.5 + pos: -14.5,17.5 parent: 1 - - uid: 24647 + - uid: 34668 components: - type: Transform - pos: -40.5,-74.5 + pos: -15.5,17.5 parent: 1 - - uid: 24648 + - uid: 34686 components: - type: Transform - pos: -41.5,-74.5 + pos: -111.5,-8.5 parent: 1 - - uid: 24649 + - uid: 34691 components: - type: Transform - pos: -42.5,-74.5 + pos: -117.5,-8.5 parent: 1 - - uid: 24651 + - uid: 34692 components: - type: Transform - pos: -44.5,-74.5 + pos: -117.5,-9.5 parent: 1 - - uid: 24652 + - uid: 34693 components: - type: Transform - pos: -45.5,-74.5 + pos: -117.5,-10.5 parent: 1 - - uid: 24653 + - uid: 34694 components: - type: Transform - pos: -46.5,-74.5 + pos: -117.5,-11.5 parent: 1 - - uid: 24654 + - uid: 34695 components: - type: Transform - pos: -47.5,-74.5 + pos: -117.5,-12.5 parent: 1 - - uid: 24655 + - uid: 34696 components: - type: Transform - pos: -48.5,-74.5 + pos: -117.5,-13.5 parent: 1 - - uid: 24656 + - uid: 34697 components: - type: Transform - pos: -49.5,-74.5 + pos: -117.5,-14.5 parent: 1 - - uid: 24657 + - uid: 34698 components: - type: Transform - pos: -50.5,-74.5 + pos: -117.5,-15.5 parent: 1 - - uid: 24658 + - uid: 34699 components: - type: Transform - pos: -51.5,-74.5 + pos: -117.5,-16.5 parent: 1 - - uid: 24659 + - uid: 34700 components: - type: Transform - pos: -52.5,-74.5 + pos: -117.5,-17.5 parent: 1 - - uid: 24660 + - uid: 34701 components: - type: Transform - pos: -53.5,-74.5 + pos: -117.5,-18.5 parent: 1 - - uid: 24661 + - uid: 34702 components: - type: Transform - pos: -53.5,-73.5 + pos: -117.5,-19.5 parent: 1 - - uid: 24662 + - uid: 34703 components: - type: Transform - pos: -53.5,-72.5 + pos: -117.5,-20.5 parent: 1 - - uid: 24663 + - uid: 34704 components: - type: Transform - pos: -53.5,-71.5 + pos: -118.5,-20.5 parent: 1 - - uid: 24664 + - uid: 34705 components: - type: Transform - pos: -53.5,-70.5 + pos: -119.5,-20.5 parent: 1 - - uid: 24665 + - uid: 34706 components: - type: Transform - pos: -53.5,-69.5 + pos: -120.5,-20.5 parent: 1 - - uid: 24667 + - uid: 34707 components: - type: Transform - pos: -53.5,-67.5 + pos: -121.5,-20.5 parent: 1 - - uid: 24668 + - uid: 34708 components: - type: Transform - pos: -53.5,-66.5 + pos: -122.5,-20.5 parent: 1 - - uid: 24669 + - uid: 34709 components: - type: Transform - pos: -53.5,-65.5 + pos: -123.5,-20.5 parent: 1 - - uid: 24670 + - uid: 34710 components: - type: Transform - pos: -54.5,-65.5 + pos: -123.5,-21.5 parent: 1 - - uid: 24671 + - uid: 34711 components: - type: Transform - pos: -55.5,-65.5 + pos: -123.5,-22.5 parent: 1 - - uid: 24672 + - uid: 34713 components: - type: Transform - pos: -56.5,-65.5 + pos: -123.5,-24.5 parent: 1 - - uid: 24673 + - uid: 34714 components: - type: Transform - pos: -57.5,-65.5 + pos: -123.5,-25.5 parent: 1 - - uid: 24674 + - uid: 34715 components: - type: Transform - pos: -58.5,-65.5 + pos: -125.5,-25.5 parent: 1 - - uid: 24675 + - uid: 34716 components: - type: Transform - pos: -59.5,-65.5 + pos: -126.5,-25.5 parent: 1 - - uid: 24676 + - uid: 34717 components: - type: Transform - pos: -60.5,-65.5 + pos: -127.5,-25.5 parent: 1 - - uid: 24677 + - uid: 34718 components: - type: Transform - pos: -61.5,-65.5 + pos: -128.5,-25.5 parent: 1 - - uid: 24678 + - uid: 34719 components: - type: Transform - pos: -62.5,-65.5 + pos: -129.5,-25.5 parent: 1 - - uid: 24679 + - uid: 34720 components: - type: Transform - pos: -63.5,-65.5 + pos: -130.5,-25.5 parent: 1 - - uid: 24680 + - uid: 34721 components: - type: Transform - pos: -63.5,-64.5 + pos: -131.5,-25.5 parent: 1 - - uid: 24681 + - uid: 34723 components: - type: Transform - pos: -63.5,-63.5 + pos: -131.5,-26.5 parent: 1 - - uid: 24682 + - uid: 34724 components: - type: Transform - pos: -63.5,-62.5 + pos: -131.5,-27.5 parent: 1 - - uid: 24683 + - uid: 34725 components: - type: Transform - pos: -63.5,-61.5 + pos: -131.5,-28.5 parent: 1 - - uid: 24684 + - uid: 34726 components: - type: Transform - pos: -63.5,-60.5 + pos: -131.5,-29.5 parent: 1 - - uid: 24685 + - uid: 34727 components: - type: Transform - pos: -63.5,-59.5 + pos: -131.5,-30.5 parent: 1 - - uid: 24686 + - uid: 34728 components: - type: Transform - pos: -63.5,-58.5 + pos: -131.5,-31.5 parent: 1 - - uid: 24687 + - uid: 34729 components: - type: Transform - pos: -63.5,-57.5 + pos: -131.5,-32.5 parent: 1 - - uid: 24688 + - uid: 34730 components: - type: Transform - pos: -63.5,-56.5 + pos: -132.5,-32.5 parent: 1 - - uid: 24689 + - uid: 34731 components: - type: Transform - pos: -64.5,-56.5 + pos: -133.5,-32.5 parent: 1 - - uid: 24690 + - uid: 34732 components: - type: Transform - pos: -65.5,-56.5 + pos: -133.5,-33.5 parent: 1 - - uid: 24691 + - uid: 34734 components: - type: Transform - pos: -66.5,-56.5 + pos: -133.5,-34.5 parent: 1 - - uid: 24692 + - uid: 34735 components: - type: Transform - pos: -67.5,-56.5 + pos: -134.5,-34.5 parent: 1 - - uid: 24693 + - uid: 34736 components: - type: Transform - pos: -68.5,-56.5 + pos: -135.5,-34.5 parent: 1 - - uid: 24694 + - uid: 34737 components: - type: Transform - pos: -69.5,-56.5 + pos: -135.5,-35.5 parent: 1 - - uid: 24695 + - uid: 34738 components: - type: Transform - pos: -69.5,-55.5 + pos: -135.5,-36.5 parent: 1 - - uid: 24696 + - uid: 34739 components: - type: Transform - pos: -69.5,-54.5 + pos: -135.5,-37.5 parent: 1 - - uid: 24697 + - uid: 34741 components: - type: Transform - pos: -70.5,-54.5 + pos: -136.5,-37.5 parent: 1 - - uid: 24698 + - uid: 34749 components: - type: Transform - pos: -71.5,-54.5 + pos: -98.5,20.5 parent: 1 - - uid: 24699 + - uid: 34750 components: - type: Transform - pos: -72.5,-54.5 + pos: -98.5,19.5 parent: 1 - - uid: 24701 + - uid: 34751 components: - type: Transform - pos: -74.5,-54.5 + pos: -98.5,18.5 parent: 1 - - uid: 24702 + - uid: 34758 components: - type: Transform - pos: -74.5,-53.5 + pos: -97.5,-9.5 parent: 1 - - uid: 24703 + - uid: 34761 components: - type: Transform - pos: -74.5,-52.5 + pos: -98.5,16.5 parent: 1 - - uid: 24704 + - uid: 34762 components: - type: Transform - pos: -74.5,-51.5 + pos: -98.5,15.5 parent: 1 - - uid: 24705 + - uid: 34763 components: - type: Transform - pos: -74.5,-50.5 + pos: -98.5,14.5 parent: 1 - - uid: 24706 + - uid: 34781 components: - type: Transform - pos: -74.5,-49.5 + pos: -98.5,13.5 parent: 1 - - uid: 24707 + - uid: 34782 components: - type: Transform - pos: -74.5,-48.5 + pos: -98.5,12.5 parent: 1 - - uid: 24708 + - uid: 34783 components: - type: Transform - pos: -74.5,-47.5 + pos: -98.5,11.5 parent: 1 - - uid: 24709 + - uid: 34784 components: - type: Transform - pos: -74.5,-46.5 + pos: -98.5,10.5 parent: 1 - - uid: 24710 + - uid: 34792 components: - type: Transform - pos: -74.5,-45.5 + pos: -39.5,-82.5 parent: 1 - - uid: 24711 + - uid: 34793 components: - type: Transform - pos: -74.5,-44.5 + pos: -98.5,9.5 parent: 1 - - uid: 24712 + - uid: 34794 components: - type: Transform - pos: -74.5,-43.5 + pos: -98.5,8.5 parent: 1 - - uid: 24713 + - uid: 34795 components: - type: Transform - pos: -74.5,-42.5 + pos: 20.5,5.5 parent: 1 - - uid: 24714 + - uid: 34796 components: - type: Transform - pos: -74.5,-41.5 + pos: 21.5,5.5 parent: 1 - - uid: 24715 + - uid: 34801 components: - type: Transform - pos: -74.5,-40.5 + pos: -39.5,-80.5 parent: 1 - - uid: 24716 + - uid: 34802 components: - type: Transform - pos: -74.5,-39.5 + pos: -39.5,-79.5 parent: 1 - - uid: 24717 + - uid: 34977 components: - type: Transform - pos: -74.5,-38.5 + pos: 33.5,-38.5 parent: 1 - - uid: 24718 + - uid: 34978 components: - type: Transform - pos: -72.5,-38.5 + pos: 33.5,-37.5 parent: 1 - - uid: 24719 + - uid: 34979 components: - type: Transform - pos: -71.5,-38.5 + pos: 33.5,-36.5 parent: 1 - - uid: 24720 + - uid: 34980 components: - type: Transform - pos: -70.5,-38.5 + pos: 33.5,-35.5 parent: 1 - - uid: 24721 + - uid: 34981 components: - type: Transform - pos: -69.5,-38.5 + pos: 33.5,-34.5 parent: 1 - - uid: 24722 + - uid: 34982 components: - type: Transform - pos: -68.5,-38.5 + pos: 33.5,-33.5 parent: 1 - - uid: 24723 + - uid: 34983 components: - type: Transform - pos: -67.5,-38.5 + pos: 33.5,-32.5 parent: 1 - - uid: 24724 + - uid: 34985 components: - type: Transform - pos: -66.5,-38.5 + pos: 33.5,-30.5 parent: 1 - - uid: 24725 + - uid: 34986 components: - type: Transform - pos: -65.5,-38.5 + pos: 33.5,-29.5 parent: 1 - - uid: 24726 + - uid: 34987 components: - type: Transform - pos: -64.5,-38.5 + pos: 33.5,-28.5 parent: 1 - - uid: 24727 + - uid: 34988 components: - type: Transform - pos: -63.5,-38.5 + pos: 33.5,-27.5 parent: 1 - - uid: 24728 + - uid: 34989 components: - type: Transform - pos: -62.5,-38.5 + pos: 33.5,-26.5 parent: 1 - - uid: 24729 + - uid: 34990 components: - type: Transform - pos: -61.5,-38.5 + pos: 33.5,-25.5 parent: 1 - - uid: 24730 + - uid: 34991 components: - type: Transform - pos: -60.5,-38.5 + pos: 33.5,-24.5 parent: 1 - - uid: 24731 + - uid: 34992 components: - type: Transform - pos: -65.5,-37.5 + pos: 33.5,-23.5 parent: 1 - - uid: 24732 + - uid: 34993 components: - type: Transform - pos: -65.5,-36.5 + pos: 33.5,-22.5 parent: 1 - - uid: 24733 + - uid: 34994 components: - type: Transform - pos: -65.5,-35.5 + pos: 33.5,-21.5 parent: 1 - - uid: 24736 + - uid: 34995 components: - type: Transform - pos: -75.5,-39.5 + pos: 33.5,-20.5 parent: 1 - - uid: 24737 + - uid: 34996 components: - type: Transform - pos: -76.5,-39.5 + pos: 32.5,-20.5 parent: 1 - - uid: 24751 + - uid: 34997 components: - type: Transform - pos: -86.5,-35.5 + pos: 32.5,-19.5 parent: 1 - - uid: 24752 + - uid: 34998 components: - type: Transform - pos: -87.5,-35.5 + pos: 32.5,-18.5 parent: 1 - - uid: 24753 + - uid: 34999 components: - type: Transform - pos: -88.5,-35.5 + pos: 32.5,-17.5 parent: 1 - - uid: 24765 + - uid: 35000 components: - type: Transform - pos: -89.5,-33.5 + pos: 32.5,-16.5 parent: 1 - - uid: 24766 + - uid: 35001 components: - type: Transform - pos: -91.5,-33.5 + pos: 32.5,-15.5 parent: 1 - - uid: 24767 + - uid: 35002 components: - type: Transform - pos: -91.5,-31.5 + pos: 32.5,-14.5 parent: 1 - - uid: 24768 + - uid: 35003 components: - type: Transform - pos: -91.5,-29.5 + pos: 32.5,-13.5 parent: 1 - - uid: 24780 + - uid: 35004 components: - type: Transform - pos: -1.5,-43.5 + pos: 31.5,-13.5 parent: 1 - - uid: 24781 + - uid: 35005 components: - type: Transform - pos: -0.5,-43.5 + pos: 30.5,-13.5 parent: 1 - - uid: 24782 + - uid: 35006 components: - type: Transform - pos: 0.5,-43.5 + pos: 29.5,-13.5 parent: 1 - - uid: 24783 + - uid: 35013 components: - type: Transform - pos: 1.5,-43.5 + pos: 33.5,-44.5 parent: 1 - - uid: 24784 + - uid: 35014 components: - type: Transform - pos: 2.5,-43.5 + pos: 33.5,-45.5 parent: 1 - - uid: 24785 + - uid: 35015 components: - type: Transform - pos: 3.5,-43.5 + pos: 32.5,-45.5 parent: 1 - - uid: 24786 + - uid: 35016 components: - type: Transform - pos: 4.5,-43.5 + pos: 31.5,-45.5 parent: 1 - - uid: 24787 + - uid: 35017 components: - type: Transform - pos: 5.5,-43.5 + pos: 30.5,-45.5 parent: 1 - - uid: 24788 + - uid: 35080 components: - type: Transform - pos: 6.5,-43.5 + pos: -15.5,-51.5 parent: 1 - - uid: 24789 + - uid: 35081 components: - type: Transform - pos: 7.5,-43.5 + pos: -15.5,-50.5 parent: 1 - - uid: 24790 + - uid: 35082 components: - type: Transform - pos: 8.5,-43.5 + pos: -96.5,-20.5 parent: 1 - - uid: 24791 + - uid: 35335 components: - type: Transform - pos: 9.5,-43.5 + pos: -36.5,-31.5 parent: 1 - - uid: 24792 + - uid: 35336 components: - type: Transform - pos: 10.5,-43.5 + pos: -36.5,-32.5 parent: 1 - - uid: 24793 + - uid: 35337 components: - type: Transform - pos: 10.5,-42.5 + pos: -36.5,-33.5 parent: 1 - - uid: 24794 + - uid: 35338 components: - type: Transform - pos: 10.5,-41.5 + pos: -36.5,-34.5 parent: 1 - - uid: 24795 + - uid: 35339 components: - type: Transform - pos: 10.5,-40.5 + pos: -36.5,-35.5 parent: 1 - - uid: 24796 + - uid: 35340 components: - type: Transform - pos: 10.5,-39.5 + pos: -37.5,-35.5 parent: 1 - - uid: 24797 + - uid: 35341 components: - type: Transform - pos: 10.5,-38.5 + pos: -38.5,-35.5 parent: 1 - - uid: 24798 + - uid: 35342 components: - type: Transform - pos: 10.5,-37.5 + pos: -39.5,-35.5 parent: 1 - - uid: 24799 + - uid: 35343 components: - type: Transform - pos: 10.5,-36.5 + pos: -40.5,-35.5 parent: 1 - - uid: 24800 + - uid: 35344 components: - type: Transform - pos: 10.5,-35.5 + pos: -40.5,-36.5 parent: 1 - - uid: 24801 + - uid: 35345 components: - type: Transform - pos: 10.5,-34.5 + pos: -40.5,-37.5 parent: 1 - - uid: 24802 + - uid: 35346 components: - type: Transform - pos: 10.5,-33.5 + pos: -40.5,-38.5 parent: 1 - - uid: 24803 + - uid: 35347 components: - type: Transform - pos: 10.5,-32.5 + pos: -40.5,-39.5 parent: 1 - - uid: 24804 + - uid: 35348 components: - type: Transform - pos: 10.5,-31.5 + pos: -40.5,-40.5 parent: 1 - - uid: 24805 + - uid: 35349 components: - type: Transform - pos: 10.5,-30.5 + pos: -40.5,-41.5 parent: 1 - - uid: 24806 + - uid: 35350 components: - type: Transform - pos: 10.5,-29.5 + pos: -40.5,-42.5 parent: 1 - - uid: 24807 + - uid: 35351 components: - type: Transform - pos: 11.5,-29.5 + pos: -40.5,-43.5 parent: 1 - - uid: 24808 + - uid: 35352 components: - type: Transform - pos: 12.5,-29.5 + pos: -40.5,-44.5 parent: 1 - - uid: 24809 + - uid: 35353 components: - type: Transform - pos: 13.5,-29.5 + pos: -40.5,-45.5 parent: 1 - - uid: 24810 + - uid: 35354 components: - type: Transform - pos: 13.5,-28.5 + pos: -40.5,-46.5 parent: 1 - - uid: 24811 + - uid: 35355 components: - type: Transform - pos: 13.5,-27.5 + pos: -40.5,-47.5 parent: 1 - - uid: 24812 + - uid: 35356 components: - type: Transform - pos: 13.5,-26.5 + pos: -41.5,-47.5 parent: 1 - - uid: 24813 + - uid: 35357 components: - type: Transform - pos: 14.5,-26.5 + pos: -42.5,-47.5 parent: 1 - - uid: 24814 + - uid: 35358 components: - type: Transform - pos: 9.5,-38.5 + pos: -42.5,-48.5 parent: 1 - - uid: 24815 + - uid: 35359 components: - type: Transform - pos: 8.5,-38.5 + pos: -42.5,-49.5 parent: 1 - - uid: 25548 + - uid: 35360 components: - type: Transform - pos: -92.5,-29.5 + pos: -42.5,-50.5 parent: 1 - - uid: 25983 + - uid: 35361 components: - type: Transform - pos: -111.5,-7.5 + pos: -42.5,-51.5 parent: 1 - - uid: 25984 + - uid: 35362 components: - type: Transform - pos: -108.5,-7.5 + pos: -43.5,-51.5 parent: 1 - - uid: 25985 + - uid: 35363 components: - type: Transform - pos: -106.5,-7.5 + pos: -44.5,-51.5 parent: 1 - - uid: 27497 + - uid: 35364 components: - type: Transform - pos: -43.5,9.5 + pos: -45.5,-51.5 parent: 1 - - uid: 27498 + - uid: 35365 components: - type: Transform - pos: -44.5,9.5 + pos: -45.5,-52.5 parent: 1 - - uid: 27499 + - uid: 35366 components: - type: Transform - pos: -45.5,9.5 + pos: -45.5,-53.5 parent: 1 - - uid: 27500 + - uid: 35367 components: - type: Transform - pos: -46.5,9.5 + pos: -45.5,-54.5 parent: 1 - - uid: 27501 + - uid: 35368 components: - type: Transform - pos: -47.5,9.5 + pos: -45.5,-55.5 parent: 1 - - uid: 27502 + - uid: 35369 components: - type: Transform - pos: -48.5,9.5 + pos: -45.5,-56.5 parent: 1 - - uid: 27503 + - uid: 35370 components: - type: Transform - pos: -49.5,9.5 + pos: -45.5,-57.5 parent: 1 - - uid: 27504 + - uid: 35371 components: - type: Transform - pos: -50.5,9.5 + pos: -45.5,-58.5 parent: 1 - - uid: 27505 + - uid: 35372 components: - type: Transform - pos: -51.5,9.5 + pos: -45.5,-59.5 parent: 1 - - uid: 27506 + - uid: 35373 components: - type: Transform - pos: -52.5,9.5 + pos: -46.5,-59.5 parent: 1 - - uid: 27507 + - uid: 35374 components: - type: Transform - pos: -53.5,9.5 + pos: -47.5,-59.5 parent: 1 - - uid: 27508 + - uid: 35375 components: - type: Transform - pos: -54.5,9.5 + pos: -48.5,-59.5 parent: 1 - - uid: 27509 + - uid: 35376 components: - type: Transform - pos: -55.5,9.5 + pos: -49.5,-59.5 parent: 1 - - uid: 27510 + - uid: 35377 components: - type: Transform - pos: -56.5,9.5 + pos: -49.5,-60.5 parent: 1 - - uid: 27511 + - uid: 35378 components: - type: Transform - pos: -121.5,34.5 + pos: -49.5,-61.5 parent: 1 - - uid: 27512 + - uid: 35379 components: - type: Transform - pos: -58.5,9.5 + pos: -49.5,-62.5 parent: 1 - - uid: 27513 + - uid: 35380 components: - type: Transform - pos: -59.5,9.5 + pos: -49.5,-63.5 parent: 1 - - uid: 27514 + - uid: 35381 components: - type: Transform - pos: -60.5,9.5 + pos: -49.5,-64.5 parent: 1 - - uid: 27515 + - uid: 35382 components: - type: Transform - pos: -61.5,9.5 + pos: -50.5,-64.5 parent: 1 - - uid: 27516 + - uid: 35383 components: - type: Transform - pos: -62.5,9.5 + pos: -51.5,-64.5 parent: 1 - - uid: 27518 + - uid: 35384 components: - type: Transform - pos: -64.5,9.5 + pos: -96.5,11.5 parent: 1 - - uid: 27519 + - uid: 35385 components: - type: Transform - pos: -65.5,9.5 + pos: -53.5,-64.5 parent: 1 - - uid: 27520 + - uid: 35386 components: - type: Transform - pos: -66.5,9.5 + pos: -60.5,-37.5 parent: 1 - - uid: 27521 + - uid: 35387 components: - type: Transform - pos: -67.5,9.5 + pos: -96.5,13.5 parent: 1 - - uid: 27522 + - uid: 35388 components: - type: Transform - pos: -68.5,9.5 + pos: -60.5,-35.5 parent: 1 - - uid: 27523 + - uid: 35389 components: - type: Transform - pos: -69.5,9.5 + pos: -60.5,-34.5 parent: 1 - - uid: 27524 + - uid: 35390 components: - type: Transform - pos: -70.5,9.5 + pos: -60.5,-33.5 parent: 1 - - uid: 27525 + - uid: 35391 components: - type: Transform - pos: -51.5,10.5 + pos: -60.5,-32.5 parent: 1 - - uid: 27526 + - uid: 35392 components: - type: Transform - pos: -51.5,11.5 + pos: -60.5,-31.5 parent: 1 - - uid: 27527 + - uid: 35393 components: - type: Transform - pos: -51.5,12.5 + pos: -60.5,-30.5 parent: 1 - - uid: 27528 + - uid: 35394 components: - type: Transform - pos: -51.5,13.5 + pos: -60.5,-29.5 parent: 1 - - uid: 27529 + - uid: 35395 components: - type: Transform - pos: -76.5,21.5 + pos: -60.5,-28.5 parent: 1 - - uid: 27530 + - uid: 35396 components: - type: Transform - pos: -77.5,21.5 + pos: -60.5,-27.5 parent: 1 - - uid: 27531 + - uid: 35397 components: - type: Transform - pos: -78.5,21.5 + pos: -60.5,-26.5 parent: 1 - - uid: 27532 + - uid: 35398 components: - type: Transform - pos: -79.5,21.5 + pos: -60.5,-25.5 parent: 1 - - uid: 27533 + - uid: 35399 components: - type: Transform - pos: -80.5,21.5 + pos: -60.5,-24.5 parent: 1 - - uid: 27534 + - uid: 35400 components: - type: Transform - pos: -81.5,21.5 + pos: -60.5,-23.5 parent: 1 - - uid: 27535 + - uid: 35401 components: - type: Transform - pos: -82.5,21.5 + pos: -60.5,-22.5 parent: 1 - - uid: 27536 + - uid: 35402 components: - type: Transform - pos: -83.5,21.5 + pos: -60.5,-21.5 parent: 1 - - uid: 27537 + - uid: 35403 components: - type: Transform - pos: -84.5,21.5 + pos: -59.5,-21.5 parent: 1 - - uid: 27538 + - uid: 35404 components: - type: Transform - pos: -85.5,21.5 + pos: -58.5,-21.5 parent: 1 - - uid: 27539 + - uid: 35405 components: - type: Transform - pos: -86.5,21.5 + pos: -58.5,-20.5 parent: 1 - - uid: 27540 + - uid: 35406 components: - type: Transform - pos: -87.5,21.5 + pos: -58.5,-19.5 parent: 1 - - uid: 27541 + - uid: 35407 components: - type: Transform - pos: -88.5,21.5 + pos: -58.5,-18.5 parent: 1 - - uid: 27542 + - uid: 35408 components: - type: Transform - pos: -89.5,21.5 + pos: -58.5,-17.5 parent: 1 - - uid: 27543 + - uid: 35409 components: - type: Transform - pos: -90.5,21.5 + pos: -61.5,-8.5 parent: 1 - - uid: 27544 + - uid: 35410 components: - type: Transform - pos: -91.5,21.5 + pos: -61.5,-7.5 parent: 1 - - uid: 27545 + - uid: 35411 components: - type: Transform - pos: -92.5,21.5 + pos: -61.5,-6.5 parent: 1 - - uid: 27546 + - uid: 35412 components: - type: Transform - pos: -93.5,21.5 + pos: -93.5,9.5 parent: 1 - - uid: 27547 + - uid: 35413 components: - type: Transform - pos: -94.5,21.5 + pos: -61.5,-4.5 parent: 1 - - uid: 27548 + - uid: 35414 components: - type: Transform - pos: -95.5,21.5 + pos: -61.5,-3.5 parent: 1 - - uid: 27549 + - uid: 35415 components: - type: Transform - pos: -96.5,21.5 + pos: -61.5,-2.5 parent: 1 - - uid: 27550 + - uid: 35416 components: - type: Transform - pos: -97.5,21.5 + pos: -61.5,-1.5 parent: 1 - - uid: 27551 + - uid: 35417 components: - type: Transform - pos: -98.5,21.5 + pos: -61.5,-0.5 parent: 1 - - uid: 27552 + - uid: 35418 components: - type: Transform - pos: -98.5,22.5 + pos: -61.5,0.5 parent: 1 - - uid: 27553 + - uid: 35419 components: - type: Transform - pos: -98.5,23.5 + pos: -61.5,1.5 parent: 1 - - uid: 27554 + - uid: 35420 components: - type: Transform - pos: -98.5,24.5 + pos: -61.5,2.5 parent: 1 - - uid: 27555 + - uid: 35421 components: - type: Transform - pos: -98.5,25.5 + pos: -61.5,3.5 parent: 1 - - uid: 27556 + - uid: 35422 components: - type: Transform - pos: -99.5,22.5 + pos: -91.5,8.5 parent: 1 - - uid: 27557 + - uid: 35487 components: - type: Transform - pos: -100.5,22.5 + pos: -105.5,-7.5 parent: 1 - - uid: 27558 + - uid: 35488 components: - type: Transform - pos: -101.5,22.5 + pos: -104.5,-7.5 parent: 1 - - uid: 27559 + - uid: 35489 components: - type: Transform - pos: -102.5,22.5 + pos: -103.5,-7.5 parent: 1 - - uid: 27560 + - uid: 35490 components: - type: Transform - pos: -122.5,22.5 + pos: -102.5,-7.5 parent: 1 - - uid: 27561 + - uid: 35491 components: - type: Transform - pos: -122.5,21.5 + pos: -101.5,-7.5 parent: 1 - - uid: 27564 + - uid: 35492 components: - type: Transform - pos: -122.5,20.5 + pos: -100.5,-7.5 parent: 1 - - uid: 27565 + - uid: 35493 components: - type: Transform - pos: -122.5,19.5 + pos: -99.5,-7.5 parent: 1 - - uid: 27566 + - uid: 35494 components: - type: Transform - pos: -122.5,18.5 + pos: -98.5,-7.5 parent: 1 - - uid: 27567 + - uid: 35498 components: - type: Transform - pos: -122.5,17.5 + pos: -99.5,-30.5 parent: 1 - - uid: 27568 + - uid: 35499 components: - type: Transform - pos: -122.5,16.5 + pos: -99.5,-31.5 parent: 1 - - uid: 27569 + - uid: 35500 components: - type: Transform - pos: -122.5,15.5 + pos: -100.5,-31.5 parent: 1 - - uid: 27570 + - uid: 35501 components: - type: Transform - pos: -122.5,14.5 + pos: -100.5,-32.5 parent: 1 - - uid: 27571 + - uid: 35502 components: - type: Transform - pos: -122.5,13.5 + pos: -100.5,-33.5 parent: 1 - - uid: 27572 + - uid: 35503 components: - type: Transform - pos: -122.5,12.5 + pos: -100.5,-34.5 parent: 1 - - uid: 27573 + - uid: 35504 components: - type: Transform - pos: -122.5,11.5 + pos: -100.5,-35.5 parent: 1 - - uid: 27574 + - uid: 35505 components: - type: Transform - pos: -122.5,10.5 + pos: -100.5,-36.5 parent: 1 - - uid: 27575 + - uid: 35506 components: - type: Transform - pos: -122.5,9.5 + pos: -100.5,-37.5 parent: 1 - - uid: 27576 + - uid: 35507 components: - type: Transform - pos: -122.5,8.5 + pos: -100.5,-38.5 parent: 1 - - uid: 27577 + - uid: 35508 components: - type: Transform - pos: -122.5,7.5 + pos: -101.5,-38.5 parent: 1 - - uid: 27578 + - uid: 35509 components: - type: Transform - pos: -122.5,6.5 + pos: -102.5,-38.5 parent: 1 - - uid: 27579 + - uid: 35511 components: - type: Transform - pos: -122.5,5.5 + pos: -104.5,-38.5 parent: 1 - - uid: 27581 + - uid: 35512 components: - type: Transform - pos: -122.5,3.5 + pos: -105.5,-38.5 parent: 1 - - uid: 27582 + - uid: 35513 components: - type: Transform - pos: -122.5,2.5 + pos: -106.5,-38.5 parent: 1 - - uid: 27583 + - uid: 35514 components: - type: Transform - pos: -122.5,1.5 + pos: -107.5,-38.5 parent: 1 - - uid: 27584 + - uid: 35515 components: - type: Transform - pos: -122.5,0.5 + pos: -107.5,-39.5 parent: 1 - - uid: 27585 + - uid: 35516 components: - type: Transform - pos: -122.5,-0.5 + pos: -107.5,-40.5 parent: 1 - - uid: 27586 + - uid: 35517 components: - type: Transform - pos: -122.5,-1.5 + pos: -107.5,-41.5 parent: 1 - - uid: 27587 + - uid: 35518 components: - type: Transform - pos: -122.5,-2.5 + pos: -107.5,-42.5 parent: 1 - - uid: 27588 + - uid: 35519 components: - type: Transform - pos: -122.5,-3.5 + pos: -107.5,-43.5 parent: 1 - - uid: 27589 + - uid: 35520 components: - type: Transform - pos: -122.5,-4.5 + pos: -108.5,-43.5 parent: 1 - - uid: 27590 + - uid: 35521 components: - type: Transform - pos: -122.5,-5.5 + pos: -109.5,-43.5 parent: 1 - - uid: 27591 + - uid: 35522 components: - type: Transform - pos: -122.5,-6.5 + pos: -109.5,-44.5 parent: 1 - - uid: 27592 + - uid: 35523 components: - type: Transform - pos: -122.5,-7.5 + pos: -109.5,-45.5 parent: 1 - - uid: 27593 + - uid: 35524 components: - type: Transform - pos: -121.5,-7.5 + pos: -110.5,-45.5 parent: 1 - - uid: 27594 + - uid: 35525 components: - type: Transform - pos: -120.5,-7.5 + pos: -111.5,-45.5 parent: 1 - - uid: 27595 + - uid: 35526 components: - type: Transform - pos: -119.5,-7.5 + pos: -112.5,-45.5 parent: 1 - - uid: 27597 + - uid: 35527 components: - type: Transform - pos: -117.5,-7.5 + pos: -113.5,-45.5 parent: 1 - - uid: 27598 + - uid: 35528 components: - type: Transform - pos: -116.5,-7.5 + pos: -114.5,-45.5 parent: 1 - - uid: 27599 + - uid: 35529 components: - type: Transform - pos: -115.5,-7.5 + pos: -115.5,-45.5 parent: 1 - - uid: 27600 + - uid: 35530 components: - type: Transform - pos: -114.5,-7.5 + pos: -116.5,-45.5 parent: 1 - - uid: 27601 + - uid: 35531 components: - type: Transform - pos: -113.5,-7.5 + pos: -117.5,-45.5 parent: 1 - - uid: 27602 + - uid: 35532 components: - type: Transform - pos: -112.5,-7.5 + pos: -118.5,-45.5 parent: 1 - - uid: 27610 + - uid: 35533 components: - type: Transform - pos: -106.5,-5.5 + pos: -119.5,-45.5 parent: 1 - - uid: 27611 + - uid: 35534 components: - type: Transform - pos: -106.5,-4.5 + pos: -120.5,-45.5 parent: 1 - - uid: 27612 + - uid: 35535 components: - type: Transform - pos: -106.5,-3.5 + pos: -121.5,-45.5 parent: 1 - - uid: 28520 + - uid: 35536 components: - type: Transform - pos: 16.5,15.5 + pos: -122.5,-45.5 parent: 1 - - uid: 28521 + - uid: 35537 components: - type: Transform - pos: 16.5,14.5 + pos: -123.5,-45.5 parent: 1 - - uid: 28522 + - uid: 35538 components: - type: Transform - pos: 15.5,14.5 + pos: -124.5,-45.5 parent: 1 - - uid: 28523 + - uid: 35539 components: - type: Transform - pos: 14.5,14.5 + pos: -125.5,-45.5 parent: 1 - - uid: 28524 + - uid: 35540 components: - type: Transform - pos: 13.5,14.5 + pos: -126.5,-45.5 parent: 1 - - uid: 28600 + - uid: 35541 components: - type: Transform - pos: -24.5,14.5 + pos: -127.5,-45.5 parent: 1 - - uid: 28601 + - uid: 35542 components: - type: Transform - pos: -23.5,14.5 + pos: -128.5,-45.5 parent: 1 - - uid: 28602 + - uid: 35543 components: - type: Transform - pos: -22.5,14.5 + pos: -129.5,-45.5 parent: 1 - - uid: 28603 + - uid: 35544 components: - type: Transform - pos: -21.5,14.5 + pos: -130.5,-45.5 parent: 1 - - uid: 28604 + - uid: 35545 components: - type: Transform - pos: -20.5,14.5 + pos: -131.5,-45.5 parent: 1 - - uid: 28605 + - uid: 35546 components: - type: Transform - pos: -19.5,14.5 + pos: -132.5,-45.5 parent: 1 - - uid: 28606 + - uid: 35547 components: - type: Transform - pos: -19.5,15.5 + pos: -133.5,-45.5 parent: 1 - - uid: 28607 + - uid: 35548 components: - type: Transform - pos: -19.5,16.5 + pos: -133.5,-44.5 parent: 1 - - uid: 28608 + - uid: 35550 components: - type: Transform - pos: -18.5,16.5 + pos: -133.5,-42.5 parent: 1 - - uid: 28609 + - uid: 35551 components: - type: Transform - pos: -17.5,16.5 + pos: -133.5,-41.5 parent: 1 - - uid: 28610 + - uid: 35552 components: - type: Transform - pos: -16.5,16.5 + pos: -133.5,-40.5 parent: 1 - - uid: 28611 + - uid: 35553 components: - type: Transform - pos: -16.5,17.5 + pos: -133.5,-39.5 parent: 1 - - uid: 28612 + - uid: 35554 components: - type: Transform - pos: -16.5,18.5 + pos: -134.5,-39.5 parent: 1 - - uid: 28613 + - uid: 35555 components: - type: Transform - pos: -16.5,19.5 + pos: -135.5,-39.5 parent: 1 - - uid: 28615 + - uid: 35556 components: - type: Transform - pos: -17.5,20.5 + pos: -135.5,-38.5 parent: 1 - - uid: 28616 + - uid: 35660 components: - type: Transform - pos: -18.5,20.5 + pos: -116.5,-86.5 parent: 1 - - uid: 28618 + - uid: 35661 components: - type: Transform - pos: -21.5,16.5 + pos: -115.5,-86.5 parent: 1 - - uid: 28619 + - uid: 35662 components: - type: Transform - pos: -22.5,16.5 + pos: -115.5,-85.5 parent: 1 - - uid: 28620 + - uid: 35663 components: - type: Transform - pos: -23.5,16.5 + pos: -113.5,-85.5 parent: 1 - - uid: 28621 + - uid: 35664 components: - type: Transform - pos: -24.5,16.5 + pos: -113.5,-86.5 parent: 1 - - uid: 28622 + - uid: 35665 components: - type: Transform - pos: -25.5,16.5 + pos: -113.5,-87.5 parent: 1 - - uid: 28623 + - uid: 35666 components: - type: Transform - pos: -26.5,16.5 + pos: -114.5,-87.5 parent: 1 - - uid: 28624 + - uid: 35667 components: - type: Transform - pos: -27.5,16.5 + pos: -114.5,-88.5 parent: 1 - - uid: 28625 + - uid: 35668 components: - type: Transform - pos: -28.5,16.5 + pos: -112.5,-87.5 parent: 1 - - uid: 28626 + - uid: 35669 components: - type: Transform - pos: -29.5,16.5 + pos: -111.5,-87.5 parent: 1 - - uid: 28627 + - uid: 35670 components: - type: Transform - pos: -30.5,16.5 + pos: -110.5,-87.5 parent: 1 - - uid: 28628 + - uid: 35671 components: - type: Transform - pos: -31.5,16.5 + pos: -109.5,-87.5 parent: 1 - - uid: 28629 + - uid: 35672 components: - type: Transform - pos: -32.5,16.5 + pos: -108.5,-87.5 parent: 1 - - uid: 28630 + - uid: 35673 components: - type: Transform - pos: -33.5,16.5 + pos: -107.5,-87.5 parent: 1 - - uid: 28631 + - uid: 35674 components: - type: Transform - pos: -34.5,16.5 + pos: -107.5,-86.5 parent: 1 - - uid: 28632 + - uid: 35675 components: - type: Transform - pos: -35.5,16.5 + pos: -107.5,-85.5 parent: 1 - - uid: 28633 + - uid: 35676 components: - type: Transform - pos: -36.5,16.5 + pos: -107.5,-84.5 parent: 1 - - uid: 28634 + - uid: 35677 components: - type: Transform - pos: -36.5,15.5 + pos: -107.5,-83.5 parent: 1 - - uid: 28635 + - uid: 35866 components: - type: Transform - pos: -36.5,14.5 + pos: -141.5,-86.5 parent: 1 - - uid: 28636 + - uid: 35867 components: - type: Transform - pos: -36.5,13.5 + pos: -140.5,-86.5 parent: 1 - - uid: 28637 + - uid: 35868 components: - type: Transform - pos: -36.5,12.5 + pos: -139.5,-86.5 parent: 1 - - uid: 28638 + - uid: 35869 components: - type: Transform - pos: -36.5,11.5 + pos: -138.5,-86.5 parent: 1 - - uid: 28639 + - uid: 35870 components: - type: Transform - pos: -36.5,10.5 + pos: -137.5,-86.5 parent: 1 - - uid: 28640 + - uid: 35871 components: - type: Transform - pos: -36.5,9.5 + pos: -136.5,-86.5 parent: 1 - - uid: 29215 + - uid: 35872 components: - type: Transform - pos: -127.5,34.5 + pos: -135.5,-86.5 parent: 1 - - uid: 29217 + - uid: 35873 components: - type: Transform - pos: 46.5,-40.5 + pos: -134.5,-86.5 parent: 1 - - uid: 29463 + - uid: 35874 components: - type: Transform - pos: 12.5,14.5 + pos: -133.5,-86.5 parent: 1 - - uid: 29464 + - uid: 35875 components: - type: Transform - pos: 12.5,13.5 + pos: -132.5,-86.5 parent: 1 - - uid: 29465 + - uid: 35876 components: - type: Transform - pos: 12.5,12.5 + pos: -131.5,-86.5 parent: 1 - - uid: 29466 + - uid: 35877 components: - type: Transform - pos: 12.5,11.5 + pos: -130.5,-86.5 parent: 1 - - uid: 29471 + - uid: 35878 components: - type: Transform - pos: 21.5,8.5 + pos: -129.5,-86.5 parent: 1 - - uid: 29472 + - uid: 35879 components: - type: Transform - pos: 20.5,8.5 + pos: -128.5,-86.5 parent: 1 - - uid: 29527 + - uid: 35880 components: - type: Transform - pos: 45.5,-40.5 + pos: -127.5,-86.5 parent: 1 - - uid: 29528 + - uid: 35881 components: - type: Transform - pos: 44.5,-40.5 + pos: -126.5,-86.5 parent: 1 - - uid: 29529 + - uid: 35882 components: - type: Transform - pos: 43.5,-40.5 + pos: -125.5,-86.5 parent: 1 - - uid: 30401 + - uid: 35883 components: - type: Transform - pos: -36.5,8.5 + pos: -124.5,-86.5 parent: 1 - - uid: 30402 + - uid: 35884 components: - type: Transform - pos: -42.5,9.5 + pos: -123.5,-86.5 parent: 1 - - uid: 30404 + - uid: 35885 components: - type: Transform - pos: -75.5,21.5 + pos: -122.5,-86.5 parent: 1 - - uid: 30405 + - uid: 35886 components: - type: Transform - pos: -71.5,9.5 + pos: -121.5,-86.5 parent: 1 - - uid: 30406 + - uid: 35887 components: - type: Transform - pos: -2.5,-44.5 + pos: -120.5,-86.5 parent: 1 - - uid: 30407 + - uid: 35888 components: - type: Transform - pos: -2.5,-43.5 + pos: -119.5,-86.5 parent: 1 - - uid: 32295 + - uid: 35889 components: - type: Transform - pos: 1.5,-30.5 + pos: -118.5,-86.5 parent: 1 - - uid: 32296 + - uid: 35890 components: - type: Transform - pos: 3.5,-30.5 + pos: -117.5,-86.5 parent: 1 - - uid: 32297 + - uid: 36128 components: - type: Transform - pos: 2.5,-30.5 + pos: -75.5,-54.5 parent: 1 - - uid: 32298 + - uid: 36129 components: - type: Transform - pos: 2.5,-31.5 + pos: -76.5,-54.5 parent: 1 - - uid: 32299 + - uid: 36130 components: - type: Transform - pos: 2.5,-32.5 + pos: -76.5,-55.5 parent: 1 - - uid: 32301 + - uid: 36131 components: - type: Transform - pos: 2.5,-33.5 + pos: -76.5,-56.5 parent: 1 - - uid: 32399 + - uid: 36132 components: - type: Transform - pos: -16.5,-51.5 + pos: -76.5,-57.5 parent: 1 - - uid: 32401 + - uid: 36133 components: - type: Transform - pos: -16.5,-52.5 + pos: -76.5,-58.5 parent: 1 - - uid: 32402 + - uid: 36134 components: - type: Transform - pos: -16.5,-53.5 + pos: -77.5,-58.5 parent: 1 - - uid: 32403 + - uid: 36135 components: - type: Transform - pos: -16.5,-54.5 + pos: -78.5,-58.5 parent: 1 - - uid: 32410 + - uid: 36136 components: - type: Transform - pos: -13.5,16.5 + pos: -79.5,-58.5 parent: 1 - - uid: 32411 + - uid: 36137 components: - type: Transform - pos: -13.5,14.5 + pos: -80.5,-58.5 parent: 1 - - uid: 32412 + - uid: 36139 components: - type: Transform - pos: -13.5,12.5 + pos: -82.5,-58.5 parent: 1 - - uid: 32422 + - uid: 36140 components: - type: Transform - pos: 33.5,-42.5 + pos: -83.5,-58.5 parent: 1 - - uid: 32477 + - uid: 36141 components: - type: Transform - pos: -16.5,20.5 + pos: -84.5,-58.5 parent: 1 - - uid: 32491 + - uid: 36142 components: - type: Transform - pos: -13.5,17.5 + pos: -85.5,-58.5 parent: 1 - - uid: 32492 + - uid: 36143 components: - type: Transform - pos: -13.5,15.5 + pos: -86.5,-58.5 parent: 1 - - uid: 32493 + - uid: 36144 components: - type: Transform - pos: -13.5,13.5 + pos: -87.5,-58.5 parent: 1 - - uid: 32494 + - uid: 36145 components: - type: Transform - pos: -13.5,11.5 + pos: -88.5,-58.5 parent: 1 - - uid: 33019 + - uid: 36146 components: - type: Transform - pos: -110.5,-36.5 + pos: -89.5,-58.5 parent: 1 - - uid: 33020 + - uid: 36147 components: - type: Transform - pos: -109.5,-36.5 + pos: -90.5,-58.5 parent: 1 - - uid: 33021 + - uid: 36148 components: - type: Transform - pos: -110.5,-38.5 + pos: -91.5,-58.5 parent: 1 - - uid: 33022 + - uid: 36149 components: - type: Transform - pos: -109.5,-38.5 + pos: -91.5,-59.5 parent: 1 - - uid: 33023 + - uid: 36150 components: - type: Transform - pos: -111.5,-36.5 + pos: -91.5,-60.5 parent: 1 - - uid: 33024 + - uid: 36151 components: - type: Transform - pos: -111.5,-37.5 + pos: -91.5,-61.5 parent: 1 - - uid: 33025 + - uid: 36152 components: - type: Transform - pos: -111.5,-38.5 + pos: -91.5,-62.5 parent: 1 - - uid: 33850 + - uid: 36153 components: - type: Transform - pos: -94.5,-29.5 + pos: -91.5,-63.5 parent: 1 - - uid: 34509 + - uid: 36154 components: - type: Transform - pos: -137.5,-37.5 + pos: -91.5,-64.5 parent: 1 - - uid: 34510 + - uid: 36155 components: - type: Transform - pos: -138.5,-37.5 + pos: -91.5,-65.5 parent: 1 - - uid: 34511 + - uid: 36156 components: - type: Transform - pos: -139.5,-37.5 + pos: -91.5,-66.5 parent: 1 - - uid: 34512 + - uid: 36157 components: - type: Transform - pos: -140.5,-37.5 + pos: -91.5,-67.5 parent: 1 - - uid: 34513 + - uid: 36158 components: - type: Transform - pos: -141.5,-37.5 + pos: -91.5,-68.5 parent: 1 - - uid: 34514 + - uid: 36159 components: - type: Transform - pos: -142.5,-37.5 + pos: -91.5,-69.5 parent: 1 - - uid: 34515 + - uid: 36160 components: - type: Transform - pos: -143.5,-37.5 + pos: -91.5,-70.5 parent: 1 - - uid: 34516 + - uid: 36161 components: - type: Transform - pos: -144.5,-37.5 + pos: -91.5,-71.5 parent: 1 - - uid: 34517 + - uid: 36162 components: - type: Transform - pos: -141.5,-38.5 + pos: -91.5,-72.5 parent: 1 - - uid: 34518 + - uid: 36163 components: - type: Transform - pos: -139.5,-38.5 + pos: -91.5,-73.5 parent: 1 - - uid: 34519 + - uid: 36164 components: - type: Transform - pos: -144.5,-38.5 + pos: -91.5,-74.5 parent: 1 - - uid: 34520 + - uid: 36165 components: - type: Transform - pos: -144.5,-39.5 + pos: -91.5,-75.5 parent: 1 - - uid: 34521 + - uid: 36166 components: - type: Transform - pos: -147.5,-39.5 + pos: -91.5,-76.5 parent: 1 - - uid: 34522 + - uid: 36167 components: - type: Transform - pos: -147.5,-40.5 + pos: -91.5,-77.5 parent: 1 - - uid: 34523 + - uid: 36168 components: - type: Transform - pos: -147.5,-41.5 + pos: -91.5,-78.5 parent: 1 - - uid: 34524 + - uid: 36169 components: - type: Transform - pos: -147.5,-42.5 + pos: -91.5,-79.5 parent: 1 - - uid: 34525 + - uid: 36170 components: - type: Transform - pos: -147.5,-43.5 + pos: -91.5,-80.5 parent: 1 - - uid: 34526 + - uid: 36171 components: - type: Transform - pos: -148.5,-43.5 + pos: -92.5,-80.5 parent: 1 - - uid: 34527 + - uid: 36173 components: - type: Transform - pos: -149.5,-43.5 + pos: -94.5,-80.5 parent: 1 - - uid: 34528 + - uid: 36174 components: - type: Transform - pos: -150.5,-43.5 + pos: -95.5,-80.5 parent: 1 - - uid: 34529 + - uid: 36175 components: - type: Transform - pos: -151.5,-43.5 + pos: -96.5,-80.5 parent: 1 - - uid: 34530 + - uid: 36176 components: - type: Transform - pos: -152.5,-43.5 + pos: -97.5,-80.5 parent: 1 - - uid: 34531 + - uid: 36177 components: - type: Transform - pos: -153.5,-43.5 + pos: -98.5,-80.5 parent: 1 - - uid: 34532 + - uid: 36178 components: - type: Transform - pos: -153.5,-44.5 + pos: -98.5,-81.5 parent: 1 - - uid: 34533 + - uid: 36179 components: - type: Transform - pos: -153.5,-45.5 + pos: -98.5,-82.5 parent: 1 - - uid: 34534 + - uid: 36180 components: - type: Transform - pos: -153.5,-46.5 + pos: -99.5,-82.5 parent: 1 - - uid: 34535 + - uid: 36181 components: - type: Transform - pos: -153.5,-47.5 + pos: -100.5,-82.5 parent: 1 - - uid: 34536 + - uid: 36182 components: - type: Transform - pos: -153.5,-48.5 + pos: -101.5,-82.5 parent: 1 - - uid: 34537 + - uid: 36183 components: - type: Transform - pos: -153.5,-49.5 + pos: -102.5,-82.5 parent: 1 - - uid: 34538 + - uid: 36184 components: - type: Transform - pos: -153.5,-50.5 + pos: -103.5,-82.5 parent: 1 - - uid: 34539 + - uid: 36185 components: - type: Transform - pos: -153.5,-51.5 + pos: -104.5,-82.5 parent: 1 - - uid: 34540 + - uid: 36186 components: - type: Transform - pos: -153.5,-52.5 + pos: -105.5,-82.5 parent: 1 - - uid: 34541 + - uid: 36187 components: - type: Transform - pos: -153.5,-53.5 + pos: -106.5,-82.5 parent: 1 - - uid: 34542 + - uid: 36188 components: - type: Transform - pos: -153.5,-54.5 + pos: -107.5,-82.5 parent: 1 - - uid: 34543 + - uid: 36189 components: - type: Transform - pos: -153.5,-55.5 + pos: -108.5,-82.5 parent: 1 - - uid: 34544 + - uid: 36190 components: - type: Transform - pos: -153.5,-56.5 + pos: -109.5,-82.5 parent: 1 - - uid: 34545 + - uid: 36191 components: - type: Transform - pos: -153.5,-57.5 + pos: -110.5,-82.5 parent: 1 - - uid: 34546 + - uid: 36192 components: - type: Transform - pos: -153.5,-58.5 + pos: -111.5,-82.5 parent: 1 - - uid: 34547 + - uid: 36193 components: - type: Transform - pos: -153.5,-59.5 + pos: -112.5,-82.5 parent: 1 - - uid: 34548 + - uid: 36194 components: - type: Transform - pos: -153.5,-60.5 + pos: -113.5,-82.5 parent: 1 - - uid: 34549 + - uid: 36195 components: - type: Transform - pos: -153.5,-61.5 + pos: -114.5,-82.5 parent: 1 - - uid: 34550 + - uid: 36196 components: - type: Transform - pos: -153.5,-62.5 + pos: -114.5,-81.5 parent: 1 - - uid: 34551 + - uid: 36197 components: - type: Transform - pos: -153.5,-63.5 + pos: -114.5,-80.5 parent: 1 - - uid: 34552 + - uid: 36198 components: - type: Transform - pos: -153.5,-64.5 + pos: -114.5,-79.5 parent: 1 - - uid: 34553 + - uid: 36199 components: - type: Transform - pos: -153.5,-65.5 + pos: -114.5,-78.5 parent: 1 - - uid: 34667 + - uid: 36200 components: - type: Transform - pos: -14.5,17.5 + pos: -114.5,-77.5 parent: 1 - - uid: 34668 + - uid: 36201 components: - type: Transform - pos: -15.5,17.5 + pos: -114.5,-76.5 parent: 1 - - uid: 34686 + - uid: 36202 components: - type: Transform - pos: -111.5,-8.5 + pos: -114.5,-75.5 parent: 1 - - uid: 34691 + - uid: 36204 components: - type: Transform - pos: -117.5,-8.5 + pos: -114.5,-73.5 parent: 1 - - uid: 34692 + - uid: 36205 components: - type: Transform - pos: -117.5,-9.5 + pos: -114.5,-72.5 parent: 1 - - uid: 34693 + - uid: 36206 components: - type: Transform - pos: -117.5,-10.5 + pos: -114.5,-71.5 parent: 1 - - uid: 34694 + - uid: 36207 components: - type: Transform - pos: -117.5,-11.5 + pos: -115.5,-71.5 parent: 1 - - uid: 34695 + - uid: 36208 components: - type: Transform - pos: -117.5,-12.5 + pos: -116.5,-71.5 parent: 1 - - uid: 34696 + - uid: 36209 components: - type: Transform - pos: -117.5,-13.5 + pos: -116.5,-70.5 parent: 1 - - uid: 34697 + - uid: 36210 components: - type: Transform - pos: -117.5,-14.5 + pos: -116.5,-69.5 parent: 1 - - uid: 34698 + - uid: 36211 components: - type: Transform - pos: -117.5,-15.5 + pos: -116.5,-68.5 parent: 1 - - uid: 34699 + - uid: 36212 components: - type: Transform - pos: -117.5,-16.5 + pos: -116.5,-67.5 parent: 1 - - uid: 34700 + - uid: 36213 components: - type: Transform - pos: -117.5,-17.5 + pos: -116.5,-66.5 parent: 1 - - uid: 34701 + - uid: 36214 components: - type: Transform - pos: -117.5,-18.5 + pos: -116.5,-65.5 parent: 1 - - uid: 34702 + - uid: 36215 components: - type: Transform - pos: -117.5,-19.5 + pos: -116.5,-64.5 parent: 1 - - uid: 34703 + - uid: 36216 components: - type: Transform - pos: -117.5,-20.5 + pos: -116.5,-63.5 parent: 1 - - uid: 34704 + - uid: 36217 components: - type: Transform - pos: -118.5,-20.5 + pos: -116.5,-62.5 parent: 1 - - uid: 34705 + - uid: 36218 components: - type: Transform - pos: -119.5,-20.5 + pos: -116.5,-61.5 parent: 1 - - uid: 34706 + - uid: 36219 components: - type: Transform - pos: -120.5,-20.5 + pos: -116.5,-60.5 parent: 1 - - uid: 34707 + - uid: 36220 components: - type: Transform - pos: -121.5,-20.5 + pos: -116.5,-59.5 parent: 1 - - uid: 34708 + - uid: 36221 components: - type: Transform - pos: -122.5,-20.5 + pos: -116.5,-58.5 parent: 1 - - uid: 34709 + - uid: 36222 components: - type: Transform - pos: -123.5,-20.5 + pos: -116.5,-57.5 parent: 1 - - uid: 34710 + - uid: 36223 components: - type: Transform - pos: -123.5,-21.5 + pos: -116.5,-56.5 parent: 1 - - uid: 34711 + - uid: 36224 components: - type: Transform - pos: -123.5,-22.5 + pos: -116.5,-55.5 parent: 1 - - uid: 34713 + - uid: 36225 components: - type: Transform - pos: -123.5,-24.5 + pos: -116.5,-54.5 parent: 1 - - uid: 34714 + - uid: 36226 components: - type: Transform - pos: -123.5,-25.5 + pos: -116.5,-53.5 parent: 1 - - uid: 34715 + - uid: 36227 components: - type: Transform - pos: -125.5,-25.5 + pos: -116.5,-52.5 parent: 1 - - uid: 34716 + - uid: 36228 components: - type: Transform - pos: -126.5,-25.5 + pos: -116.5,-46.5 parent: 1 - - uid: 34717 + - uid: 36394 components: - type: Transform - pos: -127.5,-25.5 + pos: -133.5,-49.5 parent: 1 - - uid: 34718 + - uid: 36395 components: - type: Transform - pos: -128.5,-25.5 + pos: -133.5,-50.5 parent: 1 - - uid: 34719 + - uid: 36396 components: - type: Transform - pos: -129.5,-25.5 + pos: -133.5,-51.5 parent: 1 - - uid: 34720 + - uid: 36397 components: - type: Transform - pos: -130.5,-25.5 + pos: -133.5,-52.5 parent: 1 - - uid: 34721 + - uid: 36398 components: - type: Transform - pos: -131.5,-25.5 + pos: -133.5,-53.5 parent: 1 - - uid: 34723 + - uid: 36399 components: - type: Transform - pos: -131.5,-26.5 + pos: -134.5,-53.5 parent: 1 - - uid: 34724 + - uid: 36400 components: - type: Transform - pos: -131.5,-27.5 + pos: -135.5,-53.5 parent: 1 - - uid: 34725 + - uid: 37461 components: - type: Transform - pos: -131.5,-28.5 + pos: -99.5,-77.5 parent: 1 - - uid: 34726 + - uid: 37462 components: - type: Transform - pos: -131.5,-29.5 + pos: -98.5,-77.5 parent: 1 - - uid: 34727 + - uid: 37463 components: - type: Transform - pos: -131.5,-30.5 + pos: -97.5,-77.5 parent: 1 - - uid: 34728 + - uid: 37464 components: - type: Transform - pos: -131.5,-31.5 + pos: -97.5,-78.5 parent: 1 - - uid: 34729 + - uid: 37465 components: - type: Transform - pos: -131.5,-32.5 + pos: -97.5,-79.5 parent: 1 - - uid: 34730 + - uid: 39630 components: - type: Transform - pos: -132.5,-32.5 + pos: 42.5,-40.5 parent: 1 - - uid: 34731 + - uid: 39884 components: - type: Transform - pos: -133.5,-32.5 + pos: 57.5,-53.5 parent: 1 - - uid: 34732 + - uid: 39885 components: - type: Transform - pos: -133.5,-33.5 + pos: 57.5,-54.5 parent: 1 - - uid: 34734 + - uid: 39886 components: - type: Transform - pos: -133.5,-34.5 + pos: 57.5,-52.5 parent: 1 - - uid: 34735 + - uid: 39887 components: - type: Transform - pos: -134.5,-34.5 + pos: 58.5,-54.5 parent: 1 - - uid: 34736 + - uid: 39888 components: - type: Transform - pos: -135.5,-34.5 + pos: 59.5,-54.5 parent: 1 - - uid: 34737 + - uid: 39889 components: - type: Transform - pos: -135.5,-35.5 + pos: 59.5,-55.5 parent: 1 - - uid: 34738 + - uid: 39960 components: - type: Transform - pos: -135.5,-36.5 + pos: -27.5,-72.5 parent: 1 - - uid: 34739 + - uid: 39961 components: - type: Transform - pos: -135.5,-37.5 + pos: -26.5,-72.5 parent: 1 - - uid: 34741 + - uid: 39962 components: - type: Transform - pos: -136.5,-37.5 + pos: -25.5,-72.5 parent: 1 - - uid: 34749 + - uid: 40041 components: - type: Transform - pos: -98.5,20.5 + pos: 33.5,-43.5 parent: 1 - - uid: 34750 + - uid: 40876 components: - type: Transform - pos: -98.5,19.5 + pos: 42.5,-7.5 parent: 1 - - uid: 34751 + - uid: 40880 components: - type: Transform - pos: -98.5,18.5 + pos: 46.5,43.5 parent: 1 - - uid: 34758 + - uid: 40881 components: - type: Transform - pos: -97.5,-9.5 + pos: 47.5,43.5 parent: 1 - - uid: 34761 + - uid: 40882 components: - type: Transform - pos: -98.5,16.5 + pos: 48.5,43.5 parent: 1 - - uid: 34762 + - uid: 40883 components: - type: Transform - pos: -98.5,15.5 + pos: 48.5,42.5 parent: 1 - - uid: 34763 + - uid: 40884 components: - type: Transform - pos: -98.5,14.5 + pos: 7.5,45.5 parent: 1 - - uid: 34781 + - uid: 40885 components: - type: Transform - pos: -98.5,13.5 + pos: 8.5,45.5 parent: 1 - - uid: 34782 + - uid: 40886 components: - type: Transform - pos: -98.5,12.5 + pos: 9.5,45.5 parent: 1 - - uid: 34783 + - uid: 40887 components: - type: Transform - pos: -98.5,11.5 + pos: 10.5,45.5 parent: 1 - - uid: 34784 + - uid: 40888 components: - type: Transform - pos: -98.5,10.5 + pos: 11.5,45.5 parent: 1 - - uid: 34792 + - uid: 40889 components: - type: Transform - pos: -39.5,-82.5 + pos: 12.5,45.5 parent: 1 - - uid: 34793 + - uid: 40890 components: - type: Transform - pos: -98.5,9.5 + pos: 13.5,45.5 parent: 1 - - uid: 34794 + - uid: 40891 components: - type: Transform - pos: -98.5,8.5 + pos: 14.5,45.5 parent: 1 - - uid: 34795 + - uid: 40892 components: - type: Transform - pos: 20.5,5.5 + pos: 15.5,45.5 parent: 1 - - uid: 34796 + - uid: 40893 components: - type: Transform - pos: 21.5,5.5 + pos: 16.5,45.5 parent: 1 - - uid: 34801 + - uid: 40894 components: - type: Transform - pos: -39.5,-80.5 + pos: 17.5,45.5 parent: 1 - - uid: 34802 + - uid: 40895 components: - type: Transform - pos: -39.5,-79.5 + pos: 18.5,45.5 parent: 1 - - uid: 34977 + - uid: 40896 components: - type: Transform - pos: 33.5,-38.5 + pos: 19.5,45.5 parent: 1 - - uid: 34978 + - uid: 40897 components: - type: Transform - pos: 33.5,-37.5 + pos: 20.5,45.5 parent: 1 - - uid: 34979 + - uid: 40898 components: - type: Transform - pos: 33.5,-36.5 + pos: 21.5,45.5 parent: 1 - - uid: 34980 + - uid: 40899 components: - type: Transform - pos: 33.5,-35.5 + pos: 22.5,45.5 parent: 1 - - uid: 34981 + - uid: 40900 components: - type: Transform - pos: 33.5,-34.5 + pos: 23.5,45.5 parent: 1 - - uid: 34982 + - uid: 40901 components: - type: Transform - pos: 33.5,-33.5 + pos: 24.5,45.5 parent: 1 - - uid: 34983 + - uid: 40902 components: - type: Transform - pos: 33.5,-32.5 + pos: 25.5,45.5 parent: 1 - - uid: 34985 + - uid: 40903 components: - type: Transform - pos: 33.5,-30.5 + pos: 26.5,45.5 parent: 1 - - uid: 34986 + - uid: 40904 components: - type: Transform - pos: 33.5,-29.5 + pos: 27.5,45.5 parent: 1 - - uid: 34987 + - uid: 40905 components: - type: Transform - pos: 33.5,-28.5 + pos: 28.5,45.5 parent: 1 - - uid: 34988 + - uid: 40906 components: - type: Transform - pos: 33.5,-27.5 + pos: 29.5,45.5 parent: 1 - - uid: 34989 + - uid: 40907 components: - type: Transform - pos: 33.5,-26.5 + pos: 30.5,45.5 parent: 1 - - uid: 34990 + - uid: 40908 components: - type: Transform - pos: 33.5,-25.5 + pos: 31.5,45.5 parent: 1 - - uid: 34991 + - uid: 40909 components: - type: Transform - pos: 33.5,-24.5 + pos: 32.5,45.5 parent: 1 - - uid: 34992 + - uid: 40910 components: - type: Transform - pos: 33.5,-23.5 + pos: 33.5,45.5 parent: 1 - - uid: 34993 + - uid: 40911 components: - type: Transform - pos: 33.5,-22.5 + pos: 34.5,45.5 parent: 1 - - uid: 34994 + - uid: 40912 components: - type: Transform - pos: 33.5,-21.5 + pos: 35.5,45.5 parent: 1 - - uid: 34995 + - uid: 40913 components: - type: Transform - pos: 33.5,-20.5 + pos: 36.5,45.5 parent: 1 - - uid: 34996 + - uid: 40914 components: - type: Transform - pos: 32.5,-20.5 + pos: 37.5,45.5 parent: 1 - - uid: 34997 + - uid: 40915 components: - type: Transform - pos: 32.5,-19.5 + pos: 38.5,45.5 parent: 1 - - uid: 34998 + - uid: 40916 components: - type: Transform - pos: 32.5,-18.5 + pos: 39.5,45.5 parent: 1 - - uid: 34999 + - uid: 41294 components: - type: Transform - pos: 32.5,-17.5 + pos: -152.5,-20.5 parent: 1 - - uid: 35000 + - uid: 41295 components: - type: Transform - pos: 32.5,-16.5 + pos: -152.5,-19.5 parent: 1 - - uid: 35001 + - uid: 41296 components: - type: Transform - pos: 32.5,-15.5 + pos: -151.5,-19.5 parent: 1 - - uid: 35002 + - uid: 41297 components: - type: Transform - pos: 32.5,-14.5 + pos: -150.5,-19.5 parent: 1 - - uid: 35003 + - uid: 41298 components: - type: Transform - pos: 32.5,-13.5 + pos: -149.5,-19.5 parent: 1 - - uid: 35004 + - uid: 41299 components: - type: Transform - pos: 31.5,-13.5 + pos: -148.5,-19.5 parent: 1 - - uid: 35005 + - uid: 41300 components: - type: Transform - pos: 30.5,-13.5 + pos: -147.5,-19.5 parent: 1 - - uid: 35006 + - uid: 41301 components: - type: Transform - pos: 29.5,-13.5 + pos: -146.5,-19.5 parent: 1 - - uid: 35013 + - uid: 41302 components: - type: Transform - pos: 33.5,-44.5 + pos: -145.5,-19.5 parent: 1 - - uid: 35014 + - uid: 41303 components: - type: Transform - pos: 33.5,-45.5 + pos: -144.5,-19.5 parent: 1 - - uid: 35015 + - uid: 41304 components: - type: Transform - pos: 32.5,-45.5 + pos: -143.5,-19.5 parent: 1 - - uid: 35016 + - uid: 41305 components: - type: Transform - pos: 31.5,-45.5 + pos: -142.5,-19.5 parent: 1 - - uid: 35017 + - uid: 41306 components: - type: Transform - pos: 30.5,-45.5 + pos: -141.5,-19.5 parent: 1 - - uid: 35080 + - uid: 41307 components: - type: Transform - pos: -15.5,-51.5 + pos: -140.5,-19.5 parent: 1 - - uid: 35081 + - uid: 41308 components: - type: Transform - pos: -15.5,-50.5 + pos: -139.5,-19.5 parent: 1 - - uid: 35082 + - uid: 41309 components: - type: Transform - pos: -96.5,-20.5 + pos: -138.5,-19.5 parent: 1 - - uid: 35335 + - uid: 41310 components: - type: Transform - pos: -36.5,-31.5 + pos: -137.5,-19.5 parent: 1 - - uid: 35336 + - uid: 41311 components: - type: Transform - pos: -36.5,-32.5 + pos: -137.5,-20.5 parent: 1 - - uid: 35337 + - uid: 41312 components: - type: Transform - pos: -36.5,-33.5 + pos: -137.5,-22.5 parent: 1 - - uid: 35338 + - uid: 41313 components: - type: Transform - pos: -36.5,-34.5 + pos: -136.5,-22.5 parent: 1 - - uid: 35339 + - uid: 41314 components: - type: Transform - pos: -36.5,-35.5 + pos: -151.5,-30.5 parent: 1 - - uid: 35340 + - uid: 41315 components: - type: Transform - pos: -37.5,-35.5 + pos: -152.5,-30.5 parent: 1 - - uid: 35341 + - uid: 41316 components: - type: Transform - pos: -38.5,-35.5 + pos: -152.5,-29.5 parent: 1 - - uid: 35342 + - uid: 41317 components: - type: Transform - pos: -39.5,-35.5 + pos: -152.5,-28.5 parent: 1 - - uid: 35343 + - uid: 41318 components: - type: Transform - pos: -40.5,-35.5 + pos: -152.5,-27.5 parent: 1 - - uid: 35344 + - uid: 41377 components: - type: Transform - pos: -40.5,-36.5 + pos: -90.5,-90.5 parent: 1 - - uid: 35345 + - uid: 41378 components: - type: Transform - pos: -40.5,-37.5 + pos: -89.5,-89.5 parent: 1 - - uid: 35346 + - uid: 41621 components: - type: Transform - pos: -40.5,-38.5 + pos: -109.5,-22.5 parent: 1 - - uid: 35347 + - uid: 41889 components: - type: Transform - pos: -40.5,-39.5 + pos: 22.5,8.5 parent: 1 - - uid: 35348 + - uid: 41890 components: - type: Transform - pos: -40.5,-40.5 + pos: 23.5,8.5 parent: 1 - - uid: 35349 + - uid: 41891 components: - type: Transform - pos: -40.5,-41.5 + pos: 24.5,8.5 parent: 1 - - uid: 35350 + - uid: 41892 components: - type: Transform - pos: -40.5,-42.5 + pos: 24.5,7.5 parent: 1 - - uid: 35351 + - uid: 41893 components: - type: Transform - pos: -40.5,-43.5 + pos: 24.5,6.5 parent: 1 - - uid: 35352 + - uid: 41894 components: - type: Transform - pos: -40.5,-44.5 + pos: 24.5,5.5 parent: 1 - - uid: 35353 + - uid: 41895 components: - type: Transform - pos: -40.5,-45.5 + pos: 23.5,5.5 parent: 1 - - uid: 35354 + - uid: 41896 components: - type: Transform - pos: -40.5,-46.5 + pos: 22.5,5.5 parent: 1 - - uid: 35355 + - uid: 42191 components: - type: Transform - pos: -40.5,-47.5 + pos: 61.5,11.5 parent: 1 - - uid: 35356 + - uid: 42192 components: - type: Transform - pos: -41.5,-47.5 + pos: 61.5,10.5 parent: 1 - - uid: 35357 + - uid: 42193 components: - type: Transform - pos: -42.5,-47.5 + pos: 61.5,12.5 parent: 1 - - uid: 35358 + - uid: 42194 components: - type: Transform - pos: -42.5,-48.5 + pos: 61.5,13.5 parent: 1 - - uid: 35359 + - uid: 42195 components: - type: Transform - pos: -42.5,-49.5 + pos: 61.5,14.5 parent: 1 - - uid: 35360 + - uid: 42196 components: - type: Transform - pos: -42.5,-50.5 + pos: 61.5,15.5 parent: 1 - - uid: 35361 + - uid: 42197 components: - type: Transform - pos: -42.5,-51.5 + pos: 61.5,16.5 parent: 1 - - uid: 35362 + - uid: 42198 components: - type: Transform - pos: -43.5,-51.5 + pos: 61.5,17.5 parent: 1 - - uid: 35363 + - uid: 42199 components: - type: Transform - pos: -44.5,-51.5 + pos: 61.5,18.5 parent: 1 - - uid: 35364 + - uid: 42200 components: - type: Transform - pos: -45.5,-51.5 + pos: 61.5,19.5 parent: 1 - - uid: 35365 + - uid: 42201 components: - type: Transform - pos: -45.5,-52.5 + pos: 62.5,19.5 parent: 1 - - uid: 35366 + - uid: 42202 components: - type: Transform - pos: -45.5,-53.5 + pos: 63.5,19.5 parent: 1 - - uid: 35367 + - uid: 42203 components: - type: Transform - pos: -45.5,-54.5 + pos: 64.5,19.5 parent: 1 - - uid: 35368 + - uid: 42204 components: - type: Transform - pos: -45.5,-55.5 + pos: 65.5,19.5 parent: 1 - - uid: 35369 + - uid: 42205 components: - type: Transform - pos: -45.5,-56.5 + pos: 66.5,19.5 parent: 1 - - uid: 35370 + - uid: 42206 components: - type: Transform - pos: -45.5,-57.5 + pos: 67.5,19.5 parent: 1 - - uid: 35371 + - uid: 42207 components: - type: Transform - pos: -45.5,-58.5 + pos: 68.5,19.5 parent: 1 - - uid: 35372 + - uid: 42208 components: - type: Transform - pos: -45.5,-59.5 + pos: 69.5,19.5 parent: 1 - - uid: 35373 + - uid: 42209 components: - type: Transform - pos: -46.5,-59.5 + pos: 70.5,19.5 parent: 1 - - uid: 35374 + - uid: 42210 components: - type: Transform - pos: -47.5,-59.5 + pos: 71.5,19.5 parent: 1 - - uid: 35375 + - uid: 42211 components: - type: Transform - pos: -48.5,-59.5 + pos: 72.5,19.5 parent: 1 - - uid: 35376 + - uid: 42212 components: - type: Transform - pos: -49.5,-59.5 + pos: 73.5,19.5 parent: 1 - - uid: 35377 + - uid: 42213 components: - type: Transform - pos: -49.5,-60.5 + pos: 74.5,19.5 parent: 1 - - uid: 35378 + - uid: 42214 components: - type: Transform - pos: -49.5,-61.5 + pos: 75.5,19.5 parent: 1 - - uid: 35379 + - uid: 42215 components: - type: Transform - pos: -49.5,-62.5 + pos: 76.5,19.5 parent: 1 - - uid: 35380 + - uid: 42216 components: - type: Transform - pos: -49.5,-63.5 + pos: 77.5,19.5 parent: 1 - - uid: 35381 + - uid: 42217 components: - type: Transform - pos: -49.5,-64.5 + pos: 78.5,19.5 parent: 1 - - uid: 35382 + - uid: 42218 components: - type: Transform - pos: -50.5,-64.5 + pos: 79.5,19.5 parent: 1 - - uid: 35383 + - uid: 42219 components: - type: Transform - pos: -51.5,-64.5 + pos: 80.5,19.5 parent: 1 - - uid: 35384 + - uid: 42220 components: - type: Transform - pos: -96.5,11.5 + pos: 81.5,19.5 parent: 1 - - uid: 35385 + - uid: 42221 components: - type: Transform - pos: -53.5,-64.5 + pos: 82.5,19.5 parent: 1 - - uid: 35386 + - uid: 42222 components: - type: Transform - pos: -60.5,-37.5 + pos: 83.5,19.5 parent: 1 - - uid: 35387 + - uid: 42223 components: - type: Transform - pos: -96.5,13.5 + pos: 84.5,19.5 parent: 1 - - uid: 35388 + - uid: 42224 components: - type: Transform - pos: -60.5,-35.5 + pos: 85.5,19.5 parent: 1 - - uid: 35389 + - uid: 42225 components: - type: Transform - pos: -60.5,-34.5 + pos: 86.5,19.5 parent: 1 - - uid: 35390 + - uid: 42226 components: - type: Transform - pos: -60.5,-33.5 + pos: 87.5,19.5 parent: 1 - - uid: 35391 + - uid: 42227 components: - type: Transform - pos: -60.5,-32.5 + pos: 88.5,19.5 parent: 1 - - uid: 35392 + - uid: 42228 components: - type: Transform - pos: -60.5,-31.5 + pos: 89.5,19.5 parent: 1 - - uid: 35393 + - uid: 42230 components: - type: Transform - pos: -60.5,-30.5 + pos: 89.5,20.5 parent: 1 - - uid: 35394 + - uid: 42231 components: - type: Transform - pos: -60.5,-29.5 + pos: 89.5,21.5 parent: 1 - - uid: 35395 + - uid: 42232 components: - type: Transform - pos: -60.5,-28.5 + pos: 89.5,22.5 parent: 1 - - uid: 35396 + - uid: 42233 components: - type: Transform - pos: -60.5,-27.5 + pos: 89.5,23.5 parent: 1 - - uid: 35397 + - uid: 42234 components: - type: Transform - pos: -60.5,-26.5 + pos: 89.5,24.5 parent: 1 - - uid: 35398 + - uid: 42235 components: - type: Transform - pos: -60.5,-25.5 + pos: 89.5,25.5 parent: 1 - - uid: 35399 + - uid: 42291 components: - type: Transform - pos: -60.5,-24.5 + pos: 52.5,25.5 parent: 1 - - uid: 35400 + - uid: 42292 components: - type: Transform - pos: -60.5,-23.5 + pos: 52.5,24.5 parent: 1 - - uid: 35401 + - uid: 42293 components: - type: Transform - pos: -60.5,-22.5 + pos: 52.5,23.5 parent: 1 - - uid: 35402 + - uid: 42294 components: - type: Transform - pos: -60.5,-21.5 + pos: 52.5,22.5 parent: 1 - - uid: 35403 + - uid: 42295 components: - type: Transform - pos: -59.5,-21.5 + pos: 52.5,21.5 parent: 1 - - uid: 35404 + - uid: 42296 components: - type: Transform - pos: -58.5,-21.5 + pos: 52.5,20.5 parent: 1 - - uid: 35405 + - uid: 42297 components: - type: Transform - pos: -58.5,-20.5 + pos: 52.5,19.5 parent: 1 - - uid: 35406 + - uid: 42298 components: - type: Transform - pos: -58.5,-19.5 + pos: 52.5,18.5 parent: 1 - - uid: 35407 + - uid: 42299 components: - type: Transform - pos: -58.5,-18.5 + pos: 52.5,17.5 parent: 1 - - uid: 35408 + - uid: 42300 components: - type: Transform - pos: -58.5,-17.5 + pos: 52.5,16.5 parent: 1 - - uid: 35409 + - uid: 42301 components: - type: Transform - pos: -61.5,-8.5 + pos: 52.5,15.5 parent: 1 - - uid: 35410 + - uid: 42302 components: - type: Transform - pos: -61.5,-7.5 + pos: 52.5,14.5 parent: 1 - - uid: 35411 + - uid: 42303 components: - type: Transform - pos: -61.5,-6.5 + pos: 52.5,13.5 parent: 1 - - uid: 35412 + - uid: 42304 components: - type: Transform - pos: -93.5,9.5 + pos: 52.5,12.5 parent: 1 - - uid: 35413 + - uid: 42305 components: - type: Transform - pos: -61.5,-4.5 + pos: 52.5,11.5 parent: 1 - - uid: 35414 + - uid: 42306 components: - type: Transform - pos: -61.5,-3.5 + pos: 52.5,10.5 parent: 1 - - uid: 35415 +- proto: Cautery + entities: + - uid: 13655 components: - type: Transform - pos: -61.5,-2.5 + pos: -77.9579,-69.35296 parent: 1 - - uid: 35416 +- proto: Chair + entities: + - uid: 242 components: - type: Transform - pos: -61.5,-1.5 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 parent: 1 - - uid: 35417 + - uid: 248 components: - type: Transform - pos: -61.5,-0.5 + rot: 1.5707963267948966 rad + pos: -11.5,11.5 parent: 1 - - uid: 35418 + - uid: 357 components: - type: Transform - pos: -61.5,0.5 + pos: -20.5,-6.5 parent: 1 - - uid: 35419 + - uid: 358 components: - type: Transform - pos: -61.5,1.5 + pos: -21.5,-6.5 parent: 1 - - uid: 35420 + - uid: 359 components: - type: Transform - pos: -61.5,2.5 + rot: 3.141592653589793 rad + pos: -21.5,-8.5 parent: 1 - - uid: 35421 + - uid: 362 components: - type: Transform - pos: -61.5,3.5 + rot: 3.141592653589793 rad + pos: -20.5,-8.5 parent: 1 - - uid: 35422 + - uid: 364 components: - type: Transform - pos: -91.5,8.5 + pos: -21.5,-2.5 parent: 1 - - uid: 35487 + - uid: 365 components: - type: Transform - pos: -105.5,-7.5 + pos: -20.5,-2.5 parent: 1 - - uid: 35488 + - uid: 430 components: - type: Transform - pos: -104.5,-7.5 + rot: 3.141592653589793 rad + pos: -20.5,-4.5 parent: 1 - - uid: 35489 + - uid: 433 components: - type: Transform - pos: -103.5,-7.5 + rot: 3.141592653589793 rad + pos: -18.5,-4.5 parent: 1 - - uid: 35490 + - uid: 436 components: - type: Transform - pos: -102.5,-7.5 + pos: -17.5,-2.5 parent: 1 - - uid: 35491 + - uid: 437 components: - type: Transform - pos: -101.5,-7.5 + pos: -18.5,-2.5 parent: 1 - - uid: 35492 + - uid: 438 components: - type: Transform - pos: -100.5,-7.5 + pos: -18.5,-6.5 parent: 1 - - uid: 35493 + - uid: 440 components: - type: Transform - pos: -99.5,-7.5 + pos: -17.5,-6.5 parent: 1 - - uid: 35494 + - uid: 441 components: - type: Transform - pos: -98.5,-7.5 + rot: 3.141592653589793 rad + pos: -17.5,-8.5 parent: 1 - - uid: 35498 + - uid: 442 components: - type: Transform - pos: -99.5,-30.5 + rot: 3.141592653589793 rad + pos: -18.5,-8.5 parent: 1 - - uid: 35499 + - uid: 443 components: - type: Transform - pos: -99.5,-31.5 + rot: 3.141592653589793 rad + pos: -21.5,-4.5 parent: 1 - - uid: 35500 + - uid: 444 components: - type: Transform - pos: -100.5,-31.5 + rot: 3.141592653589793 rad + pos: -17.5,-4.5 parent: 1 - - uid: 35501 + - uid: 1248 components: - type: Transform - pos: -100.5,-32.5 + rot: -1.5707963267948966 rad + pos: -5.5,11.5 parent: 1 - - uid: 35502 + - uid: 1249 components: - type: Transform - pos: -100.5,-33.5 + rot: -1.5707963267948966 rad + pos: -1.5,11.5 parent: 1 - - uid: 35503 + - uid: 1250 components: - type: Transform - pos: -100.5,-34.5 + rot: -1.5707963267948966 rad + pos: 2.5,11.5 parent: 1 - - uid: 35504 + - uid: 1251 components: - type: Transform - pos: -100.5,-35.5 + rot: -1.5707963267948966 rad + pos: 6.5,11.5 parent: 1 - - uid: 35505 + - uid: 1252 components: - type: Transform - pos: -100.5,-36.5 + rot: -1.5707963267948966 rad + pos: 10.5,11.5 parent: 1 - - uid: 35506 + - uid: 1253 components: - type: Transform - pos: -100.5,-37.5 + rot: 1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 35507 + - uid: 1254 components: - type: Transform - pos: -100.5,-38.5 + rot: 1.5707963267948966 rad + pos: 4.5,11.5 parent: 1 - - uid: 35508 + - uid: 1255 components: - type: Transform - pos: -101.5,-38.5 + rot: 1.5707963267948966 rad + pos: 0.5,11.5 parent: 1 - - uid: 35509 + - uid: 1256 components: - type: Transform - pos: -102.5,-38.5 + rot: 1.5707963267948966 rad + pos: -3.5,11.5 parent: 1 - - uid: 35511 + - uid: 1257 components: - type: Transform - pos: -104.5,-38.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 1 - - uid: 35512 + - uid: 1664 components: - type: Transform - pos: -105.5,-38.5 + rot: 3.141592653589793 rad + pos: -9.5,-32.5 parent: 1 - - uid: 35513 + - uid: 1665 components: - type: Transform - pos: -106.5,-38.5 + rot: 3.141592653589793 rad + pos: -8.5,-32.5 parent: 1 - - uid: 35514 + - uid: 1666 components: - type: Transform - pos: -107.5,-38.5 + rot: 3.141592653589793 rad + pos: -7.5,-32.5 parent: 1 - - uid: 35515 + - uid: 3763 components: - type: Transform - pos: -107.5,-39.5 + pos: -62.5,23.5 parent: 1 - - uid: 35516 + - uid: 3764 components: - type: Transform - pos: -107.5,-40.5 + pos: -60.5,23.5 parent: 1 - - uid: 35517 + - uid: 3940 components: - type: Transform - pos: -107.5,-41.5 + pos: -56.5,-27.5 parent: 1 - - uid: 35518 + - uid: 3941 components: - type: Transform - pos: -107.5,-42.5 + pos: -55.5,-27.5 parent: 1 - - uid: 35519 + - uid: 3942 components: - type: Transform - pos: -107.5,-43.5 + pos: -54.5,-27.5 parent: 1 - - uid: 35520 + - uid: 3943 components: - type: Transform - pos: -108.5,-43.5 + rot: 3.141592653589793 rad + pos: -54.5,-30.5 parent: 1 - - uid: 35521 + - uid: 3944 components: - type: Transform - pos: -109.5,-43.5 + rot: 3.141592653589793 rad + pos: -55.5,-30.5 parent: 1 - - uid: 35522 + - uid: 3945 components: - type: Transform - pos: -109.5,-44.5 + rot: 3.141592653589793 rad + pos: -56.5,-30.5 parent: 1 - - uid: 35523 + - uid: 3961 components: - type: Transform - pos: -109.5,-45.5 + rot: 3.141592653589793 rad + pos: -56.5,-34.5 parent: 1 - - uid: 35524 + - uid: 3962 components: - type: Transform - pos: -110.5,-45.5 + pos: -56.5,-32.5 parent: 1 - - uid: 35525 + - uid: 4545 components: - type: Transform - pos: -111.5,-45.5 + pos: -69.5,-16.5 parent: 1 - - uid: 35526 + - uid: 4554 components: - type: Transform - pos: -112.5,-45.5 + pos: -68.5,-16.5 parent: 1 - - uid: 35527 + - uid: 4555 components: - type: Transform - pos: -113.5,-45.5 + pos: -67.5,-16.5 parent: 1 - - uid: 35528 + - uid: 4556 components: - type: Transform - pos: -114.5,-45.5 + pos: -66.5,-16.5 parent: 1 - - uid: 35529 + - uid: 7106 components: - type: Transform - pos: -115.5,-45.5 + pos: 7.5,-2.5 parent: 1 - - uid: 35530 + - uid: 7134 components: - type: Transform - pos: -116.5,-45.5 + pos: 14.5,-20.5 parent: 1 - - uid: 35531 + - uid: 7871 components: - type: Transform - pos: -117.5,-45.5 + rot: 3.141592653589793 rad + pos: -86.5,12.5 parent: 1 - - uid: 35532 + - uid: 7872 components: - type: Transform - pos: -118.5,-45.5 + rot: 3.141592653589793 rad + pos: -87.5,12.5 parent: 1 - - uid: 35533 + - uid: 7873 components: - type: Transform - pos: -119.5,-45.5 + rot: 3.141592653589793 rad + pos: -86.5,11.5 parent: 1 - - uid: 35534 + - uid: 7874 components: - type: Transform - pos: -120.5,-45.5 + rot: 3.141592653589793 rad + pos: -87.5,11.5 parent: 1 - - uid: 35535 + - uid: 7875 components: - type: Transform - pos: -121.5,-45.5 + rot: 3.141592653589793 rad + pos: -84.5,12.5 parent: 1 - - uid: 35536 + - uid: 7876 components: - type: Transform - pos: -122.5,-45.5 + rot: 3.141592653589793 rad + pos: -83.5,12.5 parent: 1 - - uid: 35537 + - uid: 7877 components: - type: Transform - pos: -123.5,-45.5 + rot: 3.141592653589793 rad + pos: -84.5,11.5 parent: 1 - - uid: 35538 + - uid: 7878 components: - type: Transform - pos: -124.5,-45.5 + rot: 3.141592653589793 rad + pos: -83.5,11.5 parent: 1 - - uid: 35539 + - uid: 7915 components: - type: Transform - pos: -125.5,-45.5 + pos: -79.5,19.5 parent: 1 - - uid: 35540 + - uid: 7959 components: - type: Transform - pos: -126.5,-45.5 + rot: 1.5707963267948966 rad + pos: -115.5,20.5 parent: 1 - - uid: 35541 + - uid: 8092 components: - type: Transform - pos: -127.5,-45.5 + rot: 3.141592653589793 rad + pos: -94.5,-5.5 parent: 1 - - uid: 35542 + - uid: 8096 components: - type: Transform - pos: -128.5,-45.5 + rot: 1.5707963267948966 rad + pos: -90.5,-9.5 parent: 1 - - uid: 35543 + - uid: 8115 components: - type: Transform - pos: -129.5,-45.5 + pos: -81.5,-5.5 parent: 1 - - uid: 35544 + - uid: 9087 components: - type: Transform - pos: -130.5,-45.5 + pos: 54.5,-58.5 parent: 1 - - uid: 35545 + - uid: 9089 components: - type: Transform - pos: -131.5,-45.5 + pos: 50.5,-58.5 parent: 1 - - uid: 35546 + - uid: 9092 components: - type: Transform - pos: -132.5,-45.5 + pos: 51.5,-58.5 parent: 1 - - uid: 35547 + - uid: 9095 components: - type: Transform - pos: -133.5,-45.5 + pos: 52.5,-58.5 parent: 1 - - uid: 35548 + - uid: 9106 components: - type: Transform - pos: -133.5,-44.5 + rot: 3.141592653589793 rad + pos: -61.5,-19.5 parent: 1 - - uid: 35550 + - uid: 9107 components: - type: Transform - pos: -133.5,-42.5 + rot: 3.141592653589793 rad + pos: -62.5,-19.5 parent: 1 - - uid: 35551 + - uid: 9108 components: - type: Transform - pos: -133.5,-41.5 + rot: 3.141592653589793 rad + pos: -63.5,-19.5 parent: 1 - - uid: 35552 + - uid: 9109 components: - type: Transform - pos: -133.5,-40.5 + rot: 3.141592653589793 rad + pos: -64.5,-19.5 parent: 1 - - uid: 35553 + - uid: 9118 components: - type: Transform - pos: -133.5,-39.5 + rot: 3.141592653589793 rad + pos: -10.5,-40.5 parent: 1 - - uid: 35554 + - uid: 9119 components: - type: Transform - pos: -134.5,-39.5 + rot: 3.141592653589793 rad + pos: -12.5,-40.5 parent: 1 - - uid: 35555 + - uid: 9163 components: - type: Transform - pos: -135.5,-39.5 + pos: 53.5,-58.5 parent: 1 - - uid: 35556 + - uid: 9483 components: - type: Transform - pos: -135.5,-38.5 + rot: 1.5707963267948966 rad + pos: -50.5,17.5 parent: 1 - - uid: 35660 + - uid: 9484 components: - type: Transform - pos: -116.5,-86.5 + rot: 1.5707963267948966 rad + pos: -50.5,16.5 parent: 1 - - uid: 35661 + - uid: 9485 components: - type: Transform - pos: -115.5,-86.5 + rot: 1.5707963267948966 rad + pos: -50.5,15.5 parent: 1 - - uid: 35662 + - uid: 9676 components: - type: Transform - pos: -115.5,-85.5 + rot: 3.141592653589793 rad + pos: -81.5,-20.5 parent: 1 - - uid: 35663 + - uid: 9677 components: - type: Transform - pos: -113.5,-85.5 + rot: 3.141592653589793 rad + pos: -82.5,-20.5 parent: 1 - - uid: 35664 + - uid: 10472 components: - type: Transform - pos: -113.5,-86.5 + rot: 3.141592653589793 rad + pos: 50.5,-61.5 parent: 1 - - uid: 35665 + - uid: 10473 components: - type: Transform - pos: -113.5,-87.5 + rot: 3.141592653589793 rad + pos: 51.5,-61.5 parent: 1 - - uid: 35666 + - uid: 10474 components: - type: Transform - pos: -114.5,-87.5 + rot: 3.141592653589793 rad + pos: 52.5,-61.5 parent: 1 - - uid: 35667 + - uid: 10482 components: - type: Transform - pos: -114.5,-88.5 + rot: 3.141592653589793 rad + pos: 53.5,-61.5 parent: 1 - - uid: 35668 + - uid: 10483 components: - type: Transform - pos: -112.5,-87.5 + rot: 3.141592653589793 rad + pos: 54.5,-61.5 parent: 1 - - uid: 35669 + - uid: 10484 components: - type: Transform - pos: -111.5,-87.5 + rot: -1.5707963267948966 rad + pos: 54.5,-59.5 parent: 1 - - uid: 35670 + - uid: 10485 components: - type: Transform - pos: -110.5,-87.5 + rot: -1.5707963267948966 rad + pos: 54.5,-60.5 parent: 1 - - uid: 35671 + - uid: 11035 components: - type: Transform - pos: -109.5,-87.5 + rot: 3.141592653589793 rad + pos: -52.5,-20.5 parent: 1 - - uid: 35672 + - uid: 11036 components: - type: Transform - pos: -108.5,-87.5 + rot: 3.141592653589793 rad + pos: -53.5,-20.5 parent: 1 - - uid: 35673 + - uid: 11138 components: - type: Transform - pos: -107.5,-87.5 + rot: 1.5707963267948966 rad + pos: -10.5,2.5 parent: 1 - - uid: 35674 + - uid: 11139 components: - type: Transform - pos: -107.5,-86.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - - uid: 35675 + - uid: 11140 components: - type: Transform - pos: -107.5,-85.5 + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 parent: 1 - - uid: 35676 + - uid: 11141 components: - type: Transform - pos: -107.5,-84.5 + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 parent: 1 - - uid: 35677 + - uid: 11142 components: - type: Transform - pos: -107.5,-83.5 + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 parent: 1 - - uid: 35866 + - uid: 11143 components: - type: Transform - pos: -141.5,-86.5 + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 parent: 1 - - uid: 35867 + - uid: 11144 components: - type: Transform - pos: -140.5,-86.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 35868 + - uid: 11145 components: - type: Transform - pos: -139.5,-86.5 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 parent: 1 - - uid: 35869 + - uid: 11146 components: - type: Transform - pos: -138.5,-86.5 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 - - uid: 35870 + - uid: 11147 components: - type: Transform - pos: -137.5,-86.5 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - - uid: 35871 + - uid: 11148 components: - type: Transform - pos: -136.5,-86.5 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 parent: 1 - - uid: 35872 + - uid: 11149 components: - type: Transform - pos: -135.5,-86.5 + pos: 3.5,3.5 parent: 1 - - uid: 35873 + - uid: 11150 components: - type: Transform - pos: -134.5,-86.5 + rot: -1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - - uid: 35874 + - uid: 11151 components: - type: Transform - pos: -133.5,-86.5 + pos: 4.5,3.5 parent: 1 - - uid: 35875 + - uid: 11152 components: - type: Transform - pos: -132.5,-86.5 + pos: 8.5,3.5 parent: 1 - - uid: 35876 + - uid: 11153 components: - type: Transform - pos: -131.5,-86.5 + pos: 7.5,3.5 parent: 1 - - uid: 35877 + - uid: 11158 components: - type: Transform - pos: -130.5,-86.5 + rot: 3.141592653589793 rad + pos: 8.5,1.5 parent: 1 - - uid: 35878 + - uid: 11159 components: - type: Transform - pos: -129.5,-86.5 + rot: 3.141592653589793 rad + pos: 7.5,1.5 parent: 1 - - uid: 35879 + - uid: 11160 components: - type: Transform - pos: -128.5,-86.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 - - uid: 35880 + - uid: 11161 components: - type: Transform - pos: -127.5,-86.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 - - uid: 35881 + - uid: 11235 components: - type: Transform - pos: -126.5,-86.5 + pos: 8.5,-2.5 parent: 1 - - uid: 35882 + - uid: 12118 components: - type: Transform - pos: -125.5,-86.5 + pos: 13.5,-20.5 parent: 1 - - uid: 35883 + - uid: 12319 components: - type: Transform - pos: -124.5,-86.5 + rot: -1.5707963267948966 rad + pos: -106.5,20.5 parent: 1 - - uid: 35884 + - uid: 12320 components: - type: Transform - pos: -123.5,-86.5 + rot: -1.5707963267948966 rad + pos: -109.5,20.5 parent: 1 - - uid: 35885 + - uid: 12321 components: - type: Transform - pos: -122.5,-86.5 + rot: -1.5707963267948966 rad + pos: -113.5,20.5 parent: 1 - - uid: 35886 + - uid: 12322 components: - type: Transform - pos: -121.5,-86.5 + rot: -1.5707963267948966 rad + pos: -116.5,20.5 parent: 1 - - uid: 35887 + - uid: 12323 components: - type: Transform - pos: -120.5,-86.5 + rot: 1.5707963267948966 rad + pos: -118.5,20.5 parent: 1 - - uid: 35888 + - uid: 12324 components: - type: Transform - pos: -119.5,-86.5 + rot: 1.5707963267948966 rad + pos: -111.5,20.5 parent: 1 - - uid: 35889 + - uid: 12325 components: - type: Transform - pos: -118.5,-86.5 + rot: 1.5707963267948966 rad + pos: -108.5,20.5 parent: 1 - - uid: 35890 + - uid: 12345 components: - type: Transform - pos: -117.5,-86.5 + rot: -1.5707963267948966 rad + pos: -108.5,26.5 parent: 1 - - uid: 36128 + - uid: 12347 components: - type: Transform - pos: -75.5,-54.5 + rot: -1.5707963267948966 rad + pos: -114.5,26.5 parent: 1 - - uid: 36129 + - uid: 12348 components: - type: Transform - pos: -76.5,-54.5 + rot: 1.5707963267948966 rad + pos: -116.5,26.5 parent: 1 - - uid: 36130 + - uid: 12350 components: - type: Transform - pos: -76.5,-55.5 + rot: 1.5707963267948966 rad + pos: -110.5,26.5 parent: 1 - - uid: 36131 + - uid: 13730 components: - type: Transform - pos: -76.5,-56.5 + rot: 3.141592653589793 rad + pos: -63.5,-70.5 parent: 1 - - uid: 36132 + - uid: 13769 components: - type: Transform - pos: -76.5,-57.5 + pos: 28.5,-22.5 parent: 1 - - uid: 36133 + - uid: 13770 components: - type: Transform - pos: -76.5,-58.5 + pos: 29.5,-22.5 parent: 1 - - uid: 36134 + - uid: 13771 components: - type: Transform - pos: -77.5,-58.5 + pos: 30.5,-22.5 parent: 1 - - uid: 36135 + - uid: 17961 components: - type: Transform - pos: -78.5,-58.5 + rot: -1.5707963267948966 rad + pos: -40.5,-74.5 parent: 1 - - uid: 36136 + - uid: 23792 components: - type: Transform - pos: -79.5,-58.5 + rot: 1.5707963267948966 rad + pos: 33.5,-56.5 parent: 1 - - uid: 36137 + - uid: 29543 components: - type: Transform - pos: -80.5,-58.5 + rot: -1.5707963267948966 rad + pos: 58.5,8.5 parent: 1 - - uid: 36139 + - uid: 31094 components: - type: Transform - pos: -82.5,-58.5 + rot: 3.141592653589793 rad + pos: -76.5,2.5 parent: 1 - - uid: 36140 + - uid: 31393 components: - type: Transform - pos: -83.5,-58.5 + rot: 1.5707963267948966 rad + pos: -42.5,-74.5 parent: 1 - - uid: 36141 +- proto: ChairCursed + entities: + - uid: 17510 components: - type: Transform - pos: -84.5,-58.5 + rot: -1.5707963267948966 rad + pos: -121.5,6.5 parent: 1 - - uid: 36142 +- proto: ChairFolding + entities: + - uid: 595 components: - type: Transform - pos: -85.5,-58.5 + rot: 3.141592653589793 rad + pos: -102.5,-22.5 parent: 1 - - uid: 36143 + - uid: 756 components: - type: Transform - pos: -86.5,-58.5 + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 parent: 1 - - uid: 36144 + - uid: 4182 components: - type: Transform - pos: -87.5,-58.5 + rot: 1.5707963267948966 rad + pos: -57.5,-53.5 parent: 1 - - uid: 36145 + - uid: 4183 components: - type: Transform - pos: -88.5,-58.5 + rot: 1.5707963267948966 rad + pos: -57.5,-55.5 parent: 1 - - uid: 36146 + - uid: 4184 components: - type: Transform - pos: -89.5,-58.5 + rot: 1.5707963267948966 rad + pos: -57.5,-56.5 parent: 1 - - uid: 36147 + - uid: 4464 components: - type: Transform - pos: -90.5,-58.5 + pos: -50.5,-55.5 parent: 1 - - uid: 36148 + - uid: 4465 components: - type: Transform - pos: -91.5,-58.5 + rot: -1.5707963267948966 rad + pos: -50.5,-53.5 parent: 1 - - uid: 36149 + - uid: 4466 components: - type: Transform - pos: -91.5,-59.5 + rot: -1.5707963267948966 rad + pos: -50.5,-54.5 parent: 1 - - uid: 36150 + - uid: 5879 components: - type: Transform - pos: -91.5,-60.5 + pos: -102.5,-20.5 parent: 1 - - uid: 36151 + - uid: 6063 components: - type: Transform - pos: -91.5,-61.5 + pos: -15.413847,31.558933 parent: 1 - - uid: 36152 + - uid: 6501 components: - type: Transform - pos: -91.5,-62.5 + rot: -1.5707963267948966 rad + pos: -127.5,4.5 parent: 1 - - uid: 36153 + - uid: 6539 components: - type: Transform - pos: -91.5,-63.5 + rot: -1.5707963267948966 rad + pos: -127.5,5.5 parent: 1 - - uid: 36154 + - uid: 6545 components: - type: Transform - pos: -91.5,-64.5 + rot: -1.5707963267948966 rad + pos: -127.5,8.5 parent: 1 - - uid: 36155 + - uid: 6546 components: - type: Transform - pos: -91.5,-65.5 + rot: -1.5707963267948966 rad + pos: -127.5,2.5 parent: 1 - - uid: 36156 + - uid: 6548 components: - type: Transform - pos: -91.5,-66.5 + rot: -1.5707963267948966 rad + pos: -127.5,3.5 parent: 1 - - uid: 36157 + - uid: 6549 components: - type: Transform - pos: -91.5,-67.5 + rot: -1.5707963267948966 rad + pos: -127.5,7.5 parent: 1 - - uid: 36158 + - uid: 6550 components: - type: Transform - pos: -91.5,-68.5 + rot: -1.5707963267948966 rad + pos: -127.5,6.5 parent: 1 - - uid: 36159 + - uid: 7113 components: - type: Transform - pos: -91.5,-69.5 + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 parent: 1 - - uid: 36160 + - uid: 7166 components: - type: Transform - pos: -91.5,-70.5 + pos: -25.5,32.5 parent: 1 - - uid: 36161 + - uid: 7167 components: - type: Transform - pos: -91.5,-71.5 + rot: 3.141592653589793 rad + pos: -25.5,30.5 parent: 1 - - uid: 36162 + - uid: 7219 components: - type: Transform - pos: -91.5,-72.5 + rot: 3.141592653589793 rad + pos: -16.30968,29.484577 parent: 1 - - uid: 36163 + - uid: 7805 components: - type: Transform - pos: -91.5,-73.5 + rot: 1.5707963267948966 rad + pos: -89.5,16.5 parent: 1 - - uid: 36164 + - uid: 7810 components: - type: Transform - pos: -91.5,-74.5 + rot: 1.5707963267948966 rad + pos: -89.5,15.5 parent: 1 - - uid: 36165 + - uid: 7811 components: - type: Transform - pos: -91.5,-75.5 + rot: 1.5707963267948966 rad + pos: -89.5,14.5 parent: 1 - - uid: 36166 + - uid: 7812 components: - type: Transform - pos: -91.5,-76.5 + rot: 1.5707963267948966 rad + pos: -90.5,16.5 parent: 1 - - uid: 36167 + - uid: 7813 components: - type: Transform - pos: -91.5,-77.5 + rot: 1.5707963267948966 rad + pos: -90.5,15.5 parent: 1 - - uid: 36168 + - uid: 7814 components: - type: Transform - pos: -91.5,-78.5 + rot: 1.5707963267948966 rad + pos: -90.5,14.5 parent: 1 - - uid: 36169 + - uid: 8001 components: - type: Transform - pos: -91.5,-79.5 + rot: -1.5707963267948966 rad + pos: -79.5,14.5 parent: 1 - - uid: 36170 + - uid: 9392 components: - type: Transform - pos: -91.5,-80.5 + rot: -1.5707963267948966 rad + pos: -125.5,8.5 parent: 1 - - uid: 36171 + - uid: 9471 components: - type: Transform - pos: -92.5,-80.5 + pos: -13.5,-18.5 parent: 1 - - uid: 36173 + - uid: 9472 components: - type: Transform - pos: -94.5,-80.5 + rot: 3.141592653589793 rad + pos: -13.5,-20.5 parent: 1 - - uid: 36174 + - uid: 9667 components: - type: Transform - pos: -95.5,-80.5 + rot: -1.5707963267948966 rad + pos: -125.5,7.5 parent: 1 - - uid: 36175 + - uid: 9668 components: - type: Transform - pos: -96.5,-80.5 + rot: -1.5707963267948966 rad + pos: -125.5,6.5 parent: 1 - - uid: 36176 + - uid: 9669 components: - type: Transform - pos: -97.5,-80.5 + rot: -1.5707963267948966 rad + pos: -125.5,5.5 parent: 1 - - uid: 36177 + - uid: 9670 components: - type: Transform - pos: -98.5,-80.5 + rot: -1.5707963267948966 rad + pos: -125.5,4.5 parent: 1 - - uid: 36178 + - uid: 9788 components: - type: Transform - pos: -98.5,-81.5 + pos: -104.71068,-30.384047 parent: 1 - - uid: 36179 + - uid: 9789 components: - type: Transform - pos: -98.5,-82.5 + rot: -1.5707963267948966 rad + pos: -108.51276,-31.520252 parent: 1 - - uid: 36180 + - uid: 9895 components: - type: Transform - pos: -99.5,-82.5 + rot: -1.5707963267948966 rad + pos: 54.331043,-7.269121 parent: 1 - - uid: 36181 + - uid: 10169 components: - type: Transform - pos: -100.5,-82.5 + pos: 55.456043,-7.306647 parent: 1 - - uid: 36182 + - uid: 10772 components: - type: Transform - pos: -101.5,-82.5 + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 parent: 1 - - uid: 36183 + - uid: 10773 components: - type: Transform - pos: -102.5,-82.5 + rot: 3.141592653589793 rad + pos: 21.5,-51.5 parent: 1 - - uid: 36184 + - uid: 10774 components: - type: Transform - pos: -103.5,-82.5 + pos: 22.5,-48.5 parent: 1 - - uid: 36185 + - uid: 11342 components: - type: Transform - pos: -104.5,-82.5 + rot: -1.5707963267948966 rad + pos: -13.663847,29.703478 parent: 1 - - uid: 36186 + - uid: 11364 components: - type: Transform - pos: -105.5,-82.5 + rot: -1.5707963267948966 rad + pos: -13.59093,30.61036 parent: 1 - - uid: 36187 + - uid: 11956 components: - type: Transform - pos: -106.5,-82.5 + rot: -1.5707963267948966 rad + pos: -30.5,-28.5 parent: 1 - - uid: 36188 + - uid: 11961 components: - type: Transform - pos: -107.5,-82.5 + rot: -1.5707963267948966 rad + pos: -30.5,-30 parent: 1 - - uid: 36189 + - uid: 12004 components: - type: Transform - pos: -108.5,-82.5 + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 parent: 1 - - uid: 36190 + - uid: 12013 components: - type: Transform - pos: -109.5,-82.5 + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 parent: 1 - - uid: 36191 + - uid: 12207 components: - type: Transform - pos: -110.5,-82.5 + rot: 1.5707963267948966 rad + pos: -34.5,-30 parent: 1 - - uid: 36192 + - uid: 12464 components: - type: Transform - pos: -111.5,-82.5 + pos: -42.5,15.5 parent: 1 - - uid: 36193 + - uid: 12568 components: - type: Transform - pos: -112.5,-82.5 + pos: -15.5,-10.5 parent: 1 - - uid: 36194 + - uid: 12569 components: - type: Transform - pos: -113.5,-82.5 + pos: -14.5,-10.5 parent: 1 - - uid: 36195 + - uid: 12687 components: - type: Transform - pos: -114.5,-82.5 + rot: 3.141592653589793 rad + pos: -82.5,-46.5 parent: 1 - - uid: 36196 + - uid: 12688 components: - type: Transform - pos: -114.5,-81.5 + pos: -88.5,-45.5 parent: 1 - - uid: 36197 + - uid: 12689 components: - type: Transform - pos: -114.5,-80.5 + rot: 3.141592653589793 rad + pos: -88.5,-47.5 parent: 1 - - uid: 36198 + - uid: 12785 components: - type: Transform - pos: -114.5,-79.5 + rot: 3.141592653589793 rad + pos: -81.9929,33.571857 parent: 1 - - uid: 36199 + - uid: 13132 components: - type: Transform - pos: -114.5,-78.5 + pos: -18.272957,41.81485 parent: 1 - - uid: 36200 + - uid: 13134 components: - type: Transform - pos: -114.5,-77.5 + rot: -1.5707963267948966 rad + pos: -16.710457,41.71061 parent: 1 - - uid: 36201 + - uid: 13695 components: - type: Transform - pos: -114.5,-76.5 + rot: -1.5707963267948966 rad + pos: -67,-62.5 parent: 1 - - uid: 36202 + - uid: 13696 components: - type: Transform - pos: -114.5,-75.5 + rot: -1.5707963267948966 rad + pos: -67,-63.5 parent: 1 - - uid: 36204 + - uid: 13697 components: - type: Transform - pos: -114.5,-73.5 + rot: 3.141592653589793 rad + pos: -67.5,-64 parent: 1 - - uid: 36205 + - uid: 13698 components: - type: Transform - pos: -114.5,-72.5 + rot: 3.141592653589793 rad + pos: -68.5,-64 parent: 1 - - uid: 36206 + - uid: 13699 components: - type: Transform - pos: -114.5,-71.5 + rot: 1.5707963267948966 rad + pos: -69,-63.5 parent: 1 - - uid: 36207 + - uid: 13700 components: - type: Transform - pos: -115.5,-71.5 + rot: 1.5707963267948966 rad + pos: -69,-62.5 parent: 1 - - uid: 36208 + - uid: 13788 components: - type: Transform - pos: -116.5,-71.5 + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 parent: 1 - - uid: 36209 + - uid: 13789 components: - type: Transform - pos: -116.5,-70.5 + rot: 1.5707963267948966 rad + pos: 23.5,-31 parent: 1 - - uid: 36210 + - uid: 13808 components: - type: Transform - pos: -116.5,-69.5 + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 parent: 1 - - uid: 36211 + - uid: 13809 components: - type: Transform - pos: -116.5,-68.5 + rot: -1.5707963267948966 rad + pos: 30.5,-28.5 parent: 1 - - uid: 36212 + - uid: 13810 components: - type: Transform - pos: -116.5,-67.5 + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 parent: 1 - - uid: 36213 + - uid: 13811 components: - type: Transform - pos: -116.5,-66.5 + rot: -1.5707963267948966 rad + pos: 29.5,-30.5 parent: 1 - - uid: 36214 + - uid: 13812 components: - type: Transform - pos: -116.5,-65.5 + rot: -1.5707963267948966 rad + pos: 29.5,-31.5 parent: 1 - - uid: 36215 + - uid: 13813 components: - type: Transform - pos: -116.5,-64.5 + rot: -1.5707963267948966 rad + pos: 29.5,-29.5 parent: 1 - - uid: 36216 + - uid: 13814 components: - type: Transform - pos: -116.5,-63.5 + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 parent: 1 - - uid: 36217 + - uid: 13815 components: - type: Transform - pos: -116.5,-62.5 + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 parent: 1 - - uid: 36218 + - uid: 13822 components: - type: Transform - pos: -116.5,-61.5 + rot: -1.5707963267948966 rad + pos: 30.5,-31.5 parent: 1 - - uid: 36219 + - uid: 13823 components: - type: Transform - pos: -116.5,-60.5 + rot: -1.5707963267948966 rad + pos: 30.5,-30.5 parent: 1 - - uid: 36220 + - uid: 13845 components: - type: Transform - pos: -116.5,-59.5 + rot: 3.141592653589793 rad + pos: 25,-32.5 parent: 1 - - uid: 36221 + - uid: 13846 components: - type: Transform - pos: -116.5,-58.5 + rot: 3.141592653589793 rad + pos: 26,-32.5 parent: 1 - - uid: 36222 + - uid: 13847 components: - type: Transform - pos: -116.5,-57.5 + rot: 3.141592653589793 rad + pos: 27,-32.5 parent: 1 - - uid: 36223 + - uid: 13848 components: - type: Transform - pos: -116.5,-56.5 + pos: 24.5,-26 parent: 1 - - uid: 36224 + - uid: 13849 components: - type: Transform - pos: -116.5,-55.5 + pos: 25.5,-26 parent: 1 - - uid: 36225 + - uid: 13850 components: - type: Transform - pos: -116.5,-54.5 + pos: 26.5,-26 parent: 1 - - uid: 36226 + - uid: 13913 components: - type: Transform - pos: -116.5,-53.5 + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 parent: 1 - - uid: 36227 + - uid: 15080 components: - type: Transform - pos: -116.5,-52.5 + pos: -94.5,25.5 parent: 1 - - uid: 36228 + - uid: 15081 components: - type: Transform - pos: -116.5,-46.5 + rot: 1.5707963267948966 rad + pos: -95.5,24.5 parent: 1 - - uid: 36394 + - uid: 15082 components: - type: Transform - pos: -133.5,-49.5 + rot: 3.141592653589793 rad + pos: -94.5,23.5 parent: 1 - - uid: 36395 + - uid: 15083 components: - type: Transform - pos: -133.5,-50.5 + rot: 3.141592653589793 rad + pos: -93.5,23.5 parent: 1 - - uid: 36396 + - uid: 15084 components: - type: Transform - pos: -133.5,-51.5 + rot: -1.5707963267948966 rad + pos: -92.5,24.5 parent: 1 - - uid: 36397 + - uid: 15085 components: - type: Transform - pos: -133.5,-52.5 + rot: 3.141592653589793 rad + pos: -92.5,26 parent: 1 - - uid: 36398 + - uid: 16325 components: - type: Transform - pos: -133.5,-53.5 + pos: -121.5,16.5 parent: 1 - - uid: 36399 + - uid: 16479 components: - type: Transform - pos: -134.5,-53.5 + rot: 1.5707963267948966 rad + pos: -90.66194,-36.32359 parent: 1 - - uid: 36400 + - uid: 23690 components: - type: Transform - pos: -135.5,-53.5 + rot: -1.5707963267948966 rad + pos: 69.5,0.5 parent: 1 - - uid: 37461 + - uid: 23764 components: - type: Transform - pos: -99.5,-77.5 + rot: -1.5707963267948966 rad + pos: 30.628954,-56.237717 parent: 1 - - uid: 37462 + - uid: 23793 components: - type: Transform - pos: -98.5,-77.5 + rot: -1.5707963267948966 rad + pos: 42.31393,-56.372215 parent: 1 - - uid: 37463 + - uid: 29468 components: - type: Transform - pos: -97.5,-77.5 + rot: -1.5707963267948966 rad + pos: 27.5,13.5 parent: 1 - - uid: 37464 + - uid: 30376 components: - type: Transform - pos: -97.5,-78.5 + pos: -25.5,-73.5 parent: 1 - - uid: 37465 + - uid: 30465 components: - type: Transform - pos: -97.5,-79.5 + pos: -95.5,19.5 parent: 1 - - uid: 39630 + - uid: 30466 components: - type: Transform - pos: 42.5,-40.5 + pos: -93.5,19.5 parent: 1 - - uid: 39884 + - uid: 30732 components: - type: Transform - pos: 57.5,-53.5 + rot: -1.5707963267948966 rad + pos: -88.5,-40.5 parent: 1 - - uid: 39885 + - uid: 30757 components: - type: Transform - pos: 57.5,-54.5 + pos: -77.5,-48.5 parent: 1 - - uid: 39886 + - uid: 30939 components: - type: Transform - pos: 57.5,-52.5 + pos: -50.5,-58.5 parent: 1 - - uid: 39887 + - uid: 31261 components: - type: Transform - pos: 58.5,-54.5 + pos: -30.5,17.5 parent: 1 - - uid: 39888 + - uid: 33151 components: - type: Transform - pos: 59.5,-54.5 + pos: -154.5,24.5 parent: 1 - - uid: 39889 + - uid: 33152 components: - type: Transform - pos: 59.5,-55.5 + pos: -153.5,24.5 parent: 1 - - uid: 39960 + - uid: 33153 components: - type: Transform - pos: -27.5,-72.5 + pos: -150.5,24.5 parent: 1 - - uid: 39961 + - uid: 33154 components: - type: Transform - pos: -26.5,-72.5 + pos: -149.5,24.5 parent: 1 - - uid: 39962 + - uid: 33995 components: - type: Transform - pos: -25.5,-72.5 + pos: -95.45926,-66.48243 parent: 1 - - uid: 40041 + - uid: 33996 components: - type: Transform - pos: 33.5,-43.5 + rot: 3.141592653589793 rad + pos: -94.95926,-68.23364 parent: 1 - - uid: 40876 + - uid: 33997 components: - type: Transform - pos: 42.5,-7.5 + rot: -1.5707963267948966 rad + pos: -94.42801,-66.49806 parent: 1 - - uid: 40880 + - uid: 34451 components: - type: Transform - pos: 46.5,43.5 + rot: -1.5707963267948966 rad + pos: -150.5,-67.5 parent: 1 - - uid: 40881 + - uid: 36008 components: - type: Transform - pos: 47.5,43.5 + rot: 1.5707963267948966 rad + pos: -120.586655,-47.54068 parent: 1 - - uid: 40882 + - uid: 36009 components: - type: Transform - pos: 48.5,43.5 + rot: 3.141592653589793 rad + pos: -120.51165,-49.16681 parent: 1 - - uid: 40883 + - uid: 36010 components: - type: Transform - pos: 48.5,42.5 + rot: 1.5707963267948966 rad + pos: -119.26165,-50.342625 parent: 1 - - uid: 40884 + - uid: 36011 components: - type: Transform - pos: 7.5,45.5 + rot: -1.5707963267948966 rad + pos: -117.73665,-50.40517 parent: 1 - - uid: 40885 + - uid: 36384 components: - type: Transform - pos: 8.5,45.5 + pos: -134.5,-49.5 parent: 1 - - uid: 40886 + - uid: 36612 components: - type: Transform - pos: 9.5,45.5 + rot: 3.141592653589793 rad + pos: -116.52281,-77.21387 parent: 1 - - uid: 40887 + - uid: 36613 components: - type: Transform - pos: 10.5,45.5 + pos: -116.58531,-75.58774 parent: 1 - - uid: 40888 + - uid: 36814 components: - type: Transform - pos: 11.5,45.5 + rot: -1.5707963267948966 rad + pos: -97.5,-76.5 parent: 1 - - uid: 40889 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 4306 components: - type: Transform - pos: 12.5,45.5 + pos: -40.571266,-48.420605 parent: 1 - - uid: 40890 + - uid: 7222 components: - type: Transform - pos: 13.5,45.5 + pos: -9.379427,30.026619 parent: 1 - - uid: 40891 + - uid: 8738 components: - type: Transform - pos: 14.5,45.5 + pos: -121.494774,7.927282 parent: 1 - - uid: 40892 + - uid: 11337 components: - type: Transform - pos: 15.5,45.5 + pos: -8.566927,30.026619 parent: 1 - - uid: 40893 + - uid: 11338 components: - type: Transform - pos: 16.5,45.5 + pos: -14.507597,31.475542 parent: 1 - - uid: 40894 + - uid: 21361 components: - type: Transform - pos: 17.5,45.5 + pos: 21.526503,9.874715 parent: 1 - - uid: 40895 + - uid: 21362 components: - type: Transform - pos: 18.5,45.5 + pos: 21.557753,9.655812 parent: 1 - - uid: 40896 + - uid: 23763 components: - type: Transform - pos: 19.5,45.5 + rot: -1.5707963267948966 rad + pos: 26.38937,-53.10012 parent: 1 - - uid: 40897 + - uid: 31046 components: - type: Transform - pos: 20.5,45.5 + rot: 1.5707963267948966 rad + pos: -48.544807,12.009349 parent: 1 - - uid: 40898 + - uid: 31048 components: - type: Transform - pos: 21.5,45.5 + rot: 1.5707963267948966 rad + pos: -48.52397,11.759175 parent: 1 - - uid: 40899 + - uid: 31361 components: - type: Transform - pos: 22.5,45.5 + pos: 10.566668,-37.119576 parent: 1 - - uid: 40900 + - uid: 31362 components: - type: Transform - pos: 23.5,45.5 + pos: 10.514585,-37.328053 parent: 1 - - uid: 40901 + - uid: 31411 components: - type: Transform - pos: 24.5,45.5 + pos: -40.64418,-47.9828 parent: 1 - - uid: 40902 + - uid: 34583 components: - type: Transform - pos: 25.5,45.5 + pos: -122.55248,-16.25239 parent: 1 - - uid: 40903 + - uid: 34584 components: - type: Transform - pos: 26.5,45.5 + pos: -122.51081,-16.690193 parent: 1 - - uid: 40904 + - uid: 34585 components: - type: Transform - pos: 27.5,45.5 + pos: -122.35456,-17.169693 parent: 1 - - uid: 40905 + - uid: 34806 components: - type: Transform - pos: 28.5,45.5 + pos: 26.777414,14.450756 parent: 1 - - uid: 40906 + - uid: 36383 components: - type: Transform - pos: 29.5,45.5 + rot: -1.5707963267948966 rad + pos: -134.15532,-51.15529 parent: 1 - - uid: 40907 +- proto: ChairGreyscale + entities: + - uid: 2016 components: - type: Transform - pos: 30.5,45.5 + rot: 3.141592653589793 rad + pos: -86.5,4.5 parent: 1 - - uid: 40908 + - uid: 2166 components: - type: Transform - pos: 31.5,45.5 + rot: 3.141592653589793 rad + pos: -84.5,4.5 parent: 1 - - uid: 40909 + - uid: 2193 components: - type: Transform - pos: 32.5,45.5 + rot: 3.141592653589793 rad + pos: -84.5,-0.5 parent: 1 - - uid: 40910 + - uid: 2195 components: - type: Transform - pos: 33.5,45.5 + rot: 3.141592653589793 rad + pos: -86.5,-0.5 parent: 1 - - uid: 40911 + - uid: 2199 components: - type: Transform - pos: 34.5,45.5 + pos: -86.5,6.5 parent: 1 - - uid: 40912 + - uid: 2200 components: - type: Transform - pos: 35.5,45.5 + pos: -84.5,6.5 parent: 1 - - uid: 40913 + - uid: 2201 components: - type: Transform - pos: 36.5,45.5 + pos: -84.5,1.5 parent: 1 - - uid: 40914 + - uid: 2280 components: - type: Transform - pos: 37.5,45.5 + pos: -86.5,1.5 parent: 1 - - uid: 40915 + - uid: 2281 components: - type: Transform - pos: 38.5,45.5 + rot: 3.141592653589793 rad + pos: -101.5,44.5 parent: 1 - - uid: 40916 + - uid: 2282 components: - type: Transform - pos: 39.5,45.5 + rot: 3.141592653589793 rad + pos: -94.5,31.5 parent: 1 - - uid: 41294 + - uid: 2283 components: - type: Transform - pos: -152.5,-20.5 + rot: 1.5707963267948966 rad + pos: -90.5,31.5 parent: 1 - - uid: 41295 + - uid: 2284 components: - type: Transform - pos: -152.5,-19.5 + pos: -96.5,31.5 parent: 1 - - uid: 41296 + - uid: 2285 components: - type: Transform - pos: -151.5,-19.5 + rot: -1.5707963267948966 rad + pos: -88.5,31.5 parent: 1 - - uid: 41297 + - uid: 2286 components: - type: Transform - pos: -150.5,-19.5 + rot: 1.5707963267948966 rad + pos: -93.5,31.5 parent: 1 - - uid: 41298 + - uid: 2287 components: - type: Transform - pos: -149.5,-19.5 + pos: -101.5,39.5 parent: 1 - - uid: 41299 + - uid: 2373 components: - type: Transform - pos: -148.5,-19.5 + rot: -1.5707963267948966 rad + pos: -91.5,31.5 parent: 1 - - uid: 41300 + - uid: 2376 components: - type: Transform - pos: -147.5,-19.5 + pos: -101.5,46.5 parent: 1 - - uid: 41301 + - uid: 2394 components: - type: Transform - pos: -146.5,-19.5 + rot: 3.141592653589793 rad + pos: -101.5,37.5 parent: 1 - - uid: 41302 + - uid: 2395 components: - type: Transform - pos: -145.5,-19.5 + rot: -1.5707963267948966 rad + pos: -68.5,38.5 parent: 1 - - uid: 41303 + - uid: 2396 components: - type: Transform - pos: -144.5,-19.5 + rot: -1.5707963267948966 rad + pos: -65.5,35.5 parent: 1 - - uid: 41304 + - uid: 2398 components: - type: Transform - pos: -143.5,-19.5 + rot: 1.5707963267948966 rad + pos: -70.5,35.5 parent: 1 - - uid: 41305 + - uid: 2399 components: - type: Transform - pos: -142.5,-19.5 + rot: 1.5707963267948966 rad + pos: -67.5,35.5 parent: 1 - - uid: 41306 + - uid: 2401 components: - type: Transform - pos: -141.5,-19.5 + rot: 1.5707963267948966 rad + pos: -70.5,38.5 parent: 1 - - uid: 41307 + - uid: 2402 components: - type: Transform - pos: -140.5,-19.5 + rot: -1.5707963267948966 rad + pos: -68.5,35.5 parent: 1 - - uid: 41308 + - uid: 2403 components: - type: Transform - pos: -139.5,-19.5 + pos: -76.5,-15.5 parent: 1 - - uid: 41309 + - uid: 2450 components: - type: Transform - pos: -138.5,-19.5 + rot: -1.5707963267948966 rad + pos: -75.5,-16.5 parent: 1 - - uid: 41310 + - uid: 2451 components: - type: Transform - pos: -137.5,-19.5 + rot: 1.5707963267948966 rad + pos: -77.5,-16.5 parent: 1 - - uid: 41311 + - uid: 2452 components: - type: Transform - pos: -137.5,-20.5 + pos: -58.5,33.5 parent: 1 - - uid: 41312 + - uid: 2453 components: - type: Transform - pos: -137.5,-22.5 + pos: -58.5,30.5 parent: 1 - - uid: 41313 + - uid: 2454 components: - type: Transform - pos: -136.5,-22.5 + rot: 3.141592653589793 rad + pos: -58.5,28.5 parent: 1 - - uid: 41314 + - uid: 2455 components: - type: Transform - pos: -151.5,-30.5 + pos: -58.5,27.5 parent: 1 - - uid: 41315 + - uid: 2456 components: - type: Transform - pos: -152.5,-30.5 + rot: 3.141592653589793 rad + pos: -58.5,25.5 parent: 1 - - uid: 41316 + - uid: 2508 components: - type: Transform - pos: -152.5,-29.5 + rot: 3.141592653589793 rad + pos: -58.5,31.5 parent: 1 - - uid: 41317 + - uid: 2509 components: - type: Transform - pos: -152.5,-28.5 + pos: -39.5,-27.5 parent: 1 - - uid: 41318 + - uid: 2510 components: - type: Transform - pos: -152.5,-27.5 + rot: -1.5707963267948966 rad + pos: -38.5,-28.5 parent: 1 - - uid: 41377 + - uid: 2511 components: - type: Transform - pos: -90.5,-90.5 + pos: -17.5,-35.5 parent: 1 - - uid: 41378 + - uid: 2512 components: - type: Transform - pos: -89.5,-89.5 + rot: 3.141592653589793 rad + pos: -17.5,-37.5 parent: 1 - - uid: 41621 + - uid: 2565 components: - type: Transform - pos: -109.5,-22.5 + pos: 4.5,-49.5 parent: 1 - - uid: 41889 + - uid: 2566 components: - type: Transform - pos: 22.5,8.5 + pos: 2.5,-49.5 parent: 1 - - uid: 41890 + - uid: 2567 components: - type: Transform - pos: 23.5,8.5 + rot: 3.141592653589793 rad + pos: 4.5,-51.5 parent: 1 - - uid: 41891 + - uid: 2570 components: - type: Transform - pos: 24.5,8.5 + rot: 3.141592653589793 rad + pos: 2.5,-51.5 parent: 1 - - uid: 41892 + - uid: 2571 components: - type: Transform - pos: 24.5,7.5 + pos: 2.5,-54.5 parent: 1 - - uid: 41893 + - uid: 2572 components: - type: Transform - pos: 24.5,6.5 + pos: 3.5,-54.5 parent: 1 - - uid: 41894 + - uid: 2573 components: - type: Transform - pos: 24.5,5.5 + pos: 4.5,-54.5 parent: 1 - - uid: 41895 + - uid: 2574 components: - type: Transform - pos: 23.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,-56.5 parent: 1 - - uid: 41896 + - uid: 2575 components: - type: Transform - pos: 22.5,5.5 + rot: 3.141592653589793 rad + pos: 3.5,-56.5 parent: 1 - - uid: 42191 + - uid: 2579 components: - type: Transform - pos: 61.5,11.5 + rot: 3.141592653589793 rad + pos: 2.5,-56.5 parent: 1 - - uid: 42192 + - uid: 2586 components: - type: Transform - pos: 61.5,10.5 + pos: -0.5,-49.5 parent: 1 - - uid: 42193 + - uid: 2588 components: - type: Transform - pos: 61.5,12.5 + pos: -0.5,-54.5 parent: 1 - - uid: 42194 + - uid: 2589 components: - type: Transform - pos: 61.5,13.5 + rot: 3.141592653589793 rad + pos: -0.5,-56.5 parent: 1 - - uid: 42195 + - uid: 2590 components: - type: Transform - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: -0.5,-51.5 parent: 1 - - uid: 42196 + - uid: 23866 components: - type: Transform - pos: 61.5,15.5 + rot: 1.5707963267948966 rad + pos: -13.5,-61.5 parent: 1 - - uid: 42197 + - uid: 23867 components: - type: Transform - pos: 61.5,16.5 + rot: 1.5707963267948966 rad + pos: -10.5,-61.5 parent: 1 - - uid: 42198 + - uid: 23868 components: - type: Transform - pos: 61.5,17.5 + rot: -1.5707963267948966 rad + pos: -11.5,-61.5 parent: 1 - - uid: 42199 + - uid: 23869 components: - type: Transform - pos: 61.5,18.5 + rot: -1.5707963267948966 rad + pos: -8.5,-61.5 parent: 1 - - uid: 42200 + - uid: 24734 components: - type: Transform - pos: 61.5,19.5 + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 parent: 1 - - uid: 42201 + - uid: 24735 components: - type: Transform - pos: 62.5,19.5 + rot: -1.5707963267948966 rad + pos: 28.5,-46.5 parent: 1 - - uid: 42202 + - uid: 28809 components: - type: Transform - pos: 63.5,19.5 + rot: -1.5707963267948966 rad + pos: 18.5,-58.5 parent: 1 - - uid: 42203 + - uid: 28904 components: - type: Transform - pos: 64.5,19.5 + rot: -1.5707963267948966 rad + pos: 15.5,-58.5 parent: 1 - - uid: 42204 + - uid: 28984 components: - type: Transform - pos: 65.5,19.5 + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 parent: 1 - - uid: 42205 + - uid: 28985 components: - type: Transform - pos: 66.5,19.5 + rot: 1.5707963267948966 rad + pos: 3.5,-58.5 parent: 1 - - uid: 42206 + - uid: 28986 components: - type: Transform - pos: 67.5,19.5 + rot: 1.5707963267948966 rad + pos: 13.5,-58.5 parent: 1 - - uid: 42207 + - uid: 28987 components: - type: Transform - pos: 68.5,19.5 + rot: 1.5707963267948966 rad + pos: 16.5,-58.5 parent: 1 - - uid: 42208 + - uid: 28988 components: - type: Transform - pos: 69.5,19.5 + rot: 1.5707963267948966 rad + pos: 6.5,-61.5 parent: 1 - - uid: 42209 + - uid: 29222 components: - type: Transform - pos: 70.5,19.5 + rot: 1.5707963267948966 rad + pos: 9.5,-61.5 parent: 1 - - uid: 42210 + - uid: 29223 components: - type: Transform - pos: 71.5,19.5 + rot: -1.5707963267948966 rad + pos: 8.5,-61.5 parent: 1 - - uid: 42211 + - uid: 29280 components: - type: Transform - pos: 72.5,19.5 + rot: -1.5707963267948966 rad + pos: 11.5,-61.5 parent: 1 - - uid: 42212 + - uid: 29281 components: - type: Transform - pos: 73.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,-61.5 parent: 1 - - uid: 42213 + - uid: 29308 components: - type: Transform - pos: 74.5,19.5 + rot: -1.5707963267948966 rad + pos: 14.5,-61.5 parent: 1 - - uid: 42214 + - uid: 29362 components: - type: Transform - pos: 75.5,19.5 + rot: -1.5707963267948966 rad + pos: 35.5,-58.5 parent: 1 - - uid: 42215 + - uid: 29363 components: - type: Transform - pos: 76.5,19.5 + rot: -1.5707963267948966 rad + pos: 35.5,-61.5 parent: 1 - - uid: 42216 + - uid: 29364 components: - type: Transform - pos: 77.5,19.5 + rot: 1.5707963267948966 rad + pos: 33.5,-61.5 parent: 1 - - uid: 42217 + - uid: 29365 components: - type: Transform - pos: 78.5,19.5 + rot: 1.5707963267948966 rad + pos: 33.5,-58.5 parent: 1 - - uid: 42218 + - uid: 29366 components: - type: Transform - pos: 79.5,19.5 + rot: -1.5707963267948966 rad + pos: 32.5,-58.5 parent: 1 - - uid: 42219 + - uid: 29367 components: - type: Transform - pos: 80.5,19.5 + rot: -1.5707963267948966 rad + pos: 31.5,-61.5 parent: 1 - - uid: 42220 + - uid: 29368 components: - type: Transform - pos: 81.5,19.5 + rot: 1.5707963267948966 rad + pos: 29.5,-61.5 parent: 1 - - uid: 42221 + - uid: 29369 components: - type: Transform - pos: 82.5,19.5 + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 parent: 1 - - uid: 42222 + - uid: 36457 components: - type: Transform - pos: 83.5,19.5 + pos: -122.5,26.5 parent: 1 - - uid: 42223 + - uid: 36458 components: - type: Transform - pos: 84.5,19.5 + rot: 3.141592653589793 rad + pos: -122.5,24.5 parent: 1 - - uid: 42224 + - uid: 36644 components: - type: Transform - pos: 85.5,19.5 + rot: -1.5707963267948966 rad + pos: -94.5,-84.5 parent: 1 - - uid: 42225 + - uid: 36645 components: - type: Transform - pos: 86.5,19.5 + rot: -1.5707963267948966 rad + pos: -94.5,-85.5 parent: 1 - - uid: 42226 + - uid: 36646 components: - type: Transform - pos: 87.5,19.5 + rot: -1.5707963267948966 rad + pos: -94.5,-86.5 parent: 1 - - uid: 42227 + - uid: 36647 components: - type: Transform - pos: 88.5,19.5 + rot: 1.5707963267948966 rad + pos: -93.5,-84.5 parent: 1 - - uid: 42228 + - uid: 36648 components: - type: Transform - pos: 89.5,19.5 + rot: 1.5707963267948966 rad + pos: -93.5,-85.5 parent: 1 - - uid: 42230 + - uid: 36649 components: - type: Transform - pos: 89.5,20.5 + rot: 1.5707963267948966 rad + pos: -93.5,-86.5 parent: 1 - - uid: 42231 + - uid: 37383 components: - type: Transform - pos: 89.5,21.5 + rot: 1.5707963267948966 rad + pos: -18.5,-71.5 parent: 1 - - uid: 42232 + - uid: 37384 components: - type: Transform - pos: 89.5,22.5 + rot: -1.5707963267948966 rad + pos: -16.5,-71.5 parent: 1 - - uid: 42233 + - uid: 38374 components: - type: Transform - pos: 89.5,23.5 + rot: -1.5707963267948966 rad + pos: -51.5,35.5 parent: 1 - - uid: 42234 + - uid: 38375 components: - type: Transform - pos: 89.5,24.5 + rot: 1.5707963267948966 rad + pos: -53.5,35.5 parent: 1 - - uid: 42235 +- proto: ChairOfficeDark + entities: + - uid: 787 components: - type: Transform - pos: 89.5,25.5 + rot: 3.141592653589793 rad + pos: -0.5,-21.5 parent: 1 - - uid: 42291 + - uid: 1350 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 14.5,-22.5 parent: 1 - - uid: 42292 + - uid: 2928 components: - type: Transform - pos: 52.5,24.5 + rot: -1.5707963267948966 rad + pos: -8.5,-50.5 parent: 1 - - uid: 42293 + - uid: 2929 components: - type: Transform - pos: 52.5,23.5 + rot: 1.5707963267948966 rad + pos: -6.5,-50.5 parent: 1 - - uid: 42294 + - uid: 3563 components: - type: Transform - pos: 52.5,22.5 + rot: -1.5707963267948966 rad + pos: -44.5,-20.5 parent: 1 - - uid: 42295 + - uid: 3972 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: -56.5,-37.5 parent: 1 - - uid: 42296 + - uid: 3973 components: - type: Transform - pos: 52.5,20.5 + rot: 3.141592653589793 rad + pos: -57.5,-37.5 parent: 1 - - uid: 42297 + - uid: 7448 components: - type: Transform - pos: 52.5,19.5 + rot: -1.5707963267948966 rad + pos: -25.5,20.5 parent: 1 - - uid: 42298 + - uid: 7746 components: - type: Transform - pos: 52.5,18.5 + rot: 3.141592653589793 rad + pos: -76.5,27.5 parent: 1 - - uid: 42299 + - uid: 7758 components: - type: Transform - pos: 52.5,17.5 + rot: 3.141592653589793 rad + pos: -79.5,27.5 parent: 1 - - uid: 42300 + - uid: 7802 components: - type: Transform - pos: 52.5,16.5 + pos: -83.5,18.5 parent: 1 - - uid: 42301 + - uid: 7867 components: - type: Transform - pos: 52.5,15.5 + rot: 3.141592653589793 rad + pos: -84.5,14.5 parent: 1 - - uid: 42302 + - uid: 7868 components: - type: Transform - pos: 52.5,14.5 + rot: 3.141592653589793 rad + pos: -83.5,14.5 parent: 1 - - uid: 42303 + - uid: 8093 components: - type: Transform - pos: 52.5,13.5 + pos: -94.5,-3.5 parent: 1 - - uid: 42304 + - uid: 8761 components: - type: Transform - pos: 52.5,12.5 + rot: 3.141592653589793 rad + pos: -100.39953,-10.276565 parent: 1 - - uid: 42305 + - uid: 9490 components: - type: Transform - pos: 52.5,11.5 + rot: 3.141592653589793 rad + pos: -45.5,17.5 parent: 1 - - uid: 42306 + - uid: 9787 components: - type: Transform - pos: 52.5,10.5 + rot: 3.141592653589793 rad + pos: -105.31484,-32.31247 parent: 1 -- proto: Cautery - entities: - - uid: 13655 + - uid: 10895 components: - type: Transform - pos: -77.9579,-69.35296 + rot: 1.5707963267948966 rad + pos: 60.690517,-43.173733 parent: 1 -- proto: Chair - entities: - - uid: 242 + - uid: 10896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,11.5 + pos: 60.45093,-49.412567 parent: 1 - - uid: 248 + - uid: 11034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,11.5 + pos: -53.5,-18.5 parent: 1 - - uid: 357 + - uid: 11857 components: - type: Transform - pos: -20.5,-6.5 + rot: 3.141592653589793 rad + pos: -36.5,-42.5 parent: 1 - - uid: 358 + - uid: 12304 components: - type: Transform - pos: -21.5,-6.5 + rot: 3.141592653589793 rad + pos: -48.5,-30.5 parent: 1 - - uid: 359 + - uid: 12305 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-8.5 + pos: -47.5,-30.5 parent: 1 - - uid: 362 + - uid: 13725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-8.5 + pos: -63.5,-67.5 parent: 1 - - uid: 364 + - uid: 16654 components: - type: Transform - pos: -21.5,-2.5 + rot: 1.5707963267948966 rad + pos: 14.5,-26.5 parent: 1 - - uid: 365 + - uid: 20365 components: - type: Transform - pos: -20.5,-2.5 + rot: 1.5707963267948966 rad + pos: -95.2549,-40.368137 parent: 1 - - uid: 430 + - uid: 28742 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-4.5 + pos: -8.481402,-10 parent: 1 - - uid: 433 + - uid: 29451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-4.5 + rot: 1.5707963267948966 rad + pos: -59.32944,-41.921303 parent: 1 - - uid: 436 + - uid: 30882 components: - type: Transform - pos: -17.5,-2.5 + rot: -1.5707963267948966 rad + pos: -57.5,-80.5 parent: 1 - - uid: 437 + - uid: 34284 components: - type: Transform - pos: -18.5,-2.5 + pos: -151.40993,-38.407673 parent: 1 - - uid: 438 + - uid: 34285 components: - type: Transform - pos: -18.5,-6.5 + rot: -1.5707963267948966 rad + pos: -150.52243,-36.093563 parent: 1 - - uid: 440 + - uid: 35680 components: - type: Transform - pos: -17.5,-6.5 + rot: -1.5707963267948966 rad + pos: -114.39124,-88.44611 parent: 1 - - uid: 441 + - uid: 36386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-8.5 + pos: -135.44283,-56.246326 parent: 1 - - uid: 442 + - uid: 36387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-8.5 + rot: 1.5707963267948966 rad + pos: -133.29282,-55.74598 parent: 1 - - uid: 443 + - uid: 36783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-4.5 + pos: 36.49209,-29.611696 parent: 1 - - uid: 444 +- proto: ChairOfficeLight + entities: + - uid: 2644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.314522,-55.540134 parent: 1 - - uid: 1248 + - uid: 4768 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,11.5 + pos: -64.5,-24.5 parent: 1 - - uid: 1249 + - uid: 4801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + rot: 3.141592653589793 rad + pos: -67.5,-21.5 parent: 1 - - uid: 1250 + - uid: 4802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,11.5 + rot: 3.141592653589793 rad + pos: -68.5,-21.5 parent: 1 - - uid: 1251 + - uid: 5134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,11.5 + pos: -98.5,0.5 parent: 1 - - uid: 1252 + - uid: 5135 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,11.5 + pos: -98.5,-0.5 parent: 1 - - uid: 1253 + - uid: 5136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 + rot: -1.5707963267948966 rad + pos: -98.5,-1.5 parent: 1 - - uid: 1254 + - uid: 5137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,11.5 + pos: -102.5,-1.5 parent: 1 - - uid: 1255 + - uid: 5138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,11.5 + pos: -102.5,-0.5 parent: 1 - - uid: 1256 + - uid: 5139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,11.5 + pos: -102.5,0.5 parent: 1 - - uid: 1257 + - uid: 5140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 + pos: -100.5,1.5 parent: 1 - - uid: 1664 + - uid: 5566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-32.5 + rot: -1.5707963267948966 rad + pos: -48.603085,33.534126 parent: 1 - - uid: 1665 + - uid: 5612 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-32.5 + pos: -44.40517,33.48201 parent: 1 - - uid: 1666 + - uid: 6101 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-32.5 + pos: -28.527527,40.767952 parent: 1 - - uid: 3763 + - uid: 6870 components: - type: Transform - pos: -62.5,23.5 + rot: 1.5707963267948966 rad + pos: -39.5,-60.5 parent: 1 - - uid: 3764 + - uid: 7289 components: - type: Transform - pos: -60.5,23.5 + rot: -1.5707963267948966 rad + pos: -49.509335,36.619606 parent: 1 - - uid: 3940 + - uid: 7794 components: - type: Transform - pos: -56.5,-27.5 + pos: -85.5,19.5 parent: 1 - - uid: 3941 + - uid: 7804 components: - type: Transform - pos: -55.5,-27.5 + pos: -87.5,18.5 parent: 1 - - uid: 3942 + - uid: 7818 components: - type: Transform - pos: -54.5,-27.5 + rot: 1.5707963267948966 rad + pos: -90.5,17.5 parent: 1 - - uid: 3943 + - uid: 7869 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-30.5 + pos: -86.5,14.5 parent: 1 - - uid: 3944 + - uid: 7870 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-30.5 + pos: -87.5,14.5 parent: 1 - - uid: 3945 + - uid: 7977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-30.5 + rot: -1.5707963267948966 rad + pos: -76.5,6.5 parent: 1 - - uid: 3961 + - uid: 8004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-34.5 + rot: 1.5707963267948966 rad + pos: -80.5,11.5 parent: 1 - - uid: 3962 + - uid: 8009 components: - type: Transform - pos: -56.5,-32.5 + rot: -1.5707963267948966 rad + pos: -76.5,11.5 parent: 1 - - uid: 4545 + - uid: 8094 components: - type: Transform - pos: -69.5,-16.5 + rot: -1.5707963267948966 rad + pos: -88.5,-9.5 parent: 1 - - uid: 4554 + - uid: 8095 components: - type: Transform - pos: -68.5,-16.5 + rot: -1.5707963267948966 rad + pos: -88.5,-9.5 parent: 1 - - uid: 4555 + - uid: 8251 components: - type: Transform - pos: -67.5,-16.5 + rot: 3.141592653589793 rad + pos: -101.5,6.5 parent: 1 - - uid: 4556 + - uid: 8252 components: - type: Transform - pos: -66.5,-16.5 + rot: 3.141592653589793 rad + pos: -100.5,6.5 parent: 1 - - uid: 7106 + - uid: 8253 components: - type: Transform - pos: 7.5,-2.5 + rot: 3.141592653589793 rad + pos: -99.5,6.5 parent: 1 - - uid: 7134 + - uid: 8254 components: - type: Transform - pos: 14.5,-20.5 + pos: -101.5,5.5 parent: 1 - - uid: 7871 + - uid: 8255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,12.5 + pos: -99.5,5.5 parent: 1 - - uid: 7872 + - uid: 8256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,12.5 + pos: -100.5,5.5 parent: 1 - - uid: 7873 + - uid: 8257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,11.5 + pos: -98.5,5.5 parent: 1 - - uid: 7874 + - uid: 8920 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,11.5 + pos: -99.5,-13.5 parent: 1 - - uid: 7875 + - uid: 9675 + components: + - type: Transform + pos: -82.5,-18.5 + parent: 1 + - uid: 10897 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,12.5 + pos: 59.503017,-43.17907 parent: 1 - - uid: 7876 + - uid: 12041 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,12.5 + pos: 5.5,-10 parent: 1 - - uid: 7877 + - uid: 12042 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,11.5 + pos: 4.5,-10 parent: 1 - - uid: 7878 + - uid: 12043 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,11.5 + pos: -5.5,-10 parent: 1 - - uid: 7915 + - uid: 12044 components: - type: Transform - pos: -79.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,-10 parent: 1 - - uid: 7959 + - uid: 12222 components: - type: Transform rot: 1.5707963267948966 rad - pos: -115.5,20.5 + pos: -39.5,-57.5 parent: 1 - - uid: 8092 + - uid: 13135 + components: + - type: Transform + pos: -18.48129,40.397198 + parent: 1 + - uid: 14629 + components: + - type: Transform + pos: -63.344547,-30.2248 + parent: 1 + - uid: 16067 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-5.5 + pos: -43.5,-64.5 parent: 1 - - uid: 8096 + - uid: 16082 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-9.5 + pos: -40.5,-68.5 parent: 1 - - uid: 8115 + - uid: 16083 components: - type: Transform - pos: -81.5,-5.5 + rot: 1.5707963267948966 rad + pos: -40.5,-67.5 parent: 1 - - uid: 9087 + - uid: 17557 components: - type: Transform - pos: 54.5,-58.5 + pos: 15.5,-33.5 parent: 1 - - uid: 9089 + - uid: 23791 components: - type: Transform - pos: 50.5,-58.5 + rot: -1.5707963267948966 rad + pos: 33.315796,-53.377205 parent: 1 - - uid: 9092 + - uid: 23859 components: - type: Transform - pos: 51.5,-58.5 + rot: -1.5707963267948966 rad + pos: -9.562557,-55.791157 parent: 1 - - uid: 9095 + - uid: 28450 components: - type: Transform - pos: 52.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-39.5 parent: 1 - - uid: 9106 + - uid: 28650 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-19.5 + pos: 3.5,-36.5 parent: 1 - - uid: 9107 + - uid: 30347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-19.5 + pos: -35.5,-66.5 parent: 1 - - uid: 9108 + - uid: 33506 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-19.5 + pos: -66.5,22.5 parent: 1 - - uid: 9109 + - uid: 34282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-19.5 + pos: -141.5,-38.5 parent: 1 - - uid: 9118 + - uid: 34283 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: -141.32243,-36.11858 parent: 1 - - uid: 9119 + - uid: 36385 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-40.5 + pos: -133.55533,-53.4694 parent: 1 - - uid: 9163 + - uid: 36782 components: - type: Transform - pos: 53.5,-58.5 + rot: 3.141592653589793 rad + pos: 37.75459,-32.87646 parent: 1 - - uid: 9483 + - uid: 42172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,17.5 + rot: 3.141592653589793 rad + pos: -102.5,10.5 parent: 1 - - uid: 9484 +- proto: ChairWood + entities: + - uid: 586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,16.5 + rot: 3.141592653589793 rad + pos: -32.5,9.5 parent: 1 - - uid: 9485 + - uid: 588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,15.5 + pos: -33.5,11.5 parent: 1 - - uid: 9676 + - uid: 1444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-20.5 + rot: 1.5707963267948966 rad + pos: -50.5,7.5 parent: 1 - - uid: 9677 + - uid: 1484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-20.5 + rot: 1.5707963267948966 rad + pos: -47.5,7.5 parent: 1 - - uid: 10472 + - uid: 1485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-61.5 + rot: -1.5707963267948966 rad + pos: -48.5,7.5 parent: 1 - - uid: 10473 + - uid: 1486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-61.5 + rot: -1.5707963267948966 rad + pos: -45.5,7.5 parent: 1 - - uid: 10474 + - uid: 1487 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-61.5 + pos: -46.5,6.5 parent: 1 - - uid: 10482 + - uid: 1488 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-61.5 + pos: -49.5,6.5 parent: 1 - - uid: 10483 + - uid: 1489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-61.5 + rot: 1.5707963267948966 rad + pos: -45.5,-5.5 parent: 1 - - uid: 10484 + - uid: 1490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-59.5 + pos: -44.5,-4.5 parent: 1 - - uid: 10485 + - uid: 1491 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-60.5 + pos: -43.5,-5.5 parent: 1 - - uid: 11035 + - uid: 1554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-20.5 + rot: 1.5707963267948966 rad + pos: -51.5,-5.5 parent: 1 - - uid: 11036 + - uid: 1555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-20.5 + pos: -50.5,-4.5 parent: 1 - - uid: 11138 + - uid: 1556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 + rot: -1.5707963267948966 rad + pos: -49.5,-5.5 parent: 1 - - uid: 11139 + - uid: 2622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 + rot: -1.5707963267948966 rad + pos: 14.320562,-54.465137 parent: 1 - - uid: 11140 + - uid: 4573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 + pos: -113.5,-1.5 parent: 1 - - uid: 11141 + - uid: 4763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-2.5 + pos: -81.5,-37.5 parent: 1 - - uid: 11142 + - uid: 4764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-1.5 + pos: -79.5,-37.5 parent: 1 - - uid: 11143 + - uid: 4797 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-2.5 + pos: -81.5,-35.5 parent: 1 - - uid: 11144 + - uid: 6935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,1.5 + pos: -20.5,-33.5 parent: 1 - - uid: 11145 + - uid: 6949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 + rot: 1.5707963267948966 rad + pos: -22.5,-33.5 parent: 1 - - uid: 11146 + - uid: 6950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -22.5,-32.5 parent: 1 - - uid: 11147 + - uid: 6951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,1.5 + pos: -22.5,-34.5 parent: 1 - - uid: 11148 + - uid: 6998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 + rot: 3.141592653589793 rad + pos: -36.5,-50.5 parent: 1 - - uid: 11149 + - uid: 7001 components: - type: Transform - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: -35.5,-50.5 parent: 1 - - uid: 11150 + - uid: 7002 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,1.5 + pos: -37.5,-49.5 parent: 1 - - uid: 11151 + - uid: 7009 components: - type: Transform - pos: 4.5,3.5 + rot: 3.141592653589793 rad + pos: -29.5,-50.5 parent: 1 - - uid: 11152 + - uid: 7328 components: - type: Transform - pos: 8.5,3.5 + rot: 3.141592653589793 rad + pos: -45.5,26.5 parent: 1 - - uid: 11153 + - uid: 7334 components: - type: Transform - pos: 7.5,3.5 + rot: 3.141592653589793 rad + pos: -53.5,26.5 parent: 1 - - uid: 11158 + - uid: 7340 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: -49.5,26.5 parent: 1 - - uid: 11159 + - uid: 8170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 + rot: 1.5707963267948966 rad + pos: -68.5,-6.5 parent: 1 - - uid: 11160 + - uid: 8171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: -66.5,-6.5 parent: 1 - - uid: 11161 + - uid: 8350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + rot: 1.5707963267948966 rad + pos: -70.5,2.5 parent: 1 - - uid: 11235 + - uid: 8351 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: -68.5,2.5 parent: 1 - - uid: 12118 + - uid: 8552 components: - type: Transform - pos: 13.5,-20.5 + rot: 1.5707963267948966 rad + pos: -70.5,-3.5 parent: 1 - - uid: 12319 + - uid: 9524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,20.5 + pos: -55.5,2.5 parent: 1 - - uid: 12320 + - uid: 9525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,20.5 + rot: 1.5707963267948966 rad + pos: -57.5,2.5 parent: 1 - - uid: 12321 + - uid: 9590 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 1 + - uid: 9591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.5,20.5 + pos: -30.5,-5.5 parent: 1 - - uid: 12322 + - uid: 9592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,20.5 + pos: -30.5,-6.5 parent: 1 - - uid: 12323 + - uid: 9593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,20.5 + rot: 3.141592653589793 rad + pos: -31.5,-7.5 parent: 1 - - uid: 12324 + - uid: 9594 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,20.5 + pos: -32.5,-6.5 parent: 1 - - uid: 12325 + - uid: 9595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,20.5 + pos: -32.5,-5.5 parent: 1 - - uid: 12345 + - uid: 9879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-50.5 + parent: 1 + - uid: 9901 components: - type: Transform rot: -1.5707963267948966 rad - pos: -108.5,26.5 + pos: -79.280945,-7.407986 parent: 1 - - uid: 12347 + - uid: 11001 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.5,26.5 + pos: -29.5,-20.5 parent: 1 - - uid: 12348 + - uid: 11002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,26.5 + pos: -31.5,-20.5 parent: 1 - - uid: 12350 + - uid: 12121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,26.5 + pos: -115.5,0.5 parent: 1 - - uid: 13730 + - uid: 12690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-70.5 + rot: -1.5707963267948966 rad + pos: -81.5,-52.5 parent: 1 - - uid: 13769 + - uid: 12691 components: - type: Transform - pos: 28.5,-22.5 + rot: 1.5707963267948966 rad + pos: -83.5,-52.5 parent: 1 - - uid: 13770 + - uid: 12692 components: - type: Transform - pos: 29.5,-22.5 + pos: -82.5,-51.5 parent: 1 - - uid: 13771 + - uid: 13837 components: - type: Transform - pos: 30.5,-22.5 + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 parent: 1 - - uid: 17961 + - uid: 13838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-74.5 + pos: 30.5,-34.5 parent: 1 - - uid: 23792 + - uid: 13839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-56.5 + pos: 27.5,-33.5 parent: 1 - - uid: 29543 + - uid: 13840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 + pos: 28.5,-33.5 parent: 1 - - uid: 31094 + - uid: 13841 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 1 + - uid: 13842 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,2.5 + pos: 28.5,-35.5 parent: 1 - - uid: 31393 + - uid: 13843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-74.5 + rot: 3.141592653589793 rad + pos: 29.5,-35.5 parent: 1 -- proto: ChairCursed - entities: - - uid: 17510 + - uid: 13844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,6.5 + rot: 3.141592653589793 rad + pos: 27.5,-35.5 parent: 1 -- proto: ChairFolding - entities: - - uid: 595 + - uid: 28491 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-22.5 + pos: -12.5,-35.5 parent: 1 - - uid: 756 + - uid: 30779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-15.5 + pos: -69.5,-40.5 parent: 1 - - uid: 4182 + - uid: 30780 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-53.5 + pos: -72.5,-40.5 parent: 1 - - uid: 4183 + - uid: 31035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-55.5 + rot: -1.5707963267948966 rad + pos: 22.5,-27.5 parent: 1 - - uid: 4184 + - uid: 31036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-56.5 + pos: 20.5,-27.5 parent: 1 - - uid: 4464 + - uid: 32246 components: - type: Transform - pos: -50.5,-55.5 + rot: -1.5707963267948966 rad + pos: -79.29137,-8.304441 parent: 1 - - uid: 4465 +- proto: CheapLighter + entities: + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-53.5 + parent: 1280 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14959 + components: + - type: Transform + pos: -56.35439,-36.48456 parent: 1 - - uid: 4466 + - uid: 19294 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-54.5 + pos: -88.44761,-46.240086 parent: 1 - - uid: 5879 + - uid: 28740 components: - type: Transform - pos: -102.5,-20.5 + pos: 6.7841825,-15.290186 parent: 1 - - uid: 6063 +- proto: chem_master + entities: + - uid: 4752 components: - type: Transform - pos: -15.413847,31.558933 + pos: -62.5,-22.5 parent: 1 - - uid: 6501 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,4.5 + pos: 3.5,-35.5 parent: 1 - - uid: 6539 + - uid: 9902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,5.5 + pos: -62.5,-29.5 parent: 1 - - uid: 6545 + - uid: 28516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,8.5 + pos: -30.5,-10.5 parent: 1 - - uid: 6546 +- proto: ChemDispenser + entities: + - uid: 4753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,2.5 + pos: -64.5,-22.5 parent: 1 - - uid: 6548 + - uid: 4758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,3.5 + pos: -62.5,-30.5 parent: 1 - - uid: 6549 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 28503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,7.5 + pos: -12.4749775,-34.084183 parent: 1 - - uid: 6550 + - type: Tag + tags: + - Bottle + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 12 +- proto: ChemistryHotplate + entities: + - uid: 4793 + components: + - type: Transform + pos: -64.5,-21.5 + parent: 1 + - uid: 33452 + components: + - type: Transform + pos: -42.5,-54.5 + parent: 1 + - type: ItemPlacer + placedEntities: + - 32234 + - type: PlaceableSurface + isPlaceable: False +- proto: Cigar + entities: + - uid: 12767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,6.5 + rot: 3.141592653589793 rad + pos: -80.77257,39.600395 parent: 1 - - uid: 7113 + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-13.5 + pos: 29.19962,-34.620007 parent: 1 - - uid: 7166 + - uid: 23848 components: - type: Transform - pos: -25.5,32.5 + pos: -6.2346134,-57.280037 parent: 1 - - uid: 7167 + - uid: 23849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,30.5 + pos: -6.130447,-57.467667 parent: 1 - - uid: 7219 +- proto: CigarCase + entities: + - uid: 13878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.30968,29.484577 + rot: -1.5707963267948966 rad + pos: 21.630285,-22.386694 parent: 1 - - uid: 7805 +- proto: Cigarette + entities: + - uid: 17689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,16.5 + pos: -87.698425,-17.302172 parent: 1 - - uid: 7810 + - uid: 19293 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,15.5 + pos: -88.51011,-46.27136 parent: 1 - - uid: 7811 + - uid: 28706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,14.5 + pos: 1.6365042,11.671018 parent: 1 - - uid: 7812 + - uid: 28707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,16.5 + pos: -6.280163,11.493812 parent: 1 - - uid: 7813 + - uid: 28708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,15.5 + pos: -10.314293,11.639746 parent: 1 - - uid: 7814 + - uid: 28710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,14.5 + rot: 3.141592653589793 rad + pos: -6.72808,11.629322 parent: 1 - - uid: 8001 + - uid: 28711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,14.5 + pos: -10.241377,11.796104 parent: 1 - - uid: 9392 + - uid: 28712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,8.5 + pos: -6.248913,11.525083 parent: 1 - - uid: 9471 + - uid: 28739 components: - type: Transform - pos: -13.5,-18.5 + pos: 6.7320995,-15.165098 parent: 1 - - uid: 9472 + - uid: 29442 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-20.5 + pos: 3.212751,-49.56133 parent: 1 - - uid: 9667 +- proto: CigaretteBanana + entities: + - uid: 36443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,7.5 + rot: 3.141592653589793 rad + pos: -82.72137,-74.028725 parent: 1 - - uid: 9668 +- proto: CigaretteSpent + entities: + - uid: 1928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -125.5,6.5 + pos: 55.206043,-7.7694683 parent: 1 - - uid: 9669 + - uid: 10168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,5.5 + pos: 55.693542,-8.144729 parent: 1 - - uid: 9670 + - uid: 12208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,4.5 + rot: 1.5707963267948966 rad + pos: -34.34899,-29.641277 parent: 1 - - uid: 9788 + - uid: 12209 components: - type: Transform - pos: -104.71068,-30.384047 + rot: 1.5707963267948966 rad + pos: -34.41149,-29.83933 parent: 1 - - uid: 9789 + - uid: 12210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.51276,-31.520252 + rot: 1.5707963267948966 rad + pos: -30.192741,-29.338984 parent: 1 - - uid: 9895 + - uid: 12211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.331043,-7.269121 + rot: 1.5707963267948966 rad + pos: -30.515657,-28.275745 parent: 1 - - uid: 10169 + - uid: 12212 components: - type: Transform - pos: 55.456043,-7.306647 + rot: 1.5707963267948966 rad + pos: -30.234407,-28.192354 parent: 1 - - uid: 10772 + - uid: 12213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-49.5 + pos: -30.276073,-30.849665 parent: 1 - - uid: 10773 + - uid: 12406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-51.5 + pos: 22.067438,-13.596345 parent: 1 - - uid: 10774 + - uid: 12407 components: - type: Transform - pos: 22.5,-48.5 + pos: 22.025772,-13.221086 parent: 1 - - uid: 11342 + - uid: 12408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.663847,29.703478 + pos: 22.786188,-13.12727 parent: 1 - - uid: 11364 + - uid: 12409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.59093,30.61036 + pos: 23.098688,-14.075845 parent: 1 - - uid: 11956 + - uid: 12410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-28.5 + pos: 24.348688,-12.626922 parent: 1 - - uid: 11961 + - uid: 12411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-30 + pos: 22.525772,-13.304477 parent: 1 - - uid: 12004 + - uid: 12412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 + pos: 24.140354,-14.284324 parent: 1 - - uid: 12013 + - uid: 12413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 19.671604,-14.534497 parent: 1 - - uid: 12207 + - uid: 12414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-30 + pos: 19.327854,-13.679737 parent: 1 - - uid: 12464 + - uid: 12415 components: - type: Transform - pos: -42.5,15.5 + pos: 19.817438,-12.731161 parent: 1 - - uid: 12568 + - uid: 13914 components: - type: Transform - pos: -15.5,-10.5 + rot: -1.5707963267948966 rad + pos: -7.4557724,-42.589233 parent: 1 - - uid: 12569 + - uid: 13915 components: - type: Transform - pos: -14.5,-10.5 + rot: 3.141592653589793 rad + pos: -7.1120224,-42.79771 parent: 1 - - uid: 12687 + - uid: 13916 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-46.5 + pos: -7.0182724,-43.068733 parent: 1 - - uid: 12688 + - uid: 16288 components: - type: Transform - pos: -88.5,-45.5 + pos: -90.31819,-36.417404 parent: 1 - - uid: 12689 + - uid: 19260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-47.5 + rot: -1.5707963267948966 rad + pos: -90.13069,-36.792664 parent: 1 - - uid: 12785 + - uid: 23681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.9929,33.571857 + pos: 68.85632,1.1530888 parent: 1 - - uid: 13132 + - uid: 23682 components: - type: Transform - pos: -18.272957,41.81485 + pos: 70.39799,1.4762299 parent: 1 - - uid: 13134 + - uid: 23683 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.710457,41.71061 + pos: 68.24174,2.0182729 parent: 1 - - uid: 13695 + - uid: 31265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67,-62.5 + pos: -30.8982,16.789347 parent: 1 - - uid: 13696 + - uid: 31267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67,-63.5 + pos: -29.8732,17.152098 parent: 1 - - uid: 13697 + - uid: 34143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-64 + rot: 1.5707963267948966 rad + pos: -91.12159,-36.20486 parent: 1 - - uid: 13698 + - uid: 41112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-64 + pos: 26.193754,-40.9563 parent: 1 - - uid: 13699 + - uid: 41113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69,-63.5 + rot: -1.5707963267948966 rad + pos: 27.922922,-41.84233 parent: 1 - - uid: 13700 +- proto: CigarGoldCase + entities: + - uid: 42163 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69,-62.5 + pos: -115.531975,-0.49056005 parent: 1 - - uid: 13788 +- proto: CigarSpent + entities: + - uid: 12405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 + pos: 22.536188,-13.711009 parent: 1 - - uid: 13789 +- proto: CigCartonRed + entities: + - uid: 11746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-31 + pos: -111.50225,-2.9696808 parent: 1 - - uid: 13808 +- proto: CigPackBlack + entities: + - uid: 11765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-29.5 + pos: -94.07844,-4.498516 parent: 1 - - uid: 13809 + - uid: 28709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-28.5 + pos: 9.267267,11.665396 parent: 1 - - uid: 13810 + - uid: 30365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 + rot: 3.141592653589793 rad + pos: -35.667667,-67.367386 parent: 1 - - uid: 13811 + - uid: 31263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-30.5 + pos: -31.385698,17.652447 parent: 1 - - uid: 13812 +- proto: CigPackBlue + entities: + - uid: 15092 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-31.5 + pos: -92.257256,25.130632 parent: 1 - - uid: 13813 + - uid: 30380 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-29.5 + pos: -24.647594,-73.685814 parent: 1 - - uid: 13814 +- proto: CigPackGreen + entities: + - uid: 14743 + components: + - type: Transform + parent: 1280 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + pos: 70.85632,1.4241102 parent: 1 - - uid: 13815 + - uid: 30774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-27.5 + pos: -75.63711,-38.75398 parent: 1 - - uid: 13822 +- proto: CigPackMixed + entities: + - uid: 2056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 + parent: 13894 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigPackRed + entities: + - uid: 14958 + components: + - type: Transform + pos: -56.13564,-36.494984 parent: 1 - - uid: 13823 +- proto: CircuitImprinter + entities: + - uid: 3404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 + pos: -18.5,-41.5 parent: 1 - - uid: 13845 +- proto: CleanerDispenser + entities: + - uid: 1979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25,-32.5 + pos: 15.5,-11.5 parent: 1 - - uid: 13846 + - uid: 23750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26,-32.5 + pos: 31.5,-47.5 parent: 1 - - uid: 13847 + - uid: 33536 components: - type: Transform rot: 3.141592653589793 rad - pos: 27,-32.5 + pos: -21.5,23.5 parent: 1 - - uid: 13848 +- proto: ClosetBombFilled + entities: + - uid: 12605 components: - type: Transform - pos: 24.5,-26 + pos: -68.5,-46.5 parent: 1 - - uid: 13849 + - uid: 12606 components: - type: Transform - pos: 25.5,-26 + pos: -68.5,-48.5 parent: 1 - - uid: 13850 + - uid: 16094 components: - type: Transform - pos: 26.5,-26 + pos: -47.5,-62.5 parent: 1 - - uid: 13913 +- proto: ClosetChef + entities: + - uid: 10197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + pos: -23.5,7.5 parent: 1 - - uid: 15080 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10199 + - 10205 + - 10208 + - 10579 + - 11021 + - 11991 + - 12117 + - 15296 + - 15662 + - 16194 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetChefFilled + entities: + - uid: 584 components: - type: Transform - pos: -94.5,25.5 + pos: -32.5,14.5 parent: 1 - - uid: 15081 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,24.5 + pos: 29.5,-17.5 parent: 1 - - uid: 15082 + - uid: 1125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,23.5 + pos: 13.5,9.5 parent: 1 - - uid: 15083 + - uid: 3380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,23.5 + pos: -15.5,-53.5 parent: 1 - - uid: 15084 + - uid: 5783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,24.5 + pos: -100.5,41.5 parent: 1 - - uid: 15085 + - uid: 5895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,26 + pos: -43.5,-77.5 parent: 1 - - uid: 16325 + - uid: 5990 components: - type: Transform - pos: -121.5,16.5 + pos: -47.5,-77.5 parent: 1 - - uid: 16479 + - uid: 7497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.66194,-36.32359 + pos: -35.5,9.5 parent: 1 - - uid: 23690 + - uid: 7787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,0.5 + pos: -78.5,38.5 parent: 1 - - uid: 23764 + - uid: 7788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.628954,-56.237717 + pos: -78.5,35.5 parent: 1 - - uid: 23793 + - uid: 8221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.31393,-56.372215 + pos: -14.5,12.5 parent: 1 - - uid: 29468 + - uid: 12265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,13.5 + pos: -36.5,-55.5 parent: 1 - - uid: 30376 + - uid: 12717 components: - type: Transform - pos: -25.5,-73.5 + pos: -100.5,43.5 parent: 1 - - uid: 30465 + - uid: 13165 components: - type: Transform - pos: -95.5,19.5 + pos: -7.5,43.5 parent: 1 - - uid: 30466 + - uid: 28691 components: - type: Transform - pos: -93.5,19.5 + pos: 5.5,-25.5 parent: 1 - - uid: 30732 + - uid: 28692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-40.5 + pos: 5.5,-24.5 parent: 1 - - uid: 30757 + - uid: 28800 components: - type: Transform - pos: -77.5,-48.5 + pos: 22.5,-58.5 parent: 1 - - uid: 30939 + - uid: 28802 components: - type: Transform - pos: -50.5,-58.5 + pos: 24.5,-58.5 parent: 1 - - uid: 31261 + - uid: 30448 components: - type: Transform - pos: -30.5,17.5 + pos: -85.5,23.5 parent: 1 - - uid: 33151 + - uid: 30449 components: - type: Transform - pos: -154.5,24.5 + pos: -90.5,10.5 parent: 1 - - uid: 33152 + - uid: 30584 components: - type: Transform - pos: -153.5,24.5 + pos: -124.5,22.5 parent: 1 - - uid: 33153 + - uid: 30669 components: - type: Transform - pos: -150.5,24.5 + pos: -95.5,-20.5 parent: 1 - - uid: 33154 + - uid: 30671 components: - type: Transform - pos: -149.5,24.5 + pos: -57.5,-21.5 parent: 1 - - uid: 33995 + - uid: 30674 components: - type: Transform - pos: -95.45926,-66.48243 + pos: -36.5,-36.5 parent: 1 - - uid: 33996 + - uid: 30679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.95926,-68.23364 + pos: 10.5,-28.5 parent: 1 - - uid: 33997 + - uid: 30694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.42801,-66.49806 + pos: -19.5,-23.5 parent: 1 - - uid: 34451 + - uid: 30696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,-67.5 + pos: -37.5,-23.5 parent: 1 - - uid: 36008 + - uid: 30700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.586655,-47.54068 + pos: -18.5,27.5 parent: 1 - - uid: 36009 + - uid: 30799 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.51165,-49.16681 + pos: -60.5,-67.5 parent: 1 - - uid: 36010 + - uid: 30970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.26165,-50.342625 + pos: -20.5,-68.5 parent: 1 - - uid: 36011 + - uid: 31047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.73665,-50.40517 + pos: -46.5,12.5 parent: 1 - - uid: 36384 + - uid: 34243 components: - type: Transform - pos: -134.5,-49.5 + pos: -145.5,-35.5 parent: 1 - - uid: 36612 + - uid: 35685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.52281,-77.21387 + pos: -107.5,-88.5 parent: 1 - - uid: 36613 + - uid: 35994 components: - type: Transform - pos: -116.58531,-75.58774 + pos: -133.5,-23.5 parent: 1 - - uid: 36814 + - uid: 36755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-76.5 + pos: 30.5,-46.5 parent: 1 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 4306 + - uid: 37954 components: - type: Transform - pos: -40.571266,-48.420605 + pos: 45.5,-42.5 parent: 1 - - uid: 7222 + - uid: 41903 components: - type: Transform - pos: -9.379427,30.026619 + pos: 21.5,6.5 parent: 1 - - uid: 8738 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 662 components: - type: Transform - pos: -121.494774,7.927282 + pos: -124.5,21.5 parent: 1 - - uid: 11337 + - uid: 665 components: - type: Transform - pos: -8.566927,30.026619 + pos: 29.5,-18.5 parent: 1 - - uid: 11338 + - uid: 1552 components: - type: Transform - pos: -14.507597,31.475542 + pos: -100.5,42.5 parent: 1 - - uid: 21361 + - uid: 4141 components: - type: Transform - pos: 21.526503,9.874715 + pos: 47.5,-42.5 parent: 1 - - uid: 21362 + - uid: 4204 components: - type: Transform - pos: 21.557753,9.655812 + pos: -76.5,38.5 parent: 1 - - uid: 23763 + - uid: 4205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.38937,-53.10012 + pos: 21.5,-58.5 parent: 1 - - uid: 31046 + - uid: 4206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.544807,12.009349 + pos: -47.5,12.5 parent: 1 - - uid: 31048 + - uid: 5782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.52397,11.759175 + pos: -48.5,-73.5 parent: 1 - - uid: 31361 + - uid: 7722 components: - type: Transform - pos: 10.566668,-37.119576 + pos: -43.5,-52.5 parent: 1 - - uid: 31362 + - uid: 42957 components: - type: Transform - pos: 10.514585,-37.328053 + pos: 9.5,-41.5 parent: 1 - - uid: 31411 + - uid: 42958 components: - type: Transform - pos: -40.64418,-47.9828 + pos: 34.5,-37.5 parent: 1 - - uid: 34583 + - uid: 42959 components: - type: Transform - pos: -122.55248,-16.25239 + pos: 13.5,11.5 parent: 1 - - uid: 34584 + - uid: 42964 components: - type: Transform - pos: -122.51081,-16.690193 + pos: -27.5,13.5 parent: 1 - - uid: 34585 + - uid: 42965 components: - type: Transform - pos: -122.35456,-17.169693 + pos: -34.5,-23.5 parent: 1 - - uid: 34806 + - uid: 42966 components: - type: Transform - pos: 26.777414,14.450756 + pos: -5.5,35.5 parent: 1 - - uid: 36383 + - uid: 42967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -134.15532,-51.15529 + pos: -97.5,14.5 parent: 1 -- proto: ChairGreyscale - entities: - - uid: 2016 + - uid: 42968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,4.5 + pos: -137.5,-40.5 parent: 1 - - uid: 2166 + - uid: 42969 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,4.5 + pos: -90.5,-28.5 parent: 1 - - uid: 2193 + - uid: 42970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-0.5 + pos: -57.5,-18.5 parent: 1 - - uid: 2195 + - uid: 42971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-0.5 + pos: -89.5,-79.5 parent: 1 - - uid: 2199 + - uid: 42972 components: - type: Transform - pos: -86.5,6.5 + pos: -15.5,-71.5 parent: 1 - - uid: 2200 + - uid: 42973 components: - type: Transform - pos: -84.5,6.5 + pos: -32.5,-57.5 parent: 1 - - uid: 2201 +- proto: ClosetFireFilled + entities: + - uid: 1126 components: - type: Transform - pos: -84.5,1.5 + pos: 13.5,8.5 parent: 1 - - uid: 2280 + - uid: 1858 components: - type: Transform - pos: -86.5,1.5 + pos: 29.5,-19.5 parent: 1 - - uid: 2281 + - uid: 5485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,44.5 + pos: -7.5,40.5 parent: 1 - - uid: 2282 + - uid: 7521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,31.5 + pos: -35.5,11.5 parent: 1 - - uid: 2283 + - uid: 7790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,31.5 + pos: -76.5,35.5 parent: 1 - - uid: 2284 + - uid: 12224 components: - type: Transform - pos: -96.5,31.5 + pos: -36.5,-54.5 parent: 1 - - uid: 2285 + - uid: 12716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,31.5 + pos: -100.5,40.5 parent: 1 - - uid: 2286 + - uid: 16093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,31.5 + pos: -47.5,-63.5 parent: 1 - - uid: 2287 + - uid: 28617 components: - type: Transform - pos: -101.5,39.5 + pos: -130.5,-23.5 parent: 1 - - uid: 2373 + - uid: 28690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,31.5 + pos: 5.5,-26.5 parent: 1 - - uid: 2376 + - uid: 28803 components: - type: Transform - pos: -101.5,46.5 + pos: 25.5,-58.5 parent: 1 - - uid: 2394 + - uid: 30450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,37.5 + pos: -90.5,11.5 parent: 1 - - uid: 2395 + - uid: 30451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,38.5 + pos: -86.5,23.5 parent: 1 - - uid: 2396 + - uid: 30585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,35.5 + pos: -124.5,20.5 parent: 1 - - uid: 2398 + - uid: 30670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,35.5 + pos: -95.5,-21.5 parent: 1 - - uid: 2399 + - uid: 30672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,35.5 + pos: -57.5,-20.5 parent: 1 - - uid: 2401 + - uid: 30675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,38.5 + pos: -37.5,-36.5 parent: 1 - - uid: 2402 + - uid: 30680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,35.5 + pos: 11.5,-28.5 parent: 1 - - uid: 2403 + - uid: 30695 components: - type: Transform - pos: -76.5,-15.5 + pos: -20.5,-23.5 parent: 1 - - uid: 2450 + - uid: 30701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-16.5 + pos: -18.5,26.5 parent: 1 - - uid: 2451 + - uid: 30800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-16.5 + pos: -60.5,-66.5 parent: 1 - - uid: 2452 + - uid: 30971 components: - type: Transform - pos: -58.5,33.5 + pos: -19.5,-68.5 parent: 1 - - uid: 2453 + - uid: 33889 components: - type: Transform - pos: -58.5,30.5 + pos: -15.5,-52.5 parent: 1 - - uid: 2454 + - uid: 36756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,28.5 + pos: 31.5,-46.5 parent: 1 - - uid: 2455 + - uid: 37956 components: - type: Transform - pos: -58.5,27.5 + pos: 46.5,-42.5 parent: 1 - - uid: 2456 + - uid: 41904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,25.5 + pos: 20.5,6.5 parent: 1 - - uid: 2508 + - uid: 42165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,31.5 + pos: -14.5,11.5 parent: 1 - - uid: 2509 +- proto: ClosetJanitorBombFilled + entities: + - uid: 2039 components: - type: Transform - pos: -39.5,-27.5 + pos: -25.5,27.5 parent: 1 - - uid: 2510 +- proto: ClosetJanitorFilled + entities: + - uid: 7178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-28.5 + pos: -25.5,28.5 parent: 1 - - uid: 2511 + - type: 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: + - 9610 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12038 components: - type: Transform - pos: -17.5,-35.5 + pos: 17.5,-12.5 parent: 1 - - uid: 2512 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15372 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-37.5 + pos: -7.5,-44.5 parent: 1 - - uid: 2565 + - type: 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: + - 2056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13895 components: - type: Transform - pos: 4.5,-49.5 + pos: -8.5,-44.5 parent: 1 - - uid: 2566 + - type: 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: 30726 components: - type: Transform - pos: 2.5,-49.5 + pos: -90.5,-38.5 parent: 1 - - uid: 2567 + - type: 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: + - 2058 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3Filled + entities: + - uid: 9303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + pos: -74.5,-65.5 parent: 1 - - uid: 2570 + - uid: 13670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-51.5 + pos: -73.5,-65.5 parent: 1 - - uid: 2571 + - uid: 36691 components: - type: Transform - pos: 2.5,-54.5 + pos: -107.5,-81.5 parent: 1 - - uid: 2572 + - uid: 36692 components: - type: Transform - pos: 3.5,-54.5 + pos: -108.5,-81.5 parent: 1 - - uid: 2573 +- proto: ClosetL3JanitorFilled + entities: + - uid: 7174 components: - type: Transform - pos: 4.5,-54.5 + pos: -22.5,31.5 parent: 1 - - uid: 2574 + - uid: 7175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 + pos: -21.5,31.5 parent: 1 - - uid: 2575 + - uid: 30728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-56.5 + pos: -90.5,-40.5 parent: 1 - - uid: 2579 +- proto: ClosetL3ScienceFilled + entities: + - uid: 6995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-56.5 + pos: -31.5,-50.5 parent: 1 - - uid: 2586 + - uid: 9897 components: - type: Transform - pos: -0.5,-49.5 + pos: -31.5,-51.5 parent: 1 - - uid: 2588 +- proto: ClosetL3SecurityFilled + entities: + - uid: 4038 components: - type: Transform - pos: -0.5,-54.5 + pos: -50.5,-47.5 parent: 1 - - uid: 2589 + - uid: 4039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-56.5 + pos: -50.5,-48.5 parent: 1 - - uid: 2590 + - uid: 4040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-51.5 + pos: -50.5,-49.5 parent: 1 - - uid: 23866 +- proto: ClosetL3VirologyFilled + entities: + - uid: 4912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-61.5 + pos: -87.5,-23.5 parent: 1 - - uid: 23867 + - uid: 4913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-61.5 + pos: -88.5,-23.5 parent: 1 - - uid: 23868 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 6647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 + pos: -14.5,24.5 parent: 1 - - uid: 23869 + - uid: 6649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 + pos: -14.5,23.5 parent: 1 - - uid: 24734 + - uid: 7789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-46.5 + pos: -64.5,17.5 parent: 1 - - uid: 24735 + - uid: 8177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-46.5 + pos: -51.5,26.5 parent: 1 - - uid: 28809 + - uid: 8178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-58.5 + pos: -47.5,26.5 parent: 1 - - uid: 28904 + - uid: 8179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-58.5 + pos: -43.5,26.5 + parent: 1 + - uid: 11533 + components: + - type: Transform + pos: -41.5,34.5 parent: 1 - - uid: 28984 + - uid: 16126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-58.5 + pos: -49.5,-73.5 parent: 1 - - uid: 28985 + - uid: 30360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-58.5 + pos: -37.5,-67.5 parent: 1 - - uid: 28986 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30361 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 30458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-58.5 + pos: -97.5,16.5 parent: 1 - - uid: 28987 + - uid: 30459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-58.5 + pos: -100.5,14.5 parent: 1 - - uid: 28988 + - uid: 30682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-61.5 + pos: -1.5,-41.5 parent: 1 - - uid: 29222 + - uid: 30761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-61.5 + pos: -58.5,-27.5 parent: 1 - - uid: 29223 + - uid: 30762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-61.5 + pos: -71.5,-37.5 parent: 1 - - uid: 29280 + - uid: 30936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-61.5 + pos: -42.5,-52.5 parent: 1 - - uid: 29281 + - uid: 34588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-61.5 + pos: -116.5,-18.5 parent: 1 - - uid: 29308 + - uid: 36390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-61.5 + pos: -134.5,-57.5 parent: 1 - - uid: 29362 + - uid: 42044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-58.5 + pos: -82.5,-40.5 parent: 1 - - uid: 29363 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 4677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-61.5 + pos: 21.5,3.5 parent: 1 - - uid: 29364 + - uid: 6787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-61.5 + pos: -32.5,-52.5 parent: 1 - - uid: 29365 + - uid: 9196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-58.5 + pos: 20.5,3.5 parent: 1 - - uid: 29366 + - uid: 9880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-58.5 + pos: -31.5,-52.5 parent: 1 - - uid: 29367 + - uid: 10891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-61.5 + pos: 55.5,-50.5 parent: 1 - - uid: 29368 + - uid: 10892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-61.5 + pos: 55.5,-51.5 parent: 1 - - uid: 29369 + - uid: 10893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-58.5 + pos: 58.5,-51.5 parent: 1 - - uid: 36457 + - uid: 10894 components: - type: Transform - pos: -122.5,26.5 + pos: 58.5,-50.5 parent: 1 - - uid: 36458 + - uid: 30801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,24.5 + pos: -55.5,-76.5 parent: 1 - - uid: 36644 + - uid: 36690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-84.5 + pos: -79.5,-59.5 parent: 1 - - uid: 36645 +- proto: ClosetSteelBase + entities: + - uid: 13608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-85.5 + pos: -72.5,-72.5 parent: 1 - - uid: 36646 + - uid: 13609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-86.5 + pos: -69.5,-72.5 parent: 1 - - uid: 36647 + - uid: 13610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-84.5 + pos: -66.5,-72.5 parent: 1 - - uid: 36648 + - uid: 13785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-85.5 + pos: 21.5,-28.5 parent: 1 - - uid: 36649 + - uid: 13786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-86.5 + pos: 22.5,-28.5 parent: 1 - - uid: 37383 + - uid: 13787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-71.5 + pos: 23.5,-28.5 parent: 1 - - uid: 37384 + - uid: 28497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-71.5 + pos: -10.5,-35.5 parent: 1 - - uid: 38374 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28501 + - 28498 + - 28499 + - 28500 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 30777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 + pos: -77.5,-21.5 parent: 1 - - uid: 38375 + - uid: 42142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,35.5 + pos: -55.5,40.5 parent: 1 -- proto: ChairOfficeDark +- proto: ClosetToolFilled entities: - - uid: 787 + - uid: 5436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-21.5 + pos: -41.5,35.5 parent: 1 - - uid: 1350 + - uid: 11642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-22.5 + pos: -1.5,35.5 parent: 1 - - uid: 2928 + - uid: 13197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-50.5 + pos: -104.5,-10.5 parent: 1 - - uid: 2929 + - uid: 16095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-50.5 + pos: -43.5,-70.5 parent: 1 - - uid: 3563 + - uid: 30461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-20.5 + pos: -102.5,20.5 parent: 1 - - uid: 3972 + - uid: 34242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-37.5 + pos: -144.5,-35.5 parent: 1 - - uid: 3973 + - uid: 36727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-37.5 + pos: -15.5,-66.5 parent: 1 - - uid: 7448 +- proto: ClosetWall + entities: + - uid: 4686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,20.5 + pos: -79.5,-38.5 parent: 1 - - uid: 7746 + - uid: 5874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,27.5 + pos: -112.5,-23.5 parent: 1 - - uid: 7758 + - 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: + - 5875 + - 5876 + - uid: 12443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,27.5 + pos: -60.5,-9.5 parent: 1 - - uid: 7802 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12575 + - uid: 12583 components: - type: Transform - pos: -83.5,18.5 + pos: -56.5,-9.5 parent: 1 - - uid: 7867 + - uid: 12584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,14.5 + pos: -53.5,-9.5 parent: 1 - - uid: 7868 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 9164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,14.5 + pos: -113.5,-23.5 parent: 1 - - uid: 8093 + - uid: 9900 components: - type: Transform - pos: -94.5,-3.5 + pos: -0.5,-41.5 parent: 1 - - uid: 8761 + - uid: 30586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.39953,-10.276565 + pos: -97.5,-5.5 parent: 1 - - uid: 9490 + - uid: 30706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,17.5 + pos: 19.5,15.5 parent: 1 - - uid: 9787 + - uid: 31037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.31484,-32.31247 + pos: -53.5,-6.5 parent: 1 - - uid: 10895 + - uid: 31039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.690517,-43.173733 + pos: -70.5,11.5 parent: 1 - - uid: 10896 + - uid: 36650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.45093,-49.412567 + pos: -94.5,-81.5 parent: 1 - - uid: 11034 + - uid: 36651 components: - type: Transform - pos: -53.5,-18.5 + pos: -95.5,-81.5 parent: 1 - - uid: 11857 + - uid: 40042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-42.5 + pos: 38.5,-38.5 parent: 1 - - uid: 12304 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 3210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + pos: -110.5,-23.5 parent: 1 - - uid: 12305 + - uid: 15896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 1 - - uid: 13725 + - uid: 30587 components: - type: Transform - pos: -63.5,-67.5 + pos: -98.5,-5.5 parent: 1 - - uid: 16654 + - uid: 30707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 + pos: 18.5,15.5 parent: 1 - - uid: 20365 + - uid: 31038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.2549,-40.368137 + pos: -54.5,-6.5 parent: 1 - - uid: 28742 + - uid: 31040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.481402,-10 + pos: -69.5,11.5 parent: 1 - - uid: 29451 +- proto: ClosetWallGrey + entities: + - uid: 23787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.32944,-41.921303 + pos: 42.5,-51.5 parent: 1 - - uid: 30882 + - 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: + - 23788 + - uid: 30588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-80.5 + pos: -100.5,-5.5 parent: 1 - - uid: 34284 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 23786 components: - type: Transform - pos: -151.40993,-38.407673 + pos: 33.5,-51.5 parent: 1 - - uid: 34285 + - uid: 23789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.52243,-36.093563 + pos: 33.5,-54.5 parent: 1 - - uid: 35680 + - uid: 30589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.39124,-88.44611 + pos: -99.5,-5.5 parent: 1 - - uid: 36386 + - uid: 31058 components: - type: Transform - pos: -135.44283,-56.246326 + pos: -19.5,-20.5 parent: 1 - - uid: 36387 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 31059 + - uid: 31262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.29282,-55.74598 + pos: -32.5,18.5 parent: 1 - - uid: 36783 +- proto: ClosetWallMixed + entities: + - uid: 23790 components: - type: Transform - pos: 36.49209,-29.611696 + pos: 42.5,-54.5 parent: 1 -- proto: ChairOfficeLight +- proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 2644 + - uid: 32316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.314522,-55.540134 + pos: -0.54146147,-37.24413 parent: 1 - - uid: 4768 +- proto: ClothingBeltSecurityFilled + entities: + - uid: 9509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-24.5 + pos: -46.507236,14.561116 parent: 1 - - uid: 4801 +- proto: ClothingBeltSecurityWebbing + entities: + - uid: 28701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-21.5 + pos: 5.019813,-9.451855 parent: 1 - - uid: 4802 +- proto: ClothingBeltStorageWaistbag + entities: + - uid: 9535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-21.5 + pos: -39.561928,-28.521523 parent: 1 - - uid: 5134 +- proto: ClothingBeltUtility + entities: + - uid: 31452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,0.5 + pos: -126.58328,0.6405842 parent: 1 - - uid: 5135 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 7075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-0.5 + pos: -38.993332,-61.447575 parent: 1 - - uid: 5136 + - uid: 34294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-1.5 + pos: -151.3718,-35.349403 parent: 1 - - uid: 5137 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 5875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-1.5 - parent: 1 - - uid: 5138 + parent: 5874 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-0.5 + parent: 5874 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudSecurity + entities: + - uid: 9511 + components: + - type: Transform + pos: -79.48438,24.756868 parent: 1 - - uid: 5139 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 13891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,0.5 + pos: 26.60576,-23.47721 parent: 1 - - uid: 5140 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 13835 components: - type: Transform - pos: -100.5,1.5 + pos: 26.38701,-23.268732 parent: 1 - - uid: 5566 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 30364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.603085,33.534126 + pos: -34.584335,-67.33611 parent: 1 - - uid: 5612 +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 32105 components: - type: Transform - pos: -44.40517,33.48201 + pos: -22.912685,13.690686 parent: 1 - - uid: 6101 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 7563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.527527,40.767952 + rot: -1.5707963267948966 rad + pos: -70.272575,25.568678 parent: 1 - - uid: 6870 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 7193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-60.5 + pos: -20.972075,33.502377 parent: 1 - - uid: 7289 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 11026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.509335,36.619606 + rot: 1.5707963267948966 rad + pos: -23.577953,-11.3083105 parent: 1 - - uid: 7794 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 4918 components: - type: Transform - pos: -85.5,19.5 + rot: -1.5707963267948966 rad + pos: -87.29906,-27.40716 parent: 1 - - uid: 7804 +- proto: ClothingHeadBandGold + entities: + - uid: 30956 components: - type: Transform - pos: -87.5,18.5 + pos: -24.868048,-74.35443 parent: 1 - - uid: 7818 +- proto: ClothingHeadBandSkull + entities: + - uid: 30359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,17.5 + pos: -34.542667,-67.42993 parent: 1 - - uid: 7869 +- proto: ClothingHeadCourierFlipped + entities: + - uid: 10928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,14.5 + pos: -47.535988,35.657867 parent: 1 - - uid: 7870 +- proto: ClothingHeadFishCap + entities: + - uid: 31432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,14.5 + pos: -125.54162,-3.3413477 parent: 1 - - uid: 7977 +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 15156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,6.5 + pos: -68.15464,-62.073658 parent: 1 - - uid: 8004 +- proto: ClothingHeadHatAnimalMonkey + entities: + - uid: 15772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,11.5 + pos: -61.544815,-77.3453 parent: 1 - - uid: 8009 +- proto: ClothingHeadHatBeaverHat + entities: + - uid: 8723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,11.5 + pos: -78.440796,-4.3674784 parent: 1 - - uid: 8094 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 20352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-9.5 + pos: -90.24007,-36.182865 parent: 1 - - uid: 8095 +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 17701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-9.5 + pos: -91.70619,-17.141628 parent: 1 - - uid: 8251 +- proto: ClothingHeadHatCardborg + entities: + - uid: 7738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,6.5 + pos: -54.4608,13.640547 parent: 1 - - uid: 8252 +- proto: ClothingHeadHatChef + entities: + - uid: 12117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,6.5 - parent: 1 - - uid: 8253 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,6.5 - parent: 1 - - uid: 8254 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatChickenhead + entities: + - uid: 15776 components: - type: Transform - pos: -101.5,5.5 + pos: -60.937252,-72.46571 parent: 1 - - uid: 8255 +- proto: ClothingHeadHatCone + entities: + - uid: 7204 components: - type: Transform - pos: -99.5,5.5 + pos: -22.963629,27.013191 parent: 1 - - uid: 8256 + - uid: 7205 components: - type: Transform - pos: -100.5,5.5 + pos: -22.921963,26.804712 parent: 1 - - uid: 8257 + - uid: 13898 components: - type: Transform - pos: -98.5,5.5 + pos: -4.3236923,-43.65247 parent: 1 - - uid: 8920 + - uid: 13899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-13.5 + pos: -4.6986923,-43.537807 parent: 1 - - uid: 9675 + - uid: 13900 components: - type: Transform - pos: -82.5,-18.5 + pos: -4.375776,-43.266785 parent: 1 - - uid: 10897 + - uid: 33956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.503017,-43.17907 + pos: -84.82768,-73.606255 parent: 1 - - uid: 12041 + - uid: 33957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-10 + pos: -86.93706,-73.52807 parent: 1 - - uid: 12042 + - uid: 36739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10 + pos: -18.198343,-58.167774 parent: 1 - - uid: 12043 + - uid: 36740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10 + pos: -18.535843,-58.66812 parent: 1 - - uid: 12044 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 15228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-10 + pos: -113.01969,23.844894 parent: 1 - - uid: 12222 + - uid: 15229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-57.5 + pos: -113.05094,23.761503 parent: 1 - - uid: 13135 + - uid: 15230 components: - type: Transform - pos: -18.48129,40.397198 + pos: -113.061356,23.657263 parent: 1 - - uid: 14629 + - uid: 15231 components: - type: Transform - pos: -63.344547,-30.2248 + pos: -113.05094,23.553024 parent: 1 - - uid: 16067 + - uid: 15232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-64.5 + rot: -1.5707963267948966 rad + pos: -112.92594,23.480057 parent: 1 - - uid: 16082 + - uid: 15233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-68.5 + rot: -1.5707963267948966 rad + pos: -112.80094,23.448786 parent: 1 - - uid: 16083 + - uid: 15234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-67.5 + rot: -1.5707963267948966 rad + pos: -112.686356,23.45921 parent: 1 - - uid: 17557 + - uid: 15235 components: - type: Transform - pos: 15.5,-33.5 + rot: -1.5707963267948966 rad + pos: -112.58219,23.45921 parent: 1 - - uid: 23791 + - uid: 15236 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.315796,-53.377205 + pos: -112.45719,23.469633 parent: 1 - - uid: 23859 + - uid: 15237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.562557,-55.791157 + pos: -112.35303,23.469633 parent: 1 - - uid: 28450 + - uid: 15238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-39.5 + rot: -1.5707963267948966 rad + pos: -112.248856,23.469633 parent: 1 - - uid: 28650 + - uid: 15239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-36.5 + rot: -1.5707963267948966 rad + pos: -112.14469,23.480057 parent: 1 - - uid: 30347 + - uid: 15240 components: - type: Transform - pos: -35.5,-66.5 + rot: 3.141592653589793 rad + pos: -111.94678,23.625992 parent: 1 - - uid: 33506 + - uid: 15241 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,22.5 + pos: -111.94678,23.719807 parent: 1 - - uid: 34282 + - uid: 15242 components: - type: Transform - pos: -141.5,-38.5 + rot: 3.141592653589793 rad + pos: -111.92594,23.78235 parent: 1 - - uid: 34283 + - uid: 15243 components: - type: Transform rot: 3.141592653589793 rad - pos: -141.32243,-36.11858 + pos: -111.967606,23.855318 parent: 1 - - uid: 36385 +- proto: ClothingHeadHatGreysoftFlipped + entities: + - uid: 31241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.55533,-53.4694 + pos: -79.589195,-75.39599 parent: 1 - - uid: 36782 +- proto: ClothingHeadHatHoodBioGeneral + entities: + - uid: 36014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.75459,-32.87646 + pos: -120.774155,-49.767227 parent: 1 - - uid: 42172 +- proto: ClothingHeadHatPaper + entities: + - uid: 31031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,10.5 + pos: 22.362457,-24.480032 parent: 1 -- proto: ChairWood +- proto: ClothingHeadHatPumpkin entities: - - uid: 586 + - uid: 42059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,9.5 + pos: 15.478373,-49.44592 parent: 1 - - uid: 588 +- proto: ClothingHeadHatPwig + entities: + - uid: 7916 components: - type: Transform - pos: -33.5,11.5 + pos: -84.55198,19.537794 parent: 1 - - uid: 1444 +- proto: ClothingHeadHatRichard + entities: + - uid: 33836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,7.5 + pos: -61.944668,-76.52036 parent: 1 - - uid: 1484 +- proto: ClothingHeadHatSecsoftFlipped + entities: + - uid: 9508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,7.5 + pos: -46.444736,14.717475 parent: 1 - - uid: 1485 +- proto: ClothingHeadHatSombrero + entities: + - uid: 30019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,7.5 + pos: -88.640945,-46.56803 parent: 1 - - uid: 1486 +- proto: ClothingHeadHatSquid + entities: + - uid: 30989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,7.5 + pos: -70.95245,-64.29343 parent: 1 - - uid: 1487 +- proto: ClothingHeadHatSurgcapRainbow + entities: + - uid: 3173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,6.5 + pos: -20.956736,-49.431847 parent: 1 - - uid: 1488 +- proto: ClothingHeadHatTophat + entities: + - uid: 8724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,6.5 + pos: -78.492874,-4.21112 parent: 1 - - uid: 1489 +- proto: ClothingHeadHatUshanka + entities: + - uid: 30020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-5.5 + pos: -85.43261,-52.45754 parent: 1 - - uid: 1490 + - uid: 30021 components: - type: Transform - pos: -44.5,-4.5 + pos: -85.43261,-52.467964 parent: 1 - - uid: 1491 + - uid: 30030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-5.5 + pos: -85.43261,-52.467964 parent: 1 - - uid: 1554 +- proto: ClothingHeadHatWelding + entities: + - uid: 1232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-5.5 + rot: 3.141592653589793 rad + pos: 20.524921,-7.4902177 parent: 1 - - uid: 1555 + - uid: 30386 components: - type: Transform - pos: -50.5,-4.5 + pos: -29.511698,-73.36267 parent: 1 - - uid: 1556 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 30875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-5.5 + pos: -52.65829,-79.493286 parent: 1 - - uid: 2622 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 12612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.320562,-54.465137 + pos: -49.97189,-41.412037 parent: 1 - - uid: 4573 +- proto: ClothingHeadHelmetCosmonaut + entities: + - uid: 31274 components: - type: Transform - pos: -113.5,-1.5 + pos: -34.42656,17.627428 parent: 1 - - uid: 4763 +- proto: ClothingHeadTinfoil + entities: + - uid: 13715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-37.5 + pos: -71.41311,-62.23606 parent: 1 - - uid: 4764 + - uid: 13716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-37.5 + pos: -71.31936,-62.45496 parent: 1 - - uid: 4797 +- proto: ClothingMaskBreathMedical + entities: + - uid: 9182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,-35.5 + pos: -82.41791,-33.215263 parent: 1 - - uid: 6935 + - uid: 9183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-33.5 + pos: -82.44916,-29.639864 parent: 1 - - uid: 6949 + - uid: 32318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-33.5 + pos: -0.60396147,-38.895275 parent: 1 - - uid: 6950 +- proto: ClothingMaskGasSecurity + entities: + - uid: 9510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-32.5 + pos: -79.53126,24.459787 parent: 1 - - uid: 6951 + - uid: 12111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 + pos: -49.128025,-41.51177 parent: 1 - - uid: 6998 +- proto: ClothingMaskGasSwat + entities: + - uid: 5831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-50.5 + pos: -63.3683,-46.26076 parent: 1 - - uid: 7001 + - uid: 6161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-50.5 + pos: -63.670383,-46.44839 parent: 1 - - uid: 7002 + - uid: 6178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-49.5 + pos: -63.347466,-46.437965 parent: 1 - - uid: 7009 + - uid: 7531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 + pos: -63.659966,-46.26076 parent: 1 - - uid: 7328 +- proto: ClothingMaskMuzzle + entities: + - uid: 13689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,26.5 + rot: -1.5707963267948966 rad + pos: -70.163795,-72.34786 parent: 1 - - uid: 7334 + - uid: 28500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,26.5 - parent: 1 - - uid: 7340 + parent: 28497 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,26.5 + rot: -1.5707963267948966 rad + pos: -0.60575396,-23.492332 parent: 1 - - uid: 8170 + - uid: 28505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-6.5 + rot: -1.5707963267948966 rad + pos: -0.5953373,-23.502756 parent: 1 - - uid: 8171 + - uid: 28506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,-6.5 + pos: -0.5953373,-23.502756 parent: 1 - - uid: 8350 +- proto: ClothingNeckBronzeheart + entities: + - uid: 11745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,2.5 + rot: -1.5707963267948966 rad + pos: -108.611626,-3.0608902 parent: 1 - - uid: 8351 +- proto: ClothingNeckGoldmedal + entities: + - uid: 11744 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,2.5 + pos: -108.42934,-3.0348303 parent: 1 - - uid: 8552 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 30775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-3.5 + rot: -1.5707963267948966 rad + pos: -75.31419,-38.608044 parent: 1 - - uid: 9524 +- proto: ClothingNeckStethoscope + entities: + - uid: 9082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,2.5 + pos: -69.412865,-22.739153 parent: 1 - - uid: 9525 + - uid: 14630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,2.5 + pos: -75.48062,-29.43192 parent: 1 - - uid: 9590 + - uid: 28515 components: - type: Transform - pos: -31.5,-4.5 + pos: -3.452482,-39.384876 parent: 1 - - uid: 9591 +- proto: ClothingOuterApronChef + entities: + - uid: 11021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 1 - - uid: 9592 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasic + entities: + - uid: 12123 + components: + - type: Transform + pos: -46.502846,14.502045 parent: 1 - - uid: 9593 +- proto: ClothingOuterCardborg + entities: + - uid: 7739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-7.5 + rot: -1.5707963267948966 rad + pos: -54.3358,12.347981 parent: 1 - - uid: 9594 +- proto: ClothingOuterCoatBomber + entities: + - uid: 2677 components: + - type: MetaData + name: Poldstadt bomber - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-6.5 + pos: -78.543175,-5.378417 parent: 1 - - uid: 9595 + - uid: 2704 components: + - type: MetaData + name: Poldstadt bomber - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: -78.37651,-5.378417 parent: 1 - - uid: 9879 + - uid: 36810 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-50.5 + pos: 36.49116,-34.484962 parent: 1 - - uid: 9901 +- proto: ClothingOuterCoatGentle + entities: + - uid: 13888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.280945,-7.407986 + pos: 13.487709,-38.343147 parent: 1 - - uid: 11001 +- proto: ClothingOuterCoatHyenhSweater + entities: + - uid: 8719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 + pos: -77.60834,-2.4183486 parent: 1 - - uid: 11002 + - uid: 8720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-20.5 + pos: -77.35834,-2.4183486 parent: 1 - - uid: 12121 + - uid: 13889 components: + - type: MetaData + name: comfy womfy sweater - type: Transform - pos: -115.5,0.5 + pos: 13.508542,-39.41681 parent: 1 - - uid: 12690 +- proto: ClothingOuterFlannelRed + entities: + - uid: 36811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-52.5 + rot: 3.141592653589793 rad + pos: 36.47866,-34.43493 parent: 1 - - uid: 12691 +- proto: ClothingOuterHoodieBlack + entities: + - uid: 30361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-52.5 - parent: 1 - - uid: 12692 + parent: 30360 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterJacketChef + entities: + - uid: 10208 components: - type: Transform - pos: -82.5,-51.5 - parent: 1 - - uid: 13837 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-34.5 - parent: 1 - - uid: 13838 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesJudge + entities: + - uid: 7917 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-34.5 - parent: 1 - - uid: 13839 - components: - - type: Transform - pos: 27.5,-33.5 + pos: -84.33323,19.298044 parent: 1 - - uid: 13840 +- proto: ClothingOuterStraightjacket + entities: + - uid: 670 components: - type: Transform - pos: 28.5,-33.5 + rot: 3.141592653589793 rad + pos: -0.48564434,-23.673174 parent: 1 - - uid: 13841 + - uid: 671 components: - type: Transform - pos: 29.5,-33.5 + rot: 3.141592653589793 rad + pos: -0.48564434,-23.673174 parent: 1 - - uid: 13842 + - uid: 28440 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-35.5 + pos: -0.48564434,-23.673174 parent: 1 - - uid: 13843 + - uid: 28498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 1 - - uid: 13844 + parent: 28497 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitChicken + entities: + - uid: 15775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-35.5 + pos: -62.999752,-75.06127 parent: 1 - - uid: 28491 +- proto: ClothingOuterSuitMonkey + entities: + - uid: 15773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-35.5 + rot: 1.5707963267948966 rad + pos: -63.482315,-72.83854 parent: 1 - - uid: 30779 +- proto: ClothingOuterVestValet + entities: + - uid: 15671 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-40.5 + pos: 16.443476,-33.567307 parent: 1 - - uid: 30780 +- proto: ClothingOuterWinterCoat + entities: + - uid: 11084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-40.5 + pos: -22.494806,-23.383389 parent: 1 - - uid: 31035 +- proto: ClothingOuterWinterMiner + entities: + - uid: 23675 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 70.17924,1.0280015 parent: 1 - - uid: 31036 +- proto: ClothingShoesBootsMag + entities: + - uid: 34199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 + pos: -147.40431,-41.583435 parent: 1 - - uid: 32246 +- proto: ClothingShoesBootsWinterMiner + entities: + - uid: 23676 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.29137,-8.304441 + pos: 69.77299,1.1322408 parent: 1 -- proto: CheapLighter +- proto: ClothingShoesGaloshes entities: - - uid: 14871 + - uid: 2058 components: - type: Transform - parent: 1280 + parent: 30726 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14959 + - uid: 9610 components: - type: Transform - pos: -56.35439,-36.48456 - parent: 1 - - uid: 19294 + parent: 7178 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesSkates + entities: + - uid: 7553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.44761,-46.240086 + pos: 23.402542,19.551105 parent: 1 - - uid: 28740 + - uid: 7554 components: - type: Transform - pos: 6.7841825,-15.290186 + pos: -106.51871,-16.496296 parent: 1 -- proto: chem_master - entities: - - uid: 4752 + - uid: 8010 components: - type: Transform - pos: -62.5,-22.5 + pos: -77.50256,17.485685 parent: 1 - - uid: 9170 + - uid: 8099 components: - type: Transform - pos: 3.5,-35.5 + pos: -129.49478,-2.507442 parent: 1 - - uid: 9902 + - uid: 8808 components: - type: Transform - pos: -62.5,-29.5 + pos: -129.46353,-3.4664419 parent: 1 - - uid: 28516 + - uid: 9176 components: - type: Transform - pos: -30.5,-10.5 + pos: -130.54686,-3.4455938 parent: 1 -- proto: ChemDispenser - entities: - - uid: 4753 + - uid: 9857 components: - type: Transform - pos: -64.5,-22.5 + pos: -130.51561,-2.4240508 parent: 1 - - uid: 4758 + - uid: 9858 components: - type: Transform - pos: -62.5,-30.5 + pos: -37.460007,33.554764 parent: 1 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 28503 + - uid: 10496 components: - type: Transform - pos: -12.4749775,-34.084183 + pos: -43.627148,32.75212 parent: 1 - - type: Tag - tags: - - Bottle - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 12 -- proto: ChemistryHotplate +- proto: ClothingShoesSlippers entities: - - uid: 4793 + - uid: 1173 components: - type: Transform - pos: -64.5,-21.5 - parent: 1 - - uid: 33452 + parent: 246 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9354 components: - type: Transform - pos: -42.5,-54.5 - parent: 1 - - type: ItemPlacer - placedEntities: - - 32234 - - type: PlaceableSurface - isPlaceable: False -- proto: Cigar - entities: - - uid: 12767 + parent: 247 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.77257,39.600395 - parent: 1 - - uid: 13877 + parent: 1273 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.19962,-34.620007 - parent: 1 - - uid: 23848 + parent: 1279 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12315 components: - type: Transform - pos: -6.2346134,-57.280037 - parent: 1 - - uid: 23849 + parent: 1280 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15068 components: - type: Transform - pos: -6.130447,-57.467667 - parent: 1 -- proto: CigarCase - entities: - - uid: 13878 + parent: 1281 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.630285,-22.386694 - parent: 1 -- proto: Cigarette - entities: - - uid: 17689 + parent: 1282 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18457 components: - type: Transform - pos: -87.698425,-17.302172 - parent: 1 - - uid: 19293 + parent: 1283 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.51011,-46.27136 - parent: 1 - - uid: 28706 + parent: 1284 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6365042,11.671018 - parent: 1 - - uid: 28707 + parent: 1285 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18464 components: - type: Transform - pos: -6.280163,11.493812 - parent: 1 - - uid: 28708 + parent: 1286 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22458 components: - type: Transform - pos: -10.314293,11.639746 - parent: 1 - - uid: 28710 + parent: 1287 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtChef + entities: + - uid: 10199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.72808,11.629322 - parent: 1 - - uid: 28711 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10205 components: - type: Transform - pos: -10.241377,11.796104 - parent: 1 - - uid: 28712 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 2217 components: - type: Transform - pos: -6.248913,11.525083 + rot: 1.5707963267948966 rad + pos: 15.402024,9.118234 parent: 1 - - uid: 28739 +- proto: ClothingUniformJumpsuitChef + entities: + - uid: 15662 components: - type: Transform - pos: 6.7320995,-15.165098 - parent: 1 - - uid: 29442 + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.212751,-49.56133 - parent: 1 -- proto: CigaretteBanana + parent: 10197 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitEngineeringHazard entities: - - uid: 36443 + - uid: 9533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.72137,-74.028725 + rot: -1.5707963267948966 rad + pos: -113.6485,-15.4859915 parent: 1 -- proto: CigaretteSpent +- proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 1928 + - uid: 2212 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.206043,-7.7694683 + pos: 18.568691,9.608157 parent: 1 - - uid: 10168 + - uid: 2213 components: - type: Transform - pos: 55.693542,-8.144729 + rot: -1.5707963267948966 rad + pos: 18.568691,9.503919 parent: 1 - - uid: 12208 +- proto: ClothingUniformJumpsuitTshirtJeans + entities: + - uid: 8731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.34899,-29.641277 + pos: -79.33189,-2.3830614 parent: 1 - - uid: 12209 +- proto: ClothingUniformJumpsuitTshirtJeansPeach + entities: + - uid: 8730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.41149,-29.83933 + pos: -79.62355,-2.3726377 parent: 1 - - uid: 12210 +- proto: Coal1 + entities: + - uid: 32151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.192741,-29.338984 + pos: 69.32183,-0.346103 parent: 1 - - uid: 12211 + - uid: 32152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.515657,-28.275745 + pos: 71.56142,0.070852935 parent: 1 - - uid: 12212 +- proto: ComfyChair + entities: + - uid: 1518 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.234407,-28.192354 + pos: -59.5,-3.5 parent: 1 - - uid: 12213 + - uid: 1519 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.276073,-30.849665 + pos: -59.5,-5.5 parent: 1 - - uid: 12406 + - uid: 1522 components: - type: Transform - pos: 22.067438,-13.596345 + rot: 3.141592653589793 rad + pos: -56.5,-5.5 parent: 1 - - uid: 12407 + - uid: 2614 components: - type: Transform - pos: 22.025772,-13.221086 + pos: 9.5,-49.5 parent: 1 - - uid: 12408 + - uid: 2616 components: - type: Transform - pos: 22.786188,-13.12727 + pos: 15.5,-49.5 parent: 1 - - uid: 12409 + - uid: 2618 components: - type: Transform - pos: 23.098688,-14.075845 + rot: 3.141592653589793 rad + pos: 9.5,-51.5 parent: 1 - - uid: 12410 + - uid: 4458 components: - type: Transform - pos: 24.348688,-12.626922 + rot: -1.5707963267948966 rad + pos: -47.5,-56.5 parent: 1 - - uid: 12411 + - uid: 4460 components: - type: Transform - pos: 22.525772,-13.304477 + rot: 1.5707963267948966 rad + pos: -49.5,-56.5 parent: 1 - - uid: 12412 + - uid: 5060 components: - type: Transform - pos: 24.140354,-14.284324 + pos: -91.5,-4.5 parent: 1 - - uid: 12413 + - uid: 5085 components: - type: Transform - pos: 19.671604,-14.534497 + pos: -90.5,-4.5 parent: 1 - - uid: 12414 + - uid: 6939 components: - type: Transform - pos: 19.327854,-13.679737 + rot: -1.5707963267948966 rad + pos: -21.5,-29.5 parent: 1 - - uid: 12415 + - uid: 6947 components: - type: Transform - pos: 19.817438,-12.731161 + rot: 1.5707963267948966 rad + pos: -28.5,-29.5 parent: 1 - - uid: 13914 + - uid: 7732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.4557724,-42.589233 + pos: -69.5,33.5 parent: 1 - - uid: 13915 + - uid: 7733 + components: + - type: Transform + pos: -68.5,33.5 + parent: 1 + - uid: 7734 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.1120224,-42.79771 + pos: -69.5,30.5 parent: 1 - - uid: 13916 + - uid: 7735 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.0182724,-43.068733 + pos: -68.5,30.5 parent: 1 - - uid: 16288 + - uid: 7975 components: - type: Transform - pos: -90.31819,-36.417404 + rot: 3.141592653589793 rad + pos: -79.5,5.5 parent: 1 - - uid: 19260 + - uid: 7976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.13069,-36.792664 + rot: 3.141592653589793 rad + pos: -78.5,5.5 parent: 1 - - uid: 23681 + - uid: 8335 components: - type: Transform - pos: 68.85632,1.1530888 + rot: -1.5707963267948966 rad + pos: -69.5,5.5 parent: 1 - - uid: 23682 + - uid: 8568 components: - type: Transform - pos: 70.39799,1.4762299 + rot: 1.5707963267948966 rad + pos: -66.5,-3.5 parent: 1 - - uid: 23683 + - uid: 8569 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.24174,2.0182729 + pos: -64.5,-3.5 parent: 1 - - uid: 31265 + - uid: 8793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.8982,16.789347 + rot: 3.141592653589793 rad + pos: -118.5,-2.5 parent: 1 - - uid: 31267 + - uid: 9331 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.8732,17.152098 + pos: -87.5,-16.5 parent: 1 - - uid: 34143 + - uid: 9333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.12159,-36.20486 + rot: 3.141592653589793 rad + pos: -88.5,-17.5 parent: 1 - - uid: 41112 + - uid: 9334 components: - type: Transform - pos: 26.193754,-40.9563 + rot: 3.141592653589793 rad + pos: -90.5,-17.5 parent: 1 - - uid: 41113 + - uid: 9396 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.922922,-41.84233 + pos: -56.5,-25.5 parent: 1 -- proto: CigarGoldCase - entities: - - uid: 42163 + - uid: 9397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.531975,-0.49056005 + rot: 3.141592653589793 rad + pos: -12.5,-31.5 parent: 1 -- proto: CigarSpent - entities: - - uid: 12405 + - uid: 9689 components: - type: Transform - pos: 22.536188,-13.711009 + rot: 3.141592653589793 rad + pos: -90.5,-21.5 parent: 1 -- proto: CigCartonRed - entities: - - uid: 11746 + - uid: 10979 components: - type: Transform - pos: -111.50225,-2.9696808 + rot: 1.5707963267948966 rad + pos: -32.5,-17.5 parent: 1 -- proto: CigPackBlack - entities: - - uid: 11765 + - uid: 10980 components: - type: Transform - pos: -94.07844,-4.498516 + rot: -1.5707963267948966 rad + pos: -30.5,-17.5 parent: 1 - - uid: 28709 + - uid: 11847 components: - type: Transform - pos: 9.267267,11.665396 + rot: 1.5707963267948966 rad + pos: -91.5,-16.5 parent: 1 - - uid: 30365 + - uid: 11874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.667667,-67.367386 + pos: -37.5,-38.5 parent: 1 - - uid: 31263 + - uid: 12131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.385698,17.652447 + pos: -3.5,-13.5 parent: 1 -- proto: CigPackBlue - entities: - - uid: 15092 + - uid: 12132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.257256,25.130632 + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 parent: 1 - - uid: 30380 + - uid: 12802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.647594,-73.685814 + pos: -82.5,41.5 parent: 1 -- proto: CigPackGreen - entities: - - uid: 14743 + - uid: 12807 components: - type: Transform - parent: 1280 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23674 + rot: 3.141592653589793 rad + pos: -81.5,39.5 + parent: 1 + - uid: 12808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.85632,1.4241102 + rot: 3.141592653589793 rad + pos: -82.5,39.5 parent: 1 - - uid: 30774 + - uid: 13077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.63711,-38.75398 + pos: -81.5,41.5 parent: 1 -- proto: CigPackMixed - entities: - - uid: 2056 + - uid: 15647 components: - type: Transform - parent: 13894 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CigPackRed - entities: - - uid: 14958 + rot: 1.5707963267948966 rad + pos: -30.5,9.5 + parent: 1 + - uid: 23783 components: - type: Transform - pos: -56.13564,-36.494984 + rot: 1.5707963267948966 rad + pos: 42.5,-53.5 parent: 1 -- proto: CircuitImprinter - entities: - - uid: 3404 + - uid: 23870 components: - type: Transform - pos: -18.5,-41.5 + pos: -8.5,-58.5 parent: 1 -- proto: CleanerDispenser - entities: - - uid: 1979 + - uid: 23878 components: - type: Transform - pos: 15.5,-11.5 + pos: -10.5,-58.5 parent: 1 - - uid: 23750 + - uid: 29454 components: - type: Transform - pos: 31.5,-47.5 + rot: 3.141592653589793 rad + pos: -56.5,-42.5 parent: 1 - - uid: 33536 + - uid: 42138 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,23.5 + pos: 19.5,-56.5 parent: 1 -- proto: ClosetBombFilled +- proto: ComputerAlert entities: - - uid: 12605 + - uid: 5532 components: - type: Transform - pos: -68.5,-46.5 + pos: -103.5,11.5 parent: 1 - - uid: 12606 + - uid: 8223 components: - type: Transform - pos: -68.5,-48.5 + pos: -101.5,7.5 parent: 1 - - uid: 16094 + - uid: 9766 components: - type: Transform - pos: -47.5,-62.5 + rot: -1.5707963267948966 rad + pos: -104.5,-32.5 parent: 1 -- proto: ClosetChef - entities: - - uid: 10197 + - uid: 17129 components: - type: Transform - pos: -23.5,7.5 + pos: -100.5,-9.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10199 - - 10205 - - 10208 - - 10579 - - 11021 - - 11991 - - 12117 - - 15296 - - 15662 - - 16194 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetChefFilled +- proto: ComputerAnalysisConsole entities: - - uid: 584 + - uid: 12221 components: - type: Transform - pos: -32.5,14.5 + rot: -1.5707963267948966 rad + pos: -38.5,-57.5 parent: 1 -- proto: ClosetEmergencyFilledRandom +- proto: ComputerBroken entities: - - uid: 516 + - uid: 12430 components: - type: Transform - pos: 29.5,-18.5 + pos: 21.5,-14.5 parent: 1 - - uid: 1061 + - uid: 13671 components: - type: Transform - pos: 29.5,-17.5 + pos: -72.5,-66.5 parent: 1 - - uid: 1125 + - uid: 13724 components: - type: Transform - pos: 13.5,9.5 + rot: -1.5707963267948966 rad + pos: -62.5,-67.5 parent: 1 - - uid: 3380 + - uid: 14485 components: - type: Transform - pos: -15.5,-53.5 + pos: -109.5,2.5 parent: 1 - - uid: 5782 + - uid: 31011 components: - type: Transform - pos: -100.5,42.5 + rot: -1.5707963267948966 rad + pos: 9.5,-43.5 parent: 1 - - uid: 5783 + - uid: 36388 components: - type: Transform - pos: -100.5,41.5 + rot: -1.5707963267948966 rad + pos: -132.5,-53.5 parent: 1 - - uid: 5895 + - uid: 36389 components: - type: Transform - pos: -43.5,-77.5 + rot: 3.141592653589793 rad + pos: -135.5,-57.5 parent: 1 - - uid: 5990 +- proto: ComputerCargoBounty + entities: + - uid: 2100 components: - type: Transform - pos: -47.5,-77.5 + pos: -27.5,41.5 parent: 1 - - uid: 7497 +- proto: ComputerCargoOrders + entities: + - uid: 5622 components: - type: Transform - pos: -35.5,9.5 + pos: -29.5,41.5 parent: 1 - - uid: 7787 + - uid: 6105 components: - type: Transform - pos: -78.5,38.5 + rot: 1.5707963267948966 rad + pos: -38.5,28.5 parent: 1 - - uid: 7788 + - uid: 11587 components: - type: Transform - pos: -78.5,35.5 + rot: 3.141592653589793 rad + pos: -16.5,39.5 parent: 1 - - uid: 8221 +- proto: ComputerCloningConsole + entities: + - uid: 204 components: - type: Transform - pos: -14.5,12.5 + pos: -78.5,-18.5 parent: 1 - - uid: 12265 + - type: DeviceLinkSource + linkedPorts: + 4549: + - MedicalScannerSender: MedicalScannerReceiver + 4571: + - CloningPodSender: CloningPodReceiver +- proto: ComputerComms + entities: + - uid: 5126 components: - type: Transform - pos: -36.5,-55.5 + rot: 3.141592653589793 rad + pos: -100.5,0.5 parent: 1 - - uid: 12717 + - uid: 5533 components: - type: Transform - pos: -100.5,43.5 + pos: -102.5,11.5 parent: 1 - - uid: 13165 +- proto: ComputerCrewMonitoring + entities: + - uid: 786 components: - type: Transform - pos: -7.5,43.5 + pos: 0.5,-20.5 parent: 1 - - uid: 28691 + - uid: 4800 components: - type: Transform - pos: 5.5,-25.5 + rot: 1.5707963267948966 rad + pos: -69.5,-21.5 parent: 1 - - uid: 28692 + - uid: 8219 components: - type: Transform - pos: 5.5,-24.5 + rot: 3.141592653589793 rad + pos: -100.5,4.5 parent: 1 - - uid: 28800 + - uid: 9680 components: - type: Transform - pos: 22.5,-58.5 + rot: -1.5707963267948966 rad + pos: -81.5,-17.5 parent: 1 - - uid: 28802 + - uid: 33507 components: - type: Transform - pos: 24.5,-58.5 + pos: -66.5,23.5 parent: 1 - - uid: 30448 + - uid: 42170 components: - type: Transform - pos: -85.5,23.5 + rot: 3.141592653589793 rad + pos: -101.5,9.5 parent: 1 - - uid: 30449 +- proto: ComputerCriminalRecords + entities: + - uid: 2067 components: - type: Transform - pos: -90.5,10.5 + rot: 1.5707963267948966 rad + pos: -60.5,-42.5 parent: 1 - - uid: 30584 + - uid: 2925 components: - type: Transform - pos: -124.5,22.5 + rot: -1.5707963267948966 rad + pos: -5.5,-50.5 parent: 1 - - uid: 30669 + - uid: 3561 components: - type: Transform - pos: -95.5,-20.5 + rot: -1.5707963267948966 rad + pos: -43.5,-21.5 parent: 1 - - uid: 30671 + - uid: 7145 components: - type: Transform - pos: -57.5,-21.5 + rot: 1.5707963267948966 rad + pos: -49.5,-30.5 parent: 1 - - uid: 30674 + - uid: 7756 components: - type: Transform - pos: -36.5,-36.5 + pos: -78.5,28.5 parent: 1 - - uid: 30679 + - uid: 9488 components: - type: Transform - pos: 10.5,-28.5 + rot: -1.5707963267948966 rad + pos: -44.5,17.5 parent: 1 - - uid: 30694 + - uid: 12080 components: - type: Transform - pos: -19.5,-23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 parent: 1 - - uid: 30696 + - uid: 12280 components: - type: Transform - pos: -37.5,-23.5 + rot: -1.5707963267948966 rad + pos: -52.5,-18.5 parent: 1 - - uid: 30700 + - uid: 28741 components: - type: Transform - pos: -18.5,27.5 + pos: -8.5,-9.5 parent: 1 - - uid: 30799 +- proto: ComputerFrame + entities: + - uid: 30358 components: - type: Transform - pos: -60.5,-67.5 + rot: 3.141592653589793 rad + pos: -36.5,-67.5 parent: 1 - - uid: 30970 + - uid: 36772 components: - type: Transform - pos: -20.5,-68.5 + rot: 3.141592653589793 rad + pos: 37.5,-34.5 parent: 1 - - uid: 31047 +- proto: ComputerId + entities: + - uid: 3673 components: - type: Transform - pos: -46.5,12.5 + rot: 3.141592653589793 rad + pos: -37.5,-44.5 parent: 1 - - uid: 34243 + - uid: 5454 components: - type: Transform - pos: -145.5,-35.5 + pos: -101.5,11.5 parent: 1 - - uid: 35685 + - uid: 7574 components: - type: Transform - pos: -107.5,-88.5 + rot: 3.141592653589793 rad + pos: -66.5,21.5 parent: 1 - - uid: 35994 + - uid: 8222 components: - type: Transform - pos: -133.5,-23.5 + rot: 3.141592653589793 rad + pos: -99.5,4.5 parent: 1 - - uid: 36755 + - uid: 9768 components: - type: Transform - pos: 30.5,-46.5 + pos: -107.5,-30.5 parent: 1 - - uid: 37954 + - uid: 11586 components: - type: Transform - pos: 45.5,-42.5 + rot: 3.141592653589793 rad + pos: -18.5,39.5 parent: 1 - - uid: 37955 + - uid: 18982 components: - type: Transform - pos: 47.5,-42.5 + pos: -83.5,-17.5 parent: 1 - - uid: 41903 + - uid: 18983 components: - type: Transform - pos: 21.5,6.5 + pos: -54.5,-17.5 parent: 1 -- proto: ClosetFireFilled +- proto: ComputerMassMedia entities: - - uid: 1126 - components: - - type: Transform - pos: 13.5,8.5 - parent: 1 - - uid: 1858 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 1 - - uid: 5485 - components: - - type: Transform - pos: -7.5,40.5 - parent: 1 - - uid: 7521 + - uid: 14502 components: - type: Transform - pos: -35.5,11.5 + rot: 1.5707963267948966 rad + pos: -77.5,12.5 parent: 1 - - uid: 7789 +- proto: ComputerMedicalRecords + entities: + - uid: 4799 components: - type: Transform - pos: -76.5,38.5 + rot: -1.5707963267948966 rad + pos: -66.5,-21.5 parent: 1 - - uid: 7790 + - uid: 9679 components: - type: Transform - pos: -76.5,35.5 + rot: -1.5707963267948966 rad + pos: -81.5,-18.5 parent: 1 - - uid: 12224 + - uid: 31016 components: - type: Transform - pos: -36.5,-54.5 + pos: -7.5,-34.5 parent: 1 - - uid: 12716 +- proto: ComputerPowerMonitoring + entities: + - uid: 7464 components: - type: Transform - pos: -100.5,40.5 + rot: 3.141592653589793 rad + pos: -25.5,19.5 parent: 1 - - uid: 16093 + - uid: 8228 components: - type: Transform - pos: -47.5,-63.5 + rot: 3.141592653589793 rad + pos: -98.5,4.5 parent: 1 - - uid: 28617 + - uid: 8991 components: - type: Transform - pos: -130.5,-23.5 + rot: 1.5707963267948966 rad + pos: -115.5,-20.5 parent: 1 - - uid: 28690 + - uid: 9767 components: - type: Transform - pos: 5.5,-26.5 + rot: -1.5707963267948966 rad + pos: -104.5,-33.5 parent: 1 - - uid: 28801 + - uid: 10890 components: - type: Transform - pos: 21.5,-58.5 + rot: 1.5707963267948966 rad + pos: 59.5,-49.5 parent: 1 - - uid: 28803 + - uid: 16180 components: - type: Transform - pos: 25.5,-58.5 + pos: -101.5,-9.5 parent: 1 - - uid: 30450 + - uid: 16254 components: - type: Transform - pos: -90.5,11.5 + pos: -106.5,12.5 parent: 1 - - uid: 30451 + - uid: 34245 components: - type: Transform - pos: -86.5,23.5 + rot: 3.141592653589793 rad + pos: -141.5,-39.5 parent: 1 - - uid: 30585 + - uid: 35652 components: - type: Transform - pos: -124.5,20.5 + rot: 3.141592653589793 rad + pos: -114.5,-89.5 parent: 1 - - uid: 30670 +- proto: ComputerRadar + entities: + - uid: 8226 components: - type: Transform - pos: -95.5,-21.5 + pos: -99.5,7.5 parent: 1 - - uid: 30672 + - uid: 17137 components: - type: Transform - pos: -57.5,-20.5 + pos: -2.5,51.5 parent: 1 - - uid: 30675 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6890 components: - type: Transform - pos: -37.5,-36.5 + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 parent: 1 - - uid: 30680 + - uid: 11859 components: - type: Transform - pos: 11.5,-28.5 + rot: -1.5707963267948966 rad + pos: -35.5,-42.5 parent: 1 - - uid: 30695 +- proto: ComputerShuttleCargo + entities: + - uid: 5446 components: - type: Transform - pos: -20.5,-23.5 + pos: -28.5,41.5 parent: 1 - - uid: 30701 +- proto: ComputerShuttleSalvage + entities: + - uid: 13170 components: - type: Transform - pos: -18.5,26.5 + pos: -3.5,51.5 parent: 1 - - uid: 30800 +- proto: ComputerSolarControl + entities: + - uid: 16186 components: - type: Transform - pos: -60.5,-66.5 + pos: -99.5,-9.5 parent: 1 - - uid: 30971 + - uid: 34220 components: - type: Transform - pos: -19.5,-68.5 + rot: 3.141592653589793 rad + pos: -151.5,-39.5 parent: 1 - - uid: 31045 + - uid: 35651 components: - type: Transform - pos: -47.5,12.5 + rot: 3.141592653589793 rad + pos: -115.5,-89.5 parent: 1 - - uid: 33889 +- proto: ComputerStationRecords + entities: + - uid: 5479 components: - type: Transform - pos: -15.5,-52.5 + rot: 3.141592653589793 rad + pos: -103.5,9.5 parent: 1 - - uid: 36756 + - uid: 7088 components: - type: Transform - pos: 31.5,-46.5 + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 parent: 1 - - uid: 37956 + - uid: 8225 components: - type: Transform - pos: 46.5,-42.5 + pos: -100.5,7.5 parent: 1 - - uid: 41904 + - uid: 29450 components: - type: Transform - pos: 20.5,6.5 + rot: 1.5707963267948966 rad + pos: -60.5,-41.5 parent: 1 - - uid: 42165 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 785 components: - type: Transform - pos: -14.5,11.5 + pos: -1.5,-20.5 parent: 1 -- proto: ClosetJanitorBombFilled - entities: - - uid: 2039 + - uid: 1631 components: - type: Transform - pos: -25.5,27.5 + rot: -1.5707963267948966 rad + pos: -52.5,-17.5 parent: 1 -- proto: ClosetJanitorFilled - entities: - - uid: 7178 + - uid: 2926 components: - type: Transform - pos: -25.5,28.5 + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9610 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 12038 + - uid: 3562 components: - type: Transform - pos: 17.5,-12.5 + rot: -1.5707963267948966 rad + pos: -43.5,-20.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15372 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13894 + - uid: 7146 components: - type: Transform - pos: -7.5,-44.5 + rot: -1.5707963267948966 rad + pos: -46.5,-30.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2056 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 13895 + - uid: 7757 components: - type: Transform - pos: -8.5,-44.5 + pos: -79.5,28.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30726 + - uid: 8224 components: - type: Transform - pos: -90.5,-38.5 + rot: 3.141592653589793 rad + pos: -101.5,4.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2058 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetL3Filled - entities: - - uid: 9303 + - uid: 9489 components: - type: Transform - pos: -74.5,-65.5 + rot: 1.5707963267948966 rad + pos: -46.5,17.5 parent: 1 - - uid: 13670 + - uid: 12116 components: - type: Transform - pos: -73.5,-65.5 + rot: 1.5707963267948966 rad + pos: 13.5,-23.5 parent: 1 - - uid: 36691 + - uid: 29449 components: - type: Transform - pos: -107.5,-81.5 + rot: 1.5707963267948966 rad + pos: -60.5,-40.5 parent: 1 - - uid: 36692 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 8013 components: - type: Transform - pos: -108.5,-81.5 + rot: 1.5707963267948966 rad + pos: -80.5,13.5 parent: 1 -- proto: ClosetL3JanitorFilled +- proto: ComputerTechnologyDiskTerminal entities: - - uid: 7174 + - uid: 12171 components: - type: Transform - pos: -22.5,31.5 + pos: -23.5,-39.5 parent: 1 - - uid: 7175 +- proto: ComputerTelevision + entities: + - uid: 1521 components: - type: Transform - pos: -21.5,31.5 + pos: -57.5,-5.5 parent: 1 - - uid: 30728 + - uid: 8334 components: - type: Transform - pos: -90.5,-40.5 + pos: -70.5,5.5 parent: 1 -- proto: ClosetL3ScienceFilled - entities: - - uid: 6995 + - uid: 8570 components: - type: Transform - pos: -31.5,-50.5 + pos: -65.5,-3.5 parent: 1 - - uid: 9897 + - uid: 9393 components: - type: Transform - pos: -31.5,-51.5 + pos: -57.5,-25.5 parent: 1 -- proto: ClosetL3SecurityFilled - entities: - - uid: 4038 + - uid: 9543 components: - type: Transform - pos: -50.5,-47.5 + pos: -99.5,-27.5 parent: 1 - - uid: 4039 + - uid: 11155 components: - type: Transform - pos: -50.5,-48.5 + pos: -4.5,3.5 parent: 1 - - uid: 4040 + - uid: 11156 components: - type: Transform - pos: -50.5,-49.5 + pos: 9.5,2.5 parent: 1 -- proto: ClosetL3VirologyFilled - entities: - - uid: 4912 + - uid: 11157 components: - type: Transform - pos: -87.5,-23.5 + pos: 2.5,2.5 parent: 1 - - uid: 4913 + - uid: 11169 components: - type: Transform - pos: -88.5,-23.5 + pos: -9.5,3.5 parent: 1 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 6647 + - uid: 15648 components: - type: Transform - pos: -14.5,24.5 + pos: -29.5,9.5 parent: 1 - - uid: 6649 + - uid: 23777 components: - type: Transform - pos: -14.5,23.5 + pos: 43.5,-53.5 parent: 1 - - uid: 8177 + - uid: 33988 components: - type: Transform - pos: -51.5,26.5 + pos: -98.5,-67.5 parent: 1 - - uid: 8178 +- proto: ContainmentFieldGenerator + entities: + - uid: 15871 components: - type: Transform - pos: -47.5,26.5 + pos: 73.5,-43.5 parent: 1 - - uid: 8179 + - uid: 15882 components: - type: Transform - pos: -43.5,26.5 + pos: 81.5,-43.5 parent: 1 - - uid: 11533 + - uid: 15884 components: - type: Transform - pos: -41.5,34.5 + pos: 81.5,-51.5 parent: 1 - - uid: 16126 + - uid: 15885 components: - type: Transform - pos: -49.5,-73.5 + pos: 73.5,-51.5 parent: 1 - - uid: 16127 + - uid: 15886 components: - type: Transform - pos: -48.5,-73.5 + pos: 49.5,-45.5 parent: 1 - - uid: 30360 + - uid: 15887 components: - type: Transform - pos: -37.5,-67.5 + pos: 49.5,-44.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30361 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 30458 + - uid: 15888 components: - type: Transform - pos: -97.5,16.5 + pos: 50.5,-45.5 parent: 1 - - uid: 30459 + - uid: 15889 components: - type: Transform - pos: -100.5,14.5 + pos: 50.5,-44.5 parent: 1 - - uid: 30682 +- proto: ConveyorBelt + entities: + - uid: 1171 components: - type: Transform - pos: -1.5,-41.5 + rot: 1.5707963267948966 rad + pos: 11.5,36.5 parent: 1 - - uid: 30761 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1217 components: - type: Transform - pos: -58.5,-27.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 1 - - uid: 30762 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1878 components: - type: Transform - pos: -71.5,-37.5 + rot: -1.5707963267948966 rad + pos: 25.5,-3.5 parent: 1 - - uid: 30936 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1879 components: - type: Transform - pos: -42.5,-52.5 + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 parent: 1 - - uid: 30937 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1880 components: - type: Transform - pos: -43.5,-52.5 + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 parent: 1 - - uid: 34588 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1936 components: - type: Transform - pos: -116.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,36.5 parent: 1 - - uid: 36390 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1937 components: - type: Transform - pos: -134.5,-57.5 + rot: 1.5707963267948966 rad + pos: 12.5,36.5 parent: 1 - - uid: 42044 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 1938 components: - type: Transform - pos: -82.5,-40.5 + rot: 1.5707963267948966 rad + pos: 24.5,1.5 parent: 1 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 4677 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1939 components: - type: Transform - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: 23.5,1.5 parent: 1 - - uid: 6787 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1940 components: - type: Transform - pos: -32.5,-52.5 + rot: 1.5707963267948966 rad + pos: 22.5,1.5 parent: 1 - - uid: 9196 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1941 components: - type: Transform - pos: 20.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,1.5 parent: 1 - - uid: 9880 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1942 components: - type: Transform - pos: -31.5,-52.5 + rot: 1.5707963267948966 rad + pos: 20.5,1.5 parent: 1 - - uid: 10891 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1945 components: - type: Transform - pos: 55.5,-50.5 + rot: 3.141592653589793 rad + pos: 36.5,4.5 parent: 1 - - uid: 10892 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1946 components: - type: Transform - pos: 55.5,-51.5 + rot: 1.5707963267948966 rad + pos: 25.5,1.5 parent: 1 - - uid: 10893 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1947 components: - type: Transform - pos: 58.5,-51.5 + rot: 1.5707963267948966 rad + pos: 26.5,1.5 parent: 1 - - uid: 10894 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1948 components: - type: Transform - pos: 58.5,-50.5 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 1 - - uid: 30801 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1949 components: - type: Transform - pos: -55.5,-76.5 + rot: 1.5707963267948966 rad + pos: 28.5,1.5 parent: 1 - - uid: 36690 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1950 components: - type: Transform - pos: -79.5,-59.5 + rot: 1.5707963267948966 rad + pos: 29.5,1.5 parent: 1 -- proto: ClosetSteelBase - entities: - - uid: 13608 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1951 components: - type: Transform - pos: -72.5,-72.5 + rot: 1.5707963267948966 rad + pos: 30.5,1.5 parent: 1 - - uid: 13609 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1952 components: - type: Transform - pos: -69.5,-72.5 + rot: 1.5707963267948966 rad + pos: 31.5,1.5 parent: 1 - - uid: 13610 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1960 components: - type: Transform - pos: -66.5,-72.5 + rot: 1.5707963267948966 rad + pos: 32.5,1.5 parent: 1 - - uid: 13785 + - type: DeviceLinkSink + links: + - 32776 + - uid: 1987 components: - type: Transform - pos: 21.5,-28.5 + rot: 3.141592653589793 rad + pos: 36.5,6.5 parent: 1 - - uid: 13786 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2162 components: - type: Transform - pos: 22.5,-28.5 + rot: 3.141592653589793 rad + pos: 36.5,7.5 parent: 1 - - uid: 13787 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2163 components: - type: Transform - pos: 23.5,-28.5 + rot: 3.141592653589793 rad + pos: 36.5,8.5 parent: 1 - - uid: 28497 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2180 components: - type: Transform - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 33.5,1.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 28501 - - 28498 - - 28499 - - 28500 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 30777 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2181 components: - type: Transform - pos: -77.5,-21.5 + rot: 1.5707963267948966 rad + pos: 34.5,1.5 parent: 1 - - uid: 42142 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2182 components: - type: Transform - pos: -55.5,40.5 + rot: 1.5707963267948966 rad + pos: 35.5,1.5 parent: 1 -- proto: ClosetToolFilled - entities: - - uid: 5436 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2183 components: - type: Transform - pos: -41.5,35.5 + rot: 3.141592653589793 rad + pos: 36.5,1.5 parent: 1 - - uid: 11642 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2184 components: - type: Transform - pos: -1.5,35.5 + rot: 3.141592653589793 rad + pos: 36.5,2.5 parent: 1 - - uid: 13197 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2186 components: - type: Transform - pos: -104.5,-10.5 + rot: 1.5707963267948966 rad + pos: 13.5,36.5 parent: 1 - - uid: 16095 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2187 components: - type: Transform - pos: -43.5,-70.5 + rot: 1.5707963267948966 rad + pos: 23.5,36.5 parent: 1 - - uid: 30461 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2188 components: - type: Transform - pos: -102.5,20.5 + rot: 1.5707963267948966 rad + pos: 19.5,36.5 parent: 1 - - uid: 34242 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2189 components: - type: Transform - pos: -144.5,-35.5 + rot: 1.5707963267948966 rad + pos: 16.5,36.5 parent: 1 - - uid: 36727 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2190 components: - type: Transform - pos: -15.5,-66.5 + rot: 1.5707963267948966 rad + pos: 15.5,36.5 parent: 1 -- proto: ClosetWall - entities: - - uid: 4686 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2191 components: - type: Transform - pos: -79.5,-38.5 + rot: 1.5707963267948966 rad + pos: 18.5,36.5 parent: 1 - - uid: 5874 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2192 components: - type: Transform - pos: -112.5,-23.5 + rot: 1.5707963267948966 rad + pos: 14.5,36.5 parent: 1 - - 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: - - 5875 - - 5876 - - uid: 12443 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2203 components: - type: Transform - pos: -60.5,-9.5 + rot: 1.5707963267948966 rad + pos: 17.5,36.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12575 - - uid: 12583 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2219 components: - type: Transform - pos: -56.5,-9.5 + rot: 3.141592653589793 rad + pos: 36.5,14.5 parent: 1 - - uid: 12584 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2220 components: - type: Transform - pos: -53.5,-9.5 + rot: -1.5707963267948966 rad + pos: 15.5,27.5 parent: 1 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 9164 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2221 components: - type: Transform - pos: -113.5,-23.5 + rot: -1.5707963267948966 rad + pos: 16.5,27.5 parent: 1 - - uid: 9900 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2226 components: - type: Transform - pos: -0.5,-41.5 + rot: 3.141592653589793 rad + pos: 36.5,10.5 parent: 1 - - uid: 30586 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2227 components: - type: Transform - pos: -97.5,-5.5 + rot: 3.141592653589793 rad + pos: 36.5,9.5 parent: 1 - - uid: 30706 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2229 components: - type: Transform - pos: 19.5,15.5 + rot: 3.141592653589793 rad + pos: 36.5,15.5 parent: 1 - - uid: 31037 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2231 components: - type: Transform - pos: -53.5,-6.5 + rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 1 - - uid: 31039 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2233 components: - type: Transform - pos: -70.5,11.5 + rot: -1.5707963267948966 rad + pos: 17.5,27.5 parent: 1 - - uid: 36650 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2235 components: - type: Transform - pos: -94.5,-81.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 1 - - uid: 36651 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2244 components: - type: Transform - pos: -95.5,-81.5 + rot: 3.141592653589793 rad + pos: 36.5,19.5 parent: 1 - - uid: 40042 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2245 components: - type: Transform - pos: 38.5,-38.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 1 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 3210 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2246 components: - type: Transform - pos: -110.5,-23.5 + rot: 3.141592653589793 rad + pos: 36.5,13.5 parent: 1 - - uid: 15896 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 + rot: 3.141592653589793 rad + pos: 36.5,12.5 parent: 1 - - uid: 30587 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2251 components: - type: Transform - pos: -98.5,-5.5 + rot: 3.141592653589793 rad + pos: 36.5,23.5 parent: 1 - - uid: 30707 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2252 components: - type: Transform - pos: 18.5,15.5 + rot: 3.141592653589793 rad + pos: 36.5,24.5 parent: 1 - - uid: 31038 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2254 components: - type: Transform - pos: -54.5,-6.5 + rot: 3.141592653589793 rad + pos: 36.5,25.5 parent: 1 - - uid: 31040 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2255 components: - type: Transform - pos: -69.5,11.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 1 -- proto: ClosetWallGrey - entities: - - uid: 23787 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2256 components: - type: Transform - pos: 42.5,-51.5 + rot: -1.5707963267948966 rad + pos: 33.5,27.5 parent: 1 - - 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: - - 23788 - - uid: 30588 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2257 components: - type: Transform - pos: -100.5,-5.5 + rot: -1.5707963267948966 rad + pos: 26.5,27.5 parent: 1 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 23786 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2258 components: - type: Transform - pos: 33.5,-51.5 + rot: -1.5707963267948966 rad + pos: 23.5,27.5 parent: 1 - - uid: 23789 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2259 components: - type: Transform - pos: 33.5,-54.5 + rot: 1.5707963267948966 rad + pos: 20.5,36.5 parent: 1 - - uid: 30589 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2260 components: - type: Transform - pos: -99.5,-5.5 + rot: 1.5707963267948966 rad + pos: 21.5,36.5 parent: 1 - - uid: 31058 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2261 components: - type: Transform - pos: -19.5,-20.5 + rot: 1.5707963267948966 rad + pos: 25.5,36.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 31059 - - uid: 31262 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2262 components: - type: Transform - pos: -32.5,18.5 + rot: 1.5707963267948966 rad + pos: 30.5,36.5 parent: 1 - - uid: 33513 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2263 components: - type: Transform - pos: -64.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,36.5 parent: 1 -- proto: ClosetWallMixed - entities: - - uid: 23790 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2264 components: - type: Transform - pos: 42.5,-54.5 + rot: 1.5707963267948966 rad + pos: 38.5,36.5 parent: 1 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 32316 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2266 components: - type: Transform - pos: -0.54146147,-37.24413 + rot: 1.5707963267948966 rad + pos: 41.5,36.5 parent: 1 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 9509 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2268 components: - type: Transform - pos: -46.507236,14.561116 + pos: 42.5,33.5 parent: 1 -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 28701 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2269 components: - type: Transform - pos: 5.019813,-9.451855 + rot: 1.5707963267948966 rad + pos: 26.5,36.5 parent: 1 -- proto: ClothingBeltStorageWaistbag - entities: - - uid: 9535 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2270 components: - type: Transform - pos: -39.561928,-28.521523 + rot: 1.5707963267948966 rad + pos: 27.5,36.5 parent: 1 -- proto: ClothingBeltUtility - entities: - - uid: 31452 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2271 components: - type: Transform - pos: -126.58328,0.6405842 + rot: 1.5707963267948966 rad + pos: 29.5,36.5 parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 7075 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2272 components: - type: Transform - pos: -38.993332,-61.447575 + rot: 1.5707963267948966 rad + pos: 28.5,36.5 parent: 1 - - uid: 34294 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2273 components: - type: Transform - pos: -151.3718,-35.349403 + rot: 1.5707963267948966 rad + pos: 34.5,36.5 parent: 1 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 5875 - components: - - type: Transform - parent: 5874 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5876 - components: - - type: Transform - parent: 5874 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesHudSecurity - entities: - - uid: 9511 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2274 components: - type: Transform - pos: -79.48438,24.756868 + rot: 1.5707963267948966 rad + pos: 35.5,36.5 parent: 1 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 13891 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2275 components: - type: Transform - pos: 26.60576,-23.47721 + rot: 1.5707963267948966 rad + pos: 37.5,36.5 parent: 1 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 13835 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2276 components: - type: Transform - pos: 26.38701,-23.268732 + rot: 1.5707963267948966 rad + pos: 36.5,36.5 parent: 1 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 30364 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2277 components: - type: Transform - pos: -34.584335,-67.33611 + pos: 42.5,36.5 parent: 1 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 32105 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2278 components: - type: Transform - pos: -22.912685,13.690686 + pos: 42.5,35.5 parent: 1 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 7563 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2279 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.272575,25.568678 + pos: 19.5,27.5 parent: 1 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 7193 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.972075,33.502377 + pos: 42.5,34.5 parent: 1 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 11026 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.577953,-11.3083105 + rot: -1.5707963267948966 rad + pos: 24.5,27.5 parent: 1 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 4918 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.29906,-27.40716 + pos: 42.5,32.5 parent: 1 -- proto: ClothingHeadBandGold - entities: - - uid: 30956 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2309 components: - type: Transform - pos: -24.868048,-74.35443 + pos: 42.5,31.5 parent: 1 -- proto: ClothingHeadBandSkull - entities: - - uid: 30359 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2311 components: - type: Transform - pos: -34.542667,-67.42993 + pos: 42.5,30.5 parent: 1 -- proto: ClothingHeadCourierFlipped - entities: - - uid: 10928 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2324 components: - type: Transform - pos: -47.535988,35.657867 + pos: 42.5,29.5 parent: 1 -- proto: ClothingHeadFishCap - entities: - - uid: 31432 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2344 components: - type: Transform - pos: -125.54162,-3.3413477 + rot: -1.5707963267948966 rad + pos: 25.5,27.5 parent: 1 -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 15156 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2345 components: - type: Transform - pos: -68.15464,-62.073658 + pos: 42.5,28.5 parent: 1 -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 15772 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.544815,-77.3453 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 1 -- proto: ClothingHeadHatBeaverHat - entities: - - uid: 8723 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2347 components: - type: Transform - pos: -78.440796,-4.3674784 + rot: -1.5707963267948966 rad + pos: 35.5,27.5 parent: 1 -- proto: ClothingHeadHatBeretEngineering - entities: - - uid: 20352 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2348 components: - type: Transform - pos: -90.24007,-36.182865 + pos: 42.5,27.5 parent: 1 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 17701 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2349 components: - type: Transform - pos: -91.70619,-17.141628 + pos: 42.5,26.5 parent: 1 -- proto: ClothingHeadHatCardborg - entities: - - uid: 7738 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2351 components: - type: Transform - pos: -54.4608,13.640547 + pos: 42.5,25.5 parent: 1 -- proto: ClothingHeadHatChef - entities: - - uid: 12117 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2352 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15296 + pos: 42.5,24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2353 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatChickenhead - entities: - - uid: 15776 + pos: 42.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2354 components: - type: Transform - pos: -60.937252,-72.46571 + pos: 42.5,22.5 parent: 1 -- proto: ClothingHeadHatCone - entities: - - uid: 7204 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2357 components: - type: Transform - pos: -22.963629,27.013191 + pos: 42.5,21.5 parent: 1 - - uid: 7205 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2358 components: - type: Transform - pos: -22.921963,26.804712 + pos: 42.5,20.5 parent: 1 - - uid: 13898 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2359 components: - type: Transform - pos: -4.3236923,-43.65247 + pos: 42.5,19.5 parent: 1 - - uid: 13899 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2397 components: - type: Transform - pos: -4.6986923,-43.537807 + pos: 42.5,18.5 parent: 1 - - uid: 13900 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2404 components: - type: Transform - pos: -4.375776,-43.266785 + pos: 42.5,17.5 parent: 1 - - uid: 33956 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2405 components: - type: Transform - pos: -84.82768,-73.606255 + pos: 42.5,16.5 parent: 1 - - uid: 33957 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2406 components: - type: Transform - pos: -86.93706,-73.52807 + pos: 42.5,15.5 parent: 1 - - uid: 36739 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2407 components: - type: Transform - pos: -18.198343,-58.167774 + rot: 1.5707963267948966 rad + pos: 24.5,36.5 parent: 1 - - uid: 36740 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2408 components: - type: Transform - pos: -18.535843,-58.66812 + rot: 1.5707963267948966 rad + pos: 31.5,36.5 parent: 1 -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 15228 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2409 components: - type: Transform - pos: -113.01969,23.844894 + rot: 1.5707963267948966 rad + pos: 32.5,36.5 parent: 1 - - uid: 15229 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2410 components: - type: Transform - pos: -113.05094,23.761503 + rot: 1.5707963267948966 rad + pos: 39.5,36.5 parent: 1 - - uid: 15230 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2411 components: - type: Transform - pos: -113.061356,23.657263 + rot: 1.5707963267948966 rad + pos: 40.5,36.5 parent: 1 - - uid: 15231 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2412 components: - type: Transform - pos: -113.05094,23.553024 + pos: 42.5,14.5 parent: 1 - - uid: 15232 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.92594,23.480057 + pos: 20.5,27.5 parent: 1 - - uid: 15233 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.80094,23.448786 + pos: 22.5,27.5 parent: 1 - - uid: 15234 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2417 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.686356,23.45921 + pos: 21.5,27.5 parent: 1 - - uid: 15235 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.58219,23.45921 + pos: 27.5,27.5 parent: 1 - - uid: 15236 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2419 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.45719,23.469633 + pos: 28.5,27.5 parent: 1 - - uid: 15237 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2420 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.35303,23.469633 + pos: 29.5,27.5 parent: 1 - - uid: 15238 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2421 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.248856,23.469633 + pos: 32.5,27.5 parent: 1 - - uid: 15239 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2422 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.14469,23.480057 + pos: 31.5,27.5 parent: 1 - - uid: 15240 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.94678,23.625992 + rot: -1.5707963267948966 rad + pos: 30.5,27.5 parent: 1 - - uid: 15241 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2424 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.94678,23.719807 + pos: 36.5,26.5 parent: 1 - - uid: 15242 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2425 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.92594,23.78235 + pos: 36.5,22.5 parent: 1 - - uid: 15243 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2426 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.967606,23.855318 - parent: 1 -- proto: ClothingHeadHatGreysoftFlipped - entities: - - uid: 31241 - components: - - type: Transform - pos: -79.589195,-75.39599 - parent: 1 -- proto: ClothingHeadHatHairflower - entities: - - uid: 8343 - components: - - type: Transform - pos: -69.99157,7.6034684 - parent: 1 - - uid: 30796 - components: - - type: Transform - pos: -70.39416,-40.21738 - parent: 1 -- proto: ClothingHeadHatHoodBioGeneral - entities: - - uid: 36014 - components: - - type: Transform - pos: -120.774155,-49.767227 - parent: 1 -- proto: ClothingHeadHatPaper - entities: - - uid: 31031 - components: - - type: Transform - pos: 22.362457,-24.480032 - parent: 1 -- proto: ClothingHeadHatPumpkin - entities: - - uid: 42059 - components: - - type: Transform - pos: 15.478373,-49.44592 + pos: 36.5,21.5 parent: 1 -- proto: ClothingHeadHatPwig - entities: - - uid: 7916 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2427 components: - type: Transform - pos: -84.55198,19.537794 + rot: 3.141592653589793 rad + pos: 36.5,17.5 parent: 1 -- proto: ClothingHeadHatRichard - entities: - - uid: 33836 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2432 components: - type: Transform - pos: -61.944668,-76.52036 + rot: 3.141592653589793 rad + pos: 36.5,16.5 parent: 1 -- proto: ClothingHeadHatSecsoftFlipped - entities: - - uid: 9508 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2457 components: - type: Transform - pos: -46.444736,14.717475 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 1 -- proto: ClothingHeadHatSombrero - entities: - - uid: 30019 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2459 components: - type: Transform - pos: -88.640945,-46.56803 + rot: 1.5707963267948966 rad + pos: 22.5,36.5 parent: 1 -- proto: ClothingHeadHatSquid - entities: - - uid: 30989 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2461 components: - type: Transform - pos: -70.95245,-64.29343 + rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 1 -- proto: ClothingHeadHatSurgcapRainbow - entities: - - uid: 3173 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2466 components: - type: Transform - pos: -20.956736,-49.431847 + rot: 3.141592653589793 rad + pos: 36.5,5.5 parent: 1 -- proto: ClothingHeadHatTophat - entities: - - uid: 8724 + - type: DeviceLinkSink + links: + - 32776 + - uid: 2542 components: - type: Transform - pos: -78.492874,-4.21112 + rot: -1.5707963267948966 rad + pos: 28.5,-3.5 parent: 1 -- proto: ClothingHeadHatUshanka - entities: - - uid: 30020 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2544 components: - type: Transform - pos: -85.43261,-52.45754 + rot: -1.5707963267948966 rad + pos: 29.5,-3.5 parent: 1 - - uid: 30021 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2591 components: - type: Transform - pos: -85.43261,-52.467964 + rot: -1.5707963267948966 rad + pos: 31.5,-3.5 parent: 1 - - uid: 30030 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2594 components: - type: Transform - pos: -85.43261,-52.467964 + rot: -1.5707963267948966 rad + pos: 33.5,-3.5 parent: 1 -- proto: ClothingHeadHatWelding - entities: - - uid: 1232 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.524921,-7.4902177 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 parent: 1 - - uid: 30386 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2597 components: - type: Transform - pos: -29.511698,-73.36267 + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 parent: 1 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 30875 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2605 components: - type: Transform - pos: -52.65829,-79.493286 + rot: -1.5707963267948966 rad + pos: 39.5,-3.5 parent: 1 -- proto: ClothingHeadHelmetBasic - entities: - - uid: 12612 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2693 components: - type: Transform - pos: -49.97189,-41.412037 + rot: -1.5707963267948966 rad + pos: 50.5,36.5 parent: 1 -- proto: ClothingHeadHelmetCosmonaut - entities: - - uid: 31274 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2696 components: - type: Transform - pos: -34.42656,17.627428 + rot: -1.5707963267948966 rad + pos: 49.5,36.5 parent: 1 -- proto: ClothingHeadTinfoil - entities: - - uid: 13715 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2708 components: - type: Transform - pos: -71.41311,-62.23606 + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 parent: 1 - - uid: 13716 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2711 components: - type: Transform - pos: -71.31936,-62.45496 + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 parent: 1 -- proto: ClothingMaskBreathMedical - entities: - - uid: 9182 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2712 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.41791,-33.215263 + pos: 45.5,-3.5 parent: 1 - - uid: 9183 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2714 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.44916,-29.639864 + pos: 47.5,-3.5 parent: 1 - - uid: 32318 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.60396147,-38.895275 + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 parent: 1 -- proto: ClothingMaskGasSecurity - entities: - - uid: 9510 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2787 components: - type: Transform - pos: -79.53126,24.459787 + rot: -1.5707963267948966 rad + pos: 51.5,-3.5 parent: 1 - - uid: 12111 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 2817 components: - type: Transform - pos: -49.128025,-41.51177 + rot: -1.5707963267948966 rad + pos: 53.5,-3.5 parent: 1 -- proto: ClothingMaskGasSwat - entities: - - uid: 5831 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3029 components: - type: Transform - pos: -63.3683,-46.26076 + rot: -1.5707963267948966 rad + pos: 46.5,36.5 parent: 1 - - uid: 6161 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3030 components: - type: Transform - pos: -63.670383,-46.44839 + rot: -1.5707963267948966 rad + pos: 45.5,36.5 parent: 1 - - uid: 6178 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3047 components: - type: Transform - pos: -63.347466,-46.437965 + rot: -1.5707963267948966 rad + pos: 48.5,36.5 parent: 1 - - uid: 7531 + - type: DeviceLinkSink + links: + - 3048 + - 31161 + - 31162 + - uid: 3049 components: - type: Transform - pos: -63.659966,-46.26076 + rot: -1.5707963267948966 rad + pos: 43.5,36.5 parent: 1 -- proto: ClothingMaskMuzzle - entities: - - uid: 13689 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3051 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.163795,-72.34786 + pos: 47.5,36.5 parent: 1 - - uid: 28500 - components: - - type: Transform - parent: 28497 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28504 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3052 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.60575396,-23.492332 + pos: 44.5,36.5 parent: 1 - - uid: 28505 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5953373,-23.502756 + pos: 51.5,36.5 parent: 1 - - uid: 28506 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 3321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5953373,-23.502756 + pos: 42.5,13.5 parent: 1 -- proto: ClothingNeckBronzeheart - entities: - - uid: 11745 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 5443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.611626,-3.0608902 + rot: 3.141592653589793 rad + pos: -30.5,42.5 parent: 1 -- proto: ClothingNeckGoldmedal - entities: - - uid: 11744 + - type: DeviceLinkSink + links: + - 6093 + - uid: 5449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.42934,-3.0348303 + pos: -34.5,26.5 parent: 1 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 30775 + - type: DeviceLinkSink + links: + - 18590 + - uid: 5450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.31419,-38.608044 + pos: -34.5,27.5 parent: 1 -- proto: ClothingNeckStethoscope - entities: - - uid: 9082 + - type: DeviceLinkSink + links: + - 18590 + - uid: 5489 components: - type: Transform - pos: -69.412865,-22.739153 + pos: -34.5,28.5 parent: 1 - - uid: 14630 + - type: DeviceLinkSink + links: + - 18590 + - uid: 5616 components: - type: Transform - pos: -75.48062,-29.43192 + pos: -34.5,42.5 parent: 1 - - uid: 28515 + - type: DeviceLinkSink + links: + - 6093 + - uid: 5617 components: - type: Transform - pos: -3.452482,-39.384876 + pos: -34.5,40.5 parent: 1 -- proto: ClothingOuterApronChef - entities: - - uid: 11021 + - type: DeviceLinkSink + links: + - 6093 + - uid: 5623 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11991 + rot: 3.141592653589793 rad + pos: -30.5,41.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6093 + - uid: 5779 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorBasic - entities: - - uid: 12123 + pos: -34.5,41.5 + parent: 1 + - type: DeviceLinkSink + links: + - 6093 + - uid: 6010 components: - type: Transform - pos: -46.502846,14.502045 + pos: 42.5,12.5 parent: 1 -- proto: ClothingOuterCardborg - entities: - - uid: 7739 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 6087 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.3358,12.347981 + pos: 13.5,27.5 parent: 1 -- proto: ClothingOuterCoatBomber - entities: - - uid: 2677 + - type: DeviceLinkSink + links: + - 32776 + - uid: 6088 components: - - type: MetaData - name: Poldstadt bomber - type: Transform - rot: 1.5707963267948966 rad - pos: -78.543175,-5.378417 + rot: 3.141592653589793 rad + pos: 3.5,30.5 parent: 1 - - uid: 2704 + - type: DeviceLinkSink + links: + - 32776 + - uid: 6102 components: - - type: MetaData - name: Poldstadt bomber - type: Transform - rot: 1.5707963267948966 rad - pos: -78.37651,-5.378417 + rot: 3.141592653589793 rad + pos: -30.5,40.5 parent: 1 - - uid: 36810 + - type: DeviceLinkSink + links: + - 6093 + - uid: 6142 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.49116,-34.484962 + pos: 3.5,31.5 parent: 1 -- proto: ClothingOuterCoatGentle - entities: - - uid: 13888 + - type: DeviceLinkSink + links: + - 32776 + - uid: 6611 components: - type: Transform - pos: 13.487709,-38.343147 + rot: 1.5707963267948966 rad + pos: -5.5,23.5 parent: 1 -- proto: ClothingOuterCoatHyenhSweater - entities: - - uid: 8719 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6617 components: - type: Transform - pos: -77.60834,-2.4183486 + rot: 1.5707963267948966 rad + pos: -9.5,23.5 parent: 1 - - uid: 8720 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6618 components: - type: Transform - pos: -77.35834,-2.4183486 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 parent: 1 - - uid: 13889 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6619 components: - - type: MetaData - name: comfy womfy sweater - type: Transform - pos: 13.508542,-39.41681 + rot: 1.5707963267948966 rad + pos: -7.5,23.5 parent: 1 -- proto: ClothingOuterFlannelRed - entities: - - uid: 36811 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.47866,-34.43493 + rot: 1.5707963267948966 rad + pos: -6.5,23.5 parent: 1 -- proto: ClothingOuterHoodieBlack - entities: - - uid: 30361 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6633 components: - type: Transform - parent: 30360 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterJacketChef - entities: - - uid: 10208 + rot: 1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6635 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10579 + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 11289 + - uid: 6639 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterRobesJudge - entities: - - uid: 7917 + rot: 1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 11289 + - uid: 8505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.33323,19.298044 + pos: 42.5,11.5 parent: 1 -- proto: ClothingOuterStraightjacket - entities: - - uid: 670 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 10042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.48564434,-23.673174 + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 parent: 1 - - uid: 671 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.48564434,-23.673174 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 1 - - uid: 28440 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.48564434,-23.673174 + pos: 42.5,-2.5 parent: 1 - - uid: 28498 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10051 components: - type: Transform - parent: 28497 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSuitChicken - entities: - - uid: 15775 + pos: 42.5,10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 10052 components: - type: Transform - pos: -62.999752,-75.06127 + pos: 42.5,9.5 parent: 1 -- proto: ClothingOuterSuitMonkey - entities: - - uid: 15773 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 10054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.482315,-72.83854 + pos: 42.5,8.5 parent: 1 -- proto: ClothingOuterVestValet - entities: - - uid: 15671 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 10153 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.443476,-33.567307 + pos: 52.5,-3.5 parent: 1 -- proto: ClothingOuterWinterCoat - entities: - - uid: 11084 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10154 components: - type: Transform - pos: -22.494806,-23.383389 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 parent: 1 -- proto: ClothingOuterWinterMiner - entities: - - uid: 23675 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10155 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.17924,1.0280015 + pos: 48.5,-3.5 parent: 1 -- proto: ClothingShoesBootsMag - entities: - - uid: 34199 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10156 components: - type: Transform - pos: -147.40431,-41.583435 + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 parent: 1 -- proto: ClothingShoesBootsWinterMiner - entities: - - uid: 23676 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.77299,1.1322408 + pos: 44.5,-3.5 parent: 1 -- proto: ClothingShoesGaloshes - entities: - - uid: 2058 - components: - - type: Transform - parent: 30726 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9610 - components: - - type: Transform - parent: 7178 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesSkates - entities: - - uid: 7553 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10158 components: - type: Transform - pos: 23.402542,19.551105 + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 parent: 1 - - uid: 7554 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10159 components: - type: Transform - pos: -106.51871,-16.496296 + rot: -1.5707963267948966 rad + pos: 40.5,-3.5 parent: 1 - - uid: 8010 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10160 components: - type: Transform - pos: -77.50256,17.485685 + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 parent: 1 - - uid: 8099 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10161 components: - type: Transform - pos: -129.49478,-2.507442 + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 parent: 1 - - uid: 8808 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10162 components: - type: Transform - pos: -129.46353,-3.4664419 + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 parent: 1 - - uid: 9176 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10163 components: - type: Transform - pos: -130.54686,-3.4455938 + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 parent: 1 - - uid: 9857 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10164 components: - type: Transform - pos: -130.51561,-2.4240508 + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 parent: 1 - - uid: 9858 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10293 components: - type: Transform - pos: -37.460007,33.554764 + rot: -1.5707963267948966 rad + pos: 21.5,-3.5 parent: 1 - - uid: 10496 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10295 components: - type: Transform - pos: -43.627148,32.75212 + pos: 42.5,-1.5 parent: 1 -- proto: ClothingShoesSlippers - entities: - - uid: 1173 - components: - - type: Transform - parent: 246 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9354 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10302 components: - type: Transform - parent: 247 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10950 + rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10344 components: - type: Transform - parent: 1273 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11684 + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 10656 components: - type: Transform - parent: 1279 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12315 + pos: 42.5,7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 11292 components: - type: Transform - parent: 1280 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15068 + rot: 1.5707963267948966 rad + pos: -12.5,23.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 11289 + - uid: 11313 components: - type: Transform - parent: 1281 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15147 + rot: 3.141592653589793 rad + pos: 3.5,29.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11325 components: - type: Transform - parent: 1282 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18457 + pos: -0.5,44.5 + parent: 1 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11329 components: - type: Transform - parent: 1283 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18459 + rot: 1.5707963267948966 rad + pos: 8.5,36.5 + parent: 1 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 11361 components: - type: Transform - parent: 1284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18461 + pos: -0.5,38.5 + parent: 1 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11363 components: - type: Transform - parent: 1285 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18464 + pos: -0.5,41.5 + parent: 1 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11453 components: - type: Transform - parent: 1286 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22458 + pos: 42.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 11461 components: - type: Transform - parent: 1287 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtChef - entities: - - uid: 10199 + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11474 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10205 + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11475 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtPrisoner - entities: - - uid: 2217 + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.402024,9.118234 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 1 -- proto: ClothingUniformJumpsuitChef - entities: - - uid: 15662 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11477 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16194 + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11478 components: - type: Transform - parent: 10197 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 9533 + rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 1 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.6485,-15.4859915 + pos: 0.5,37.5 parent: 1 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 2212 + - type: DeviceLinkSink + links: + - 18588 + - uid: 11521 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.568691,9.608157 + pos: -0.5,37.5 parent: 1 - - uid: 2213 + - type: DeviceLinkSink + links: + - 18588 + - uid: 11536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.568691,9.503919 + pos: -0.5,39.5 parent: 1 -- proto: ClothingUniformJumpsuitTshirtJeans - entities: - - uid: 8731 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11544 components: - type: Transform - pos: -79.33189,-2.3830614 + pos: -0.5,43.5 parent: 1 -- proto: ClothingUniformJumpsuitTshirtJeansPeach - entities: - - uid: 8730 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11546 components: - type: Transform - pos: -79.62355,-2.3726377 + rot: 3.141592653589793 rad + pos: 3.5,27.5 parent: 1 -- proto: Coal1 - entities: - - uid: 32151 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11547 components: - type: Transform - pos: 69.32183,-0.346103 + rot: 3.141592653589793 rad + pos: 3.5,28.5 parent: 1 - - uid: 32152 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11562 components: - type: Transform - pos: 71.56142,0.070852935 + rot: 1.5707963267948966 rad + pos: 7.5,36.5 parent: 1 -- proto: ComfyChair - entities: - - uid: 1518 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 11563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-3.5 + pos: -0.5,40.5 parent: 1 - - uid: 1519 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-5.5 + rot: -1.5707963267948966 rad + pos: 4.5,27.5 parent: 1 - - uid: 1522 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-5.5 + rot: -1.5707963267948966 rad + pos: 14.5,27.5 parent: 1 - - uid: 2614 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11578 components: - type: Transform - pos: 9.5,-49.5 + rot: -1.5707963267948966 rad + pos: 11.5,27.5 parent: 1 - - uid: 2616 + - type: DeviceLinkSink + links: + - 32776 + - uid: 11589 components: - type: Transform - pos: 15.5,-49.5 + pos: -0.5,42.5 parent: 1 - - uid: 2618 + - type: DeviceLinkSink + links: + - 18589 + - uid: 11617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-51.5 + rot: -1.5707963267948966 rad + pos: 1.5,37.5 parent: 1 - - uid: 4458 + - type: DeviceLinkSink + links: + - 18588 + - uid: 11622 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-56.5 + pos: 12.5,27.5 parent: 1 - - uid: 4460 + - type: DeviceLinkSink + links: + - 32776 + - uid: 12021 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-56.5 + pos: 13.5,-16.5 parent: 1 - - uid: 5060 + - type: DeviceLinkSink + links: + - 12027 + - uid: 12022 components: - type: Transform - pos: -91.5,-4.5 + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 parent: 1 - - uid: 5085 + - type: DeviceLinkSink + links: + - 12027 + - uid: 12023 components: - type: Transform - pos: -90.5,-4.5 + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 parent: 1 - - uid: 6939 + - type: DeviceLinkSink + links: + - 12027 + - uid: 13108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-29.5 + rot: 3.141592653589793 rad + pos: 3.5,35.5 parent: 1 - - uid: 6947 + - type: DeviceLinkSink + links: + - 32776 + - uid: 13109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 + rot: 3.141592653589793 rad + pos: 3.5,34.5 parent: 1 - - uid: 7732 + - type: DeviceLinkSink + links: + - 32776 + - uid: 13110 components: - type: Transform - pos: -69.5,33.5 + rot: 3.141592653589793 rad + pos: 3.5,33.5 parent: 1 - - uid: 7733 + - type: DeviceLinkSink + links: + - 32776 + - uid: 13111 components: - type: Transform - pos: -68.5,33.5 + rot: -1.5707963267948966 rad + pos: 6.5,27.5 parent: 1 - - uid: 7734 + - type: DeviceLinkSink + links: + - 32776 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,30.5 + pos: -4.5,24.5 parent: 1 - - uid: 7735 + - type: DeviceLinkSink + links: + - 11289 + - uid: 15166 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,30.5 + pos: -4.5,25.5 parent: 1 - - uid: 7975 + - type: DeviceLinkSink + links: + - 11289 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,5.5 + pos: -4.5,26.5 parent: 1 - - uid: 7976 + - type: DeviceLinkSink + links: + - 11289 + - uid: 15168 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,5.5 + pos: -4.5,27.5 parent: 1 - - uid: 8335 + - type: DeviceLinkSink + links: + - 11289 + - uid: 15169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,5.5 + rot: 3.141592653589793 rad + pos: -4.5,28.5 parent: 1 - - uid: 8568 + - type: DeviceLinkSink + links: + - 11289 + - uid: 15170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-3.5 + rot: 3.141592653589793 rad + pos: -4.5,29.5 parent: 1 - - uid: 8569 + - type: DeviceLinkSink + links: + - 11289 + - uid: 17138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-3.5 + pos: -0.5,48.5 parent: 1 - - uid: 8793 + - type: DeviceLinkSink + links: + - 18589 + - uid: 17139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-2.5 + pos: -0.5,47.5 parent: 1 - - uid: 9331 + - type: DeviceLinkSink + links: + - 18589 + - uid: 17140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-16.5 + pos: -0.5,46.5 parent: 1 - - uid: 9333 + - type: DeviceLinkSink + links: + - 18589 + - uid: 17141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-17.5 + pos: -0.5,45.5 parent: 1 - - uid: 9334 + - type: DeviceLinkSink + links: + - 18589 + - uid: 32434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-17.5 + pos: 42.5,5.5 parent: 1 - - uid: 9396 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 32435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-25.5 + pos: 42.5,2.5 parent: 1 - - uid: 9397 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 32436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-31.5 + pos: 42.5,3.5 parent: 1 - - uid: 9689 + - type: DeviceLinkSink + links: + - 31162 + - 31161 + - 3048 + - uid: 32439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-21.5 + pos: 42.5,4.5 parent: 1 - - uid: 10979 + - type: DeviceLinkSink + links: + - 31162 + - 3048 + - 31161 + - uid: 32445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-17.5 + pos: 42.5,-0.5 parent: 1 - - uid: 10980 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 32446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-17.5 + pos: 42.5,0.5 parent: 1 - - uid: 11847 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 + - uid: 32447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-16.5 + pos: 42.5,1.5 parent: 1 - - uid: 11874 + - type: DeviceLinkSink + links: + - 3048 + - 31162 + - 31161 +- proto: CrateArtifactContainer + entities: + - uid: 6801 components: - type: Transform - pos: -37.5,-38.5 + pos: -19.5,-44.5 parent: 1 - - uid: 12131 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + pos: -3.5,35.5 parent: 1 - - uid: 12132 +- proto: CrateCoffin + entities: + - uid: 36439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 + pos: -89.5,-73.5 parent: 1 - - uid: 12802 + - type: 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: + - 36440 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmergencyRadiation + entities: + - uid: 16099 components: - type: Transform - pos: -82.5,41.5 + pos: -44.5,-70.5 parent: 1 - - uid: 12807 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEmptySpawner + entities: + - uid: 6597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,39.5 + pos: -6.5,24.5 parent: 1 - - uid: 12808 + - uid: 11247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,39.5 + pos: -9.5,26.5 parent: 1 - - uid: 13077 + - uid: 29643 components: - type: Transform - pos: -81.5,41.5 + pos: -30.5,-55.5 parent: 1 - - uid: 15647 + - uid: 30582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,9.5 + pos: -97.5,15.5 parent: 1 - - uid: 23783 + - uid: 30624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-53.5 + pos: -120.5,-11.5 parent: 1 - - uid: 23870 + - uid: 30953 components: - type: Transform - pos: -8.5,-58.5 + pos: -29.5,-54.5 parent: 1 - - uid: 23878 + - uid: 31415 components: - type: Transform - pos: -10.5,-58.5 + pos: -65.5,-58.5 parent: 1 - - uid: 29454 + - uid: 36817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-42.5 + pos: -118.5,-67.5 parent: 1 - - uid: 42138 + - uid: 36827 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-56.5 + pos: -25.5,39.5 parent: 1 -- proto: ComputerAlert - entities: - - uid: 5532 + - uid: 36828 components: - type: Transform - pos: -103.5,11.5 + pos: -24.5,41.5 parent: 1 - - uid: 8223 + - uid: 36829 components: - type: Transform - pos: -101.5,7.5 + pos: -20.5,41.5 parent: 1 - - uid: 9766 +- proto: CrateEngineeringAMEJar + entities: + - uid: 3337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-32.5 + pos: -119.5,-23.5 parent: 1 - - uid: 17129 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 3338 components: - type: Transform - pos: -100.5,-9.5 + pos: -117.5,-23.5 parent: 1 -- proto: ComputerAnalysisConsole - entities: - - uid: 12221 + - uid: 3339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-57.5 + pos: -118.5,-23.5 parent: 1 -- proto: ComputerBroken +- proto: CrateEngineeringCableBulk entities: - - uid: 12430 + - uid: 15872 components: - type: Transform - pos: 21.5,-14.5 + pos: 52.5,-50.5 parent: 1 - - uid: 13671 + - uid: 36974 components: - type: Transform - pos: -72.5,-66.5 + pos: -111.5,-47.5 parent: 1 - - uid: 13724 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 32467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-67.5 + pos: -26.5,-73.5 parent: 1 - - uid: 14485 +- proto: CrateEngineeringParticleAccelerator + entities: + - uid: 15881 components: - type: Transform - pos: -109.5,2.5 + pos: 59.5,-45.5 parent: 1 - - uid: 31011 +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 15890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-43.5 + pos: 52.5,-42.5 parent: 1 - - uid: 36388 + - uid: 15891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -132.5,-53.5 + pos: 52.5,-43.5 parent: 1 - - uid: 36389 + - uid: 15892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-57.5 + pos: 53.5,-42.5 parent: 1 -- proto: ComputerCargoBounty - entities: - - uid: 2100 + - uid: 15893 components: - type: Transform - pos: -27.5,41.5 + pos: 53.5,-43.5 parent: 1 -- proto: ComputerCargoOrders +- proto: CrateEngineeringSolar entities: - - uid: 5622 + - uid: 34462 components: - type: Transform - pos: -29.5,41.5 + pos: -154.5,-67.5 parent: 1 - - uid: 6105 + - uid: 34467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,28.5 + pos: -155.5,-67.5 parent: 1 - - uid: 11587 + - uid: 35891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,39.5 + pos: -118.5,-88.5 parent: 1 -- proto: ComputerCloningConsole - entities: - - uid: 204 + - uid: 35892 components: - type: Transform - pos: -78.5,-18.5 + pos: -117.5,-88.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4549: - - MedicalScannerSender: MedicalScannerReceiver - 4571: - - CloningPodSender: CloningPodReceiver -- proto: ComputerComms - entities: - - uid: 5126 + - uid: 35893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,0.5 + pos: -117.5,-87.5 parent: 1 - - uid: 5533 + - uid: 35894 components: - type: Transform - pos: -102.5,11.5 + pos: -118.5,-87.5 parent: 1 -- proto: ComputerCrewMonitoring +- proto: CrateFilledSpawner entities: - - uid: 786 + - uid: 7306 components: - type: Transform - pos: 0.5,-20.5 + pos: -30.5,30.5 parent: 1 - - uid: 4800 + - uid: 7308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-21.5 + pos: -30.5,28.5 parent: 1 - - uid: 8219 + - uid: 7311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,4.5 + pos: -31.5,30.5 parent: 1 - - uid: 9680 + - uid: 11240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-17.5 + pos: -18.5,19.5 parent: 1 - - uid: 33507 + - uid: 22651 components: - type: Transform - pos: -66.5,23.5 + pos: -122.5,-52.5 parent: 1 - - uid: 42170 + - uid: 30705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,9.5 + pos: -13.5,19.5 parent: 1 -- proto: ComputerCriminalRecords - entities: - - uid: 2067 + - uid: 30723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-42.5 + pos: -92.5,-28.5 parent: 1 - - uid: 2925 + - uid: 30891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 + pos: -34.5,-78.5 parent: 1 - - uid: 3561 + - uid: 30892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-21.5 + pos: -34.5,-79.5 parent: 1 - - uid: 7145 + - uid: 31348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-30.5 + pos: -32.5,-58.5 parent: 1 - - uid: 7756 + - uid: 31394 components: - type: Transform - pos: -78.5,28.5 + pos: -66.5,-58.5 parent: 1 - - uid: 9488 + - uid: 36664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,17.5 + pos: -90.5,-68.5 parent: 1 - - uid: 12080 + - uid: 36819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 + pos: -118.5,-66.5 parent: 1 - - uid: 12280 + - uid: 40820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-18.5 + pos: 76.5,-22.5 parent: 1 - - uid: 28741 + - uid: 40948 components: - type: Transform - pos: -8.5,-9.5 + pos: 80.5,-15.5 parent: 1 -- proto: ComputerFrame +- proto: CrateFunArtSupplies entities: - - uid: 30358 + - uid: 11167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-67.5 + pos: 2.5,-3.5 parent: 1 - - uid: 36772 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFunBoardGames + entities: + - uid: 11168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-34.5 + pos: -3.5,-3.5 parent: 1 -- proto: ComputerId + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFunDartsSet entities: - - uid: 3673 + - uid: 5494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-44.5 + pos: -9.5,28.5 parent: 1 - - uid: 5454 +- proto: CrateFunParty + entities: + - uid: 6061 components: - type: Transform - pos: -101.5,11.5 + pos: -8.5,29.5 parent: 1 - - uid: 7574 +- proto: CrateFunPlushie + entities: + - uid: 12278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,21.5 + pos: -33.5,-55.5 parent: 1 - - uid: 8222 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateFunWaterGuns + entities: + - uid: 6060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,4.5 + pos: -8.5,28.5 parent: 1 - - uid: 9768 +- proto: CrateGenericSteel + entities: + - uid: 7258 components: - type: Transform - pos: -107.5,-30.5 + pos: -30.646652,33.593903 parent: 1 - - uid: 11586 + - uid: 7350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,39.5 + pos: -30.646652,32.634907 parent: 1 - - uid: 18982 + - uid: 9350 components: - type: Transform - pos: -83.5,-17.5 + pos: -30.646652,33.083134 parent: 1 - - uid: 18983 + - uid: 29941 components: - type: Transform - pos: -54.5,-17.5 + pos: -86.5,-47.5 parent: 1 -- proto: ComputerMassMedia - entities: - - uid: 14502 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 29942 + - 29943 + - 29944 + - 29945 + - 29946 + - 29947 + - 29948 + - 29949 + - 29950 + - 29951 + - 29952 + - 29953 + - 29954 + - 29955 + - 29956 + - 29957 + - 29958 + - 29959 + - 29960 + - 29961 + - 29962 + - 29963 + - 29964 + - 29965 + - 29966 + - 29967 + - 29968 + - 29969 + - 29970 + - 29971 + - 29972 + - 29973 + - 29974 + - 29975 + - 29976 + - 29977 + - 29978 + - 29979 + - 29980 + - 29981 + - 29982 + - 29983 + - 29984 + - 29985 + - 29986 + - 29987 + - 29988 + - 29989 + - 29990 + - 29991 + - 29992 + - 29993 + - 29994 + - 29995 + - 29996 + - 29997 + - 29998 + - 29999 + - 30000 + - 30001 + - 30002 + - 30003 + - 30004 + - 30005 + - 30006 + - 30007 + - 30008 + - 30009 + - 30010 + - 30011 + - 30012 + - 30013 + - 30014 + - 30015 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 30805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,12.5 + pos: -65.5,7.5 parent: 1 -- proto: ComputerMedicalRecords + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30808 + - 30807 + - 30806 + - 30809 + - 30810 + - 30811 + - 30812 + - 30813 + - 30814 + - 30815 + - 30816 + - 30817 + - 30818 + - 30819 + - 30820 + - 30821 + - 30822 + - 30823 + - 30824 + - 30825 + - 30826 + - 30827 + - 30828 + - 30829 + - 30830 + - 30831 + - 30832 + - 30833 + - 30834 + - 30835 + - 30836 + - 30837 + - 30838 + - 30839 + - 30840 + - 30841 + - 30842 + - 30843 + - 30844 + - 30845 + - 30846 + - 30847 + - 30848 + - 30849 + - 30850 + - 30851 + - 30852 + - 30853 + - 30854 + - 30855 + - 30856 + - 30857 + - 30858 + - 30859 + - 30860 + - 30861 + - 30862 + - 30863 + - 30864 + - 30865 + - 30866 + - 30867 + - 30868 + - 30869 + - 30870 + - 30871 + - 30872 + - 30873 + - 30874 + - 8388 + - 8418 + - 8448 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroponicsSeeds entities: - - uid: 4799 + - uid: 939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-21.5 + pos: -18.5,-10.5 parent: 1 - - uid: 9679 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-18.5 + pos: -30.5,-11.5 parent: 1 - - uid: 31016 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 642 components: - type: Transform - pos: -7.5,-34.5 + pos: -31.5,-11.5 parent: 1 -- proto: ComputerPowerMonitoring + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedical entities: - - uid: 7464 + - uid: 9063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,19.5 + pos: -85.5,-33.5 parent: 1 - - uid: 8228 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMedicalSurgery + entities: + - uid: 3167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,4.5 + pos: -22.5,-49.5 parent: 1 - - uid: 8991 + - uid: 9062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-20.5 + pos: -85.5,-29.5 parent: 1 - - uid: 9767 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCChicken + entities: + - uid: 12552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-33.5 + pos: -23.5,-18.5 parent: 1 - - uid: 10890 + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + - 14.962439 + - 56.28727 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCCow + entities: + - uid: 12551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-49.5 + pos: -24.5,-18.5 parent: 1 - - uid: 16180 + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + - 14.962439 + - 56.28727 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCDuck + entities: + - uid: 36564 components: - type: Transform - pos: -101.5,-9.5 + pos: -101.5,-86.5 parent: 1 - - uid: 16254 + - type: EntityStorage + open: True + removedMasks: 28 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateNPCHamster + entities: + - uid: 11873 components: - type: Transform - pos: -106.5,12.5 + pos: -36.5,-38.5 parent: 1 - - uid: 34245 +- proto: CrateNPCMouse + entities: + - uid: 6953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -141.5,-39.5 + pos: -32.5,-54.5 parent: 1 - - uid: 35652 + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + - 14.962439 + - 56.28727 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCPig + entities: + - uid: 501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-89.5 + pos: -17.5,8.5 parent: 1 -- proto: ComputerRadar + - type: EntityStorage + air: + volume: 800 + immutable: False + temperature: 293.1499 + moles: + - 14.962439 + - 56.28727 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateSecurityArmor entities: - - uid: 8226 + - uid: 12607 components: - type: Transform - pos: -99.5,7.5 + pos: -60.5,-44.5 parent: 1 - - uid: 17137 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateSecurityNonlethal + entities: + - uid: 12608 components: - type: Transform - pos: -2.5,51.5 + pos: 22.5,-17.5 parent: 1 -- proto: ComputerResearchAndDevelopment + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateSecurityRiot entities: - - uid: 6890 + - uid: 4773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-39.5 + pos: -62.5,-44.5 parent: 1 - - uid: 11859 + - uid: 5627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-42.5 + pos: 20.5,-17.5 parent: 1 -- proto: ComputerShuttleCargo - entities: - - uid: 5446 + - uid: 7533 components: - type: Transform - pos: -28.5,41.5 + pos: -61.5,-44.5 parent: 1 -- proto: ComputerShuttleSalvage - entities: - - uid: 13170 + - uid: 10492 components: - type: Transform - pos: -3.5,51.5 + pos: 21.5,-17.5 parent: 1 -- proto: ComputerSolarControl +- proto: CrateServiceJanitorialSupplies entities: - - uid: 16186 + - uid: 16375 components: - type: Transform - pos: -99.5,-9.5 + pos: 15.5,-12.5 parent: 1 - - uid: 34220 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 30727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -151.5,-39.5 + pos: -87.5,-40.5 parent: 1 - - uid: 35651 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 4.3114347 + - 16.219208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrainingBombs + entities: + - uid: 3382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-89.5 + pos: -59.5,-59.5 parent: 1 -- proto: ComputerStationRecords +- proto: CrateTrashCart entities: - - uid: 5479 + - uid: 41991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,9.5 + pos: 15.5,-5.5 parent: 1 - - uid: 7088 + - uid: 41992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-36.5 + pos: -3.5,-0.5 parent: 1 - - uid: 8225 + - uid: 41993 components: - type: Transform - pos: -100.5,7.5 + pos: 2.5,-0.5 parent: 1 - - uid: 29450 + - uid: 41994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-41.5 + pos: -20.5,6.5 parent: 1 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 785 + - uid: 41995 components: - type: Transform - pos: -1.5,-20.5 + pos: -14.5,-15.5 parent: 1 - - uid: 1631 +- proto: CrateTrashCartFilled + entities: + - uid: 24463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-17.5 + pos: -59.5,4.5 parent: 1 - - uid: 2926 + - uid: 42033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 + pos: -122.5,-22.5 parent: 1 - - uid: 3562 + - uid: 42036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-20.5 + pos: -115.5,-52.5 parent: 1 - - uid: 7146 + - uid: 42037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-30.5 + pos: -15.5,-68.5 parent: 1 - - uid: 7757 + - uid: 42039 components: - type: Transform - pos: -79.5,28.5 + pos: 33.5,-50.5 parent: 1 - - uid: 8224 +- proto: CrateTrashCartJani + entities: + - uid: 29218 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,4.5 + pos: -89.5,-36.5 parent: 1 - - uid: 9489 + - uid: 42032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,17.5 + pos: -25.5,26.5 parent: 1 - - uid: 12116 + - uid: 42038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 + pos: -6.5,-43.5 parent: 1 - - uid: 29449 +- proto: CrayonBox + entities: + - uid: 7819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-40.5 + pos: -89.4603,17.825678 parent: 1 -- proto: ComputerSurveillanceWirelessCameraMonitor +- proto: Crematorium entities: - - uid: 8013 + - uid: 599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,13.5 + rot: -1.5707963267948966 rad + pos: -24.5,-52.5 parent: 1 -- proto: ComputerTechnologyDiskTerminal +- proto: CrewMonitoringServer entities: - - uid: 12171 + - uid: 20869 components: - type: Transform - pos: -23.5,-39.5 + pos: -113.5,9.5 parent: 1 -- proto: ComputerTelevision + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar entities: - - uid: 1521 + - uid: 7291 components: - type: Transform - pos: -57.5,-5.5 + pos: -46.99905,35.490726 parent: 1 - - uid: 8334 + - uid: 9540 components: - type: Transform - pos: -70.5,5.5 + pos: -56.486897,2.5697439 parent: 1 - - uid: 8570 + - uid: 9644 components: - type: Transform - pos: -65.5,-3.5 + pos: -33.507248,10.534689 parent: 1 - - uid: 9393 + - uid: 11962 components: - type: Transform - pos: -57.5,-25.5 + rot: -1.5707963267948966 rad + pos: -32.63385,-34.487682 + parent: 1 + - uid: 12264 + components: + - type: Transform + pos: -41.597538,-54.439934 parent: 1 - - uid: 9543 + - uid: 13883 components: - type: Transform - pos: -99.5,-27.5 + pos: 14.409463,-32.507328 parent: 1 - - uid: 11155 + - uid: 31007 components: - type: Transform - pos: -4.5,3.5 + pos: -2.5687642,-41.46924 parent: 1 - - uid: 11156 +- proto: CrowbarRed + entities: + - uid: 6159 components: - type: Transform - pos: 9.5,2.5 + pos: -41.6015,31.502686 parent: 1 - - uid: 11157 + - uid: 7561 components: - type: Transform - pos: 2.5,2.5 + rot: 1.5707963267948966 rad + pos: -70.54341,25.558254 parent: 1 - - uid: 11169 + - uid: 8946 components: - type: Transform - pos: -9.5,3.5 + rot: 1.5707963267948966 rad + pos: -102.393555,-13.309595 parent: 1 - - uid: 15648 + - uid: 11290 components: - type: Transform - pos: -29.5,9.5 + pos: -14.470749,22.55329 parent: 1 - - uid: 23777 + - uid: 11914 components: - type: Transform - pos: 43.5,-53.5 + rot: 3.141592653589793 rad + pos: -37.445316,-41.605286 parent: 1 - - uid: 33988 + - uid: 30767 components: - type: Transform - pos: -98.5,-67.5 + pos: -57.531227,-19.518581 parent: 1 -- proto: ContainmentFieldGenerator +- proto: CryogenicSleepUnit entities: - - uid: 15871 + - uid: 5453 components: - type: Transform - pos: 73.5,-43.5 + rot: 1.5707963267948966 rad + pos: -79.5,-21.5 parent: 1 - - uid: 15882 + - uid: 5478 components: - type: Transform - pos: 81.5,-43.5 + rot: 1.5707963267948966 rad + pos: -15.5,9.5 parent: 1 - - uid: 15884 + - uid: 42136 components: - type: Transform - pos: 81.5,-51.5 + pos: -1.5,-35.5 parent: 1 - - uid: 15885 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 6940 components: - type: Transform - pos: 73.5,-51.5 + rot: 1.5707963267948966 rad + pos: -58.5,43.5 parent: 1 - - uid: 15886 + - uid: 22962 components: - type: Transform - pos: 49.5,-45.5 + rot: 1.5707963267948966 rad + pos: -58.5,42.5 parent: 1 - - uid: 15887 + - uid: 28324 components: - type: Transform - pos: 49.5,-44.5 + rot: 1.5707963267948966 rad + pos: -58.5,41.5 parent: 1 - - uid: 15888 + - uid: 29386 components: - type: Transform - pos: 50.5,-45.5 + rot: -1.5707963267948966 rad + pos: -55.5,43.5 parent: 1 - - uid: 15889 + - uid: 41057 components: - type: Transform - pos: 50.5,-44.5 + rot: -1.5707963267948966 rad + pos: -55.5,41.5 parent: 1 -- proto: ConveyorBelt - entities: - - uid: 1171 + - uid: 42132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,36.5 + rot: -1.5707963267948966 rad + pos: -55.5,42.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1217 +- proto: CryoPod + entities: + - uid: 14437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,36.5 + pos: 2.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1878 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 27204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 4.6278667,-29.245111 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1879 +- proto: CurtainsBlack + entities: + - uid: 7326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-3.5 + pos: -68.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1880 + - uid: 7329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 + pos: -68.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1936 +- proto: CurtainsBlue + entities: + - uid: 6680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + pos: -44.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1937 + - uid: 6707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,36.5 + pos: -45.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 1938 + - uid: 8337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: -116.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1939 +- proto: CurtainsBlueOpen + entities: + - uid: 7216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: -43.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1940 + - uid: 11464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + pos: -116.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1941 +- proto: CurtainsCyan + entities: + - uid: 7333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,1.5 + pos: -64.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1942 + - uid: 8183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,1.5 + pos: -65.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1945 + - uid: 8184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,4.5 + pos: -66.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1946 + - uid: 8185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,1.5 + pos: -67.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1947 +- proto: CurtainsGreen + entities: + - uid: 5768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,1.5 + pos: -49.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1948 + - uid: 9600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,1.5 + pos: -47.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1949 +- proto: CurtainsGreenOpen + entities: + - uid: 6035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,1.5 + pos: -48.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1950 +- proto: CurtainsOrangeOpen + entities: + - uid: 12002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,1.5 + pos: -8.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1951 + - uid: 12150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,1.5 + pos: -8.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1952 + - uid: 12500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,1.5 + pos: -8.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1960 +- proto: CurtainSpawner + entities: + - uid: 4597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,1.5 + pos: -32.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 1987 + - uid: 5053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 + pos: -56.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2162 + - uid: 5766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,7.5 + pos: -62.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2163 + - uid: 8338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 + pos: -56.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2180 + - uid: 8560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,1.5 + pos: -58.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2181 + - uid: 8561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 + pos: -33.5,-20.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2182 + - uid: 8562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,1.5 + pos: -37.5,42.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2183 + - uid: 8563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,1.5 + pos: -91.5,-39.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2184 + - uid: 8790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,2.5 + pos: -121.5,-59.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2186 + - uid: 8791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,36.5 + pos: -121.5,-58.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2187 + - uid: 9398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 + pos: -121.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2188 + - uid: 9514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 + pos: -54.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2189 + - uid: 9518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 + pos: -58.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2190 + - uid: 9572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,36.5 + pos: -60.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2191 + - uid: 10929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,36.5 + pos: -44.5,42.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2192 + - uid: 11000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,36.5 + pos: -43.5,42.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2203 + - uid: 11471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + pos: -36.5,41.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2219 + - uid: 11982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,14.5 + pos: -36.5,40.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2220 + - uid: 11983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,27.5 + pos: -38.5,42.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2221 + - uid: 12501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,27.5 + pos: -77.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2226 +- proto: CurtainsPink + entities: + - uid: 5107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 + pos: -89.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2227 + - uid: 9588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 + pos: -90.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2229 +- proto: CurtainsPinkOpen + entities: + - uid: 5749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,15.5 + pos: -88.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2231 + - uid: 9576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + pos: -87.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2233 + - uid: 9589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 + pos: -91.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2235 +- proto: CurtainsPurple + entities: + - uid: 11462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,20.5 + pos: -53.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2244 +- proto: CurtainsPurpleOpen + entities: + - uid: 9602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,19.5 + pos: -52.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2245 + - uid: 9690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,18.5 + pos: -51.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2246 +- proto: CurtainsRed + entities: + - uid: 5081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,13.5 + pos: -44.5,-42.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2248 + - uid: 5083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,12.5 + pos: -44.5,-45.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2251 + - uid: 5104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,23.5 + pos: -44.5,-41.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2252 + - uid: 5106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,24.5 + pos: -44.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2254 +- proto: d6Dice + entities: + - uid: 2143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,25.5 + pos: -102.72877,-21.528055 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2255 + - uid: 3197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,27.5 + pos: -102.718346,-21.204914 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2256 + - uid: 11613 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,27.5 + pos: -15.288841,30.18879 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2257 + - uid: 11638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,27.5 + pos: -14.768008,29.94904 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2258 + - uid: 13866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,27.5 + pos: 29.772537,-34.28644 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2259 + - uid: 13867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 + pos: 27.88712,-34.47407 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2260 + - uid: 13868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,36.5 + pos: 27.491287,-34.213474 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2261 + - uid: 13869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 + pos: 29.48087,-34.54704 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2262 + - uid: 13870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,36.5 + pos: 28.241287,-34.213474 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2263 + - uid: 16310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,36.5 + pos: -4.5130353,2.6644075 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2264 + - uid: 16311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,36.5 + pos: -4.408869,2.4038095 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2266 + - uid: 29390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,36.5 + rot: 3.141592653589793 rad + pos: 2.8514225,-55.214714 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2268 + - uid: 29391 components: - type: Transform - pos: 42.5,33.5 + rot: 3.141592653589793 rad + pos: 3.9243393,-55.412766 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2269 + - uid: 31390 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,36.5 + pos: -41.372627,-74.42412 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2270 + - uid: 31391 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,36.5 + pos: -41.664295,-74.205215 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2271 +- proto: DefaultStationBeacon + entities: + - uid: 42411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,36.5 + pos: -129.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2272 + - type: NavMapBeacon + text: Spesscar Track + - uid: 42413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,36.5 + pos: -85.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2273 + - type: NavMapBeacon + text: Command Courtyard +- proto: DefaultStationBeaconAME + entities: + - uid: 41911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,36.5 + pos: -113.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2274 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 41910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,36.5 + pos: -43.5,-66.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2275 +- proto: DefaultStationBeaconArmory + entities: + - uid: 41908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,36.5 + pos: -62.5,-47.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2276 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 6090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,36.5 + pos: -92.5,30.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2277 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 41906 components: - type: Transform - pos: 42.5,36.5 + pos: -40.5,-56.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2278 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 2907 components: - type: Transform - pos: 42.5,35.5 + pos: -96.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2279 + - uid: 42415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 + pos: -22.5,-63.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2306 + - type: NavMapBeacon + text: Emergency Air +- proto: DefaultStationBeaconBar + entities: + - uid: 32202 components: - type: Transform - pos: 42.5,34.5 + pos: -50.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2307 + - uid: 42420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,27.5 + pos: 20.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2308 +- proto: DefaultStationBeaconBotany + entities: + - uid: 32096 components: - type: Transform - pos: 42.5,32.5 + pos: -29.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2309 +- proto: DefaultStationBeaconBoxing + entities: + - uid: 42424 components: - type: Transform - pos: 42.5,31.5 + pos: 25.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2311 +- proto: DefaultStationBeaconBridge + entities: + - uid: 3103 components: - type: Transform - pos: 42.5,30.5 + pos: -100.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2324 +- proto: DefaultStationBeaconBrig + entities: + - uid: 42437 components: - type: Transform - pos: 42.5,29.5 + pos: -47.5,-38.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2344 +- proto: DefaultStationBeaconCameraServerRoom + entities: + - uid: 913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 + pos: -111.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2345 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 5656 components: - type: Transform - pos: 42.5,28.5 + pos: -114.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2346 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 32088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,27.5 + pos: -31.5,39.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2347 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 32089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,27.5 + pos: -36.5,28.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2348 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 32094 components: - type: Transform - pos: 42.5,27.5 + pos: -107.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2349 +- proto: DefaultStationBeaconChapel + entities: + - uid: 6143 components: - type: Transform - pos: 42.5,26.5 + pos: -25.5,-33.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2351 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 42416 components: - type: Transform - pos: 42.5,25.5 + pos: -65.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2352 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 32093 components: - type: Transform - pos: 42.5,24.5 + pos: -83.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2353 +- proto: DefaultStationBeaconConferenceRoom + entities: + - uid: 6613 components: - type: Transform - pos: 42.5,23.5 + pos: -100.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2354 +- proto: DefaultStationBeaconCorpsman + entities: + - uid: 42438 components: - type: Transform - pos: 42.5,22.5 + pos: -3.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2357 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 32082 components: - type: Transform - pos: 42.5,21.5 + pos: -85.5,17.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2358 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 32081 components: - type: Transform - pos: 42.5,20.5 + pos: 2.5,-34.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2359 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 7491 components: - type: Transform - pos: 42.5,19.5 + pos: -57.5,41.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2397 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 32080 components: - type: Transform - pos: 42.5,18.5 + pos: -58.5,-40.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2404 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 11311 components: - type: Transform - pos: 42.5,17.5 + pos: -10.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2405 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11496 components: - type: Transform - pos: 42.5,16.5 + pos: 37.5,-54.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2406 + - uid: 42053 components: - type: Transform - pos: 42.5,15.5 + pos: -49.5,30.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2407 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 42065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,36.5 + pos: -103.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2408 +- proto: DefaultStationBeaconEngiOutpost + entities: + - uid: 42439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,36.5 + pos: -23.5,21.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2409 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 42097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,36.5 + pos: -94.5,-85.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2410 + - uid: 42440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,36.5 + pos: -123.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2411 + - uid: 42441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,36.5 + pos: -135.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2412 + - uid: 42442 components: - type: Transform - pos: 42.5,14.5 + pos: -45.5,-76.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2413 + - uid: 42443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 + pos: 25.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2414 +- proto: DefaultStationBeaconEvac + entities: + - uid: 11548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,27.5 + pos: 3.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2417 + - uid: 32092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + pos: 17.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2418 + - uid: 42418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 + pos: 25.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2419 + - uid: 42419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,27.5 + pos: 39.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2420 + - uid: 42421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,27.5 + pos: -8.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2421 + - type: NavMapBeacon + text: Command Evac +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 42064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + pos: -67.5,27.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2422 +- proto: DefaultStationBeaconExam + entities: + - uid: 32086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,27.5 + pos: -73.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2423 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 42067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,27.5 + pos: -120.5,-40.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2424 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 42068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,26.5 + pos: -67.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2425 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 42069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,22.5 + pos: -54.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2426 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 42071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,21.5 + pos: -5.5,-42.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2427 + - uid: 42072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 + pos: -90.5,-39.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2432 +- proto: DefaultStationBeaconJanitorsOffice + entities: + - uid: 11549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,16.5 + pos: -23.5,28.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2457 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 42073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 + pos: -27.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2459 + - uid: 42074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 + pos: 18.5,-41.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2461 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 42075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 + pos: -89.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2466 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 12511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,5.5 + pos: 11.5,-52.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 2542 +- proto: DefaultStationBeaconMailroom + entities: + - uid: 42446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-3.5 + pos: -46.5,35.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2544 +- proto: DefaultStationBeaconMantis + entities: + - uid: 42444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-3.5 + pos: -32.5,-34.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2591 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 6144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 + pos: -67.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2594 + - uid: 32079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-3.5 + pos: -5.5,-37.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2595 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 32087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 + pos: -79.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2597 + - uid: 42080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 + pos: 6.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2605 +- proto: DefaultStationBeaconPark + entities: + - uid: 42412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-3.5 + pos: -112.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2693 + - uid: 42447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,36.5 + pos: -45.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2696 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 42082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,36.5 + pos: -0.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2708 + - uid: 42422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-3.5 + pos: 18.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2711 + - type: NavMapBeacon + text: Workshop + - uid: 42425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 + pos: 51.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2712 + - type: NavMapBeacon + text: Prison Mine + - uid: 42426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-3.5 + pos: -0.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2714 + - type: NavMapBeacon + text: Guard Complex + - uid: 42449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-3.5 + pos: 49.5,-60.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2736 + - type: NavMapBeacon + text: Prison Evac +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 42088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 + pos: -111.5,-20.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2787 +- proto: DefaultStationBeaconPsychologist + entities: + - uid: 42448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-3.5 + pos: -12.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 2817 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 42428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-3.5 + pos: -17.5,40.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3029 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 42084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,36.5 + pos: -36.5,-42.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3030 +- proto: DefaultStationBeaconReporter + entities: + - uid: 6614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,36.5 + pos: -78.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3047 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 42417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,36.5 + pos: -21.5,-49.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31161 - - 31162 - - uid: 3049 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 42089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,36.5 + pos: -8.5,37.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3051 +- proto: DefaultStationBeaconScience + entities: + - uid: 32091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,36.5 + pos: -23.5,-40.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3052 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 42093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,36.5 + pos: -48.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3054 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 42090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,36.5 + pos: -46.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 3321 + - uid: 42091 components: - type: Transform - pos: 42.5,13.5 + pos: -79.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 5443 + - uid: 42092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,42.5 + pos: -8.5,-51.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 5449 +- proto: DefaultStationBeaconService + entities: + - uid: 42094 components: - type: Transform - pos: -34.5,26.5 + pos: -55.5,16.5 parent: 1 - - type: DeviceLinkSink - links: - - 18590 - - uid: 5450 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 42081 components: - type: Transform - pos: -34.5,27.5 + pos: 58.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 18590 - - uid: 5489 +- proto: DefaultStationBeaconSolars + entities: + - uid: 32095 components: - type: Transform - pos: -34.5,28.5 + pos: -148.5,-37.5 parent: 1 - - type: DeviceLinkSink - links: - - 18590 - - uid: 5616 + - uid: 42096 components: - type: Transform - pos: -34.5,42.5 + pos: -109.5,-86.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 5617 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 34778 components: - type: Transform - pos: -34.5,40.5 + pos: -85.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 5623 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 41907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,41.5 + pos: -127.5,-38.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 5779 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 42099 components: - type: Transform - pos: -34.5,41.5 + pos: -77.5,17.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 6010 +- proto: DefaultStationBeaconVault + entities: + - uid: 34779 components: - type: Transform - pos: 42.5,12.5 + pos: -110.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 6087 +- proto: DefaultStationBeaconVirology + entities: + - uid: 42414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,27.5 + pos: -88.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 6088 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 42101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 + pos: 15.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 6102 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,40.5 + pos: -99.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 6093 - - uid: 6142 + - uid: 12149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 + pos: -85.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 6611 + - uid: 34875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,23.5 + pos: -2.5,-33.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6617 + - uid: 34878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 + pos: -80.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6618 +- proto: DeployableBarrier + entities: + - uid: 3928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 + pos: -39.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6619 + - uid: 4059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,23.5 + pos: -41.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6620 + - uid: 4074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,23.5 + pos: -40.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6633 + - uid: 4076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,23.5 + pos: -39.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6635 + - uid: 4077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,23.5 + pos: -41.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 6639 + - uid: 4078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,23.5 + pos: -40.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 8505 + - uid: 12059 components: - type: Transform - pos: 42.5,11.5 + pos: -1.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 10042 + - uid: 12061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 + pos: 0.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10043 + - uid: 12062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 + pos: 1.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10044 + - uid: 12063 components: - type: Transform - pos: 42.5,-2.5 + pos: -2.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10051 + - uid: 23863 components: - type: Transform - pos: 42.5,10.5 + pos: -13.52089,-53.45415 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 10052 +- proto: DeskBell + entities: + - uid: 3169 components: - type: Transform - pos: 42.5,9.5 + pos: -37.43693,27.568518 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 10054 + - uid: 29935 components: - type: Transform - pos: 42.5,8.5 + pos: -98.43058,-13.41444 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 10153 + - uid: 31071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-3.5 + pos: -68.36911,-20.478374 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10154 + - uid: 33647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-3.5 + pos: -45.390156,-20.728548 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10155 + - uid: 33648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-3.5 + pos: -33.584686,-9.524367 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10156 + - uid: 33649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-3.5 + pos: -63.590584,21.74755 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10157 + - uid: 33650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 + pos: -70.44475,21.476526 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10158 + - uid: 33652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-3.5 + pos: -9.488931,-37.336723 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10159 +- proto: DiceBag + entities: + - uid: 2633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 + pos: 9.421763,-50.358074 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10160 + - uid: 16312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 + pos: 8.128835,-3.332927 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10161 +- proto: DiseaseDiagnoser + entities: + - uid: 4915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 + pos: -86.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10162 +- proto: DiseaseSwab + entities: + - uid: 11019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 + pos: -29.86008,-10.405017 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10163 + - uid: 11020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 + pos: -29.8731,-10.3138075 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10164 +- proto: DisposalBend + entities: + - uid: 5293 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-3.5 + pos: 6.5,-34.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10293 + - uid: 5298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10295 + - uid: 6150 components: - type: Transform - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: -25.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10302 + - uid: 6151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-3.5 + pos: -24.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10344 + - uid: 6153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 10656 + - uid: 8312 components: - type: Transform - pos: 42.5,7.5 + pos: -4.5,36.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 11292 + - uid: 9069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,23.5 + rot: -1.5707963267948966 rad + pos: -74.5,-35.5 parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 11289 - - uid: 11313 + - uid: 9072 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,29.5 + pos: -67.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11325 + - uid: 9073 components: - type: Transform - pos: -0.5,44.5 + pos: -67.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11329 + - uid: 9084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-27.5 + parent: 1 + - uid: 9085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,36.5 + pos: -74.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 11361 + - uid: 9086 components: - type: Transform - pos: -0.5,38.5 + rot: 1.5707963267948966 rad + pos: -82.5,-35.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11363 + - uid: 13927 components: - type: Transform - pos: -0.5,41.5 + pos: -39.5,37.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11453 + - uid: 13967 components: - type: Transform - pos: 42.5,6.5 + rot: -1.5707963267948966 rad + pos: -49.5,39.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 11461 + - uid: 13971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,27.5 + pos: -57.5,35.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11474 + - uid: 14006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,27.5 + pos: -20.5,19.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11475 + - uid: 14007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,27.5 + rot: 1.5707963267948966 rad + pos: -20.5,20.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11476 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,27.5 + pos: -17.5,20.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11477 + - uid: 14017 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,27.5 + pos: -46.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11478 + - uid: 14018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,3.5 + parent: 1 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,32.5 + pos: -37.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11519 + - uid: 14027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,37.5 + pos: -37.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 18588 - - uid: 11521 + - uid: 14028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,37.5 + rot: 1.5707963267948966 rad + pos: -41.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 18588 - - uid: 11536 + - uid: 14074 components: - type: Transform - pos: -0.5,39.5 + rot: 3.141592653589793 rad + pos: -33.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11544 + - uid: 14075 components: - type: Transform - pos: -0.5,43.5 + pos: -33.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11546 + - uid: 14081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,27.5 + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11547 + - uid: 14099 + components: + - type: Transform + pos: -40.5,2.5 + parent: 1 + - uid: 14100 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,28.5 + pos: -41.5,2.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11562 + - uid: 14125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 + rot: 3.141592653589793 rad + pos: 25.5,-51.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 11563 + - uid: 14146 components: - type: Transform - pos: -0.5,40.5 + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11576 + - uid: 14271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,27.5 + pos: -40.5,-58.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11577 + - uid: 14272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,27.5 + rot: 1.5707963267948966 rad + pos: -40.5,-54.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11578 + - uid: 14273 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,27.5 + pos: -38.5,-54.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 11589 + - uid: 14274 components: - type: Transform - pos: -0.5,42.5 + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 11617 + - uid: 14275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,37.5 + pos: -32.5,-50.5 parent: 1 - - type: DeviceLinkSink - links: - - 18588 - - uid: 11622 + - uid: 14277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,27.5 + pos: -27.5,-47.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 12021 + - uid: 14278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-16.5 + pos: -27.5,-45.5 parent: 1 - - type: DeviceLinkSink - links: - - 12027 - - uid: 12022 + - uid: 14281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 + rot: 3.141592653589793 rad + pos: -16.5,-47.5 parent: 1 - - type: DeviceLinkSink - links: - - 12027 - - uid: 12023 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-16.5 + pos: -19.5,-33.5 parent: 1 - - type: DeviceLinkSink - links: - - 12027 - - uid: 13108 + - uid: 14332 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,35.5 + pos: -15.5,-33.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 13109 + - uid: 14333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,34.5 + pos: -15.5,-32.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 13110 + - uid: 14336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,33.5 + rot: -1.5707963267948966 rad + pos: 24.5,-26.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 13111 + - uid: 14337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,27.5 + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 parent: 1 - - type: DeviceLinkSink - links: - - 32776 - - uid: 15165 + - uid: 14338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,24.5 + rot: -1.5707963267948966 rad + pos: 17.5,-37.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 15166 + - uid: 14368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,25.5 + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 15167 + - uid: 14369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,26.5 + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 15168 + - uid: 14374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,27.5 + pos: -36.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 15169 + - uid: 14375 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,28.5 + pos: -36.5,-47.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 15170 + - uid: 14435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,29.5 + pos: 4.5,-37.5 parent: 1 - - type: DeviceLinkSink - links: - - 11289 - - uid: 17138 + - uid: 14436 components: - type: Transform - pos: -0.5,48.5 + rot: 3.141592653589793 rad + pos: 2.5,-37.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 17139 + - uid: 14475 components: - type: Transform - pos: -0.5,47.5 + pos: -40.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 17140 + - uid: 14476 components: - type: Transform - pos: -0.5,46.5 + rot: 3.141592653589793 rad + pos: -40.5,-26.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 17141 + - uid: 14478 components: - type: Transform - pos: -0.5,45.5 + rot: 1.5707963267948966 rad + pos: -41.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 18589 - - uid: 32434 + - uid: 14492 components: - type: Transform - pos: 42.5,5.5 + rot: 3.141592653589793 rad + pos: -49.5,-55.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 32435 + - uid: 14493 components: - type: Transform - pos: 42.5,2.5 + pos: 26.5,-34.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 32436 + - uid: 14494 components: - type: Transform - pos: 42.5,3.5 + rot: 3.141592653589793 rad + pos: -52.5,-44.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 31161 - - 3048 - - uid: 32439 + - uid: 14495 components: - type: Transform - pos: 42.5,4.5 + rot: 1.5707963267948966 rad + pos: -52.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 31162 - - 3048 - - 31161 - - uid: 32445 + - uid: 14499 components: - type: Transform - pos: 42.5,-0.5 + rot: 3.141592653589793 rad + pos: -44.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 32446 + - uid: 14500 components: - type: Transform - pos: 42.5,0.5 + rot: 1.5707963267948966 rad + pos: -44.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 - - uid: 32447 + - uid: 14542 components: - type: Transform - pos: 42.5,1.5 + rot: 1.5707963267948966 rad + pos: -55.5,-33.5 parent: 1 - - type: DeviceLinkSink - links: - - 3048 - - 31162 - - 31161 -- proto: CrateArtifactContainer - entities: - - uid: 6801 + - uid: 14570 components: - type: Transform - pos: -19.5,-44.5 + rot: 3.141592653589793 rad + pos: -79.5,-27.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 13164 + - uid: 14571 components: - type: Transform - pos: -3.5,35.5 + rot: 3.141592653589793 rad + pos: -85.5,-21.5 parent: 1 -- proto: CrateCoffin - entities: - - uid: 36439 + - uid: 14573 components: - type: Transform - pos: -89.5,-73.5 + pos: -84.5,-21.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 36440 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEmergencyRadiation - entities: - - uid: 16099 + - uid: 14574 components: - type: Transform - pos: -44.5,-70.5 + rot: 3.141592653589793 rad + pos: -84.5,-27.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEmptySpawner - entities: - - uid: 6597 + - uid: 14582 components: - type: Transform - pos: -6.5,24.5 + pos: -49.5,-14.5 parent: 1 - - uid: 11247 + - uid: 14583 components: - type: Transform - pos: -9.5,26.5 + rot: 3.141592653589793 rad + pos: -49.5,-17.5 parent: 1 - - uid: 29643 + - uid: 14622 components: - type: Transform - pos: -30.5,-55.5 + rot: 1.5707963267948966 rad + pos: -73.5,-18.5 parent: 1 - - uid: 30582 + - uid: 14682 components: - type: Transform - pos: -97.5,15.5 + rot: -1.5707963267948966 rad + pos: -92.5,-15.5 parent: 1 - - uid: 30624 + - uid: 14683 components: - type: Transform - pos: -120.5,-11.5 + rot: 1.5707963267948966 rad + pos: -92.5,-14.5 parent: 1 - - uid: 30953 + - uid: 14685 components: - type: Transform - pos: -29.5,-54.5 + rot: -1.5707963267948966 rad + pos: -72.5,-18.5 parent: 1 - - uid: 31415 + - uid: 14707 components: - type: Transform - pos: -65.5,-58.5 + rot: 1.5707963267948966 rad + pos: -62.5,20.5 parent: 1 - - uid: 36817 + - uid: 14721 components: - type: Transform - pos: -118.5,-67.5 + rot: -1.5707963267948966 rad + pos: -88.5,6.5 parent: 1 - - uid: 36827 + - uid: 14722 components: - type: Transform - pos: -25.5,39.5 + rot: 1.5707963267948966 rad + pos: -88.5,8.5 parent: 1 - - uid: 36828 + - uid: 14723 components: - type: Transform - pos: -24.5,41.5 + rot: 1.5707963267948966 rad + pos: -85.5,17.5 parent: 1 - - uid: 36829 + - uid: 14725 components: - type: Transform - pos: -20.5,41.5 + rot: -1.5707963267948966 rad + pos: -76.5,7.5 parent: 1 -- proto: CrateEngineeringAMEJar - entities: - - uid: 3337 + - uid: 14729 components: - type: Transform - pos: -119.5,-23.5 + rot: -1.5707963267948966 rad + pos: -71.5,21.5 parent: 1 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 3338 + - uid: 14734 components: - type: Transform - pos: -117.5,-23.5 + rot: 1.5707963267948966 rad + pos: -73.5,36.5 parent: 1 - - uid: 3339 + - uid: 14735 components: - type: Transform - pos: -118.5,-23.5 + pos: -69.5,26.5 parent: 1 -- proto: CrateEngineeringCableBulk - entities: - - uid: 15872 + - uid: 14736 components: - type: Transform - pos: 52.5,-50.5 + rot: 3.141592653589793 rad + pos: -69.5,21.5 parent: 1 - - uid: 36974 + - uid: 14737 components: - type: Transform - pos: -111.5,-47.5 + rot: -1.5707963267948966 rad + pos: -67.5,21.5 parent: 1 -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 32467 + - uid: 14738 components: - type: Transform - pos: -26.5,-73.5 + rot: 1.5707963267948966 rad + pos: -74.5,22.5 parent: 1 -- proto: CrateEngineeringParticleAccelerator - entities: - - uid: 15881 + - uid: 14739 components: - type: Transform - pos: 59.5,-45.5 + rot: -1.5707963267948966 rad + pos: -74.5,21.5 parent: 1 -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 15890 + - uid: 14740 components: - type: Transform - pos: 52.5,-42.5 + rot: 3.141592653589793 rad + pos: -102.5,21.5 parent: 1 - - uid: 15891 + - uid: 14741 components: - type: Transform - pos: 52.5,-43.5 + pos: -102.5,22.5 parent: 1 - - uid: 15892 + - uid: 14742 components: - type: Transform - pos: 53.5,-42.5 + rot: 1.5707963267948966 rad + pos: -120.5,22.5 parent: 1 - - uid: 15893 + - uid: 14744 components: - type: Transform - pos: 53.5,-43.5 + rot: -1.5707963267948966 rad + pos: -73.5,0.5 parent: 1 -- proto: CrateEngineeringSolar - entities: - - uid: 34462 + - uid: 14851 components: - type: Transform - pos: -154.5,-67.5 + rot: -1.5707963267948966 rad + pos: -82.5,-2.5 parent: 1 - - uid: 34467 + - uid: 15659 components: - type: Transform - pos: -155.5,-67.5 + rot: -1.5707963267948966 rad + pos: -71.5,-23.5 parent: 1 - - uid: 35891 + - uid: 16485 components: - type: Transform - pos: -118.5,-88.5 + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 parent: 1 - - uid: 35892 + - uid: 16491 components: - type: Transform - pos: -117.5,-88.5 + pos: -15.5,-21.5 parent: 1 - - uid: 35893 + - uid: 16496 components: - type: Transform - pos: -117.5,-87.5 + rot: -1.5707963267948966 rad + pos: -43.5,-25.5 parent: 1 - - uid: 35894 + - uid: 16647 components: - type: Transform - pos: -118.5,-87.5 + rot: -1.5707963267948966 rad + pos: -93.5,5.5 parent: 1 -- proto: CrateFilledSpawner - entities: - - uid: 7306 + - uid: 17295 components: - type: Transform - pos: -30.5,30.5 + rot: 3.141592653589793 rad + pos: -95.5,5.5 parent: 1 - - uid: 7308 + - uid: 18910 components: - type: Transform - pos: -30.5,28.5 + rot: 1.5707963267948966 rad + pos: -43.5,37.5 parent: 1 - - uid: 7311 + - uid: 18914 components: - type: Transform - pos: -31.5,30.5 + rot: -1.5707963267948966 rad + pos: 12.5,-45.5 parent: 1 - - uid: 11240 + - uid: 19239 components: - type: Transform - pos: -18.5,19.5 + rot: 1.5707963267948966 rad + pos: -49.5,42.5 parent: 1 - - uid: 22651 + - uid: 19245 components: - type: Transform - pos: -122.5,-52.5 + pos: -42.5,42.5 parent: 1 - - uid: 30705 + - uid: 28671 components: - type: Transform - pos: -13.5,19.5 + rot: 3.141592653589793 rad + pos: -83.5,7.5 parent: 1 - - uid: 30723 + - uid: 28672 components: - type: Transform - pos: -92.5,-28.5 + pos: -83.5,8.5 parent: 1 - - uid: 30891 + - uid: 28811 components: - type: Transform - pos: -34.5,-78.5 + rot: 1.5707963267948966 rad + pos: -4.5,-45.5 parent: 1 - - uid: 30892 + - uid: 28812 components: - type: Transform - pos: -34.5,-79.5 + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 parent: 1 - - uid: 31348 + - uid: 28814 components: - type: Transform - pos: -32.5,-58.5 + rot: 3.141592653589793 rad + pos: -15.5,-46.5 parent: 1 - - uid: 31394 + - uid: 28817 components: - type: Transform - pos: -66.5,-58.5 + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 parent: 1 - - uid: 36664 + - uid: 28818 components: - type: Transform - pos: -90.5,-68.5 + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 parent: 1 - - uid: 36819 + - uid: 28819 components: - type: Transform - pos: -118.5,-66.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 1 - - uid: 40820 + - uid: 28820 components: - type: Transform - pos: 76.5,-22.5 + rot: -1.5707963267948966 rad + pos: -10.5,-23.5 parent: 1 - - uid: 40948 + - uid: 28821 components: - type: Transform - pos: 80.5,-15.5 + rot: 1.5707963267948966 rad + pos: -17.5,-23.5 parent: 1 -- proto: CrateFunArtSupplies - entities: - - uid: 11167 + - uid: 28822 components: - type: Transform - pos: 2.5,-3.5 + pos: -15.5,-35.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFunBoardGames - entities: - - uid: 11168 + - uid: 28823 components: - type: Transform - pos: -3.5,-3.5 + rot: 3.141592653589793 rad + pos: -17.5,-35.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFunDartsSet - entities: - - uid: 5494 + - uid: 28827 components: - type: Transform - pos: -9.5,28.5 + rot: -1.5707963267948966 rad + pos: -50.5,-45.5 parent: 1 -- proto: CrateFunParty - entities: - - uid: 6061 + - uid: 28828 components: - type: Transform - pos: -8.5,29.5 + rot: 3.141592653589793 rad + pos: -53.5,-45.5 parent: 1 -- proto: CrateFunPlushie - entities: - - uid: 12278 + - uid: 28835 components: - type: Transform - pos: -33.5,-55.5 + rot: -1.5707963267948966 rad + pos: -28.5,-12.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFunWaterGuns - entities: - - uid: 6060 + - uid: 28836 components: - type: Transform - pos: -8.5,28.5 + rot: 3.141592653589793 rad + pos: -32.5,-12.5 parent: 1 -- proto: CrateGenericSteel - entities: - - uid: 7258 + - uid: 28837 components: - type: Transform - pos: -30.646652,33.593903 + pos: -32.5,-7.5 parent: 1 - - uid: 7350 + - uid: 28839 components: - type: Transform - pos: -30.646652,32.634907 + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 parent: 1 - - uid: 9350 + - uid: 28842 components: - type: Transform - pos: -30.646652,33.083134 + rot: 3.141592653589793 rad + pos: -27.5,-2.5 parent: 1 - - uid: 29941 + - uid: 28843 components: - type: Transform - pos: -86.5,-47.5 + pos: -27.5,2.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 29942 - - 29943 - - 29944 - - 29945 - - 29946 - - 29947 - - 29948 - - 29949 - - 29950 - - 29951 - - 29952 - - 29953 - - 29954 - - 29955 - - 29956 - - 29957 - - 29958 - - 29959 - - 29960 - - 29961 - - 29962 - - 29963 - - 29964 - - 29965 - - 29966 - - 29967 - - 29968 - - 29969 - - 29970 - - 29971 - - 29972 - - 29973 - - 29974 - - 29975 - - 29976 - - 29977 - - 29978 - - 29979 - - 29980 - - 29981 - - 29982 - - 29983 - - 29984 - - 29985 - - 29986 - - 29987 - - 29988 - - 29989 - - 29990 - - 29991 - - 29992 - - 29993 - - 29994 - - 29995 - - 29996 - - 29997 - - 29998 - - 29999 - - 30000 - - 30001 - - 30002 - - 30003 - - 30004 - - 30005 - - 30006 - - 30007 - - 30008 - - 30009 - - 30010 - - 30011 - - 30012 - - 30013 - - 30014 - - 30015 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 30805 + - uid: 28849 components: - type: Transform - pos: -65.5,7.5 + rot: 3.141592653589793 rad + pos: -39.5,7.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30808 - - 30807 - - 30806 - - 30809 - - 30810 - - 30811 - - 30812 - - 30813 - - 30814 - - 30815 - - 30816 - - 30817 - - 30818 - - 30819 - - 30820 - - 30821 - - 30822 - - 30823 - - 30824 - - 30825 - - 30826 - - 30827 - - 30828 - - 30829 - - 30830 - - 30831 - - 30832 - - 30833 - - 30834 - - 30835 - - 30836 - - 30837 - - 30838 - - 30839 - - 30840 - - 30841 - - 30842 - - 30843 - - 30844 - - 30845 - - 30846 - - 30847 - - 30848 - - 30849 - - 30850 - - 30851 - - 30852 - - 30853 - - 30854 - - 30855 - - 30856 - - 30857 - - 30858 - - 30859 - - 30860 - - 30861 - - 30862 - - 30863 - - 30864 - - 30865 - - 30866 - - 30867 - - 30868 - - 30869 - - 30870 - - 30871 - - 30872 - - 30873 - - 30874 - - 8388 - - 8418 - - 8448 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroponicsSeeds - entities: - - uid: 939 + - uid: 28850 components: - type: Transform - pos: -18.5,-10.5 + pos: -36.5,7.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 935 + - uid: 28852 components: - type: Transform - pos: -30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -36.5,1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsSeedsMedicinal - entities: - - uid: 642 + - uid: 28853 components: - type: Transform - pos: -31.5,-11.5 + rot: 1.5707963267948966 rad + pos: -39.5,1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedical - entities: - - uid: 9063 + - uid: 28887 components: - type: Transform - pos: -85.5,-33.5 + rot: 3.141592653589793 rad + pos: -42.5,18.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedicalSurgery - entities: - - uid: 3167 + - uid: 28931 components: - type: Transform - pos: -22.5,-49.5 + rot: 3.141592653589793 rad + pos: -39.5,-25.5 parent: 1 - - uid: 9062 + - uid: 28933 components: - type: Transform - pos: -85.5,-29.5 + rot: 1.5707963267948966 rad + pos: -50.5,-8.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCChicken - entities: - - uid: 12552 + - uid: 28942 components: - type: Transform - pos: -23.5,-18.5 + pos: -82.5,9.5 parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 14.962439 - - 56.28727 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCCow - entities: - - uid: 12551 + - uid: 28943 components: - type: Transform - pos: -24.5,-18.5 + rot: 3.141592653589793 rad + pos: -82.5,8.5 parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 14.962439 - - 56.28727 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCDuck - entities: - - uid: 36564 + - uid: 28944 components: - type: Transform - pos: -101.5,-86.5 + pos: -81.5,8.5 parent: 1 - - type: EntityStorage - open: True - removedMasks: 28 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateNPCHamster - entities: - - uid: 11873 + - uid: 28946 components: - type: Transform - pos: -36.5,-38.5 + pos: -94.5,7.5 parent: 1 -- proto: CrateNPCMouse - entities: - - uid: 6953 + - uid: 28947 components: - type: Transform - pos: -32.5,-54.5 + rot: 3.141592653589793 rad + pos: -94.5,2.5 parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 14.962439 - - 56.28727 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCPig - entities: - - uid: 501 + - uid: 28948 components: - type: Transform - pos: -17.5,8.5 + pos: -88.5,2.5 parent: 1 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 14.962439 - - 56.28727 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateSecurityArmor - entities: - - uid: 12607 + - uid: 28949 components: - type: Transform - pos: -60.5,-44.5 + rot: 3.141592653589793 rad + pos: -88.5,-1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateSecurityNonlethal - entities: - - uid: 12608 + - uid: 28950 components: - type: Transform - pos: 22.5,-17.5 + pos: -87.5,-1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateSecurityRiot - entities: - - uid: 4773 + - uid: 28951 components: - type: Transform - pos: -62.5,-44.5 + rot: 3.141592653589793 rad + pos: -87.5,-3.5 parent: 1 - - uid: 5627 + - uid: 28952 components: - type: Transform - pos: 20.5,-17.5 + rot: -1.5707963267948966 rad + pos: -83.5,-3.5 parent: 1 - - uid: 7533 + - uid: 28953 components: - type: Transform - pos: -61.5,-44.5 + rot: 1.5707963267948966 rad + pos: -83.5,-1.5 parent: 1 - - uid: 10492 + - uid: 28954 components: - type: Transform - pos: 21.5,-17.5 + rot: -1.5707963267948966 rad + pos: -81.5,-1.5 parent: 1 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 16375 + - uid: 28956 components: - type: Transform - pos: 15.5,-12.5 + pos: -74.5,-0.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 30727 + - uid: 28983 components: - type: Transform - pos: -87.5,-40.5 + rot: 3.141592653589793 rad + pos: -101.5,-13.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.3114347 - - 16.219208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateTrainingBombs - entities: - - uid: 3382 + - uid: 29100 components: - type: Transform - pos: -59.5,-59.5 + rot: 3.141592653589793 rad + pos: -50.5,-18.5 parent: 1 -- proto: CrateTrashCart - entities: - - uid: 41991 + - uid: 29224 components: - type: Transform - pos: 15.5,-5.5 + pos: -101.5,-11.5 parent: 1 - - uid: 41992 + - uid: 29644 components: - type: Transform - pos: -3.5,-0.5 + rot: 1.5707963267948966 rad + pos: -53.5,30.5 parent: 1 - - uid: 41993 + - uid: 29648 components: - type: Transform - pos: 2.5,-0.5 + rot: -1.5707963267948966 rad + pos: -53.5,29.5 parent: 1 - - uid: 41994 + - uid: 29673 components: - type: Transform - pos: -20.5,6.5 + rot: 3.141592653589793 rad + pos: -56.5,29.5 parent: 1 - - uid: 41995 + - uid: 29674 components: - type: Transform - pos: -14.5,-15.5 + rot: 3.141592653589793 rad + pos: -29.5,19.5 parent: 1 -- proto: CrateTrashCartFilled - entities: - - uid: 24463 + - uid: 29712 components: - type: Transform - pos: -59.5,4.5 + rot: 1.5707963267948966 rad + pos: -40.5,21.5 parent: 1 - - uid: 42033 + - uid: 32468 components: - type: Transform - pos: -122.5,-22.5 + rot: 1.5707963267948966 rad + pos: -18.5,26.5 parent: 1 - - uid: 42036 + - uid: 32469 components: - type: Transform - pos: -115.5,-52.5 + rot: -1.5707963267948966 rad + pos: 43.5,-59.5 parent: 1 - - uid: 42037 + - uid: 32479 components: - type: Transform - pos: -15.5,-68.5 + rot: -1.5707963267948966 rad + pos: -18.5,25.5 parent: 1 - - uid: 42039 + - uid: 32528 components: - type: Transform - pos: 33.5,-50.5 + rot: 3.141592653589793 rad + pos: -62.5,-78.5 parent: 1 -- proto: CrateTrashCartJani - entities: - - uid: 29218 + - uid: 32531 components: - type: Transform - pos: -89.5,-36.5 + rot: -1.5707963267948966 rad + pos: -59.5,-78.5 parent: 1 - - uid: 42032 + - uid: 32538 components: - type: Transform - pos: -25.5,26.5 + rot: 1.5707963267948966 rad + pos: -59.5,-71.5 parent: 1 - - uid: 42038 + - uid: 32539 components: - type: Transform - pos: -6.5,-43.5 + rot: -1.5707963267948966 rad + pos: -58.5,-71.5 parent: 1 -- proto: CrayonBox - entities: - - uid: 7819 + - uid: 32544 components: - type: Transform - pos: -89.4603,17.825678 + rot: 1.5707963267948966 rad + pos: -58.5,-66.5 parent: 1 -- proto: Crematorium - entities: - - uid: 599 + - uid: 32545 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-52.5 + pos: -48.5,-66.5 parent: 1 -- proto: CrewMonitoringServer - entities: - - uid: 20869 + - uid: 32562 components: - type: Transform - pos: -113.5,9.5 + rot: 1.5707963267948966 rad + pos: -48.5,-58.5 parent: 1 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: Crowbar - entities: - - uid: 7291 + - uid: 32563 components: - type: Transform - pos: -46.99905,35.490726 + rot: -1.5707963267948966 rad + pos: -44.5,-58.5 parent: 1 - - uid: 9540 + - uid: 32575 components: - type: Transform - pos: -56.486897,2.5697439 + rot: 1.5707963267948966 rad + pos: -44.5,-49.5 parent: 1 - - uid: 9644 + - uid: 32576 components: - type: Transform - pos: -33.507248,10.534689 + rot: -1.5707963267948966 rad + pos: -43.5,-49.5 parent: 1 - - uid: 11962 + - uid: 32577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-46.5 + parent: 1 + - uid: 32578 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.63385,-34.487682 + pos: -42.5,-46.5 parent: 1 - - uid: 12264 + - uid: 32581 components: - type: Transform - pos: -41.597538,-54.439934 + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 parent: 1 - - uid: 13883 + - uid: 32582 components: - type: Transform - pos: 14.409463,-32.507328 + rot: -1.5707963267948966 rad + pos: -41.5,-37.5 parent: 1 - - uid: 31007 + - uid: 32583 components: - type: Transform - pos: -2.5687642,-41.46924 + rot: 1.5707963267948966 rad + pos: -41.5,-33.5 parent: 1 -- proto: CrowbarRed - entities: - - uid: 6159 + - uid: 32584 components: - type: Transform - pos: -41.6015,31.502686 + rot: -1.5707963267948966 rad + pos: -38.5,-33.5 parent: 1 - - uid: 7561 + - uid: 32607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.54341,25.558254 + pos: -38.5,-22.5 parent: 1 - - uid: 8946 + - uid: 32608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 1 + - uid: 32609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.393555,-13.309595 + pos: -27.5,-20.5 parent: 1 - - uid: 11290 + - uid: 32610 components: - type: Transform - pos: -14.470749,22.55329 + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 parent: 1 - - uid: 11914 + - uid: 32611 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 1 + - uid: 32612 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.445316,-41.605286 + pos: -23.5,-15.5 parent: 1 - - uid: 30767 + - uid: 32613 components: - type: Transform - pos: -57.531227,-19.518581 + pos: -23.5,-14.5 parent: 1 -- proto: CryogenicSleepUnit - entities: - - uid: 5453 + - uid: 32645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-21.5 + pos: -24.5,-3.5 parent: 1 - - uid: 5478 + - uid: 32646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 1 + - uid: 32658 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 32659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 1 + - uid: 32660 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,9.5 + pos: -25.5,17.5 parent: 1 - - uid: 42136 + - uid: 32678 components: - type: Transform - pos: -1.5,-35.5 + rot: -1.5707963267948966 rad + pos: -14.5,17.5 parent: 1 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 6940 + - uid: 32679 + components: + - type: Transform + pos: -14.5,22.5 + parent: 1 + - uid: 32690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,22.5 + parent: 1 + - uid: 32691 + components: + - type: Transform + pos: -19.5,23.5 + parent: 1 + - uid: 32692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,43.5 + pos: -26.5,23.5 parent: 1 - - uid: 22962 + - uid: 32693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,18.5 + parent: 1 + - uid: 32746 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,42.5 + pos: -75.5,39.5 parent: 1 - - uid: 28324 + - uid: 32793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,23.5 + parent: 1 + - uid: 32841 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,41.5 + pos: -124.5,23.5 parent: 1 - - uid: 29386 + - uid: 32842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,14.5 + parent: 1 + - uid: 32851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,43.5 + pos: -124.5,14.5 parent: 1 - - uid: 41057 + - uid: 32868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,41.5 + pos: -129.5,2.5 parent: 1 - - uid: 42132 + - uid: 32869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -130.5,2.5 + parent: 1 + - uid: 32870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -130.5,-5.5 + parent: 1 + - uid: 32871 + components: + - type: Transform + pos: -129.5,-5.5 + parent: 1 + - uid: 32882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -145.5,24.5 + parent: 1 + - uid: 32883 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,42.5 + pos: -129.5,-10.5 parent: 1 -- proto: CryoPod - entities: - - uid: 14437 + - uid: 32884 components: - type: Transform - pos: 2.5,-29.5 + rot: 3.141592653589793 rad + pos: -144.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 27204 + - uid: 32885 components: - type: Transform - pos: 4.6278667,-29.245111 + pos: -144.5,-1.5 parent: 1 -- proto: CurtainsBlack - entities: - - uid: 7326 + - uid: 32888 components: - type: Transform - pos: -68.5,7.5 + rot: 3.141592653589793 rad + pos: -130.5,3.5 parent: 1 - - uid: 7329 + - uid: 32890 components: - type: Transform - pos: -68.5,5.5 + rot: 3.141592653589793 rad + pos: -145.5,-1.5 parent: 1 -- proto: CurtainsBlue - entities: - - uid: 6680 + - uid: 32892 components: - type: Transform - pos: -44.5,25.5 + pos: -130.5,24.5 parent: 1 - - uid: 6707 + - uid: 32934 components: - type: Transform - pos: -45.5,25.5 + rot: -1.5707963267948966 rad + pos: -145.5,20.5 parent: 1 - - uid: 8337 + - uid: 32972 components: - type: Transform - pos: -116.5,-2.5 + rot: 3.141592653589793 rad + pos: -125.5,-11.5 parent: 1 -- proto: CurtainsBlueOpen - entities: - - uid: 7216 + - uid: 32978 components: - type: Transform - pos: -43.5,25.5 + pos: -124.5,3.5 parent: 1 - - uid: 11464 + - uid: 32979 components: - type: Transform - pos: -116.5,-1.5 + rot: -1.5707963267948966 rad + pos: -124.5,-7.5 parent: 1 -- proto: CurtainsCyan - entities: - - uid: 7333 + - uid: 32980 components: - type: Transform - pos: -64.5,-1.5 + rot: 1.5707963267948966 rad + pos: -125.5,-7.5 parent: 1 - - uid: 8183 + - uid: 33263 components: - type: Transform - pos: -65.5,-1.5 + rot: 1.5707963267948966 rad + pos: -145.5,-0.5 parent: 1 - - uid: 8184 + - uid: 33264 components: - type: Transform - pos: -66.5,-1.5 + rot: -1.5707963267948966 rad + pos: -138.5,-0.5 parent: 1 - - uid: 8185 + - uid: 33265 components: - type: Transform - pos: -67.5,-1.5 + pos: -138.5,5.5 parent: 1 -- proto: CurtainsGreen - entities: - - uid: 5768 + - uid: 33266 components: - type: Transform - pos: -49.5,25.5 + rot: 3.141592653589793 rad + pos: -154.5,5.5 parent: 1 - - uid: 9600 + - uid: 33267 components: - type: Transform - pos: -47.5,25.5 + rot: 1.5707963267948966 rad + pos: -154.5,20.5 parent: 1 -- proto: CurtainsGreenOpen - entities: - - uid: 6035 + - uid: 38054 components: - type: Transform - pos: -48.5,25.5 + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 parent: 1 -- proto: CurtainsOrangeOpen - entities: - - uid: 12002 + - uid: 38055 components: - type: Transform - pos: -8.5,-14.5 + rot: 3.141592653589793 rad + pos: 10.5,-59.5 parent: 1 - - uid: 12150 + - uid: 38056 components: - type: Transform - pos: -8.5,-15.5 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 1 - - uid: 12500 + - uid: 38404 components: - type: Transform - pos: -8.5,-13.5 + rot: -1.5707963267948966 rad + pos: -47.5,35.5 parent: 1 -- proto: CurtainSpawner - entities: - - uid: 4597 + - uid: 38437 components: - type: Transform - pos: -32.5,12.5 + rot: 1.5707963267948966 rad + pos: -18.5,31.5 parent: 1 - - uid: 5053 + - uid: 38889 components: - type: Transform - pos: -56.5,5.5 + rot: 3.141592653589793 rad + pos: -12.5,-61.5 parent: 1 - - uid: 5766 + - uid: 40268 components: - type: Transform - pos: -62.5,12.5 + pos: 25.5,-46.5 parent: 1 - - uid: 8338 + - uid: 40271 components: - type: Transform - pos: -56.5,-0.5 + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 parent: 1 - - uid: 8560 + - uid: 41405 components: - type: Transform - pos: -58.5,-0.5 + rot: 1.5707963267948966 rad + pos: -38.5,22.5 parent: 1 - - uid: 8561 + - uid: 41406 components: - type: Transform - pos: -33.5,-20.5 + pos: -29.5,22.5 parent: 1 - - uid: 8562 + - uid: 41417 components: - type: Transform - pos: -37.5,42.5 + rot: 3.141592653589793 rad + pos: -108.5,-26.5 parent: 1 - - uid: 8563 + - uid: 41418 components: - type: Transform - pos: -91.5,-39.5 + rot: -1.5707963267948966 rad + pos: -105.5,-26.5 parent: 1 - - uid: 8790 + - uid: 41422 components: - type: Transform - pos: -121.5,-59.5 + rot: 1.5707963267948966 rad + pos: -111.5,-12.5 parent: 1 - - uid: 8791 + - uid: 41423 components: - type: Transform - pos: -121.5,-58.5 + pos: -105.5,-12.5 parent: 1 - - uid: 9398 + - uid: 41450 components: - type: Transform - pos: -121.5,-60.5 + rot: 1.5707963267948966 rad + pos: -102.5,-24.5 parent: 1 - - uid: 9514 + - uid: 41451 components: - type: Transform - pos: -54.5,5.5 + rot: -1.5707963267948966 rad + pos: -102.5,-25.5 parent: 1 - - uid: 9518 + - uid: 41478 components: - type: Transform - pos: -58.5,12.5 + rot: -1.5707963267948966 rad + pos: -48.5,-26.5 parent: 1 - - uid: 9572 + - uid: 41479 components: - type: Transform - pos: -60.5,12.5 + rot: 1.5707963267948966 rad + pos: -53.5,-26.5 parent: 1 - - uid: 10929 + - uid: 42456 components: - type: Transform - pos: -44.5,42.5 + rot: -1.5707963267948966 rad + pos: -54.5,12.5 parent: 1 - - uid: 11000 + - uid: 42457 components: - type: Transform - pos: -43.5,42.5 + rot: 1.5707963267948966 rad + pos: -55.5,12.5 parent: 1 - - uid: 11471 + - uid: 42480 components: - type: Transform - pos: -36.5,41.5 + pos: -54.5,6.5 parent: 1 - - uid: 11982 + - uid: 42481 components: - type: Transform - pos: -36.5,40.5 + rot: 3.141592653589793 rad + pos: -58.5,6.5 parent: 1 - - uid: 11983 + - uid: 42482 components: - type: Transform - pos: -38.5,42.5 + rot: 1.5707963267948966 rad + pos: -58.5,9.5 parent: 1 - - uid: 12501 + - uid: 42492 components: - type: Transform - pos: -77.5,-6.5 + rot: 1.5707963267948966 rad + pos: -49.5,16.5 parent: 1 -- proto: CurtainsPink - entities: - - uid: 5107 + - uid: 42502 components: - type: Transform - pos: -89.5,-11.5 + rot: 1.5707963267948966 rad + pos: -16.5,31.5 parent: 1 - - uid: 9588 + - uid: 42503 components: - type: Transform - pos: -90.5,-11.5 + rot: -1.5707963267948966 rad + pos: -16.5,30.5 parent: 1 -- proto: CurtainsPinkOpen - entities: - - uid: 5749 + - uid: 42512 components: - type: Transform - pos: -88.5,-11.5 + pos: -20.5,33.5 parent: 1 - - uid: 9576 + - uid: 42513 components: - type: Transform - pos: -87.5,-11.5 + rot: 3.141592653589793 rad + pos: -20.5,24.5 parent: 1 - - uid: 9589 + - uid: 42524 components: - type: Transform - pos: -91.5,-11.5 + rot: 3.141592653589793 rad + pos: -80.5,24.5 parent: 1 -- proto: CurtainsPurple - entities: - - uid: 11462 + - uid: 42525 components: - type: Transform - pos: -53.5,25.5 + pos: -80.5,25.5 parent: 1 -- proto: CurtainsPurpleOpen - entities: - - uid: 9602 + - uid: 42526 components: - type: Transform - pos: -52.5,25.5 + rot: 1.5707963267948966 rad + pos: -81.5,25.5 parent: 1 - - uid: 9690 + - uid: 42535 components: - type: Transform - pos: -51.5,25.5 + rot: 3.141592653589793 rad + pos: -118.5,0.5 parent: 1 -- proto: CurtainsRed - entities: - - uid: 5081 + - uid: 42536 components: - type: Transform - pos: -44.5,-42.5 + pos: -117.5,0.5 parent: 1 - - uid: 5083 + - uid: 42537 components: - type: Transform - pos: -44.5,-45.5 + rot: 3.141592653589793 rad + pos: -117.5,-1.5 parent: 1 - - uid: 5104 + - uid: 42538 components: - type: Transform - pos: -44.5,-41.5 + rot: -1.5707963267948966 rad + pos: -115.5,-1.5 parent: 1 - - uid: 5106 + - uid: 42539 components: - type: Transform - pos: -44.5,-44.5 + rot: 1.5707963267948966 rad + pos: -115.5,0.5 parent: 1 -- proto: d6Dice - entities: - - uid: 2143 + - uid: 42540 components: - type: Transform - pos: -102.72877,-21.528055 + rot: -1.5707963267948966 rad + pos: -109.5,0.5 parent: 1 - - uid: 3197 + - uid: 42541 components: - type: Transform - pos: -102.718346,-21.204914 + rot: 1.5707963267948966 rad + pos: -109.5,1.5 parent: 1 - - uid: 11613 + - uid: 42542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.288841,30.18879 + pos: -102.5,1.5 parent: 1 - - uid: 11638 + - uid: 42543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,6.5 + parent: 1 + - uid: 42569 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.768008,29.94904 + pos: -108.5,-16.5 parent: 1 - - uid: 13866 + - uid: 42570 components: - type: Transform - pos: 29.772537,-34.28644 + rot: 3.141592653589793 rad + pos: -114.5,-16.5 parent: 1 - - uid: 13867 + - uid: 42576 components: - type: Transform - pos: 27.88712,-34.47407 + rot: 3.141592653589793 rad + pos: -95.5,-71.5 parent: 1 - - uid: 13868 + - uid: 42588 components: - type: Transform - pos: 27.491287,-34.213474 + rot: 1.5707963267948966 rad + pos: -95.5,-59.5 parent: 1 - - uid: 13869 + - uid: 42591 components: - type: Transform - pos: 29.48087,-34.54704 + rot: 1.5707963267948966 rad + pos: -96.5,-82.5 parent: 1 - - uid: 13870 + - uid: 42592 components: - type: Transform - pos: 28.241287,-34.213474 + rot: -1.5707963267948966 rad + pos: -92.5,-82.5 parent: 1 - - uid: 16310 + - uid: 42625 components: - type: Transform - pos: -4.5130353,2.6644075 + rot: -1.5707963267948966 rad + pos: -78.5,-59.5 parent: 1 - - uid: 16311 + - uid: 42626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-55.5 + parent: 1 + - uid: 42627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-55.5 + parent: 1 + - uid: 42628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-38.5 + parent: 1 + - uid: 42629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-38.5 + parent: 1 + - uid: 42630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 1 + - uid: 42631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 1 + - uid: 42707 + components: + - type: Transform + pos: -44.5,-36.5 + parent: 1 + - uid: 42724 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 1 + - uid: 42736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-70.5 + parent: 1 + - uid: 42737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-70.5 + parent: 1 + - uid: 42761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-50.5 + parent: 1 + - uid: 42762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-50.5 + parent: 1 + - uid: 42766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-53.5 + parent: 1 + - uid: 42780 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 1 + - uid: 42781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-41.5 + parent: 1 + - uid: 42782 components: - type: Transform - pos: -4.408869,2.4038095 + rot: 3.141592653589793 rad + pos: 23.5,-38.5 parent: 1 - - uid: 29390 + - uid: 42801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.8514225,-55.214714 + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 1 - - uid: 29391 + - uid: 42806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.9243393,-55.412766 + pos: -34.5,-17.5 parent: 1 - - uid: 31390 + - uid: 42807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.372627,-74.42412 + rot: 3.141592653589793 rad + pos: -34.5,-20.5 parent: 1 - - uid: 31391 + - uid: 42808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.664295,-74.205215 + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 parent: 1 -- proto: DefaultStationBeacon - entities: - - uid: 42411 + - uid: 42809 components: - type: Transform - pos: -129.5,-1.5 + pos: -29.5,-14.5 parent: 1 - - type: NavMapBeacon - text: Spesscar Track - - uid: 42413 + - uid: 42825 components: - type: Transform - pos: -85.5,3.5 + rot: 3.141592653589793 rad + pos: -20.5,-22.5 parent: 1 - - type: NavMapBeacon - text: Command Courtyard -- proto: DefaultStationBeaconAME - entities: - - uid: 41911 + - uid: 42834 components: - type: Transform - pos: -113.5,-27.5 + rot: 3.141592653589793 rad + pos: -32.5,-2.5 parent: 1 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 41910 + - uid: 42845 components: - type: Transform - pos: -43.5,-66.5 + rot: 3.141592653589793 rad + pos: -30.5,13.5 parent: 1 -- proto: DefaultStationBeaconArmory - entities: - - uid: 41908 + - uid: 42846 components: - type: Transform - pos: -62.5,-47.5 + pos: -29.5,13.5 parent: 1 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 6090 + - uid: 42847 components: - type: Transform - pos: -92.5,30.5 + rot: 3.141592653589793 rad + pos: -29.5,10.5 parent: 1 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 41906 + - uid: 42848 components: - type: Transform - pos: -40.5,-56.5 + pos: -27.5,10.5 parent: 1 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 2907 + - uid: 42849 components: - type: Transform - pos: -96.5,-44.5 + rot: -1.5707963267948966 rad + pos: -27.5,5.5 parent: 1 - - uid: 42415 + - uid: 42861 components: - type: Transform - pos: -22.5,-63.5 + rot: -1.5707963267948966 rad + pos: 8.5,-25.5 parent: 1 - - type: NavMapBeacon - text: Emergency Air -- proto: DefaultStationBeaconBar - entities: - - uid: 32202 + - uid: 42862 components: - type: Transform - pos: -50.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,-25.5 parent: 1 - - uid: 42423 + - uid: 42864 components: - type: Transform - pos: 22.5,-25.5 + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 parent: 1 -- proto: DefaultStationBeaconBotany - entities: - - uid: 32096 + - uid: 42884 components: - type: Transform - pos: -29.5,-13.5 + pos: -10.5,8.5 parent: 1 -- proto: DefaultStationBeaconBoxing - entities: - - uid: 42424 + - uid: 42885 components: - type: Transform - pos: 25.5,-29.5 + pos: -6.5,8.5 parent: 1 -- proto: DefaultStationBeaconBridge - entities: - - uid: 3103 + - uid: 42886 components: - type: Transform - pos: -100.5,6.5 + pos: -2.5,8.5 parent: 1 -- proto: DefaultStationBeaconBrig - entities: - - uid: 42437 + - uid: 42887 components: - type: Transform - pos: -47.5,-38.5 + pos: 1.5,8.5 parent: 1 -- proto: DefaultStationBeaconCameraServerRoom - entities: - - uid: 913 + - uid: 42888 components: - type: Transform - pos: -111.5,9.5 + pos: 5.5,8.5 parent: 1 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 5656 + - uid: 42889 components: - type: Transform - pos: -114.5,-0.5 + pos: 9.5,8.5 parent: 1 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 32088 + - uid: 42890 components: - type: Transform - pos: -31.5,39.5 + rot: 3.141592653589793 rad + pos: -10.5,6.5 parent: 1 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 32089 + - uid: 42896 components: - type: Transform - pos: -36.5,28.5 + pos: 11.5,6.5 parent: 1 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 32094 + - uid: 42898 components: - type: Transform - pos: -107.5,-31.5 + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 parent: 1 -- proto: DefaultStationBeaconChapel - entities: - - uid: 6143 + - uid: 42899 components: - type: Transform - pos: -25.5,-33.5 + pos: 13.5,-12.5 parent: 1 -- proto: DefaultStationBeaconChemistry +- proto: DisposalJunction entities: - - uid: 42416 + - uid: 2416 components: - type: Transform - pos: -65.5,-29.5 + rot: 1.5707963267948966 rad + pos: -43.5,-23.5 parent: 1 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 32093 + - uid: 2585 components: - type: Transform - pos: -83.5,-18.5 + rot: 1.5707963267948966 rad + pos: -93.5,6.5 parent: 1 -- proto: DefaultStationBeaconConferenceRoom - entities: - - uid: 6613 + - uid: 4086 components: - type: Transform - pos: -100.5,0.5 + rot: -1.5707963267948966 rad + pos: -30.5,5.5 parent: 1 -- proto: DefaultStationBeaconCorpsman - entities: - - uid: 42438 + - uid: 8316 components: - type: Transform - pos: -3.5,-30.5 + rot: 1.5707963267948966 rad + pos: -47.5,36.5 parent: 1 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 32082 + - uid: 9074 components: - type: Transform - pos: -85.5,17.5 + rot: 3.141592653589793 rad + pos: -73.5,-24.5 parent: 1 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 32081 + - uid: 13954 components: - type: Transform - pos: 2.5,-34.5 + rot: 3.141592653589793 rad + pos: -39.5,-7.5 parent: 1 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 7491 + - uid: 13964 components: - type: Transform - pos: -57.5,41.5 + rot: 3.141592653589793 rad + pos: -36.5,2.5 parent: 1 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 32080 + - uid: 13965 components: - type: Transform - pos: -58.5,-40.5 + rot: 1.5707963267948966 rad + pos: -66.5,-13.5 parent: 1 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 11311 + - uid: 13970 components: - type: Transform - pos: -10.5,25.5 + rot: 1.5707963267948966 rad + pos: -57.5,36.5 parent: 1 -- proto: DefaultStationBeaconDorms - entities: - - uid: 11496 + - uid: 14014 components: - type: Transform - pos: 37.5,-54.5 + rot: 1.5707963267948966 rad + pos: -97.5,6.5 parent: 1 - - uid: 42053 + - uid: 14023 components: - type: Transform - pos: -49.5,30.5 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 parent: 1 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 42065 + - uid: 14031 components: - type: Transform - pos: -103.5,-17.5 + rot: 3.141592653589793 rad + pos: -111.5,-15.5 parent: 1 -- proto: DefaultStationBeaconEngiOutpost - entities: - - uid: 42439 + - uid: 14090 components: - type: Transform - pos: -23.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 parent: 1 -- proto: DefaultStationBeaconEscapePod - entities: - - uid: 42097 + - uid: 14145 components: - type: Transform - pos: -94.5,-85.5 + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 parent: 1 - - uid: 42440 + - uid: 14147 components: - type: Transform - pos: -123.5,25.5 + rot: -1.5707963267948966 rad + pos: 14.5,-46.5 parent: 1 - - uid: 42441 + - uid: 14276 components: - type: Transform - pos: -135.5,-24.5 + rot: 1.5707963267948966 rad + pos: -32.5,-47.5 parent: 1 - - uid: 42442 + - uid: 14280 components: - type: Transform - pos: -45.5,-76.5 + rot: 1.5707963267948966 rad + pos: -26.5,-45.5 parent: 1 - - uid: 42443 + - uid: 14322 components: - type: Transform - pos: 25.5,7.5 + rot: 3.141592653589793 rad + pos: -16.5,-34.5 parent: 1 -- proto: DefaultStationBeaconEvac - entities: - - uid: 11548 + - uid: 14331 components: - type: Transform - pos: 3.5,-60.5 + rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 1 - - uid: 32092 + - uid: 14474 components: - type: Transform - pos: 17.5,-60.5 + rot: 3.141592653589793 rad + pos: -41.5,-24.5 parent: 1 - - uid: 42418 + - uid: 14521 components: - type: Transform - pos: 25.5,-60.5 + rot: 3.141592653589793 rad + pos: -52.5,-36.5 parent: 1 - - uid: 42419 + - uid: 14576 components: - type: Transform - pos: 39.5,-60.5 + rot: 1.5707963267948966 rad + pos: -79.5,-25.5 parent: 1 - - uid: 42420 + - uid: 14579 components: - type: Transform - pos: 47.5,-60.5 + rot: 3.141592653589793 rad + pos: -73.5,-23.5 parent: 1 - - type: NavMapBeacon - text: Prison Evac - - uid: 42421 + - uid: 14580 components: - type: Transform - pos: -8.5,-60.5 + rot: 1.5707963267948966 rad + pos: -93.5,-15.5 parent: 1 - - type: NavMapBeacon - text: Command Evac -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 42064 + - uid: 14581 components: - type: Transform - pos: -67.5,27.5 + rot: 1.5707963267948966 rad + pos: -73.5,-14.5 parent: 1 -- proto: DefaultStationBeaconExam - entities: - - uid: 32086 + - uid: 14604 components: - type: Transform - pos: -73.5,-28.5 + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 parent: 1 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 42067 + - uid: 14618 components: - type: Transform - pos: -120.5,-40.5 + rot: 1.5707963267948966 rad + pos: -72.5,-14.5 parent: 1 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 42068 + - uid: 14718 components: - type: Transform - pos: -67.5,22.5 + rot: 1.5707963267948966 rad + pos: -85.5,-2.5 parent: 1 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 42069 + - uid: 14719 components: - type: Transform - pos: -54.5,-19.5 + rot: 1.5707963267948966 rad + pos: -104.5,22.5 parent: 1 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 42071 + - uid: 14730 components: - type: Transform - pos: -5.5,-42.5 + rot: 3.141592653589793 rad + pos: -73.5,21.5 parent: 1 - - uid: 42072 + - uid: 14731 components: - type: Transform - pos: -90.5,-39.5 + rot: 3.141592653589793 rad + pos: -73.5,26.5 parent: 1 -- proto: DefaultStationBeaconJanitorsOffice - entities: - - uid: 11549 + - uid: 14779 components: - type: Transform - pos: -23.5,28.5 + rot: 3.141592653589793 rad + pos: -33.5,-14.5 parent: 1 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 42073 + - uid: 28858 components: - type: Transform - pos: -27.5,3.5 + rot: 1.5707963267948966 rad + pos: -53.5,19.5 parent: 1 - - uid: 42074 + - uid: 29645 components: - type: Transform - pos: 18.5,-41.5 + rot: 1.5707963267948966 rad + pos: -100.5,-15.5 parent: 1 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 42075 + - uid: 29763 components: - type: Transform - pos: -89.5,-6.5 + rot: 1.5707963267948966 rad + pos: -56.5,36.5 parent: 1 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 12511 + - uid: 38418 components: - type: Transform - pos: 11.5,-52.5 + rot: 1.5707963267948966 rad + pos: -30.5,36.5 parent: 1 -- proto: DefaultStationBeaconMailroom - entities: - - uid: 42446 + - uid: 38438 components: - type: Transform - pos: -46.5,35.5 + pos: -17.5,31.5 parent: 1 -- proto: DefaultStationBeaconMantis - entities: - - uid: 42444 + - uid: 38894 components: - type: Transform - pos: -32.5,-34.5 + rot: 3.141592653589793 rad + pos: -39.5,25.5 parent: 1 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 6144 + - uid: 40272 components: - type: Transform - pos: -67.5,-18.5 + rot: -1.5707963267948966 rad + pos: 18.5,-46.5 parent: 1 - - uid: 32079 + - uid: 41452 components: - type: Transform - pos: -5.5,-37.5 + rot: 3.141592653589793 rad + pos: -105.5,-25.5 parent: 1 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 32087 + - uid: 42593 components: - type: Transform - pos: -79.5,-31.5 + rot: 1.5707963267948966 rad + pos: -92.5,-59.5 parent: 1 - - uid: 42080 + - uid: 42835 components: - type: Transform - pos: 6.5,-31.5 + rot: 3.141592653589793 rad + pos: -32.5,-0.5 parent: 1 -- proto: DefaultStationBeaconPark +- proto: DisposalJunctionFlipped entities: - - uid: 42412 + - uid: 5208 components: - type: Transform - pos: -112.5,24.5 + pos: 14.5,-37.5 parent: 1 - - uid: 42447 + - uid: 5859 components: - type: Transform - pos: -45.5,-13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 parent: 1 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 42082 + - uid: 8961 components: - type: Transform - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: -49.5,-44.5 parent: 1 - - uid: 42422 + - uid: 9076 components: - type: Transform - pos: 18.5,-1.5 + rot: 3.141592653589793 rad + pos: -73.5,-25.5 parent: 1 - - type: NavMapBeacon - text: Workshop - - uid: 42425 + - uid: 13926 components: - type: Transform - pos: 51.5,-10.5 + rot: 3.141592653589793 rad + pos: -39.5,19.5 parent: 1 - - type: NavMapBeacon - text: Prison Mine - - uid: 42426 + - uid: 14024 components: - type: Transform - pos: -0.5,-14.5 + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 parent: 1 - - type: NavMapBeacon - text: Guard Complex -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 42088 + - uid: 14029 components: - type: Transform - pos: -111.5,-20.5 + rot: 3.141592653589793 rad + pos: -41.5,3.5 parent: 1 -- proto: DefaultStationBeaconProber - entities: - - uid: 42445 + - uid: 14055 components: - type: Transform - pos: -32.5,-43.5 + rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 1 -- proto: DefaultStationBeaconPsychologist - entities: - - uid: 42448 + - uid: 14062 components: - type: Transform - pos: -12.5,-30.5 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 parent: 1 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 42428 + - uid: 14112 components: - type: Transform - pos: -17.5,40.5 + rot: 3.141592653589793 rad + pos: -40.5,-7.5 parent: 1 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 42084 + - uid: 14168 components: - type: Transform - pos: -36.5,-42.5 + rot: 3.141592653589793 rad + pos: -40.5,9.5 parent: 1 -- proto: DefaultStationBeaconReporter - entities: - - uid: 6614 + - uid: 14260 components: - type: Transform - pos: -78.5,10.5 + rot: -1.5707963267948966 rad + pos: 11.5,-47.5 parent: 1 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 42417 + - uid: 14279 components: - type: Transform - pos: -21.5,-49.5 + rot: 3.141592653589793 rad + pos: -32.5,-49.5 parent: 1 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 42089 + - uid: 14310 components: - type: Transform - pos: -8.5,37.5 + rot: 3.141592653589793 rad + pos: -40.5,16.5 parent: 1 -- proto: DefaultStationBeaconScience - entities: - - uid: 32091 + - uid: 14311 components: - type: Transform - pos: -23.5,-40.5 + rot: 3.141592653589793 rad + pos: -16.5,-45.5 parent: 1 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 42093 + - uid: 14330 components: - type: Transform - pos: -48.5,-32.5 + rot: 3.141592653589793 rad + pos: -16.5,-33.5 parent: 1 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 42090 + - uid: 14339 components: - type: Transform - pos: -46.5,15.5 + rot: -1.5707963267948966 rad + pos: -7.5,-47.5 parent: 1 - - uid: 42091 + - uid: 14351 components: - type: Transform - pos: -79.5,26.5 + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 parent: 1 - - uid: 42092 + - uid: 14479 components: - type: Transform - pos: -8.5,-51.5 + rot: 3.141592653589793 rad + pos: -41.5,-23.5 parent: 1 -- proto: DefaultStationBeaconService - entities: - - uid: 42094 + - uid: 14498 components: - type: Transform - pos: -55.5,16.5 + rot: 3.141592653589793 rad + pos: -44.5,-27.5 parent: 1 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 42081 + - uid: 14513 components: - type: Transform - pos: 58.5,-44.5 + rot: 3.141592653589793 rad + pos: -52.5,-28.5 parent: 1 -- proto: DefaultStationBeaconSolars - entities: - - uid: 32095 + - uid: 14543 components: - type: Transform - pos: -148.5,-37.5 + rot: 3.141592653589793 rad + pos: -52.5,-33.5 parent: 1 - - uid: 42096 + - uid: 14584 components: - type: Transform - pos: -109.5,-86.5 + rot: 3.141592653589793 rad + pos: -41.5,-17.5 parent: 1 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 34778 + - uid: 14720 components: - type: Transform - pos: -85.5,-29.5 + rot: 3.141592653589793 rad + pos: -73.5,24.5 parent: 1 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 41907 + - uid: 14724 components: - type: Transform - pos: -127.5,-38.5 + rot: 1.5707963267948966 rad + pos: -85.5,8.5 parent: 1 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 42099 + - uid: 14728 components: - type: Transform - pos: -77.5,17.5 + rot: 1.5707963267948966 rad + pos: -79.5,0.5 parent: 1 -- proto: DefaultStationBeaconVault - entities: - - uid: 34779 + - uid: 14732 components: - type: Transform - pos: -110.5,-3.5 + rot: 3.141592653589793 rad + pos: -73.5,22.5 parent: 1 -- proto: DefaultStationBeaconVirology - entities: - - uid: 42414 + - uid: 15126 components: - type: Transform - pos: -88.5,-24.5 + pos: -17.5,30.5 parent: 1 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 42101 + - uid: 28813 components: - type: Transform - pos: 15.5,-22.5 + rot: 3.141592653589793 rad + pos: -15.5,-41.5 parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 9081 + - uid: 28932 components: - type: Transform - pos: -99.5,3.5 + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 parent: 1 - - uid: 12149 + - uid: 29231 components: - type: Transform - pos: -85.5,-28.5 + rot: 3.141592653589793 rad + pos: -50.5,-13.5 parent: 1 - - uid: 34875 + - uid: 29646 components: - type: Transform - pos: -2.5,-33.5 + rot: 3.141592653589793 rad + pos: -40.5,20.5 parent: 1 - - uid: 34878 + - uid: 29735 components: - type: Transform - pos: -80.5,-22.5 + rot: -1.5707963267948966 rad + pos: -48.5,-18.5 parent: 1 -- proto: DeployableBarrier - entities: - - uid: 3928 + - uid: 32478 components: - type: Transform - pos: -39.5,-32.5 + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 parent: 1 - - uid: 4059 + - uid: 38474 components: - type: Transform - pos: -41.5,-30.5 + rot: 1.5707963267948966 rad + pos: -74.5,-13.5 parent: 1 - - uid: 4074 + - uid: 38874 components: - type: Transform - pos: -40.5,-30.5 + rot: -1.5707963267948966 rad + pos: 22.5,-59.5 parent: 1 - - uid: 4076 + - uid: 41403 components: - type: Transform - pos: -39.5,-30.5 + rot: 3.141592653589793 rad + pos: -38.5,21.5 parent: 1 - - uid: 4077 + - uid: 42460 components: - type: Transform - pos: -41.5,-32.5 + rot: 1.5707963267948966 rad + pos: -55.5,9.5 parent: 1 - - uid: 4078 + - uid: 42479 components: - type: Transform - pos: -40.5,-32.5 + rot: -1.5707963267948966 rad + pos: -56.5,6.5 parent: 1 - - uid: 12059 + - uid: 42708 components: - type: Transform - pos: -1.5,-27.5 + rot: -1.5707963267948966 rad + pos: -47.5,-36.5 parent: 1 - - uid: 12061 + - uid: 42709 components: - type: Transform - pos: 0.5,-27.5 + rot: -1.5707963267948966 rad + pos: -50.5,-36.5 parent: 1 - - uid: 12062 + - uid: 42777 components: - type: Transform - pos: 1.5,-27.5 + rot: 3.141592653589793 rad + pos: 27.5,-40.5 parent: 1 - - uid: 12063 + - uid: 42778 components: - type: Transform - pos: -2.5,-27.5 + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 parent: 1 - - uid: 23863 + - uid: 42800 components: - type: Transform - pos: -13.52089,-53.45415 + pos: 17.5,-34.5 parent: 1 -- proto: DeskBell - entities: - - uid: 3169 + - uid: 42863 components: - type: Transform - pos: -37.43693,27.568518 + rot: 3.141592653589793 rad + pos: 10.5,-23.5 parent: 1 - - uid: 29935 + - uid: 42891 components: - type: Transform - pos: -98.43058,-13.41444 + rot: 1.5707963267948966 rad + pos: -6.5,6.5 parent: 1 - - uid: 31071 + - uid: 42892 components: - type: Transform - pos: -68.36911,-20.478374 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 33647 + - uid: 42893 components: - type: Transform - pos: -45.390156,-20.728548 + rot: 1.5707963267948966 rad + pos: 1.5,6.5 parent: 1 - - uid: 33648 + - uid: 42894 components: - type: Transform - pos: -33.584686,-9.524367 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 parent: 1 - - uid: 33649 + - uid: 42895 components: - type: Transform - pos: -63.590584,21.74755 + rot: 1.5707963267948966 rad + pos: 9.5,6.5 parent: 1 - - uid: 33650 + - uid: 42897 components: - type: Transform - pos: -70.44475,21.476526 + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 parent: 1 - - uid: 33652 +- proto: DisposalMachineFrame + entities: + - uid: 30609 components: - type: Transform - pos: -9.488931,-37.336723 + pos: -124.5,-8.5 parent: 1 -- proto: DiceBag +- proto: DisposalPipe entities: - - uid: 2633 + - uid: 871 components: - type: Transform - pos: 9.421763,-50.358074 + rot: -1.5707963267948966 rad + pos: -34.5,-6.5 parent: 1 - - uid: 16312 + - uid: 1715 components: - type: Transform - pos: 8.128835,-3.332927 + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 parent: 1 -- proto: DiseaseDiagnoser - entities: - - uid: 4915 + - uid: 1716 components: - type: Transform - pos: -86.5,-27.5 + rot: 3.141592653589793 rad + pos: 6.5,-32.5 parent: 1 -- proto: DiseaseSwab - entities: - - uid: 11019 + - uid: 1717 components: - type: Transform - pos: -29.86008,-10.405017 + rot: 3.141592653589793 rad + pos: 6.5,-31.5 parent: 1 - - uid: 11020 + - uid: 1718 components: - type: Transform - pos: -29.8731,-10.3138075 + rot: 3.141592653589793 rad + pos: 6.5,-33.5 parent: 1 -- proto: DisposalBend - entities: - - uid: 5293 + - uid: 4687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -75.5,-35.5 parent: 1 - - uid: 5298 + - uid: 4692 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-30.5 + pos: -80.5,-35.5 parent: 1 - - uid: 6150 + - uid: 4721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-14.5 + rot: 1.5707963267948966 rad + pos: -79.5,-35.5 parent: 1 - - uid: 6151 + - uid: 4727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-11.5 + pos: -74.5,-34.5 parent: 1 - - uid: 6153 + - uid: 4736 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 1 + - uid: 4737 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-11.5 + pos: -77.5,-35.5 parent: 1 - - uid: 8312 + - uid: 4772 components: - type: Transform - pos: -4.5,36.5 + rot: 1.5707963267948966 rad + pos: -76.5,-35.5 parent: 1 - - uid: 9069 + - uid: 4774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-35.5 + pos: -74.5,-31.5 parent: 1 - - uid: 9072 + - uid: 4796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-28.5 + rot: -1.5707963267948966 rad + pos: -71.5,-24.5 parent: 1 - - uid: 9073 + - uid: 5242 components: - type: Transform - pos: -67.5,-24.5 + rot: -1.5707963267948966 rad + pos: 5.5,-34.5 parent: 1 - - uid: 9084 + - uid: 5278 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-27.5 + pos: 3.5,-34.5 parent: 1 - - uid: 9085 + - uid: 6152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-27.5 + rot: 3.141592653589793 rad + pos: -25.5,-12.5 parent: 1 - - uid: 9086 + - uid: 8309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-35.5 + pos: -42.5,30.5 parent: 1 - - uid: 13927 + - uid: 8310 components: - type: Transform - pos: -39.5,37.5 + pos: -42.5,31.5 parent: 1 - - uid: 13967 + - uid: 8311 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,39.5 + pos: -37.5,36.5 parent: 1 - - uid: 13971 + - uid: 8314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,35.5 + pos: -40.5,36.5 parent: 1 - - uid: 14006 + - uid: 8315 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,19.5 + pos: -39.5,36.5 parent: 1 - - uid: 14007 + - uid: 9090 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,20.5 + pos: -81.5,-35.5 parent: 1 - - uid: 14008 + - uid: 12152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-13.5 + parent: 1 + - uid: 13564 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,20.5 + pos: -40.5,37.5 parent: 1 - - uid: 14017 + - uid: 13917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-2.5 + pos: -13.5,25.5 parent: 1 - - uid: 14018 + - uid: 13918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,3.5 + rot: -1.5707963267948966 rad + pos: -14.5,25.5 parent: 1 - - uid: 14024 + - uid: 13919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,5.5 + pos: -15.5,25.5 parent: 1 - - uid: 14026 + - uid: 13920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,5.5 + rot: -1.5707963267948966 rad + pos: -16.5,25.5 parent: 1 - - uid: 14027 + - uid: 13925 components: - type: Transform - pos: -37.5,6.5 + rot: -1.5707963267948966 rad + pos: -41.5,18.5 parent: 1 - - uid: 14028 + - uid: 13929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,6.5 + rot: -1.5707963267948966 rad + pos: -43.5,36.5 parent: 1 - - uid: 14074 + - uid: 13931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-15.5 + rot: -1.5707963267948966 rad + pos: -33.5,36.5 parent: 1 - - uid: 14075 + - uid: 13932 components: - type: Transform - pos: -33.5,-6.5 + rot: -1.5707963267948966 rad + pos: -34.5,36.5 parent: 1 - - uid: 14081 + - uid: 13952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + pos: -11.5,-47.5 parent: 1 - - uid: 14099 + - uid: 13959 components: - type: Transform - pos: -40.5,2.5 + rot: -1.5707963267948966 rad + pos: -45.5,30.5 parent: 1 - - uid: 14100 + - uid: 13972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,2.5 + rot: -1.5707963267948966 rad + pos: -45.5,36.5 parent: 1 - - uid: 14125 + - uid: 13973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-51.5 + rot: -1.5707963267948966 rad + pos: -44.5,36.5 parent: 1 - - uid: 14146 + - uid: 13974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 + rot: -1.5707963267948966 rad + pos: -15.5,36.5 parent: 1 - - uid: 14271 + - uid: 13975 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-58.5 + pos: -14.5,36.5 parent: 1 - - uid: 14272 + - uid: 13976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-54.5 + rot: -1.5707963267948966 rad + pos: -13.5,36.5 parent: 1 - - uid: 14273 + - uid: 13977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-54.5 + pos: -12.5,36.5 parent: 1 - - uid: 14274 + - uid: 13985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 + pos: -17.5,27.5 parent: 1 - - uid: 14275 + - uid: 13986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-50.5 + pos: -17.5,26.5 parent: 1 - - uid: 14277 + - uid: 13987 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-47.5 + pos: -11.5,36.5 parent: 1 - - uid: 14278 + - uid: 13998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-45.5 + pos: -28.5,19.5 parent: 1 - - uid: 14281 + - uid: 13999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-47.5 + rot: 1.5707963267948966 rad + pos: -27.5,19.5 parent: 1 - - uid: 14327 + - uid: 14000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-33.5 + pos: -26.5,19.5 parent: 1 - - uid: 14332 + - uid: 14001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-33.5 + rot: 1.5707963267948966 rad + pos: -25.5,19.5 parent: 1 - - uid: 14333 + - uid: 14002 components: - type: Transform - pos: -15.5,-32.5 + rot: 1.5707963267948966 rad + pos: -24.5,19.5 parent: 1 - - uid: 14336 + - uid: 14003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 + rot: 1.5707963267948966 rad + pos: -23.5,19.5 parent: 1 - - uid: 14337 + - uid: 14004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-26.5 + pos: -22.5,19.5 parent: 1 - - uid: 14338 + - uid: 14005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-37.5 + rot: 1.5707963267948966 rad + pos: -21.5,19.5 parent: 1 - - uid: 14339 + - uid: 14009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + rot: -1.5707963267948966 rad + pos: -19.5,20.5 parent: 1 - - uid: 14368 + - uid: 14010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 + rot: -1.5707963267948966 rad + pos: -18.5,20.5 parent: 1 - - uid: 14369 + - uid: 14011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 + rot: 3.141592653589793 rad + pos: -17.5,21.5 parent: 1 - - uid: 14374 + - uid: 14012 components: - type: Transform - pos: -36.5,-44.5 + rot: 3.141592653589793 rad + pos: -17.5,22.5 parent: 1 - - uid: 14375 + - uid: 14013 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-47.5 + pos: -17.5,23.5 parent: 1 - - uid: 14435 + - uid: 14030 components: - type: Transform - pos: 4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -31.5,5.5 parent: 1 - - uid: 14436 + - uid: 14032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-37.5 + rot: -1.5707963267948966 rad + pos: -33.5,5.5 parent: 1 - - uid: 14475 + - uid: 14033 components: - type: Transform - pos: -40.5,-24.5 + rot: -1.5707963267948966 rad + pos: -35.5,5.5 parent: 1 - - uid: 14476 + - uid: 14034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-26.5 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 parent: 1 - - uid: 14478 + - uid: 14035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-15.5 + rot: -1.5707963267948966 rad + pos: -38.5,6.5 parent: 1 - - uid: 14492 + - uid: 14036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-55.5 + rot: -1.5707963267948966 rad + pos: -39.5,6.5 parent: 1 - - uid: 14493 + - uid: 14037 components: - type: Transform - pos: -49.5,-44.5 + rot: 3.141592653589793 rad + pos: -41.5,5.5 parent: 1 - - uid: 14494 + - uid: 14038 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-44.5 + pos: -41.5,4.5 parent: 1 - - uid: 14495 + - uid: 14039 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-27.5 + pos: -42.5,3.5 parent: 1 - - uid: 14499 + - uid: 14040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-28.5 + rot: 1.5707963267948966 rad + pos: -43.5,3.5 parent: 1 - - uid: 14500 + - uid: 14041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-23.5 + pos: -44.5,3.5 parent: 1 - - uid: 14542 + - uid: 14042 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-33.5 + pos: -45.5,3.5 parent: 1 - - uid: 14570 + - uid: 14043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-27.5 + pos: -46.5,2.5 parent: 1 - - uid: 14571 + - uid: 14044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-21.5 + pos: -46.5,1.5 parent: 1 - - uid: 14573 + - uid: 14045 components: - type: Transform - pos: -84.5,-21.5 + pos: -46.5,0.5 parent: 1 - - uid: 14574 + - uid: 14046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-27.5 + pos: -46.5,-0.5 parent: 1 - - uid: 14582 + - uid: 14047 components: - type: Transform - pos: -49.5,-14.5 + pos: -46.5,-1.5 parent: 1 - - uid: 14583 + - uid: 14048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-17.5 + rot: -1.5707963267948966 rad + pos: -47.5,-2.5 parent: 1 - - uid: 14622 + - uid: 14049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-18.5 + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 parent: 1 - - uid: 14682 + - uid: 14050 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,-15.5 + pos: -49.5,-2.5 parent: 1 - - uid: 14683 + - uid: 14051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-14.5 + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 parent: 1 - - uid: 14685 + - uid: 14052 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,-18.5 + pos: -51.5,-2.5 parent: 1 - - uid: 14707 + - uid: 14053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,20.5 + rot: 3.141592653589793 rad + pos: -40.5,7.5 parent: 1 - - uid: 14720 + - uid: 14054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,6.5 + rot: 3.141592653589793 rad + pos: -40.5,8.5 parent: 1 - - uid: 14721 + - uid: 14056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,6.5 + rot: 3.141592653589793 rad + pos: -40.5,10.5 parent: 1 - - uid: 14722 + - uid: 14057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,8.5 + rot: 3.141592653589793 rad + pos: -40.5,11.5 parent: 1 - - uid: 14723 + - uid: 14058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,17.5 + rot: 3.141592653589793 rad + pos: -40.5,12.5 parent: 1 - - uid: 14725 + - uid: 14059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,7.5 + rot: 3.141592653589793 rad + pos: -40.5,13.5 parent: 1 - - uid: 14729 + - uid: 14060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,14.5 parent: 1 - - uid: 14734 + - uid: 14061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,36.5 + rot: 3.141592653589793 rad + pos: -40.5,15.5 parent: 1 - - uid: 14735 + - uid: 14063 components: - type: Transform - pos: -69.5,26.5 + rot: 3.141592653589793 rad + pos: -40.5,17.5 parent: 1 - - uid: 14736 + - uid: 14064 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,21.5 + pos: -40.5,18.5 parent: 1 - - uid: 14737 + - uid: 14065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,21.5 + rot: 3.141592653589793 rad + pos: -40.5,19.5 parent: 1 - - uid: 14738 + - uid: 14073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,22.5 + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 parent: 1 - - uid: 14739 + - uid: 14076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,21.5 + pos: -39.5,-6.5 parent: 1 - - uid: 14740 + - uid: 14077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,21.5 + rot: -1.5707963267948966 rad + pos: -38.5,-6.5 parent: 1 - - uid: 14741 + - uid: 14078 components: - type: Transform - pos: -102.5,22.5 + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 parent: 1 - - uid: 14742 + - uid: 14079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,22.5 + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 parent: 1 - - uid: 14744 + - uid: 14080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,0.5 + pos: -35.5,-6.5 parent: 1 - - uid: 14851 + - uid: 14082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-2.5 + rot: 3.141592653589793 rad + pos: -40.5,-14.5 parent: 1 - - uid: 15659 + - uid: 14083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-23.5 + rot: 3.141592653589793 rad + pos: -40.5,-13.5 parent: 1 - - uid: 16477 + - uid: 14084 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-22.5 + pos: -40.5,-12.5 parent: 1 - - uid: 16485 + - uid: 14085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-21.5 + rot: 3.141592653589793 rad + pos: -40.5,-11.5 parent: 1 - - uid: 16491 + - uid: 14086 components: - type: Transform - pos: -15.5,-21.5 + rot: 3.141592653589793 rad + pos: -40.5,-10.5 parent: 1 - - uid: 16496 + - uid: 14087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-25.5 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 parent: 1 - - uid: 16647 + - uid: 14088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,5.5 + rot: 3.141592653589793 rad + pos: -40.5,-8.5 parent: 1 - - uid: 17295 + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,5.5 + pos: -40.5,-5.5 parent: 1 - - uid: 18910 + - uid: 14092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,37.5 + rot: 3.141592653589793 rad + pos: -40.5,-4.5 parent: 1 - - uid: 18914 + - uid: 14093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-45.5 + rot: 3.141592653589793 rad + pos: -40.5,-3.5 parent: 1 - - uid: 19239 + - uid: 14094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,42.5 + rot: 3.141592653589793 rad + pos: -40.5,-2.5 parent: 1 - - uid: 19245 + - uid: 14095 components: - type: Transform - pos: -42.5,42.5 + rot: 3.141592653589793 rad + pos: -40.5,-1.5 parent: 1 - - uid: 28671 + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,7.5 + pos: -40.5,-0.5 parent: 1 - - uid: 28672 + - uid: 14097 components: - type: Transform - pos: -83.5,8.5 + rot: 3.141592653589793 rad + pos: -40.5,0.5 parent: 1 - - uid: 28811 + - uid: 14098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-45.5 + rot: 3.141592653589793 rad + pos: -40.5,1.5 parent: 1 - - uid: 28812 + - uid: 14104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-46.5 + rot: 1.5707963267948966 rad + pos: -48.5,-7.5 parent: 1 - - uid: 28814 + - uid: 14105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-46.5 + rot: 1.5707963267948966 rad + pos: -47.5,-7.5 parent: 1 - - uid: 28817 + - uid: 14106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-11.5 + pos: -46.5,-7.5 parent: 1 - - uid: 28818 + - uid: 14107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 parent: 1 - - uid: 28819 + - uid: 14108 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + pos: -44.5,-7.5 parent: 1 - - uid: 28820 + - uid: 14109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-23.5 + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 parent: 1 - - uid: 28821 + - uid: 14110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-23.5 + pos: -42.5,-7.5 parent: 1 - - uid: 28822 + - uid: 14111 components: - type: Transform - pos: -15.5,-35.5 + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 parent: 1 - - uid: 28823 + - uid: 14126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-35.5 + rot: 1.5707963267948966 rad + pos: 28.5,-51.5 parent: 1 - - uid: 28827 + - uid: 14127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-45.5 + rot: 1.5707963267948966 rad + pos: 27.5,-51.5 parent: 1 - - uid: 28828 + - uid: 14128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-45.5 + rot: 1.5707963267948966 rad + pos: 26.5,-51.5 parent: 1 - - uid: 28835 + - uid: 14129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-12.5 + pos: 25.5,-50.5 parent: 1 - - uid: 28836 + - uid: 14130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-12.5 + pos: 25.5,-49.5 parent: 1 - - uid: 28837 + - uid: 14131 components: - type: Transform - pos: -32.5,-7.5 + pos: 25.5,-48.5 parent: 1 - - uid: 28839 + - uid: 14132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 + pos: 25.5,-47.5 parent: 1 - - uid: 28842 + - uid: 14142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-2.5 + rot: -1.5707963267948966 rad + pos: 15.5,-46.5 parent: 1 - - uid: 28843 + - uid: 14148 components: - type: Transform - pos: -27.5,2.5 + rot: 1.5707963267948966 rad + pos: 12.5,-47.5 parent: 1 - - uid: 28849 + - uid: 14150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,7.5 + rot: 1.5707963267948966 rad + pos: 10.5,-47.5 parent: 1 - - uid: 28850 + - uid: 14151 components: - type: Transform - pos: -36.5,7.5 + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 parent: 1 - - uid: 28852 + - uid: 14152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,1.5 + rot: 1.5707963267948966 rad + pos: 8.5,-47.5 parent: 1 - - uid: 28853 + - uid: 14153 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,1.5 + pos: 7.5,-47.5 parent: 1 - - uid: 28887 + - uid: 14154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,18.5 + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 parent: 1 - - uid: 28931 + - uid: 14155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 + rot: 1.5707963267948966 rad + pos: 5.5,-47.5 parent: 1 - - uid: 28933 + - uid: 14156 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-8.5 + pos: 4.5,-47.5 parent: 1 - - uid: 28942 + - uid: 14157 components: - type: Transform - pos: -82.5,9.5 + rot: 1.5707963267948966 rad + pos: 3.5,-47.5 parent: 1 - - uid: 28943 + - uid: 14158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,8.5 + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 parent: 1 - - uid: 28944 + - uid: 14159 components: - type: Transform - pos: -81.5,8.5 + rot: 1.5707963267948966 rad + pos: 1.5,-47.5 parent: 1 - - uid: 28946 + - uid: 14160 components: - type: Transform - pos: -94.5,7.5 + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 parent: 1 - - uid: 28947 + - uid: 14161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,2.5 + rot: 1.5707963267948966 rad + pos: -0.5,-47.5 parent: 1 - - uid: 28948 + - uid: 14162 components: - type: Transform - pos: -88.5,2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 parent: 1 - - uid: 28949 + - uid: 14163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 parent: 1 - - uid: 28950 + - uid: 14164 components: - type: Transform - pos: -87.5,-1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-47.5 parent: 1 - - uid: 28951 + - uid: 14165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-3.5 + rot: 1.5707963267948966 rad + pos: -4.5,-47.5 parent: 1 - - uid: 28952 + - uid: 14166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-3.5 + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 parent: 1 - - uid: 28953 + - uid: 14167 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-1.5 + pos: -6.5,-47.5 parent: 1 - - uid: 28954 + - uid: 14169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-1.5 + rot: 1.5707963267948966 rad + pos: -8.5,-47.5 parent: 1 - - uid: 28956 + - uid: 14170 components: - type: Transform - pos: -74.5,-0.5 + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 parent: 1 - - uid: 28983 + - uid: 14171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-13.5 + rot: 1.5707963267948966 rad + pos: -10.5,-47.5 parent: 1 - - uid: 29100 + - uid: 14172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-18.5 + rot: -1.5707963267948966 rad + pos: -10.5,36.5 parent: 1 - - uid: 29224 + - uid: 14174 components: - type: Transform - pos: -101.5,-11.5 + rot: 1.5707963267948966 rad + pos: -13.5,-47.5 parent: 1 - - uid: 29644 + - uid: 14175 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,30.5 + pos: -14.5,-47.5 parent: 1 - - uid: 29648 + - uid: 14241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,29.5 + pos: -9.5,36.5 parent: 1 - - uid: 29673 + - uid: 14258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,29.5 + pos: 11.5,-49.5 parent: 1 - - uid: 29674 + - uid: 14259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 + pos: 11.5,-48.5 parent: 1 - - uid: 29712 + - uid: 14263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,21.5 + rot: -1.5707963267948966 rad + pos: -37.5,-59.5 parent: 1 - - uid: 32468 + - uid: 14264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,26.5 + rot: -1.5707963267948966 rad + pos: -36.5,-59.5 parent: 1 - - uid: 32469 + - uid: 14282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-59.5 + pos: -16.5,-46.5 parent: 1 - - uid: 32479 + - uid: 14283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,25.5 + rot: 3.141592653589793 rad + pos: -40.5,-57.5 parent: 1 - - uid: 32528 + - uid: 14284 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-78.5 + pos: -40.5,-56.5 parent: 1 - - uid: 32531 + - uid: 14285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-78.5 + rot: 3.141592653589793 rad + pos: -40.5,-55.5 parent: 1 - - uid: 32538 + - uid: 14286 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,-71.5 + pos: -39.5,-54.5 parent: 1 - - uid: 32539 + - uid: 14287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-71.5 + pos: -38.5,-53.5 parent: 1 - - uid: 32544 + - uid: 14288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-66.5 + pos: -38.5,-52.5 parent: 1 - - uid: 32545 + - uid: 14289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-66.5 + pos: -38.5,-51.5 parent: 1 - - uid: 32562 + - uid: 14290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-58.5 + rot: -1.5707963267948966 rad + pos: -37.5,-50.5 parent: 1 - - uid: 32563 + - uid: 14291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-58.5 + pos: -36.5,-50.5 parent: 1 - - uid: 32575 + - uid: 14292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-49.5 + rot: -1.5707963267948966 rad + pos: -35.5,-50.5 parent: 1 - - uid: 32576 + - uid: 14293 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-49.5 + pos: -34.5,-50.5 parent: 1 - - uid: 32577 + - uid: 14294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-46.5 + rot: -1.5707963267948966 rad + pos: -33.5,-50.5 parent: 1 - - uid: 32578 + - uid: 14295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-46.5 + rot: 3.141592653589793 rad + pos: -32.5,-48.5 parent: 1 - - uid: 32581 + - uid: 14296 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-37.5 + pos: -31.5,-47.5 parent: 1 - - uid: 32582 + - uid: 14297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-37.5 + rot: 1.5707963267948966 rad + pos: -30.5,-47.5 parent: 1 - - uid: 32583 + - uid: 14298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-33.5 + pos: -29.5,-47.5 parent: 1 - - uid: 32584 + - uid: 14299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 + rot: 1.5707963267948966 rad + pos: -28.5,-47.5 parent: 1 - - uid: 32607 + - uid: 14300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-22.5 + pos: -27.5,-46.5 parent: 1 - - uid: 32608 + - uid: 14301 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-22.5 + pos: -25.5,-45.5 parent: 1 - - uid: 32609 + - uid: 14302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-20.5 + rot: -1.5707963267948966 rad + pos: -24.5,-45.5 parent: 1 - - uid: 32610 + - uid: 14303 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-20.5 + pos: -23.5,-45.5 parent: 1 - - uid: 32611 + - uid: 14304 components: - type: Transform - pos: -22.5,-15.5 + rot: -1.5707963267948966 rad + pos: -22.5,-45.5 parent: 1 - - uid: 32612 + - uid: 14305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-15.5 + rot: -1.5707963267948966 rad + pos: -21.5,-45.5 parent: 1 - - uid: 32613 + - uid: 14306 components: - type: Transform - pos: -23.5,-14.5 + rot: -1.5707963267948966 rad + pos: -20.5,-45.5 parent: 1 - - uid: 32645 + - uid: 14307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-45.5 parent: 1 - - uid: 32646 + - uid: 14308 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-3.5 + pos: -18.5,-45.5 parent: 1 - - uid: 32658 + - uid: 14309 components: - type: Transform - pos: -23.5,8.5 + rot: -1.5707963267948966 rad + pos: -17.5,-45.5 parent: 1 - - uid: 32659 + - uid: 14312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,8.5 + pos: -16.5,-44.5 parent: 1 - - uid: 32660 + - uid: 14313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,17.5 + pos: -16.5,-43.5 parent: 1 - - uid: 32678 + - uid: 14314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,17.5 + pos: -16.5,-42.5 parent: 1 - - uid: 32679 + - uid: 14315 components: - type: Transform - pos: -14.5,22.5 + pos: -16.5,-41.5 parent: 1 - - uid: 32690 + - uid: 14316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,22.5 + pos: -16.5,-40.5 parent: 1 - - uid: 32691 + - uid: 14317 components: - type: Transform - pos: -19.5,23.5 + pos: -16.5,-39.5 parent: 1 - - uid: 32692 + - uid: 14318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,23.5 + pos: -16.5,-38.5 parent: 1 - - uid: 32693 + - uid: 14319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,18.5 + pos: -16.5,-37.5 parent: 1 - - uid: 32746 + - uid: 14320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,39.5 + pos: -16.5,-36.5 parent: 1 - - uid: 32793 + - uid: 14321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,23.5 + pos: -16.5,-35.5 parent: 1 - - uid: 32841 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,23.5 + pos: -18.5,-33.5 parent: 1 - - uid: 32842 + - uid: 14329 components: - type: Transform rot: 1.5707963267948966 rad - pos: -129.5,14.5 + pos: -17.5,-33.5 parent: 1 - - uid: 32851 + - uid: 14340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,14.5 + rot: 3.141592653589793 rad + pos: 14.5,-45.5 parent: 1 - - uid: 32868 + - uid: 14341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,2.5 + rot: 3.141592653589793 rad + pos: 14.5,-44.5 parent: 1 - - uid: 32869 + - uid: 14342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,2.5 + rot: 3.141592653589793 rad + pos: 14.5,-43.5 parent: 1 - - uid: 32870 + - uid: 14343 components: - type: Transform rot: 3.141592653589793 rad - pos: -130.5,-5.5 + pos: 14.5,-42.5 parent: 1 - - uid: 32871 + - uid: 14344 components: - type: Transform - pos: -129.5,-5.5 + rot: 3.141592653589793 rad + pos: 14.5,-41.5 parent: 1 - - uid: 32882 + - uid: 14345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -145.5,24.5 + rot: 3.141592653589793 rad + pos: 14.5,-40.5 parent: 1 - - uid: 32883 + - uid: 14346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,-10.5 + rot: 3.141592653589793 rad + pos: 14.5,-39.5 parent: 1 - - uid: 32884 + - uid: 14347 components: - type: Transform rot: 3.141592653589793 rad - pos: -144.5,-10.5 + pos: 14.5,-38.5 parent: 1 - - uid: 32885 + - uid: 14348 components: - type: Transform - pos: -144.5,-1.5 + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 parent: 1 - - uid: 32888 + - uid: 14349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,3.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 parent: 1 - - uid: 32890 + - uid: 14350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -145.5,-1.5 + pos: 17.5,-36.5 parent: 1 - - uid: 32892 + - uid: 14353 components: - type: Transform - pos: -130.5,24.5 + pos: 17.5,-33.5 parent: 1 - - uid: 32934 + - uid: 14354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -145.5,20.5 + pos: 17.5,-32.5 parent: 1 - - uid: 32972 + - uid: 14355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-11.5 + pos: 17.5,-31.5 parent: 1 - - uid: 32978 + - uid: 14356 components: - type: Transform - pos: -124.5,3.5 + pos: 17.5,-30.5 parent: 1 - - uid: 32979 + - uid: 14357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-7.5 + pos: 17.5,-29.5 parent: 1 - - uid: 32980 + - uid: 14358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-7.5 + pos: 17.5,-28.5 parent: 1 - - uid: 33263 + - uid: 14359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -145.5,-0.5 + pos: 17.5,-27.5 parent: 1 - - uid: 33264 + - uid: 14360 components: - type: Transform rot: -1.5707963267948966 rad - pos: -138.5,-0.5 + pos: 18.5,-26.5 parent: 1 - - uid: 33265 + - uid: 14361 components: - type: Transform - pos: -138.5,5.5 + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 parent: 1 - - uid: 33266 + - uid: 14362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,5.5 + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 parent: 1 - - uid: 33267 + - uid: 14363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -154.5,20.5 + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 parent: 1 - - uid: 38054 + - uid: 14364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 parent: 1 - - uid: 38055 + - uid: 14365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: 23.5,-26.5 parent: 1 - - uid: 38056 + - uid: 14371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 parent: 1 - - uid: 38404 + - uid: 14376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,35.5 + pos: -36.5,-45.5 parent: 1 - - uid: 38437 + - uid: 14377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,31.5 + pos: -36.5,-46.5 parent: 1 - - uid: 38889 + - uid: 14378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-61.5 + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 parent: 1 - - uid: 40268 + - uid: 14379 components: - type: Transform - pos: 25.5,-46.5 + rot: -1.5707963267948966 rad + pos: -34.5,-47.5 parent: 1 - - uid: 40271 + - uid: 14380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-42.5 + rot: -1.5707963267948966 rad + pos: -33.5,-47.5 parent: 1 - - uid: 41405 + - uid: 14381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,22.5 + pos: -16.5,-24.5 parent: 1 - - uid: 41406 + - uid: 14382 components: - type: Transform - pos: -29.5,22.5 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 parent: 1 - - uid: 41417 + - uid: 14383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-26.5 + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 parent: 1 - - uid: 41418 + - uid: 14384 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,-26.5 + pos: 0.5,-15.5 parent: 1 - - uid: 41421 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,-15.5 + pos: -0.5,-16.5 parent: 1 - - uid: 41422 + - uid: 14386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,-12.5 + rot: 3.141592653589793 rad + pos: -0.5,-17.5 parent: 1 - - uid: 41423 + - uid: 14387 components: - type: Transform - pos: -105.5,-12.5 + rot: 3.141592653589793 rad + pos: -0.5,-18.5 parent: 1 - - uid: 41450 + - uid: 14388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-24.5 + rot: 3.141592653589793 rad + pos: -0.5,-19.5 parent: 1 - - uid: 41451 + - uid: 14389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-25.5 + rot: 3.141592653589793 rad + pos: -0.5,-20.5 parent: 1 - - uid: 41478 + - uid: 14390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-26.5 + rot: 3.141592653589793 rad + pos: -0.5,-21.5 parent: 1 - - uid: 41479 + - uid: 14391 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-26.5 + pos: -1.5,-22.5 parent: 1 -- proto: DisposalJunction - entities: - - uid: 2416 + - uid: 14392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-23.5 + pos: -2.5,-22.5 parent: 1 - - uid: 2585 + - uid: 14393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,6.5 + pos: -3.5,-22.5 parent: 1 - - uid: 8316 + - uid: 14394 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,36.5 + pos: -4.5,-22.5 parent: 1 - - uid: 9074 + - uid: 14395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-24.5 + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 parent: 1 - - uid: 13954 + - uid: 14396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-7.5 + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 parent: 1 - - uid: 13964 + - uid: 14397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,2.5 + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 parent: 1 - - uid: 13965 + - uid: 14398 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-13.5 + pos: -8.5,-22.5 parent: 1 - - uid: 13970 + - uid: 14399 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,36.5 + pos: -9.5,-22.5 parent: 1 - - uid: 14023 + - uid: 14400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 parent: 1 - - uid: 14090 + - uid: 14401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 + rot: 1.5707963267948966 rad + pos: -11.5,-22.5 parent: 1 - - uid: 14145 + - uid: 14402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-47.5 + rot: 1.5707963267948966 rad + pos: -12.5,-22.5 parent: 1 - - uid: 14147 + - uid: 14404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-46.5 + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 parent: 1 - - uid: 14276 + - uid: 14406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-47.5 + pos: -16.5,-23.5 parent: 1 - - uid: 14280 + - uid: 14407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-45.5 + pos: -16.5,-25.5 parent: 1 - - uid: 14322 + - uid: 14408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-34.5 + rot: -1.5707963267948966 rad + pos: -17.5,-26.5 parent: 1 - - uid: 14331 + - uid: 14409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-32.5 + rot: -1.5707963267948966 rad + pos: -18.5,-26.5 parent: 1 - - uid: 14474 + - uid: 14410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-24.5 + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 parent: 1 - - uid: 14576 + - uid: 14411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-25.5 + rot: -1.5707963267948966 rad + pos: -20.5,-26.5 parent: 1 - - uid: 14579 + - uid: 14412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-23.5 + rot: -1.5707963267948966 rad + pos: -21.5,-26.5 parent: 1 - - uid: 14580 + - uid: 14413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-26.5 + parent: 1 + - uid: 14414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-15.5 + rot: -1.5707963267948966 rad + pos: -23.5,-26.5 parent: 1 - - uid: 14581 + - uid: 14415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-14.5 + rot: -1.5707963267948966 rad + pos: -24.5,-26.5 parent: 1 - - uid: 14618 + - uid: 14416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-26.5 parent: 1 - - uid: 14718 + - uid: 14417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-2.5 + rot: -1.5707963267948966 rad + pos: -26.5,-26.5 parent: 1 - - uid: 14719 + - uid: 14418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,22.5 + rot: -1.5707963267948966 rad + pos: -27.5,-26.5 parent: 1 - - uid: 14730 + - uid: 14419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,21.5 + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 parent: 1 - - uid: 14731 + - uid: 14420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,26.5 + rot: -1.5707963267948966 rad + pos: -29.5,-26.5 parent: 1 - - uid: 28858 + - uid: 14421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,19.5 + rot: -1.5707963267948966 rad + pos: -30.5,-26.5 parent: 1 - - uid: 29645 + - uid: 14422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-15.5 + rot: -1.5707963267948966 rad + pos: -31.5,-26.5 parent: 1 - - uid: 29763 + - uid: 14423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,36.5 + rot: -1.5707963267948966 rad + pos: -32.5,-26.5 parent: 1 - - uid: 38418 + - uid: 14424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,36.5 + rot: -1.5707963267948966 rad + pos: -33.5,-26.5 parent: 1 - - uid: 38438 + - uid: 14425 components: - type: Transform - pos: -17.5,31.5 + rot: -1.5707963267948966 rad + pos: -34.5,-26.5 parent: 1 - - uid: 38894 + - uid: 14426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,25.5 + rot: -1.5707963267948966 rad + pos: -35.5,-26.5 parent: 1 - - uid: 40272 + - uid: 14427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-46.5 + pos: -36.5,-26.5 parent: 1 - - uid: 41452 + - uid: 14428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-25.5 + rot: -1.5707963267948966 rad + pos: -37.5,-26.5 parent: 1 -- proto: DisposalJunctionFlipped - entities: - - uid: 5859 + - uid: 14429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-34.5 + pos: -38.5,-26.5 parent: 1 - - uid: 9076 + - uid: 14430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-25.5 + rot: -1.5707963267948966 rad + pos: -39.5,-26.5 parent: 1 - - uid: 13926 + - uid: 14446 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,19.5 + pos: 2.5,-35.5 parent: 1 - - uid: 14029 + - uid: 14447 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,3.5 + pos: 2.5,-36.5 parent: 1 - - uid: 14112 + - uid: 14448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 + rot: 1.5707963267948966 rad + pos: 3.5,-37.5 parent: 1 - - uid: 14260 + - uid: 14449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-47.5 + rot: 1.5707963267948966 rad + pos: 1.5,-34.5 parent: 1 - - uid: 14279 + - uid: 14450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-49.5 + rot: 1.5707963267948966 rad + pos: 0.5,-34.5 parent: 1 - - uid: 14311 + - uid: 14451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-45.5 + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 parent: 1 - - uid: 14330 + - uid: 14452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-33.5 + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 parent: 1 - - uid: 14479 + - uid: 14453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-23.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 1 - - uid: 14498 + - uid: 14454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-27.5 + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 parent: 1 - - uid: 14543 + - uid: 14455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-33.5 + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 parent: 1 - - uid: 14584 + - uid: 14456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-34.5 parent: 1 - - uid: 14724 + - uid: 14457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,8.5 + pos: -6.5,-34.5 parent: 1 - - uid: 14728 + - uid: 14458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,0.5 + pos: -7.5,-34.5 parent: 1 - - uid: 14732 + - uid: 14459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,22.5 + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 parent: 1 - - uid: 28813 + - uid: 14460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-41.5 + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 parent: 1 - - uid: 28932 + - uid: 14461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-18.5 + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 parent: 1 - - uid: 29231 + - uid: 14462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-13.5 + rot: 1.5707963267948966 rad + pos: -11.5,-34.5 parent: 1 - - uid: 29646 + - uid: 14463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,20.5 + rot: 1.5707963267948966 rad + pos: -12.5,-34.5 parent: 1 - - uid: 29735 + - uid: 14464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-18.5 + rot: 1.5707963267948966 rad + pos: -13.5,-34.5 parent: 1 - - uid: 32478 + - uid: 14465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 parent: 1 - - uid: 38474 + - uid: 14466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,-13.5 + pos: -15.5,-34.5 parent: 1 - - uid: 38874 + - uid: 14467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-59.5 + rot: 3.141592653589793 rad + pos: -16.5,-31.5 parent: 1 - - uid: 41403 + - uid: 14468 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,21.5 + pos: -16.5,-30.5 parent: 1 -- proto: DisposalMachineFrame - entities: - - uid: 30609 + - uid: 14469 components: - type: Transform - pos: -124.5,-8.5 + rot: 3.141592653589793 rad + pos: -16.5,-29.5 parent: 1 -- proto: DisposalPipe - entities: - - uid: 871 + - uid: 14470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 + rot: 3.141592653589793 rad + pos: -16.5,-28.5 parent: 1 - - uid: 1715 + - uid: 14471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-34.5 + rot: 3.141592653589793 rad + pos: -16.5,-27.5 parent: 1 - - uid: 1716 + - uid: 14477 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-32.5 + pos: -40.5,-25.5 parent: 1 - - uid: 1717 + - uid: 14480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-31.5 + pos: -41.5,-22.5 parent: 1 - - uid: 1718 + - uid: 14481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-33.5 + pos: -41.5,-21.5 parent: 1 - - uid: 4687 + - uid: 14482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-35.5 + pos: -41.5,-20.5 parent: 1 - - uid: 4692 + - uid: 14483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-35.5 + pos: -41.5,-19.5 parent: 1 - - uid: 4721 + - uid: 14501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-35.5 + pos: -42.5,-23.5 parent: 1 - - uid: 4727 + - uid: 14503 components: - type: Transform - pos: -74.5,-34.5 + pos: -44.5,-24.5 parent: 1 - - uid: 4736 + - uid: 14505 components: - type: Transform - pos: -74.5,-32.5 + pos: -44.5,-26.5 parent: 1 - - uid: 4737 + - uid: 14506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-35.5 + rot: -1.5707963267948966 rad + pos: -45.5,-27.5 parent: 1 - - uid: 4772 + - uid: 14507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-35.5 + rot: -1.5707963267948966 rad + pos: -46.5,-27.5 parent: 1 - - uid: 4774 + - uid: 14508 components: - type: Transform - pos: -74.5,-31.5 + rot: -1.5707963267948966 rad + pos: -47.5,-27.5 parent: 1 - - uid: 4796 + - uid: 14509 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,-24.5 + pos: -48.5,-27.5 parent: 1 - - uid: 5242 + - uid: 14510 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-34.5 + pos: -49.5,-27.5 parent: 1 - - uid: 5278 + - uid: 14511 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-34.5 + pos: -50.5,-27.5 parent: 1 - - uid: 6152 + - uid: 14512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-12.5 + rot: -1.5707963267948966 rad + pos: -51.5,-27.5 parent: 1 - - uid: 8309 + - uid: 14514 components: - type: Transform - pos: -42.5,30.5 + rot: 3.141592653589793 rad + pos: -52.5,-29.5 parent: 1 - - uid: 8310 + - uid: 14515 components: - type: Transform - pos: -42.5,31.5 + rot: 3.141592653589793 rad + pos: -52.5,-30.5 parent: 1 - - uid: 8311 + - uid: 14516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,36.5 + rot: 3.141592653589793 rad + pos: -52.5,-31.5 parent: 1 - - uid: 8314 + - uid: 14517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,36.5 + rot: 3.141592653589793 rad + pos: -52.5,-32.5 parent: 1 - - uid: 8315 + - uid: 14519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 + rot: 3.141592653589793 rad + pos: -52.5,-34.5 parent: 1 - - uid: 9090 + - uid: 14520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-35.5 + rot: 3.141592653589793 rad + pos: -52.5,-35.5 parent: 1 - - uid: 12152 + - uid: 14522 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-13.5 + pos: -52.5,-37.5 parent: 1 - - uid: 13564 + - uid: 14523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,37.5 + rot: 3.141592653589793 rad + pos: -52.5,-38.5 parent: 1 - - uid: 13917 + - uid: 14524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,25.5 + rot: 3.141592653589793 rad + pos: -52.5,-39.5 parent: 1 - - uid: 13918 + - uid: 14525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,25.5 + rot: 3.141592653589793 rad + pos: -52.5,-40.5 parent: 1 - - uid: 13919 + - uid: 14526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,25.5 + rot: 3.141592653589793 rad + pos: -52.5,-41.5 parent: 1 - - uid: 13920 + - uid: 14527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,25.5 + rot: 3.141592653589793 rad + pos: -52.5,-42.5 parent: 1 - - uid: 13925 + - uid: 14528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,18.5 + rot: 3.141592653589793 rad + pos: -52.5,-43.5 parent: 1 - - uid: 13929 + - uid: 14529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,36.5 + rot: 1.5707963267948966 rad + pos: -51.5,-44.5 parent: 1 - - uid: 13931 + - uid: 14530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,36.5 + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 parent: 1 - - uid: 13932 + - uid: 14531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,36.5 + pos: -49.5,-45.5 parent: 1 - - uid: 13952 + - uid: 14532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 + pos: -49.5,-46.5 parent: 1 - - uid: 13959 + - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,30.5 + pos: -49.5,-47.5 parent: 1 - - uid: 13972 + - uid: 14534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,36.5 + pos: -49.5,-48.5 parent: 1 - - uid: 13973 + - uid: 14535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,36.5 + pos: -49.5,-49.5 parent: 1 - - uid: 13974 + - uid: 14536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,36.5 + pos: -49.5,-50.5 parent: 1 - - uid: 13975 + - uid: 14537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,36.5 + pos: -49.5,-51.5 parent: 1 - - uid: 13976 + - uid: 14538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,36.5 + pos: -49.5,-52.5 parent: 1 - - uid: 13977 + - uid: 14539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,36.5 + pos: -49.5,-53.5 parent: 1 - - uid: 13985 + - uid: 14540 components: - type: Transform - pos: -17.5,27.5 + pos: -49.5,-54.5 parent: 1 - - uid: 13986 + - uid: 14544 components: - type: Transform - pos: -17.5,26.5 + rot: 3.141592653589793 rad + pos: -55.5,-36.5 parent: 1 - - uid: 13987 + - uid: 14545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,36.5 + rot: 3.141592653589793 rad + pos: -55.5,-35.5 parent: 1 - - uid: 13998 + - uid: 14546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,19.5 + rot: 3.141592653589793 rad + pos: -55.5,-34.5 parent: 1 - - uid: 13999 + - uid: 14547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,19.5 + pos: -54.5,-33.5 parent: 1 - - uid: 14000 + - uid: 14548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,19.5 + pos: -53.5,-33.5 parent: 1 - - uid: 14001 + - uid: 14585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,19.5 + rot: 3.141592653589793 rad + pos: -41.5,-18.5 parent: 1 - - uid: 14002 + - uid: 14586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,19.5 + rot: 3.141592653589793 rad + pos: -41.5,-16.5 parent: 1 - - uid: 14003 + - uid: 14587 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,19.5 + pos: -42.5,-17.5 parent: 1 - - uid: 14004 + - uid: 14588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,19.5 + pos: -43.5,-17.5 parent: 1 - - uid: 14005 + - uid: 14589 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,19.5 + pos: -44.5,-17.5 parent: 1 - - uid: 14009 + - uid: 14590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,20.5 + rot: 1.5707963267948966 rad + pos: -45.5,-17.5 parent: 1 - - uid: 14010 + - uid: 14591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,20.5 + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 parent: 1 - - uid: 14011 + - uid: 14592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,21.5 + rot: 1.5707963267948966 rad + pos: -47.5,-17.5 parent: 1 - - uid: 14012 + - uid: 14593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,22.5 + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 parent: 1 - - uid: 14013 + - uid: 14594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,23.5 + pos: -49.5,-16.5 parent: 1 - - uid: 14014 + - uid: 14595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + pos: -49.5,-15.5 parent: 1 - - uid: 14030 + - uid: 14596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,5.5 + pos: -50.5,-14.5 parent: 1 - - uid: 14031 + - uid: 14597 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,5.5 + pos: -51.5,-14.5 parent: 1 - - uid: 14032 + - uid: 14598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,5.5 + pos: -52.5,-14.5 parent: 1 - - uid: 14033 + - uid: 14599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,5.5 + pos: -53.5,-14.5 parent: 1 - - uid: 14034 + - uid: 14600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,5.5 + pos: -54.5,-14.5 parent: 1 - - uid: 14035 + - uid: 14601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,6.5 + pos: -55.5,-14.5 parent: 1 - - uid: 14036 + - uid: 14602 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,6.5 + pos: -56.5,-14.5 parent: 1 - - uid: 14037 + - uid: 14603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,5.5 + rot: -1.5707963267948966 rad + pos: -57.5,-14.5 parent: 1 - - uid: 14038 + - uid: 14605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,4.5 + rot: -1.5707963267948966 rad + pos: -59.5,-14.5 parent: 1 - - uid: 14039 + - uid: 14606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,3.5 + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 parent: 1 - - uid: 14040 + - uid: 14607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,3.5 + rot: -1.5707963267948966 rad + pos: -61.5,-14.5 parent: 1 - - uid: 14041 + - uid: 14608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,3.5 + rot: -1.5707963267948966 rad + pos: -62.5,-14.5 parent: 1 - - uid: 14042 + - uid: 14609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,3.5 + rot: -1.5707963267948966 rad + pos: -63.5,-14.5 parent: 1 - - uid: 14043 + - uid: 14610 components: - type: Transform - pos: -46.5,2.5 + rot: -1.5707963267948966 rad + pos: -64.5,-14.5 parent: 1 - - uid: 14044 + - uid: 14611 components: - type: Transform - pos: -46.5,1.5 + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 parent: 1 - - uid: 14045 + - uid: 14612 components: - type: Transform - pos: -46.5,0.5 + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 parent: 1 - - uid: 14046 + - uid: 14613 components: - type: Transform - pos: -46.5,-0.5 + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 parent: 1 - - uid: 14047 + - uid: 14614 components: - type: Transform - pos: -46.5,-1.5 + rot: -1.5707963267948966 rad + pos: -68.5,-14.5 parent: 1 - - uid: 14048 + - uid: 14615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-2.5 + pos: -69.5,-14.5 parent: 1 - - uid: 14049 + - uid: 14616 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-2.5 + pos: -70.5,-14.5 parent: 1 - - uid: 14050 + - uid: 14617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-2.5 + pos: -71.5,-14.5 parent: 1 - - uid: 14051 + - uid: 14621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-2.5 + pos: -73.5,-16.5 parent: 1 - - uid: 14052 + - uid: 14623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-2.5 + rot: 3.141592653589793 rad + pos: -73.5,-19.5 parent: 1 - - uid: 14053 + - uid: 14624 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,7.5 + pos: -73.5,-20.5 parent: 1 - - uid: 14054 + - uid: 14625 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,8.5 + pos: -73.5,-21.5 parent: 1 - - uid: 14055 + - uid: 14626 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,9.5 + pos: -73.5,-22.5 parent: 1 - - uid: 14056 + - uid: 14635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,10.5 + rot: -1.5707963267948966 rad + pos: -74.5,-25.5 parent: 1 - - uid: 14057 + - uid: 14636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,11.5 + rot: -1.5707963267948966 rad + pos: -75.5,-25.5 parent: 1 - - uid: 14058 + - uid: 14637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,12.5 + rot: -1.5707963267948966 rad + pos: -76.5,-25.5 parent: 1 - - uid: 14059 + - uid: 14638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,13.5 + rot: -1.5707963267948966 rad + pos: -77.5,-25.5 parent: 1 - - uid: 14060 + - uid: 14639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,14.5 + rot: -1.5707963267948966 rad + pos: -78.5,-25.5 parent: 1 - - uid: 14061 + - uid: 14640 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,15.5 + pos: -79.5,-26.5 parent: 1 - - uid: 14062 + - uid: 14641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,16.5 + rot: 1.5707963267948966 rad + pos: -80.5,-25.5 parent: 1 - - uid: 14063 + - uid: 14642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,17.5 + rot: 1.5707963267948966 rad + pos: -81.5,-25.5 parent: 1 - - uid: 14064 + - uid: 14643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,18.5 + rot: 1.5707963267948966 rad + pos: -82.5,-25.5 parent: 1 - - uid: 14065 + - uid: 14644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,19.5 + rot: 1.5707963267948966 rad + pos: -83.5,-25.5 parent: 1 - - uid: 14073 + - uid: 14645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-15.5 + pos: -84.5,-26.5 parent: 1 - - uid: 14076 + - uid: 14646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-6.5 + pos: -84.5,-24.5 parent: 1 - - uid: 14077 + - uid: 14647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-6.5 + pos: -84.5,-23.5 parent: 1 - - uid: 14078 + - uid: 14648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 + pos: -84.5,-22.5 parent: 1 - - uid: 14079 + - uid: 14649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-6.5 + pos: -74.5,-14.5 parent: 1 - - uid: 14080 + - uid: 14650 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + pos: -75.5,-14.5 parent: 1 - - uid: 14082 + - uid: 14651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-14.5 + rot: -1.5707963267948966 rad + pos: -76.5,-14.5 parent: 1 - - uid: 14083 + - uid: 14652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 + rot: -1.5707963267948966 rad + pos: -77.5,-14.5 parent: 1 - - uid: 14084 + - uid: 14653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-12.5 + rot: -1.5707963267948966 rad + pos: -78.5,-14.5 parent: 1 - - uid: 14085 + - uid: 14654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-11.5 + rot: -1.5707963267948966 rad + pos: -79.5,-14.5 parent: 1 - - uid: 14086 + - uid: 14655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 + rot: -1.5707963267948966 rad + pos: -80.5,-14.5 parent: 1 - - uid: 14087 + - uid: 14656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 + rot: -1.5707963267948966 rad + pos: -81.5,-14.5 parent: 1 - - uid: 14088 + - uid: 14657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-8.5 + rot: -1.5707963267948966 rad + pos: -82.5,-14.5 parent: 1 - - uid: 14091 + - uid: 14658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-5.5 + rot: -1.5707963267948966 rad + pos: -83.5,-14.5 parent: 1 - - uid: 14092 + - uid: 14659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 + rot: -1.5707963267948966 rad + pos: -84.5,-14.5 parent: 1 - - uid: 14093 + - uid: 14660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-3.5 + rot: -1.5707963267948966 rad + pos: -85.5,-14.5 parent: 1 - - uid: 14094 + - uid: 14661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 + rot: -1.5707963267948966 rad + pos: -86.5,-14.5 parent: 1 - - uid: 14095 + - uid: 14662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-1.5 + rot: -1.5707963267948966 rad + pos: -87.5,-14.5 parent: 1 - - uid: 14096 + - uid: 14663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-0.5 + rot: -1.5707963267948966 rad + pos: -88.5,-14.5 parent: 1 - - uid: 14097 + - uid: 14664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,0.5 + rot: -1.5707963267948966 rad + pos: -89.5,-14.5 parent: 1 - - uid: 14098 + - uid: 14665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,1.5 + rot: -1.5707963267948966 rad + pos: -90.5,-14.5 parent: 1 - - uid: 14104 + - uid: 14666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-7.5 + rot: -1.5707963267948966 rad + pos: -91.5,-14.5 parent: 1 - - uid: 14105 + - uid: 14667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-7.5 + rot: -1.5707963267948966 rad + pos: -94.5,-15.5 parent: 1 - - uid: 14106 + - uid: 14668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-7.5 + rot: -1.5707963267948966 rad + pos: -95.5,-15.5 parent: 1 - - uid: 14107 + - uid: 14669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 + rot: -1.5707963267948966 rad + pos: -96.5,-15.5 parent: 1 - - uid: 14108 + - uid: 14670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 + rot: -1.5707963267948966 rad + pos: -97.5,-15.5 parent: 1 - - uid: 14109 + - uid: 14671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 + rot: -1.5707963267948966 rad + pos: -98.5,-15.5 parent: 1 - - uid: 14110 + - uid: 14672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 + pos: -100.5,-16.5 parent: 1 - - uid: 14111 + - uid: 14673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 + rot: -1.5707963267948966 rad + pos: -99.5,-15.5 parent: 1 - - uid: 14126 + - uid: 14686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-51.5 + rot: 3.141592653589793 rad + pos: -72.5,-17.5 parent: 1 - - uid: 14127 + - uid: 14687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-51.5 + rot: 3.141592653589793 rad + pos: -72.5,-16.5 parent: 1 - - uid: 14128 + - uid: 14688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-51.5 + rot: 3.141592653589793 rad + pos: -72.5,-15.5 parent: 1 - - uid: 14129 + - uid: 14745 components: - type: Transform - pos: 25.5,-50.5 + rot: -1.5707963267948966 rad + pos: -58.5,36.5 parent: 1 - - uid: 14130 + - uid: 14746 components: - type: Transform - pos: 25.5,-49.5 + rot: -1.5707963267948966 rad + pos: -59.5,36.5 parent: 1 - - uid: 14131 + - uid: 14747 components: - type: Transform - pos: 25.5,-48.5 + rot: -1.5707963267948966 rad + pos: -60.5,36.5 parent: 1 - - uid: 14132 + - uid: 14748 components: - type: Transform - pos: 25.5,-47.5 + rot: -1.5707963267948966 rad + pos: -61.5,36.5 parent: 1 - - uid: 14142 + - uid: 14749 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-46.5 + pos: -62.5,36.5 parent: 1 - - uid: 14148 + - uid: 14750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-47.5 + rot: -1.5707963267948966 rad + pos: -63.5,36.5 parent: 1 - - uid: 14150 + - uid: 14751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-47.5 + rot: -1.5707963267948966 rad + pos: -64.5,36.5 parent: 1 - - uid: 14151 + - uid: 14752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-47.5 + rot: -1.5707963267948966 rad + pos: -65.5,36.5 parent: 1 - - uid: 14152 + - uid: 14753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-47.5 + rot: -1.5707963267948966 rad + pos: -66.5,36.5 parent: 1 - - uid: 14153 + - uid: 14754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 + rot: -1.5707963267948966 rad + pos: -67.5,36.5 parent: 1 - - uid: 14154 + - uid: 14755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + rot: -1.5707963267948966 rad + pos: -68.5,36.5 parent: 1 - - uid: 14155 + - uid: 14756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 + rot: -1.5707963267948966 rad + pos: -69.5,36.5 parent: 1 - - uid: 14156 + - uid: 14757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 + rot: -1.5707963267948966 rad + pos: -70.5,36.5 parent: 1 - - uid: 14157 + - uid: 14758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-47.5 + rot: -1.5707963267948966 rad + pos: -71.5,36.5 parent: 1 - - uid: 14158 + - uid: 14759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 + rot: -1.5707963267948966 rad + pos: -72.5,36.5 parent: 1 - - uid: 14159 + - uid: 14760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,35.5 parent: 1 - - uid: 14160 + - uid: 14761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,34.5 parent: 1 - - uid: 14161 + - uid: 14762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,33.5 parent: 1 - - uid: 14162 + - uid: 14763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,32.5 parent: 1 - - uid: 14163 + - uid: 14764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,31.5 parent: 1 - - uid: 14164 + - uid: 14765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,30.5 parent: 1 - - uid: 14165 + - uid: 14766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,29.5 parent: 1 - - uid: 14166 + - uid: 14767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,28.5 parent: 1 - - uid: 14167 + - uid: 14768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-47.5 + rot: 3.141592653589793 rad + pos: -73.5,27.5 parent: 1 - - uid: 14168 + - uid: 14769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-47.5 + pos: -72.5,26.5 parent: 1 - - uid: 14169 + - uid: 14770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-47.5 + pos: -71.5,26.5 parent: 1 - - uid: 14170 + - uid: 14771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-47.5 + pos: -70.5,26.5 parent: 1 - - uid: 14171 + - uid: 14772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-47.5 + pos: -69.5,25.5 parent: 1 - - uid: 14172 + - uid: 14773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,36.5 + pos: -69.5,24.5 parent: 1 - - uid: 14174 + - uid: 14774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-47.5 + pos: -69.5,23.5 parent: 1 - - uid: 14175 + - uid: 14775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 + pos: -69.5,22.5 parent: 1 - - uid: 14241 + - uid: 14776 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,36.5 + pos: -68.5,21.5 parent: 1 - - uid: 14258 + - uid: 14777 components: - type: Transform - pos: 11.5,-49.5 + rot: -1.5707963267948966 rad + pos: -72.5,21.5 parent: 1 - - uid: 14259 + - uid: 14778 components: - type: Transform - pos: 11.5,-48.5 + rot: 3.141592653589793 rad + pos: -73.5,23.5 parent: 1 - - uid: 14263 + - uid: 14780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-59.5 + rot: 3.141592653589793 rad + pos: -73.5,25.5 parent: 1 - - uid: 14264 + - uid: 14781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-59.5 + rot: 1.5707963267948966 rad + pos: -75.5,21.5 parent: 1 - - uid: 14282 + - uid: 14782 components: - type: Transform - pos: -16.5,-46.5 + rot: 1.5707963267948966 rad + pos: -76.5,21.5 parent: 1 - - uid: 14283 + - uid: 14783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-57.5 + rot: 1.5707963267948966 rad + pos: -77.5,21.5 parent: 1 - - uid: 14284 + - uid: 14784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-56.5 + rot: 1.5707963267948966 rad + pos: -78.5,21.5 parent: 1 - - uid: 14285 + - uid: 14785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-55.5 + rot: 1.5707963267948966 rad + pos: -79.5,21.5 parent: 1 - - uid: 14286 + - uid: 14786 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-54.5 + pos: -80.5,21.5 parent: 1 - - uid: 14287 + - uid: 14787 components: - type: Transform - pos: -38.5,-53.5 + rot: 1.5707963267948966 rad + pos: -81.5,21.5 parent: 1 - - uid: 14288 + - uid: 14788 components: - type: Transform - pos: -38.5,-52.5 + rot: 1.5707963267948966 rad + pos: -82.5,21.5 parent: 1 - - uid: 14289 + - uid: 14789 components: - type: Transform - pos: -38.5,-51.5 + rot: 1.5707963267948966 rad + pos: -83.5,21.5 parent: 1 - - uid: 14290 + - uid: 14790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-50.5 + rot: 1.5707963267948966 rad + pos: -84.5,21.5 parent: 1 - - uid: 14291 + - uid: 14791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-50.5 + rot: 1.5707963267948966 rad + pos: -85.5,21.5 parent: 1 - - uid: 14292 + - uid: 14792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-50.5 + rot: 1.5707963267948966 rad + pos: -86.5,21.5 parent: 1 - - uid: 14293 + - uid: 14793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-50.5 + rot: 1.5707963267948966 rad + pos: -87.5,21.5 parent: 1 - - uid: 14294 + - uid: 14794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-50.5 + rot: 1.5707963267948966 rad + pos: -88.5,21.5 parent: 1 - - uid: 14295 + - uid: 14795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-48.5 + rot: 1.5707963267948966 rad + pos: -89.5,21.5 parent: 1 - - uid: 14296 + - uid: 14796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-47.5 + pos: -90.5,21.5 parent: 1 - - uid: 14297 + - uid: 14797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-47.5 + pos: -91.5,21.5 parent: 1 - - uid: 14298 + - uid: 14798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-47.5 + pos: -92.5,21.5 parent: 1 - - uid: 14299 + - uid: 14799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-47.5 + pos: -93.5,21.5 parent: 1 - - uid: 14300 + - uid: 14800 components: - type: Transform - pos: -27.5,-46.5 + rot: 1.5707963267948966 rad + pos: -94.5,21.5 parent: 1 - - uid: 14301 + - uid: 14801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-45.5 + rot: 1.5707963267948966 rad + pos: -95.5,21.5 parent: 1 - - uid: 14302 + - uid: 14802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-45.5 + rot: 1.5707963267948966 rad + pos: -96.5,21.5 parent: 1 - - uid: 14303 + - uid: 14803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-45.5 + rot: 1.5707963267948966 rad + pos: -97.5,21.5 parent: 1 - - uid: 14304 + - uid: 14804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-45.5 + rot: 1.5707963267948966 rad + pos: -98.5,21.5 parent: 1 - - uid: 14305 + - uid: 14805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-45.5 + rot: 1.5707963267948966 rad + pos: -99.5,21.5 parent: 1 - - uid: 14306 + - uid: 14806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-45.5 + rot: 1.5707963267948966 rad + pos: -100.5,21.5 parent: 1 - - uid: 14307 + - uid: 14807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-45.5 + rot: 1.5707963267948966 rad + pos: -101.5,21.5 parent: 1 - - uid: 14308 + - uid: 14808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-45.5 + rot: 1.5707963267948966 rad + pos: -105.5,22.5 parent: 1 - - uid: 14309 + - uid: 14809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-45.5 + rot: 1.5707963267948966 rad + pos: -106.5,22.5 parent: 1 - - uid: 14310 + - uid: 14810 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-47.5 + pos: -107.5,22.5 parent: 1 - - uid: 14312 + - uid: 14811 components: - type: Transform - pos: -16.5,-44.5 + rot: 1.5707963267948966 rad + pos: -108.5,22.5 parent: 1 - - uid: 14313 + - uid: 14812 components: - type: Transform - pos: -16.5,-43.5 + rot: 1.5707963267948966 rad + pos: -109.5,22.5 parent: 1 - - uid: 14314 + - uid: 14813 components: - type: Transform - pos: -16.5,-42.5 + rot: 1.5707963267948966 rad + pos: -110.5,22.5 parent: 1 - - uid: 14315 + - uid: 14814 components: - type: Transform - pos: -16.5,-41.5 + rot: 1.5707963267948966 rad + pos: -111.5,22.5 parent: 1 - - uid: 14316 + - uid: 14815 components: - type: Transform - pos: -16.5,-40.5 + rot: 1.5707963267948966 rad + pos: -112.5,22.5 parent: 1 - - uid: 14317 + - uid: 14816 components: - type: Transform - pos: -16.5,-39.5 + rot: 1.5707963267948966 rad + pos: -113.5,22.5 parent: 1 - - uid: 14318 + - uid: 14817 components: - type: Transform - pos: -16.5,-38.5 + rot: 1.5707963267948966 rad + pos: -114.5,22.5 parent: 1 - - uid: 14319 + - uid: 14818 components: - type: Transform - pos: -16.5,-37.5 + rot: 1.5707963267948966 rad + pos: -115.5,22.5 parent: 1 - - uid: 14320 + - uid: 14819 components: - type: Transform - pos: -16.5,-36.5 + rot: 1.5707963267948966 rad + pos: -116.5,22.5 parent: 1 - - uid: 14321 + - uid: 14820 components: - type: Transform - pos: -16.5,-35.5 + rot: 1.5707963267948966 rad + pos: -117.5,22.5 parent: 1 - - uid: 14328 + - uid: 14821 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-33.5 + pos: -118.5,22.5 parent: 1 - - uid: 14329 + - uid: 14822 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + pos: -119.5,22.5 parent: 1 - - uid: 14340 + - uid: 14823 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-45.5 + pos: -73.5,20.5 parent: 1 - - uid: 14341 + - uid: 14824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-44.5 + pos: -73.5,19.5 parent: 1 - - uid: 14342 + - uid: 14825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-43.5 + pos: -73.5,18.5 parent: 1 - - uid: 14343 + - uid: 14826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-42.5 + pos: -73.5,17.5 parent: 1 - - uid: 14344 + - uid: 14827 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-41.5 + pos: -73.5,16.5 parent: 1 - - uid: 14345 + - uid: 14828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-40.5 + pos: -73.5,15.5 parent: 1 - - uid: 14346 + - uid: 14829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-39.5 + pos: -73.5,14.5 parent: 1 - - uid: 14347 + - uid: 14830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-38.5 + pos: -73.5,13.5 parent: 1 - - uid: 14348 + - uid: 14831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 + pos: -73.5,12.5 parent: 1 - - uid: 14349 + - uid: 14832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 + pos: -73.5,11.5 parent: 1 - - uid: 14350 + - uid: 14833 components: - type: Transform - pos: 17.5,-36.5 + pos: -73.5,10.5 parent: 1 - - uid: 14351 + - uid: 14834 components: - type: Transform - pos: 17.5,-35.5 + pos: -73.5,9.5 parent: 1 - - uid: 14352 + - uid: 14835 components: - type: Transform - pos: 17.5,-34.5 + pos: -73.5,8.5 parent: 1 - - uid: 14353 + - uid: 14836 components: - type: Transform - pos: 17.5,-33.5 + pos: -73.5,7.5 parent: 1 - - uid: 14354 + - uid: 14837 components: - type: Transform - pos: 17.5,-32.5 + pos: -73.5,6.5 parent: 1 - - uid: 14355 + - uid: 14838 components: - type: Transform - pos: 17.5,-31.5 + pos: -73.5,5.5 parent: 1 - - uid: 14356 + - uid: 14839 components: - type: Transform - pos: 17.5,-30.5 + pos: -73.5,4.5 parent: 1 - - uid: 14357 + - uid: 14840 components: - type: Transform - pos: 17.5,-29.5 + pos: -73.5,3.5 parent: 1 - - uid: 14358 + - uid: 14841 components: - type: Transform - pos: 17.5,-28.5 + pos: -73.5,2.5 parent: 1 - - uid: 14359 + - uid: 14842 components: - type: Transform - pos: 17.5,-27.5 + pos: -73.5,1.5 parent: 1 - - uid: 14360 + - uid: 14843 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-26.5 + pos: -74.5,0.5 parent: 1 - - uid: 14361 + - uid: 14844 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-26.5 + pos: -75.5,0.5 parent: 1 - - uid: 14362 + - uid: 14845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-26.5 + pos: -76.5,0.5 parent: 1 - - uid: 14363 + - uid: 14846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-26.5 + pos: -77.5,0.5 parent: 1 - - uid: 14364 + - uid: 14847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-26.5 + pos: -78.5,0.5 parent: 1 - - uid: 14365 + - uid: 14848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 + rot: 3.141592653589793 rad + pos: -79.5,1.5 parent: 1 - - uid: 14371 + - uid: 14849 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1 - - uid: 14376 - components: - - type: Transform - pos: -36.5,-45.5 + pos: -80.5,0.5 parent: 1 - - uid: 14377 + - uid: 14850 components: - type: Transform - pos: -36.5,-46.5 + rot: 1.5707963267948966 rad + pos: -81.5,0.5 parent: 1 - - uid: 14378 + - uid: 14852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-47.5 + rot: 3.141592653589793 rad + pos: -82.5,-0.5 parent: 1 - - uid: 14379 + - uid: 14853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-47.5 + rot: 3.141592653589793 rad + pos: -82.5,-1.5 parent: 1 - - uid: 14380 + - uid: 14854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-47.5 + rot: 1.5707963267948966 rad + pos: -83.5,-2.5 parent: 1 - - uid: 14381 + - uid: 14855 components: - type: Transform - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: -84.5,-2.5 parent: 1 - - uid: 14382 + - uid: 14857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + pos: -85.5,-4.5 parent: 1 - - uid: 14383 + - uid: 14858 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: -86.5,-2.5 parent: 1 - - uid: 14384 + - uid: 14859 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-15.5 + pos: -87.5,-2.5 parent: 1 - - uid: 14385 + - uid: 14860 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-16.5 + pos: -82.5,1.5 parent: 1 - - uid: 14386 + - uid: 14861 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -82.5,2.5 parent: 1 - - uid: 14387 + - uid: 14862 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-18.5 + pos: -82.5,3.5 parent: 1 - - uid: 14388 + - uid: 14863 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-19.5 + pos: -82.5,4.5 parent: 1 - - uid: 14389 + - uid: 14864 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-20.5 + pos: -82.5,5.5 parent: 1 - - uid: 14390 + - uid: 14865 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 1 - - uid: 14391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 + pos: -82.5,6.5 parent: 1 - - uid: 14392 + - uid: 14866 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-22.5 + pos: -81.5,7.5 parent: 1 - - uid: 14393 + - uid: 14867 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-22.5 + pos: -80.5,7.5 parent: 1 - - uid: 14394 + - uid: 14868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-22.5 + pos: -79.5,7.5 parent: 1 - - uid: 14395 + - uid: 14869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-22.5 + pos: -78.5,7.5 parent: 1 - - uid: 14396 + - uid: 14870 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-22.5 + pos: -77.5,7.5 parent: 1 - - uid: 14397 + - uid: 14872 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-22.5 + pos: -84.5,8.5 parent: 1 - - uid: 14398 + - uid: 14873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 + pos: -85.5,9.5 parent: 1 - - uid: 14399 + - uid: 14874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-22.5 + pos: -85.5,10.5 parent: 1 - - uid: 14400 + - uid: 14875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 + pos: -85.5,11.5 parent: 1 - - uid: 14401 + - uid: 14876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 + pos: -85.5,12.5 parent: 1 - - uid: 14402 + - uid: 14877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 + pos: -85.5,13.5 parent: 1 - - uid: 14404 + - uid: 14878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 + pos: -85.5,14.5 parent: 1 - - uid: 14406 + - uid: 14879 components: - type: Transform - pos: -16.5,-23.5 + pos: -85.5,15.5 parent: 1 - - uid: 14407 + - uid: 14880 components: - type: Transform - pos: -16.5,-25.5 + pos: -85.5,16.5 parent: 1 - - uid: 14408 + - uid: 14881 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-26.5 + pos: -84.5,17.5 parent: 1 - - uid: 14409 + - uid: 14882 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-26.5 + pos: -83.5,17.5 parent: 1 - - uid: 14410 + - uid: 14883 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-26.5 + pos: -82.5,17.5 parent: 1 - - uid: 14411 + - uid: 14884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-26.5 + pos: -81.5,17.5 parent: 1 - - uid: 14412 + - uid: 14885 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-26.5 + pos: -86.5,8.5 parent: 1 - - uid: 14413 + - uid: 14886 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-26.5 + pos: -87.5,8.5 parent: 1 - - uid: 14414 + - uid: 14887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 + rot: 3.141592653589793 rad + pos: -88.5,7.5 parent: 1 - - uid: 14415 + - uid: 14888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-26.5 + rot: 1.5707963267948966 rad + pos: -89.5,6.5 parent: 1 - - uid: 14416 + - uid: 14889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 + rot: 1.5707963267948966 rad + pos: -90.5,6.5 parent: 1 - - uid: 14417 + - uid: 14890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + rot: 1.5707963267948966 rad + pos: -91.5,6.5 parent: 1 - - uid: 14418 + - uid: 14891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-26.5 + rot: 1.5707963267948966 rad + pos: -92.5,6.5 parent: 1 - - uid: 14419 + - uid: 14893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-26.5 + rot: 1.5707963267948966 rad + pos: -94.5,6.5 parent: 1 - - uid: 14420 + - uid: 14895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-26.5 + rot: 1.5707963267948966 rad + pos: -96.5,6.5 parent: 1 - - uid: 14421 + - uid: 14897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-26.5 + pos: -62.5,16.5 parent: 1 - - uid: 14422 + - uid: 14898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-26.5 + pos: -62.5,17.5 parent: 1 - - uid: 14423 + - uid: 14899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-26.5 + pos: -62.5,18.5 parent: 1 - - uid: 14424 + - uid: 14900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-26.5 + pos: -62.5,19.5 parent: 1 - - uid: 14425 + - uid: 14901 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-26.5 + pos: -61.5,20.5 parent: 1 - - uid: 14426 + - uid: 14902 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-26.5 + pos: -60.5,20.5 parent: 1 - - uid: 14427 + - uid: 14903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-26.5 + pos: -59.5,20.5 parent: 1 - - uid: 14428 + - uid: 14904 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-26.5 + pos: -58.5,20.5 parent: 1 - - uid: 14429 + - uid: 14905 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-26.5 + pos: -57.5,20.5 parent: 1 - - uid: 14430 + - uid: 14906 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-26.5 - parent: 1 - - uid: 14446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-35.5 - parent: 1 - - uid: 14447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-36.5 - parent: 1 - - uid: 14448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 1 - - uid: 14449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-34.5 + pos: -56.5,20.5 parent: 1 - - uid: 14450 + - uid: 14907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -55.5,20.5 parent: 1 - - uid: 14451 + - uid: 14908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -54.5,20.5 parent: 1 - - uid: 14452 + - uid: 14909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-34.5 + rot: -1.5707963267948966 rad + pos: -53.5,20.5 parent: 1 - - uid: 14453 + - uid: 14910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + rot: -1.5707963267948966 rad + pos: -52.5,20.5 parent: 1 - - uid: 14454 + - uid: 14911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 + rot: -1.5707963267948966 rad + pos: -51.5,20.5 parent: 1 - - uid: 14455 + - uid: 14912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 + rot: -1.5707963267948966 rad + pos: -50.5,20.5 parent: 1 - - uid: 14456 + - uid: 14913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-34.5 + rot: -1.5707963267948966 rad + pos: -49.5,20.5 parent: 1 - - uid: 14457 + - uid: 14914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 + rot: -1.5707963267948966 rad + pos: -48.5,20.5 parent: 1 - - uid: 14458 + - uid: 14915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-34.5 + rot: -1.5707963267948966 rad + pos: -47.5,20.5 parent: 1 - - uid: 14459 + - uid: 14916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 + rot: -1.5707963267948966 rad + pos: -46.5,20.5 parent: 1 - - uid: 14460 + - uid: 14917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 + rot: -1.5707963267948966 rad + pos: -45.5,20.5 parent: 1 - - uid: 14461 + - uid: 14918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 + rot: -1.5707963267948966 rad + pos: -44.5,20.5 parent: 1 - - uid: 14462 + - uid: 14919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 + rot: -1.5707963267948966 rad + pos: -43.5,20.5 parent: 1 - - uid: 14463 + - uid: 14920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 + rot: -1.5707963267948966 rad + pos: -42.5,20.5 parent: 1 - - uid: 14464 + - uid: 14921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 + rot: -1.5707963267948966 rad + pos: -41.5,20.5 parent: 1 - - uid: 14465 + - uid: 15119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 + rot: 3.141592653589793 rad + pos: -33.5,-7.5 parent: 1 - - uid: 14466 + - uid: 15120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 parent: 1 - - uid: 14467 + - uid: 15121 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-31.5 + pos: -33.5,-9.5 parent: 1 - - uid: 14468 + - uid: 15122 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-30.5 + pos: -33.5,-10.5 parent: 1 - - uid: 14469 + - uid: 15123 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-29.5 + pos: -33.5,-11.5 parent: 1 - - uid: 14470 + - uid: 15124 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-28.5 + pos: -33.5,-12.5 parent: 1 - - uid: 14471 + - uid: 15125 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-27.5 + pos: -33.5,-13.5 parent: 1 - - uid: 14477 + - uid: 16110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-25.5 + rot: -1.5707963267948966 rad + pos: -8.5,36.5 parent: 1 - - uid: 14480 + - uid: 16305 components: - type: Transform - pos: -41.5,-22.5 + pos: -6.5,-2.5 parent: 1 - - uid: 14481 + - uid: 16308 components: - type: Transform - pos: -41.5,-21.5 + pos: -6.5,-1.5 parent: 1 - - uid: 14482 + - uid: 16309 components: - type: Transform - pos: -41.5,-20.5 + pos: -6.5,-0.5 parent: 1 - - uid: 14483 + - uid: 16407 components: - type: Transform - pos: -41.5,-19.5 + rot: -1.5707963267948966 rad + pos: -7.5,36.5 parent: 1 - - uid: 14501 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-23.5 + rot: -1.5707963267948966 rad + pos: -16.5,-21.5 parent: 1 - - uid: 14503 + - uid: 16525 components: - type: Transform - pos: -44.5,-24.5 + rot: 3.141592653589793 rad + pos: -43.5,-24.5 parent: 1 - - uid: 14505 + - uid: 16803 components: - type: Transform - pos: -44.5,-26.5 + pos: -74.5,-30.5 parent: 1 - - uid: 14506 + - uid: 16804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-27.5 + pos: -74.5,-29.5 parent: 1 - - uid: 14507 + - uid: 17540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-27.5 + rot: 1.5707963267948966 rad + pos: -94.5,5.5 parent: 1 - - uid: 14508 + - uid: 18888 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-27.5 + pos: -6.5,36.5 parent: 1 - - uid: 14509 + - uid: 18899 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-27.5 + pos: -5.5,36.5 parent: 1 - - uid: 14510 + - uid: 18916 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-27.5 + pos: -12.5,-46.5 parent: 1 - - uid: 14511 + - uid: 18917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-27.5 + pos: -41.5,37.5 parent: 1 - - uid: 14512 + - uid: 18918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-27.5 + pos: -42.5,37.5 parent: 1 - - uid: 14513 + - uid: 18951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-28.5 + pos: -74.5,-33.5 parent: 1 - - uid: 14514 + - uid: 18952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-29.5 + rot: 1.5707963267948966 rad + pos: -78.5,-35.5 parent: 1 - - uid: 14515 + - uid: 19224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-30.5 + pos: -43.5,36.5 parent: 1 - - uid: 14516 + - uid: 19279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-31.5 + pos: -42.5,41.5 parent: 1 - - uid: 14517 + - uid: 20276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-32.5 + pos: -42.5,40.5 parent: 1 - - uid: 14519 + - uid: 20544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-34.5 + pos: -42.5,39.5 parent: 1 - - uid: 14520 + - uid: 22858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-35.5 + pos: -42.5,38.5 parent: 1 - - uid: 14521 + - uid: 23624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-36.5 + pos: -49.5,40.5 parent: 1 - - uid: 14522 + - uid: 23625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-37.5 + pos: -56.5,35.5 parent: 1 - - uid: 14523 + - uid: 23626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-38.5 + pos: -56.5,34.5 parent: 1 - - uid: 14524 + - uid: 24461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-39.5 + rot: -1.5707963267948966 rad + pos: -72.5,-24.5 parent: 1 - - uid: 14525 + - uid: 24462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-40.5 + rot: -1.5707963267948966 rad + pos: -70.5,-24.5 parent: 1 - - uid: 14526 + - uid: 24740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-41.5 + rot: -1.5707963267948966 rad + pos: -69.5,-24.5 parent: 1 - - uid: 14527 + - uid: 24749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-42.5 + pos: -74.5,-28.5 parent: 1 - - uid: 14528 + - uid: 25027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-43.5 + pos: -56.5,33.5 parent: 1 - - uid: 14529 + - uid: 25298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-44.5 + pos: -56.5,32.5 parent: 1 - - uid: 14530 + - uid: 27613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-44.5 + pos: -56.5,31.5 parent: 1 - - uid: 14531 + - uid: 28655 components: - type: Transform - pos: -49.5,-45.5 + pos: -56.5,30.5 parent: 1 - - uid: 14532 + - uid: 28688 components: - type: Transform - pos: -49.5,-46.5 + pos: -42.5,37.5 parent: 1 - - uid: 14533 + - uid: 28787 components: - type: Transform - pos: -49.5,-47.5 + rot: 1.5707963267948966 rad + pos: -37.5,1.5 parent: 1 - - uid: 14534 + - uid: 28804 components: - type: Transform - pos: -49.5,-48.5 + pos: -42.5,36.5 parent: 1 - - uid: 14535 + - uid: 28805 components: - type: Transform - pos: -49.5,-49.5 + pos: -42.5,35.5 parent: 1 - - uid: 14536 + - uid: 28810 components: - type: Transform - pos: -49.5,-50.5 + pos: -42.5,34.5 parent: 1 - - uid: 14537 + - uid: 28838 components: - type: Transform - pos: -49.5,-51.5 + pos: -42.5,33.5 parent: 1 - - uid: 14538 + - uid: 28844 components: - type: Transform - pos: -49.5,-52.5 + rot: 3.141592653589793 rad + pos: -36.5,3.5 parent: 1 - - uid: 14539 + - uid: 28845 components: - type: Transform - pos: -49.5,-53.5 + rot: 3.141592653589793 rad + pos: -36.5,4.5 parent: 1 - - uid: 14540 + - uid: 28846 components: - type: Transform - pos: -49.5,-54.5 + pos: -39.5,18.5 parent: 1 - - uid: 14544 + - uid: 28851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-36.5 + pos: -42.5,32.5 parent: 1 - - uid: 14545 + - uid: 28859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-35.5 + rot: 1.5707963267948966 rad + pos: -64.5,19.5 parent: 1 - - uid: 14546 + - uid: 28860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-34.5 + rot: 1.5707963267948966 rad + pos: -63.5,19.5 parent: 1 - - uid: 14547 + - uid: 28861 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-33.5 + pos: -62.5,19.5 parent: 1 - - uid: 14548 + - uid: 28862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-33.5 + pos: -61.5,19.5 parent: 1 - - uid: 14585 + - uid: 28863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-18.5 + rot: 1.5707963267948966 rad + pos: -60.5,19.5 parent: 1 - - uid: 14586 + - uid: 28864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-16.5 + rot: 1.5707963267948966 rad + pos: -59.5,19.5 parent: 1 - - uid: 14587 + - uid: 28865 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-17.5 + pos: -58.5,19.5 parent: 1 - - uid: 14588 + - uid: 28866 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-17.5 + pos: -57.5,19.5 parent: 1 - - uid: 14589 + - uid: 28867 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-17.5 + pos: -56.5,19.5 parent: 1 - - uid: 14590 + - uid: 28868 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-17.5 + pos: -55.5,19.5 parent: 1 - - uid: 14591 + - uid: 28869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-17.5 + pos: -54.5,19.5 parent: 1 - - uid: 14592 + - uid: 28870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-17.5 + pos: -53.5,17.5 parent: 1 - - uid: 14593 + - uid: 28871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-17.5 + pos: -53.5,18.5 parent: 1 - - uid: 14594 + - uid: 28872 components: - type: Transform - pos: -49.5,-16.5 + pos: -42.5,20.5 parent: 1 - - uid: 14595 + - uid: 28873 components: - type: Transform - pos: -49.5,-15.5 + rot: -1.5707963267948966 rad + pos: -52.5,19.5 parent: 1 - - uid: 14596 + - uid: 28874 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-14.5 + pos: -51.5,19.5 parent: 1 - - uid: 14597 + - uid: 28875 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-14.5 + pos: -50.5,19.5 parent: 1 - - uid: 14598 + - uid: 28876 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-14.5 + pos: -49.5,19.5 parent: 1 - - uid: 14599 + - uid: 28877 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-14.5 + pos: -48.5,19.5 parent: 1 - - uid: 14600 + - uid: 28878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-14.5 + pos: -47.5,19.5 parent: 1 - - uid: 14601 + - uid: 28879 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-14.5 + pos: -46.5,19.5 parent: 1 - - uid: 14602 + - uid: 28880 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-14.5 + pos: -45.5,19.5 parent: 1 - - uid: 14603 + - uid: 28881 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-14.5 + pos: -44.5,19.5 parent: 1 - - uid: 14604 + - uid: 28882 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-14.5 + pos: -43.5,19.5 parent: 1 - - uid: 14605 + - uid: 28883 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-14.5 + pos: -42.5,19.5 parent: 1 - - uid: 14606 + - uid: 28884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-14.5 + pos: -41.5,19.5 parent: 1 - - uid: 14607 + - uid: 28885 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-14.5 + pos: -40.5,19.5 parent: 1 - - uid: 14608 + - uid: 28886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-14.5 + rot: 3.141592653589793 rad + pos: -39.5,20.5 parent: 1 - - uid: 14609 + - uid: 28888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-14.5 + pos: -39.5,17.5 parent: 1 - - uid: 14610 + - uid: 28889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-14.5 + pos: -39.5,16.5 parent: 1 - - uid: 14611 + - uid: 28890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 + pos: -39.5,15.5 parent: 1 - - uid: 14612 + - uid: 28891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-14.5 + pos: -39.5,14.5 parent: 1 - - uid: 14613 + - uid: 28892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-14.5 + pos: -39.5,13.5 parent: 1 - - uid: 14614 + - uid: 28893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-14.5 + pos: -39.5,12.5 parent: 1 - - uid: 14615 + - uid: 28894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-14.5 + pos: -39.5,11.5 parent: 1 - - uid: 14616 + - uid: 28895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-14.5 + pos: -39.5,10.5 parent: 1 - - uid: 14617 + - uid: 28896 + components: + - type: Transform + pos: -39.5,9.5 + parent: 1 + - uid: 28897 + components: + - type: Transform + pos: -39.5,8.5 + parent: 1 + - uid: 28898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,-14.5 + pos: -37.5,7.5 parent: 1 - - uid: 14621 + - uid: 28899 components: - type: Transform - pos: -73.5,-16.5 + rot: -1.5707963267948966 rad + pos: -38.5,7.5 parent: 1 - - uid: 14623 + - uid: 28900 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-19.5 + pos: -36.5,6.5 parent: 1 - - uid: 14624 + - uid: 28901 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-20.5 + pos: -36.5,5.5 parent: 1 - - uid: 14625 + - uid: 28907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-21.5 + rot: 1.5707963267948966 rad + pos: -38.5,1.5 parent: 1 - - uid: 14626 + - uid: 28908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-22.5 + pos: -39.5,0.5 parent: 1 - - uid: 14635 + - uid: 28909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-25.5 + pos: -39.5,-0.5 parent: 1 - - uid: 14636 + - uid: 28910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-25.5 + pos: -39.5,-1.5 parent: 1 - - uid: 14637 + - uid: 28911 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 1 + - uid: 28912 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 1 + - uid: 28913 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 1 + - uid: 28914 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 1 + - uid: 28915 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 1 + - uid: 28916 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-25.5 + pos: -29.5,-12.5 parent: 1 - - uid: 14638 + - uid: 28917 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-25.5 + pos: -30.5,-12.5 parent: 1 - - uid: 14639 + - uid: 28918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-25.5 + pos: -31.5,-12.5 parent: 1 - - uid: 14640 + - uid: 28919 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-26.5 + pos: -32.5,-11.5 parent: 1 - - uid: 14641 + - uid: 28920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-10.5 + parent: 1 + - uid: 28921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-9.5 + parent: 1 + - uid: 28922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 1 + - uid: 28923 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,-25.5 + pos: -33.5,-7.5 parent: 1 - - uid: 14642 + - uid: 28924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -81.5,-25.5 + pos: -34.5,-7.5 parent: 1 - - uid: 14643 + - uid: 28925 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,-25.5 + pos: -35.5,-7.5 parent: 1 - - uid: 14644 + - uid: 28926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-25.5 + pos: -36.5,-7.5 parent: 1 - - uid: 14645 + - uid: 28927 components: - type: Transform - pos: -84.5,-26.5 + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 parent: 1 - - uid: 14646 + - uid: 28928 components: - type: Transform - pos: -84.5,-24.5 + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 parent: 1 - - uid: 14647 + - uid: 28934 components: - type: Transform - pos: -84.5,-23.5 + rot: -1.5707963267948966 rad + pos: -38.5,36.5 parent: 1 - - uid: 14648 + - uid: 28937 components: - type: Transform - pos: -84.5,-22.5 + pos: -42.5,29.5 parent: 1 - - uid: 14649 + - uid: 28945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,-14.5 + pos: -96.5,7.5 parent: 1 - - uid: 14650 + - uid: 28957 + components: + - type: Transform + pos: -42.5,28.5 + parent: 1 + - uid: 28958 + components: + - type: Transform + pos: -42.5,27.5 + parent: 1 + - uid: 28959 + components: + - type: Transform + pos: -42.5,24.5 + parent: 1 + - uid: 28960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,-14.5 + pos: 10.5,-45.5 parent: 1 - - uid: 14651 + - uid: 28961 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-14.5 + pos: 9.5,-45.5 parent: 1 - - uid: 14652 + - uid: 28962 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-14.5 + pos: 8.5,-45.5 parent: 1 - - uid: 14653 + - uid: 28963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-14.5 + pos: 7.5,-45.5 parent: 1 - - uid: 14654 + - uid: 28964 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,-14.5 + pos: 6.5,-45.5 parent: 1 - - uid: 14655 + - uid: 28965 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,-14.5 + pos: 5.5,-45.5 parent: 1 - - uid: 14656 + - uid: 28966 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,-14.5 + pos: 4.5,-45.5 parent: 1 - - uid: 14657 + - uid: 28967 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,-14.5 + pos: 3.5,-45.5 parent: 1 - - uid: 14658 + - uid: 28968 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,-14.5 + pos: 2.5,-45.5 parent: 1 - - uid: 14659 + - uid: 28969 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,-14.5 + pos: 1.5,-45.5 parent: 1 - - uid: 14660 + - uid: 28970 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,-14.5 + pos: 0.5,-45.5 parent: 1 - - uid: 14661 + - uid: 28971 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-14.5 + pos: -0.5,-45.5 parent: 1 - - uid: 14662 + - uid: 28972 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-14.5 + pos: -1.5,-45.5 parent: 1 - - uid: 14663 + - uid: 28973 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-14.5 + pos: -2.5,-45.5 parent: 1 - - uid: 14664 + - uid: 28974 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-14.5 + pos: -3.5,-45.5 parent: 1 - - uid: 14665 + - uid: 28975 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-14.5 + pos: -5.5,-46.5 parent: 1 - - uid: 14666 + - uid: 28976 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-14.5 + pos: -6.5,-46.5 parent: 1 - - uid: 14667 + - uid: 28977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-15.5 + pos: -7.5,-46.5 parent: 1 - - uid: 14668 + - uid: 28978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,-15.5 + pos: -8.5,-46.5 parent: 1 - - uid: 14669 + - uid: 28979 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-15.5 + pos: -9.5,-46.5 parent: 1 - - uid: 14670 + - uid: 28980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-15.5 + pos: -10.5,-46.5 parent: 1 - - uid: 14671 + - uid: 28981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-15.5 + pos: -11.5,-46.5 parent: 1 - - uid: 14672 + - uid: 28982 components: - type: Transform - pos: -100.5,-16.5 + pos: -42.5,23.5 parent: 1 - - uid: 14673 + - uid: 28989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-15.5 + rot: 1.5707963267948966 rad + pos: -13.5,-46.5 parent: 1 - - uid: 14686 + - uid: 28990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-17.5 + rot: 1.5707963267948966 rad + pos: -14.5,-46.5 parent: 1 - - uid: 14687 + - uid: 28991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-16.5 + pos: -15.5,-45.5 parent: 1 - - uid: 14688 + - uid: 28992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-15.5 + pos: -15.5,-44.5 parent: 1 - - uid: 14745 + - uid: 28993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,36.5 + pos: -15.5,-43.5 parent: 1 - - uid: 14746 + - uid: 28994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,36.5 + pos: -15.5,-42.5 parent: 1 - - uid: 14747 + - uid: 28995 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,36.5 + pos: -16.5,-41.5 parent: 1 - - uid: 14748 + - uid: 28996 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,36.5 + pos: -17.5,-41.5 parent: 1 - - uid: 14749 + - uid: 28997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,36.5 + pos: -18.5,-41.5 parent: 1 - - uid: 14750 + - uid: 28998 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,36.5 + pos: -19.5,-41.5 parent: 1 - - uid: 14751 + - uid: 28999 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,36.5 + pos: -20.5,-41.5 parent: 1 - - uid: 14752 + - uid: 29000 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,36.5 + pos: -21.5,-41.5 parent: 1 - - uid: 14753 + - uid: 29003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,36.5 + pos: -15.5,-40.5 parent: 1 - - uid: 14754 + - uid: 29004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,36.5 + pos: -15.5,-39.5 parent: 1 - - uid: 14755 + - uid: 29005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,36.5 + pos: -15.5,-38.5 parent: 1 - - uid: 14756 + - uid: 29006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,36.5 + pos: -15.5,-37.5 parent: 1 - - uid: 14757 + - uid: 29007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,36.5 + pos: -15.5,-36.5 parent: 1 - - uid: 14758 + - uid: 29008 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,36.5 + pos: -16.5,-35.5 parent: 1 - - uid: 14759 + - uid: 29009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,36.5 + rot: 3.141592653589793 rad + pos: -17.5,-34.5 parent: 1 - - uid: 14760 + - uid: 29010 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,35.5 + pos: -17.5,-33.5 parent: 1 - - uid: 14761 + - uid: 29011 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,34.5 + pos: -17.5,-32.5 parent: 1 - - uid: 14762 + - uid: 29012 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,33.5 + pos: -17.5,-31.5 parent: 1 - - uid: 14763 + - uid: 29013 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,32.5 + pos: -17.5,-30.5 parent: 1 - - uid: 14764 + - uid: 29014 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,31.5 + pos: -17.5,-29.5 parent: 1 - - uid: 14765 + - uid: 29015 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,30.5 + pos: -17.5,-28.5 parent: 1 - - uid: 14766 + - uid: 29016 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,29.5 + pos: -17.5,-27.5 parent: 1 - - uid: 14767 + - uid: 29017 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,28.5 + pos: -17.5,-26.5 parent: 1 - - uid: 14768 + - uid: 29018 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,27.5 + pos: -17.5,-24.5 parent: 1 - - uid: 14769 + - uid: 29019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,26.5 + pos: -16.5,-23.5 parent: 1 - - uid: 14770 + - uid: 29020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,26.5 + pos: -15.5,-23.5 parent: 1 - - uid: 14771 + - uid: 29021 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,26.5 + pos: -14.5,-23.5 parent: 1 - - uid: 14772 + - uid: 29022 components: - type: Transform - pos: -69.5,25.5 + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 parent: 1 - - uid: 14773 + - uid: 29023 components: - type: Transform - pos: -69.5,24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-23.5 parent: 1 - - uid: 14774 + - uid: 29024 components: - type: Transform - pos: -69.5,23.5 + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 parent: 1 - - uid: 14775 + - uid: 29025 components: - type: Transform - pos: -69.5,22.5 + pos: -10.5,-22.5 parent: 1 - - uid: 14776 + - uid: 29026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,21.5 + pos: -9.5,-21.5 parent: 1 - - uid: 14777 + - uid: 29027 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,21.5 + pos: -8.5,-21.5 parent: 1 - - uid: 14778 + - uid: 29028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,23.5 + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 parent: 1 - - uid: 14779 + - uid: 29029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 1 + - uid: 29030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + - uid: 29031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - uid: 29032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + - uid: 29033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + - uid: 29034 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,24.5 + pos: -1.5,-20.5 parent: 1 - - uid: 14780 + - uid: 29035 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,25.5 + pos: -1.5,-19.5 parent: 1 - - uid: 14781 + - uid: 29036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-18.5 parent: 1 - - uid: 14782 + - uid: 29037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-17.5 parent: 1 - - uid: 14783 + - uid: 29038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-16.5 parent: 1 - - uid: 14784 + - uid: 29039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-15.5 parent: 1 - - uid: 14785 + - uid: 29040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-14.5 parent: 1 - - uid: 14786 + - uid: 29041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-13.5 parent: 1 - - uid: 14787 + - uid: 29042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,-12.5 parent: 1 - - uid: 14788 + - uid: 29043 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,21.5 + pos: -0.5,-11.5 parent: 1 - - uid: 14789 + - uid: 29044 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,21.5 + pos: 0.5,-11.5 parent: 1 - - uid: 14790 + - uid: 29045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,21.5 + pos: 1.5,-11.5 parent: 1 - - uid: 14791 + - uid: 29046 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,21.5 + pos: 2.5,-11.5 parent: 1 - - uid: 14792 + - uid: 29047 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,21.5 + pos: 3.5,-11.5 parent: 1 - - uid: 14793 + - uid: 29048 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,21.5 + pos: 4.5,-11.5 parent: 1 - - uid: 14794 + - uid: 29049 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,21.5 + pos: -18.5,-25.5 parent: 1 - - uid: 14795 + - uid: 29050 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,21.5 + pos: -19.5,-25.5 parent: 1 - - uid: 14796 + - uid: 29051 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,21.5 + pos: -20.5,-25.5 parent: 1 - - uid: 14797 + - uid: 29052 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,21.5 + pos: -21.5,-25.5 parent: 1 - - uid: 14798 + - uid: 29053 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,21.5 + pos: -22.5,-25.5 parent: 1 - - uid: 14799 + - uid: 29054 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,21.5 + pos: -23.5,-25.5 parent: 1 - - uid: 14800 + - uid: 29055 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,21.5 + pos: -24.5,-25.5 parent: 1 - - uid: 14801 + - uid: 29056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,21.5 + pos: -25.5,-25.5 parent: 1 - - uid: 14802 + - uid: 29057 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,21.5 + pos: -26.5,-25.5 parent: 1 - - uid: 14803 + - uid: 29058 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,21.5 + pos: -27.5,-25.5 parent: 1 - - uid: 14804 + - uid: 29059 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,21.5 + pos: -28.5,-25.5 parent: 1 - - uid: 14805 + - uid: 29060 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,21.5 + pos: -29.5,-25.5 parent: 1 - - uid: 14806 + - uid: 29061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,21.5 + pos: -30.5,-25.5 parent: 1 - - uid: 14807 + - uid: 29062 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,21.5 + pos: -31.5,-25.5 parent: 1 - - uid: 14808 + - uid: 29063 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,22.5 + pos: -32.5,-25.5 parent: 1 - - uid: 14809 + - uid: 29064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -106.5,22.5 + pos: -33.5,-25.5 parent: 1 - - uid: 14810 + - uid: 29065 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,22.5 + pos: -34.5,-25.5 parent: 1 - - uid: 14811 + - uid: 29066 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,22.5 + pos: -35.5,-25.5 parent: 1 - - uid: 14812 + - uid: 29067 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,22.5 + pos: -36.5,-25.5 parent: 1 - - uid: 14813 + - uid: 29068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,22.5 + pos: -37.5,-25.5 parent: 1 - - uid: 14814 + - uid: 29069 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,22.5 + pos: -38.5,-25.5 parent: 1 - - uid: 14815 + - uid: 29070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,22.5 + pos: -39.5,-24.5 parent: 1 - - uid: 14816 + - uid: 29071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,22.5 + pos: -39.5,-23.5 parent: 1 - - uid: 14817 + - uid: 29072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,22.5 + pos: -39.5,-22.5 parent: 1 - - uid: 14818 + - uid: 29073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,22.5 + pos: -39.5,-21.5 parent: 1 - - uid: 14819 + - uid: 29074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,22.5 + pos: -39.5,-20.5 parent: 1 - - uid: 14820 + - uid: 29075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,22.5 + pos: -39.5,-19.5 parent: 1 - - uid: 14821 + - uid: 29076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,22.5 + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 parent: 1 - - uid: 14822 + - uid: 29077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 parent: 1 - - uid: 14823 + - uid: 29078 components: - type: Transform - pos: -73.5,20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-8.5 parent: 1 - - uid: 14824 + - uid: 29079 components: - type: Transform - pos: -73.5,19.5 + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 parent: 1 - - uid: 14825 + - uid: 29080 components: - type: Transform - pos: -73.5,18.5 + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 parent: 1 - - uid: 14826 + - uid: 29081 components: - type: Transform - pos: -73.5,17.5 + rot: -1.5707963267948966 rad + pos: -45.5,-8.5 parent: 1 - - uid: 14827 + - uid: 29082 components: - type: Transform - pos: -73.5,16.5 + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 parent: 1 - - uid: 14828 + - uid: 29083 components: - type: Transform - pos: -73.5,15.5 + rot: -1.5707963267948966 rad + pos: -47.5,-8.5 parent: 1 - - uid: 14829 + - uid: 29084 components: - type: Transform - pos: -73.5,14.5 + rot: -1.5707963267948966 rad + pos: -48.5,-8.5 parent: 1 - - uid: 14830 + - uid: 29085 components: - type: Transform - pos: -73.5,13.5 + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 parent: 1 - - uid: 14831 + - uid: 29086 components: - type: Transform - pos: -73.5,12.5 + rot: 3.141592653589793 rad + pos: -50.5,-9.5 parent: 1 - - uid: 14832 + - uid: 29087 components: - type: Transform - pos: -73.5,11.5 + rot: 3.141592653589793 rad + pos: -50.5,-10.5 parent: 1 - - uid: 14833 + - uid: 29088 components: - type: Transform - pos: -73.5,10.5 + rot: 3.141592653589793 rad + pos: -50.5,-11.5 parent: 1 - - uid: 14834 + - uid: 29089 components: - type: Transform - pos: -73.5,9.5 + rot: 3.141592653589793 rad + pos: -50.5,-12.5 parent: 1 - - uid: 14835 + - uid: 29090 components: - type: Transform - pos: -73.5,8.5 + rot: 1.5707963267948966 rad + pos: -40.5,-18.5 parent: 1 - - uid: 14836 + - uid: 29091 components: - type: Transform - pos: -73.5,7.5 + rot: 1.5707963267948966 rad + pos: -41.5,-18.5 parent: 1 - - uid: 14837 + - uid: 29092 components: - type: Transform - pos: -73.5,6.5 + rot: 1.5707963267948966 rad + pos: -42.5,-18.5 parent: 1 - - uid: 14838 + - uid: 29093 components: - type: Transform - pos: -73.5,5.5 + rot: 1.5707963267948966 rad + pos: -43.5,-18.5 parent: 1 - - uid: 14839 + - uid: 29094 components: - type: Transform - pos: -73.5,4.5 + rot: 1.5707963267948966 rad + pos: -44.5,-18.5 parent: 1 - - uid: 14840 + - uid: 29095 components: - type: Transform - pos: -73.5,3.5 + rot: 1.5707963267948966 rad + pos: -45.5,-18.5 parent: 1 - - uid: 14841 + - uid: 29096 components: - type: Transform - pos: -73.5,2.5 + rot: 1.5707963267948966 rad + pos: -46.5,-18.5 parent: 1 - - uid: 14842 + - uid: 29097 components: - type: Transform - pos: -73.5,1.5 + rot: 1.5707963267948966 rad + pos: -47.5,-18.5 parent: 1 - - uid: 14843 + - uid: 29098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,0.5 + rot: 1.5707963267948966 rad + pos: -55.5,29.5 parent: 1 - - uid: 14844 + - uid: 29099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,0.5 + rot: 1.5707963267948966 rad + pos: -49.5,-18.5 parent: 1 - - uid: 14845 + - uid: 29101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,0.5 + rot: 3.141592653589793 rad + pos: -50.5,-17.5 parent: 1 - - uid: 14846 + - uid: 29102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,0.5 + rot: 3.141592653589793 rad + pos: -50.5,-16.5 parent: 1 - - uid: 14847 + - uid: 29103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,0.5 + rot: 3.141592653589793 rad + pos: -50.5,-15.5 parent: 1 - - uid: 14848 + - uid: 29104 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,1.5 + pos: -50.5,-14.5 parent: 1 - - uid: 14849 + - uid: 29105 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,0.5 + pos: -51.5,-13.5 parent: 1 - - uid: 14850 + - uid: 29106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -81.5,0.5 + pos: -52.5,-13.5 parent: 1 - - uid: 14852 + - uid: 29107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-0.5 + rot: 1.5707963267948966 rad + pos: -53.5,-13.5 parent: 1 - - uid: 14853 + - uid: 29108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-1.5 + rot: 1.5707963267948966 rad + pos: -54.5,-13.5 parent: 1 - - uid: 14854 + - uid: 29109 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-2.5 + pos: -55.5,-13.5 parent: 1 - - uid: 14855 + - uid: 29110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,-2.5 + pos: -56.5,-13.5 parent: 1 - - uid: 14857 + - uid: 29111 components: - type: Transform - pos: -85.5,-4.5 + rot: 1.5707963267948966 rad + pos: -57.5,-13.5 parent: 1 - - uid: 14858 + - uid: 29112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-2.5 + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 parent: 1 - - uid: 14859 + - uid: 29113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-2.5 + rot: 1.5707963267948966 rad + pos: -59.5,-13.5 parent: 1 - - uid: 14860 + - uid: 29114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,1.5 + rot: 1.5707963267948966 rad + pos: -60.5,-13.5 parent: 1 - - uid: 14861 + - uid: 29115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,2.5 + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 parent: 1 - - uid: 14862 + - uid: 29116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,3.5 + rot: 1.5707963267948966 rad + pos: -62.5,-13.5 parent: 1 - - uid: 14863 + - uid: 29117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,4.5 + rot: 1.5707963267948966 rad + pos: -63.5,-13.5 parent: 1 - - uid: 14864 + - uid: 29118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-13.5 + parent: 1 + - uid: 29119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-13.5 + parent: 1 + - uid: 29120 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 1 + - uid: 29121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,5.5 + pos: -66.5,-15.5 parent: 1 - - uid: 14865 + - uid: 29122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,6.5 + pos: -66.5,-16.5 parent: 1 - - uid: 14866 + - uid: 29123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,7.5 + pos: -66.5,-17.5 parent: 1 - - uid: 14867 + - uid: 29124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,7.5 + pos: -66.5,-18.5 parent: 1 - - uid: 14868 + - uid: 29125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,7.5 + pos: -66.5,-19.5 parent: 1 - - uid: 14869 + - uid: 29126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,7.5 + pos: -66.5,-20.5 parent: 1 - - uid: 14870 + - uid: 29127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,7.5 + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 parent: 1 - - uid: 14872 + - uid: 29128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,8.5 + rot: -1.5707963267948966 rad + pos: -68.5,-13.5 parent: 1 - - uid: 14873 + - uid: 29129 components: - type: Transform - pos: -85.5,9.5 + rot: -1.5707963267948966 rad + pos: -69.5,-13.5 parent: 1 - - uid: 14874 + - uid: 29130 components: - type: Transform - pos: -85.5,10.5 + rot: -1.5707963267948966 rad + pos: -70.5,-13.5 parent: 1 - - uid: 14875 + - uid: 29131 components: - type: Transform - pos: -85.5,11.5 + rot: -1.5707963267948966 rad + pos: -71.5,-13.5 parent: 1 - - uid: 14876 + - uid: 29132 components: - type: Transform - pos: -85.5,12.5 + rot: -1.5707963267948966 rad + pos: -72.5,-13.5 parent: 1 - - uid: 14877 + - uid: 29133 components: - type: Transform - pos: -85.5,13.5 + rot: -1.5707963267948966 rad + pos: -73.5,-13.5 parent: 1 - - uid: 14878 + - uid: 29134 components: - type: Transform - pos: -85.5,14.5 + rot: 3.141592653589793 rad + pos: -74.5,-12.5 parent: 1 - - uid: 14879 + - uid: 29135 components: - type: Transform - pos: -85.5,15.5 + rot: 3.141592653589793 rad + pos: -74.5,-11.5 parent: 1 - - uid: 14880 + - uid: 29136 components: - type: Transform - pos: -85.5,16.5 + rot: 3.141592653589793 rad + pos: -74.5,-10.5 parent: 1 - - uid: 14881 + - uid: 29137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,17.5 + rot: 3.141592653589793 rad + pos: -74.5,-9.5 parent: 1 - - uid: 14882 + - uid: 29138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,17.5 + rot: 3.141592653589793 rad + pos: -74.5,-8.5 parent: 1 - - uid: 14883 + - uid: 29139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,17.5 + rot: 3.141592653589793 rad + pos: -74.5,-7.5 parent: 1 - - uid: 14884 + - uid: 29140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,17.5 + rot: 3.141592653589793 rad + pos: -74.5,-6.5 parent: 1 - - uid: 14885 + - uid: 29141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,8.5 + rot: 3.141592653589793 rad + pos: -74.5,-5.5 parent: 1 - - uid: 14886 + - uid: 29142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,8.5 + rot: 3.141592653589793 rad + pos: -74.5,-4.5 parent: 1 - - uid: 14887 + - uid: 29143 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,7.5 + pos: -74.5,-3.5 parent: 1 - - uid: 14888 + - uid: 29144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,6.5 + rot: 3.141592653589793 rad + pos: -74.5,-2.5 parent: 1 - - uid: 14889 + - uid: 29145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,6.5 + rot: 3.141592653589793 rad + pos: -74.5,-1.5 parent: 1 - - uid: 14890 + - uid: 29146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,6.5 + pos: -75.5,-0.5 parent: 1 - - uid: 14891 + - uid: 29147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,6.5 + pos: -76.5,-0.5 parent: 1 - - uid: 14893 + - uid: 29148 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,6.5 + pos: -77.5,-0.5 parent: 1 - - uid: 14895 + - uid: 29149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,6.5 + pos: -78.5,-0.5 parent: 1 - - uid: 14897 + - uid: 29150 components: - type: Transform - pos: -62.5,16.5 + rot: 1.5707963267948966 rad + pos: -79.5,-0.5 parent: 1 - - uid: 14898 + - uid: 29151 components: - type: Transform - pos: -62.5,17.5 + rot: 1.5707963267948966 rad + pos: -80.5,-0.5 parent: 1 - - uid: 14899 + - uid: 29152 components: - type: Transform - pos: -62.5,18.5 + rot: 1.5707963267948966 rad + pos: -82.5,-1.5 parent: 1 - - uid: 14900 + - uid: 29153 components: - type: Transform - pos: -62.5,19.5 + pos: -83.5,-2.5 parent: 1 - - uid: 14901 + - uid: 29154 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,20.5 + pos: -84.5,-3.5 parent: 1 - - uid: 14902 + - uid: 29155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,20.5 + pos: -85.5,-3.5 parent: 1 - - uid: 14903 + - uid: 29156 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,20.5 + pos: -86.5,-3.5 parent: 1 - - uid: 14904 + - uid: 29157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,20.5 + rot: 3.141592653589793 rad + pos: -87.5,-2.5 parent: 1 - - uid: 14905 + - uid: 29158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,20.5 + rot: 3.141592653589793 rad + pos: -88.5,-0.5 parent: 1 - - uid: 14906 + - uid: 29159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,20.5 + rot: 3.141592653589793 rad + pos: -88.5,0.5 parent: 1 - - uid: 14907 + - uid: 29160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,20.5 + rot: 3.141592653589793 rad + pos: -88.5,1.5 parent: 1 - - uid: 14908 + - uid: 29161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,20.5 + rot: 1.5707963267948966 rad + pos: -89.5,2.5 parent: 1 - - uid: 14909 + - uid: 29162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,20.5 + rot: 1.5707963267948966 rad + pos: -90.5,2.5 parent: 1 - - uid: 14910 + - uid: 29163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,20.5 + rot: 1.5707963267948966 rad + pos: -91.5,2.5 parent: 1 - - uid: 14911 + - uid: 29164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,20.5 + rot: 1.5707963267948966 rad + pos: -92.5,2.5 parent: 1 - - uid: 14912 + - uid: 29165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,20.5 + rot: 1.5707963267948966 rad + pos: -93.5,2.5 parent: 1 - - uid: 14913 + - uid: 29166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,20.5 + pos: -94.5,3.5 parent: 1 - - uid: 14914 + - uid: 29167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,20.5 + pos: -94.5,4.5 parent: 1 - - uid: 14915 + - uid: 29168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,20.5 + pos: -94.5,5.5 parent: 1 - - uid: 14916 + - uid: 29169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,20.5 + pos: -94.5,6.5 parent: 1 - - uid: 14917 + - uid: 29170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,20.5 + pos: -86.5,9.5 parent: 1 - - uid: 14918 + - uid: 29171 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,20.5 + pos: -85.5,9.5 parent: 1 - - uid: 14919 + - uid: 29172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,20.5 + pos: -84.5,9.5 parent: 1 - - uid: 14920 + - uid: 29173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,20.5 + pos: -83.5,9.5 parent: 1 - - uid: 14921 + - uid: 29174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,20.5 + rot: 3.141592653589793 rad + pos: -81.5,7.5 parent: 1 - - uid: 15119 + - uid: 29175 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-7.5 + pos: -81.5,6.5 parent: 1 - - uid: 15120 + - uid: 29176 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-8.5 + pos: -81.5,5.5 parent: 1 - - uid: 15121 + - uid: 29177 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-9.5 + pos: -81.5,4.5 parent: 1 - - uid: 15122 + - uid: 29178 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-10.5 + pos: -81.5,3.5 parent: 1 - - uid: 15123 + - uid: 29179 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-11.5 + pos: -81.5,2.5 parent: 1 - - uid: 15124 + - uid: 29180 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-12.5 + pos: -81.5,1.5 parent: 1 - - uid: 15125 + - uid: 29181 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-13.5 + pos: -81.5,0.5 parent: 1 - - uid: 15126 + - uid: 29182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-14.5 + rot: 1.5707963267948966 rad + pos: -75.5,-13.5 parent: 1 - - uid: 16110 + - uid: 29183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 + rot: 1.5707963267948966 rad + pos: -76.5,-13.5 parent: 1 - - uid: 16305 + - uid: 29184 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 parent: 1 - - uid: 16308 + - uid: 29185 components: - type: Transform - pos: -6.5,-1.5 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 parent: 1 - - uid: 16309 + - uid: 29186 components: - type: Transform - pos: -6.5,-0.5 + rot: 1.5707963267948966 rad + pos: -79.5,-13.5 parent: 1 - - uid: 16407 + - uid: 29187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,36.5 + rot: 1.5707963267948966 rad + pos: -80.5,-13.5 parent: 1 - - uid: 16495 + - uid: 29188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-21.5 + rot: 1.5707963267948966 rad + pos: -81.5,-13.5 parent: 1 - - uid: 16525 + - uid: 29189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-24.5 + rot: 1.5707963267948966 rad + pos: -82.5,-13.5 parent: 1 - - uid: 16803 + - uid: 29190 components: - type: Transform - pos: -74.5,-30.5 + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 parent: 1 - - uid: 16804 + - uid: 29191 components: - type: Transform - pos: -74.5,-29.5 + rot: 1.5707963267948966 rad + pos: -84.5,-13.5 parent: 1 - - uid: 17540 + - uid: 29192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,5.5 + pos: -85.5,-13.5 parent: 1 - - uid: 18888 + - uid: 29193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 + rot: 1.5707963267948966 rad + pos: -86.5,-13.5 parent: 1 - - uid: 18899 + - uid: 29194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 + rot: 1.5707963267948966 rad + pos: -87.5,-13.5 parent: 1 - - uid: 18916 + - uid: 29195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-46.5 + rot: 1.5707963267948966 rad + pos: -88.5,-13.5 parent: 1 - - uid: 18917 + - uid: 29196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,37.5 + rot: 1.5707963267948966 rad + pos: -89.5,-13.5 parent: 1 - - uid: 18918 + - uid: 29197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,37.5 + rot: 1.5707963267948966 rad + pos: -90.5,-13.5 parent: 1 - - uid: 18951 + - uid: 29198 components: - type: Transform - pos: -74.5,-33.5 + rot: 1.5707963267948966 rad + pos: -91.5,-13.5 parent: 1 - - uid: 18952 + - uid: 29199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-35.5 + pos: -92.5,-13.5 parent: 1 - - uid: 19224 + - uid: 29200 components: - type: Transform - pos: -43.5,36.5 + rot: 1.5707963267948966 rad + pos: -93.5,-13.5 parent: 1 - - uid: 19279 + - uid: 29201 components: - type: Transform - pos: -42.5,41.5 + rot: 1.5707963267948966 rad + pos: -94.5,-13.5 parent: 1 - - uid: 20276 + - uid: 29202 components: - type: Transform - pos: -42.5,40.5 + rot: 1.5707963267948966 rad + pos: -95.5,-13.5 parent: 1 - - uid: 20544 + - uid: 29203 components: - type: Transform - pos: -42.5,39.5 + rot: 1.5707963267948966 rad + pos: -96.5,-13.5 parent: 1 - - uid: 22858 + - uid: 29204 components: - type: Transform - pos: -42.5,38.5 + rot: 1.5707963267948966 rad + pos: -97.5,-13.5 parent: 1 - - uid: 23624 + - uid: 29205 components: - type: Transform - pos: -49.5,40.5 + rot: 1.5707963267948966 rad + pos: -98.5,-13.5 parent: 1 - - uid: 23625 + - uid: 29206 components: - type: Transform - pos: -56.5,35.5 + rot: 1.5707963267948966 rad + pos: -99.5,-13.5 parent: 1 - - uid: 23626 + - uid: 29207 components: - type: Transform - pos: -56.5,34.5 + rot: 1.5707963267948966 rad + pos: -100.5,-13.5 parent: 1 - - uid: 24461 + - uid: 29209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,-24.5 + pos: -42.5,36.5 parent: 1 - - uid: 24462 + - uid: 29211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-24.5 + pos: -41.5,36.5 parent: 1 - - uid: 24740 + - uid: 29225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-24.5 + rot: 1.5707963267948966 rad + pos: -54.5,29.5 parent: 1 - - uid: 24749 + - uid: 29226 components: - type: Transform - pos: -74.5,-28.5 + rot: 3.141592653589793 rad + pos: -39.5,36.5 parent: 1 - - uid: 25027 + - uid: 29647 components: - type: Transform - pos: -56.5,33.5 + rot: 1.5707963267948966 rad + pos: -46.5,36.5 parent: 1 - - uid: 25298 + - uid: 29736 components: - type: Transform - pos: -56.5,32.5 + rot: 1.5707963267948966 rad + pos: -46.5,30.5 parent: 1 - - uid: 27613 + - uid: 29764 components: - type: Transform - pos: -56.5,31.5 + rot: 1.5707963267948966 rad + pos: -34.5,22.5 parent: 1 - - uid: 28655 + - uid: 30075 components: - type: Transform - pos: -56.5,30.5 + rot: 3.141592653589793 rad + pos: -67.5,-25.5 parent: 1 - - uid: 28688 + - uid: 30076 components: - type: Transform - pos: -42.5,37.5 + rot: -1.5707963267948966 rad + pos: -68.5,-24.5 parent: 1 - - uid: 28787 + - uid: 30081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,1.5 + pos: -73.5,-26.5 parent: 1 - - uid: 28804 + - uid: 30277 components: - type: Transform - pos: -42.5,36.5 + rot: 1.5707963267948966 rad + pos: -50.5,30.5 parent: 1 - - uid: 28805 + - uid: 30278 components: - type: Transform - pos: -42.5,35.5 + rot: 1.5707963267948966 rad + pos: -51.5,30.5 parent: 1 - - uid: 28810 + - uid: 30298 components: - type: Transform - pos: -42.5,34.5 + rot: 1.5707963267948966 rad + pos: -52.5,30.5 parent: 1 - - uid: 28838 + - uid: 30299 components: - type: Transform - pos: -42.5,33.5 + rot: 1.5707963267948966 rad + pos: -47.5,30.5 parent: 1 - - uid: 28844 + - uid: 30319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 + pos: -49.5,41.5 parent: 1 - - uid: 28845 + - uid: 30320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,4.5 + rot: 1.5707963267948966 rad + pos: -48.5,30.5 parent: 1 - - uid: 28846 + - uid: 30322 components: - type: Transform - pos: -39.5,18.5 + rot: 1.5707963267948966 rad + pos: -49.5,30.5 parent: 1 - - uid: 28851 + - uid: 31190 components: - type: Transform - pos: -42.5,32.5 + rot: -1.5707963267948966 rad + pos: -127.5,-0.5 parent: 1 - - uid: 28859 + - uid: 31264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,19.5 + rot: -1.5707963267948966 rad + pos: -127.5,-2.5 parent: 1 - - uid: 28860 + - uid: 31278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,19.5 + rot: -1.5707963267948966 rad + pos: -126.5,-2.5 parent: 1 - - uid: 28861 + - uid: 32470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,19.5 + pos: -12.5,-60.5 parent: 1 - - uid: 28862 + - uid: 32471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,19.5 + pos: -12.5,-48.5 parent: 1 - - uid: 28863 + - uid: 32473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,19.5 + rot: -1.5707963267948966 rad + pos: 14.5,-59.5 parent: 1 - - uid: 28864 + - uid: 32480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,19.5 + pos: -38.5,25.5 parent: 1 - - uid: 28865 + - uid: 32529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,19.5 + pos: -61.5,-78.5 parent: 1 - - uid: 28866 + - uid: 32530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,19.5 + pos: -60.5,-78.5 parent: 1 - - uid: 28867 + - uid: 32532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,19.5 + rot: 3.141592653589793 rad + pos: -59.5,-77.5 parent: 1 - - uid: 28868 + - uid: 32533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,19.5 + rot: 3.141592653589793 rad + pos: -59.5,-76.5 parent: 1 - - uid: 28869 + - uid: 32534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,19.5 + rot: 3.141592653589793 rad + pos: -59.5,-75.5 parent: 1 - - uid: 28870 + - uid: 32535 components: - type: Transform - pos: -53.5,17.5 + rot: 3.141592653589793 rad + pos: -59.5,-74.5 parent: 1 - - uid: 28871 + - uid: 32536 components: - type: Transform - pos: -53.5,18.5 + rot: 3.141592653589793 rad + pos: -59.5,-73.5 parent: 1 - - uid: 28872 + - uid: 32537 components: - type: Transform - pos: -42.5,20.5 + rot: 3.141592653589793 rad + pos: -59.5,-72.5 parent: 1 - - uid: 28873 + - uid: 32540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,19.5 + rot: 3.141592653589793 rad + pos: -58.5,-70.5 parent: 1 - - uid: 28874 + - uid: 32541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,19.5 + rot: 3.141592653589793 rad + pos: -58.5,-69.5 parent: 1 - - uid: 28875 + - uid: 32542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,19.5 + rot: 3.141592653589793 rad + pos: -58.5,-68.5 parent: 1 - - uid: 28876 + - uid: 32543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,19.5 + rot: 3.141592653589793 rad + pos: -58.5,-67.5 parent: 1 - - uid: 28877 + - uid: 32546 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,19.5 + pos: -57.5,-66.5 parent: 1 - - uid: 28878 + - uid: 32547 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,19.5 + pos: -56.5,-66.5 parent: 1 - - uid: 28879 + - uid: 32548 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,19.5 + pos: -55.5,-66.5 parent: 1 - - uid: 28880 + - uid: 32549 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,19.5 + pos: -54.5,-66.5 parent: 1 - - uid: 28881 + - uid: 32550 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,19.5 + pos: -53.5,-66.5 parent: 1 - - uid: 28882 + - uid: 32551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,19.5 + pos: -52.5,-66.5 parent: 1 - - uid: 28883 + - uid: 32552 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,19.5 + pos: -51.5,-66.5 parent: 1 - - uid: 28884 + - uid: 32553 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,19.5 + pos: -50.5,-66.5 parent: 1 - - uid: 28885 + - uid: 32554 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,19.5 + pos: -49.5,-66.5 parent: 1 - - uid: 28886 + - uid: 32555 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,20.5 + pos: -48.5,-65.5 parent: 1 - - uid: 28888 + - uid: 32556 components: - type: Transform - pos: -39.5,17.5 + rot: 3.141592653589793 rad + pos: -48.5,-64.5 parent: 1 - - uid: 28889 + - uid: 32557 components: - type: Transform - pos: -39.5,16.5 + rot: 3.141592653589793 rad + pos: -48.5,-63.5 parent: 1 - - uid: 28890 + - uid: 32558 components: - type: Transform - pos: -39.5,15.5 + rot: 3.141592653589793 rad + pos: -48.5,-62.5 parent: 1 - - uid: 28891 + - uid: 32559 components: - type: Transform - pos: -39.5,14.5 + rot: 3.141592653589793 rad + pos: -48.5,-61.5 parent: 1 - - uid: 28892 + - uid: 32560 components: - type: Transform - pos: -39.5,13.5 + rot: 3.141592653589793 rad + pos: -48.5,-60.5 parent: 1 - - uid: 28893 + - uid: 32561 components: - type: Transform - pos: -39.5,12.5 + rot: 3.141592653589793 rad + pos: -48.5,-59.5 parent: 1 - - uid: 28894 + - uid: 32564 components: - type: Transform - pos: -39.5,11.5 + rot: 1.5707963267948966 rad + pos: -47.5,-58.5 parent: 1 - - uid: 28895 + - uid: 32565 components: - type: Transform - pos: -39.5,10.5 + rot: 1.5707963267948966 rad + pos: -46.5,-58.5 parent: 1 - - uid: 28896 + - uid: 32566 components: - type: Transform - pos: -39.5,9.5 + rot: 1.5707963267948966 rad + pos: -45.5,-58.5 parent: 1 - - uid: 28897 + - uid: 32567 components: - type: Transform - pos: -39.5,8.5 + pos: -44.5,-57.5 parent: 1 - - uid: 28898 + - uid: 32568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,7.5 + pos: -44.5,-56.5 parent: 1 - - uid: 28899 + - uid: 32569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,7.5 + pos: -44.5,-55.5 parent: 1 - - uid: 28900 + - uid: 32570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,6.5 + pos: -44.5,-54.5 parent: 1 - - uid: 28901 + - uid: 32571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,5.5 + pos: -44.5,-53.5 parent: 1 - - uid: 28907 + - uid: 32572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,1.5 + pos: -44.5,-52.5 parent: 1 - - uid: 28908 + - uid: 32573 components: - type: Transform - pos: -39.5,0.5 + pos: -44.5,-51.5 parent: 1 - - uid: 28909 + - uid: 32574 components: - type: Transform - pos: -39.5,-0.5 + pos: -44.5,-50.5 parent: 1 - - uid: 28910 + - uid: 32579 components: - type: Transform - pos: -39.5,-1.5 + rot: 3.141592653589793 rad + pos: -43.5,-47.5 parent: 1 - - uid: 28911 + - uid: 32580 components: - type: Transform - pos: -39.5,-2.5 + rot: 3.141592653589793 rad + pos: -43.5,-48.5 parent: 1 - - uid: 28912 + - uid: 32585 components: - type: Transform - pos: -39.5,-3.5 + rot: 3.141592653589793 rad + pos: -42.5,-45.5 parent: 1 - - uid: 28913 + - uid: 32586 components: - type: Transform - pos: -39.5,-4.5 + rot: 3.141592653589793 rad + pos: -42.5,-44.5 parent: 1 - - uid: 28914 + - uid: 32587 components: - type: Transform - pos: -39.5,-5.5 + rot: 3.141592653589793 rad + pos: -42.5,-43.5 parent: 1 - - uid: 28915 + - uid: 32588 components: - type: Transform - pos: -39.5,-6.5 + rot: 3.141592653589793 rad + pos: -42.5,-42.5 parent: 1 - - uid: 28916 + - uid: 32589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-12.5 + rot: 3.141592653589793 rad + pos: -42.5,-41.5 parent: 1 - - uid: 28917 + - uid: 32590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-12.5 + rot: 3.141592653589793 rad + pos: -42.5,-40.5 parent: 1 - - uid: 28918 + - uid: 32591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-12.5 + rot: 3.141592653589793 rad + pos: -42.5,-39.5 parent: 1 - - uid: 28919 + - uid: 32592 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-11.5 + pos: -42.5,-38.5 parent: 1 - - uid: 28920 + - uid: 32593 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-10.5 + pos: -41.5,-36.5 parent: 1 - - uid: 28921 + - uid: 32594 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-9.5 + pos: -41.5,-35.5 parent: 1 - - uid: 28922 + - uid: 32595 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: -41.5,-34.5 parent: 1 - - uid: 28923 + - uid: 32596 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-7.5 + pos: -40.5,-33.5 parent: 1 - - uid: 28924 + - uid: 32597 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-7.5 + pos: -39.5,-33.5 parent: 1 - - uid: 28925 + - uid: 32598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 + pos: -38.5,-32.5 parent: 1 - - uid: 28926 + - uid: 32599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-7.5 + pos: -38.5,-31.5 parent: 1 - - uid: 28927 + - uid: 32600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 + pos: -38.5,-30.5 parent: 1 - - uid: 28928 + - uid: 32601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-7.5 + pos: -38.5,-29.5 parent: 1 - - uid: 28934 + - uid: 32602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,36.5 + pos: -38.5,-28.5 parent: 1 - - uid: 28937 + - uid: 32603 components: - type: Transform - pos: -42.5,29.5 + pos: -38.5,-27.5 parent: 1 - - uid: 28945 + - uid: 32604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,7.5 + pos: -38.5,-26.5 parent: 1 - - uid: 28957 + - uid: 32605 components: - type: Transform - pos: -42.5,28.5 + pos: -38.5,-25.5 parent: 1 - - uid: 28958 + - uid: 32606 components: - type: Transform - pos: -42.5,27.5 + pos: -38.5,-24.5 parent: 1 - - uid: 28959 + - uid: 32615 components: - type: Transform - pos: -42.5,24.5 + rot: 3.141592653589793 rad + pos: -22.5,-16.5 parent: 1 - - uid: 28960 + - uid: 32616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-17.5 parent: 1 - - uid: 28961 + - uid: 32617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-18.5 parent: 1 - - uid: 28962 + - uid: 32618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 parent: 1 - - uid: 28963 + - uid: 32619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-45.5 + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 parent: 1 - - uid: 28964 + - uid: 32620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 + rot: 1.5707963267948966 rad + pos: -24.5,-20.5 parent: 1 - - uid: 28965 + - uid: 32621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 + rot: 1.5707963267948966 rad + pos: -25.5,-20.5 parent: 1 - - uid: 28966 + - uid: 32622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 parent: 1 - - uid: 28967 + - uid: 32623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 + pos: -27.5,-21.5 parent: 1 - - uid: 28968 + - uid: 32624 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-45.5 + pos: -28.5,-22.5 parent: 1 - - uid: 28969 + - uid: 32625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-45.5 + pos: -29.5,-22.5 parent: 1 - - uid: 28970 + - uid: 32626 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-45.5 + pos: -30.5,-22.5 parent: 1 - - uid: 28971 + - uid: 32627 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -31.5,-22.5 parent: 1 - - uid: 28972 + - uid: 32628 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-45.5 + pos: -32.5,-22.5 parent: 1 - - uid: 28973 + - uid: 32629 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-45.5 + pos: -33.5,-22.5 parent: 1 - - uid: 28974 + - uid: 32630 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-45.5 + pos: -34.5,-22.5 parent: 1 - - uid: 28975 + - uid: 32631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-46.5 + pos: -35.5,-22.5 parent: 1 - - uid: 28976 + - uid: 32632 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-46.5 + pos: -36.5,-22.5 parent: 1 - - uid: 28977 + - uid: 32633 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-46.5 + pos: -37.5,-22.5 parent: 1 - - uid: 28978 + - uid: 32634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 + rot: 3.141592653589793 rad + pos: -38.5,-23.5 parent: 1 - - uid: 28979 + - uid: 32638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-46.5 + rot: 3.141592653589793 rad + pos: -24.5,-10.5 parent: 1 - - uid: 28980 + - uid: 32639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-46.5 + rot: 3.141592653589793 rad + pos: -24.5,-9.5 parent: 1 - - uid: 28981 + - uid: 32640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-46.5 + rot: 3.141592653589793 rad + pos: -24.5,-8.5 parent: 1 - - uid: 28982 + - uid: 32641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-7.5 + parent: 1 + - uid: 32642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 1 + - uid: 32643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 1 + - uid: 32644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + - uid: 32647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + - uid: 32648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + - uid: 32649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + - uid: 32650 components: - type: Transform - pos: -42.5,23.5 + rot: 3.141592653589793 rad + pos: -23.5,0.5 parent: 1 - - uid: 28989 + - uid: 32651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-46.5 + rot: 3.141592653589793 rad + pos: -23.5,1.5 parent: 1 - - uid: 28990 + - uid: 32652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-46.5 + rot: 3.141592653589793 rad + pos: -23.5,2.5 parent: 1 - - uid: 28991 + - uid: 32653 components: - type: Transform - pos: -15.5,-45.5 + rot: 3.141592653589793 rad + pos: -23.5,3.5 parent: 1 - - uid: 28992 + - uid: 32654 components: - type: Transform - pos: -15.5,-44.5 + rot: 3.141592653589793 rad + pos: -23.5,4.5 parent: 1 - - uid: 28993 + - uid: 32655 components: - type: Transform - pos: -15.5,-43.5 + rot: 3.141592653589793 rad + pos: -23.5,5.5 parent: 1 - - uid: 28994 + - uid: 32656 components: - type: Transform - pos: -15.5,-42.5 + rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 1 - - uid: 28995 + - uid: 32657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 + rot: 3.141592653589793 rad + pos: -23.5,7.5 parent: 1 - - uid: 28996 + - uid: 32661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 parent: 1 - - uid: 28997 + - uid: 32662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 + pos: -25.5,9.5 parent: 1 - - uid: 28998 + - uid: 32663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + pos: -25.5,10.5 parent: 1 - - uid: 28999 + - uid: 32664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 + pos: -25.5,11.5 parent: 1 - - uid: 29000 + - uid: 32665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 + pos: -25.5,12.5 parent: 1 - - uid: 29003 + - uid: 32666 components: - type: Transform - pos: -15.5,-40.5 + pos: -25.5,13.5 parent: 1 - - uid: 29004 + - uid: 32667 components: - type: Transform - pos: -15.5,-39.5 + pos: -25.5,14.5 parent: 1 - - uid: 29005 + - uid: 32668 components: - type: Transform - pos: -15.5,-38.5 + pos: -25.5,15.5 parent: 1 - - uid: 29006 + - uid: 32669 components: - type: Transform - pos: -15.5,-37.5 + pos: -25.5,16.5 parent: 1 - - uid: 29007 + - uid: 32670 components: - type: Transform - pos: -15.5,-36.5 + rot: -1.5707963267948966 rad + pos: -24.5,17.5 parent: 1 - - uid: 29008 + - uid: 32671 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-35.5 + pos: -23.5,17.5 parent: 1 - - uid: 29009 + - uid: 32672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 + rot: -1.5707963267948966 rad + pos: -22.5,17.5 parent: 1 - - uid: 29010 + - uid: 32673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-33.5 + rot: -1.5707963267948966 rad + pos: -21.5,17.5 parent: 1 - - uid: 29011 + - uid: 32674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-32.5 + rot: -1.5707963267948966 rad + pos: -20.5,17.5 parent: 1 - - uid: 29012 + - uid: 32675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-31.5 + rot: -1.5707963267948966 rad + pos: -19.5,17.5 parent: 1 - - uid: 29013 + - uid: 32676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-30.5 + rot: -1.5707963267948966 rad + pos: -18.5,17.5 parent: 1 - - uid: 29014 + - uid: 32677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-29.5 + rot: -1.5707963267948966 rad + pos: -17.5,17.5 parent: 1 - - uid: 29015 + - uid: 32680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-28.5 + rot: -1.5707963267948966 rad + pos: -16.5,17.5 parent: 1 - - uid: 29016 + - uid: 32681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 + rot: -1.5707963267948966 rad + pos: -15.5,17.5 parent: 1 - - uid: 29017 + - uid: 32682 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-26.5 + pos: -14.5,18.5 parent: 1 - - uid: 29018 + - uid: 32683 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-24.5 + pos: -14.5,19.5 parent: 1 - - uid: 29019 + - uid: 32684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 + rot: 3.141592653589793 rad + pos: -14.5,20.5 parent: 1 - - uid: 29020 + - uid: 32685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 + rot: 3.141592653589793 rad + pos: -14.5,21.5 parent: 1 - - uid: 29021 + - uid: 32686 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-23.5 + pos: -15.5,22.5 parent: 1 - - uid: 29022 + - uid: 32687 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-23.5 + pos: -16.5,22.5 parent: 1 - - uid: 29023 + - uid: 32688 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-23.5 + pos: -17.5,22.5 parent: 1 - - uid: 29024 + - uid: 32689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 1 - - uid: 29025 - components: - - type: Transform - pos: -10.5,-22.5 + pos: -18.5,22.5 parent: 1 - - uid: 29026 + - uid: 32694 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-21.5 + pos: -20.5,23.5 parent: 1 - - uid: 29027 + - uid: 32695 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: -21.5,23.5 parent: 1 - - uid: 29028 + - uid: 32696 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-21.5 + pos: -22.5,23.5 parent: 1 - - uid: 29029 + - uid: 32697 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-21.5 + pos: -23.5,23.5 parent: 1 - - uid: 29030 + - uid: 32698 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-21.5 + pos: -24.5,23.5 parent: 1 - - uid: 29031 + - uid: 32699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-21.5 + pos: -25.5,23.5 parent: 1 - - uid: 29032 + - uid: 32700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 + rot: 3.141592653589793 rad + pos: -26.5,22.5 parent: 1 - - uid: 29033 + - uid: 32701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 + rot: 3.141592653589793 rad + pos: -26.5,21.5 parent: 1 - - uid: 29034 + - uid: 32702 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-20.5 + pos: -26.5,20.5 parent: 1 - - uid: 29035 + - uid: 32703 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-19.5 + pos: -26.5,19.5 parent: 1 - - uid: 29036 + - uid: 32704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-18.5 + rot: 1.5707963267948966 rad + pos: -27.5,18.5 parent: 1 - - uid: 29037 + - uid: 32705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-17.5 + rot: 1.5707963267948966 rad + pos: -28.5,18.5 parent: 1 - - uid: 29038 + - uid: 32706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-16.5 + rot: 1.5707963267948966 rad + pos: -29.5,18.5 parent: 1 - - uid: 29039 + - uid: 32707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 + rot: 1.5707963267948966 rad + pos: -30.5,18.5 parent: 1 - - uid: 29040 + - uid: 32708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + rot: 1.5707963267948966 rad + pos: -31.5,18.5 parent: 1 - - uid: 29041 + - uid: 32709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 + rot: 1.5707963267948966 rad + pos: -32.5,18.5 parent: 1 - - uid: 29042 + - uid: 32710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + rot: 1.5707963267948966 rad + pos: -33.5,18.5 parent: 1 - - uid: 29043 + - uid: 32711 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-11.5 + pos: -34.5,18.5 parent: 1 - - uid: 29044 + - uid: 32712 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-11.5 + pos: -35.5,18.5 parent: 1 - - uid: 29045 + - uid: 32713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + pos: -36.5,18.5 parent: 1 - - uid: 29046 + - uid: 32714 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-11.5 + pos: -37.5,18.5 parent: 1 - - uid: 29047 + - uid: 32715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + pos: -38.5,18.5 parent: 1 - - uid: 29048 + - uid: 32716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + pos: -39.5,18.5 parent: 1 - - uid: 29049 + - uid: 32717 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-25.5 + pos: -40.5,18.5 parent: 1 - - uid: 29050 + - uid: 32745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,23.5 + parent: 1 + - uid: 32747 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-25.5 + pos: -74.5,39.5 parent: 1 - - uid: 29051 + - uid: 32748 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-25.5 + pos: -73.5,39.5 parent: 1 - - uid: 29052 + - uid: 32749 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-25.5 + pos: -72.5,39.5 parent: 1 - - uid: 29053 + - uid: 32750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-25.5 + pos: -71.5,39.5 parent: 1 - - uid: 29054 + - uid: 32751 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-25.5 + pos: -70.5,39.5 parent: 1 - - uid: 29055 + - uid: 32752 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-25.5 + pos: -69.5,39.5 parent: 1 - - uid: 29056 + - uid: 32753 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-25.5 + pos: -68.5,39.5 parent: 1 - - uid: 29057 + - uid: 32754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-25.5 + pos: -67.5,39.5 parent: 1 - - uid: 29058 + - uid: 32755 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-25.5 + pos: -66.5,39.5 parent: 1 - - uid: 29059 + - uid: 32756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-25.5 + pos: -65.5,39.5 parent: 1 - - uid: 29060 + - uid: 32757 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-25.5 + pos: -64.5,39.5 parent: 1 - - uid: 29061 + - uid: 32758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-25.5 + pos: -63.5,39.5 parent: 1 - - uid: 29062 + - uid: 32759 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-25.5 + pos: -62.5,39.5 parent: 1 - - uid: 29063 + - uid: 32760 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-25.5 + pos: -61.5,39.5 parent: 1 - - uid: 29064 + - uid: 32761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-25.5 + pos: -60.5,39.5 parent: 1 - - uid: 29065 + - uid: 32762 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-25.5 + pos: -59.5,39.5 parent: 1 - - uid: 29066 + - uid: 32763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-25.5 + pos: -58.5,39.5 parent: 1 - - uid: 29067 + - uid: 32764 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-25.5 + pos: -57.5,39.5 parent: 1 - - uid: 29068 + - uid: 32765 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-25.5 + pos: -56.5,39.5 parent: 1 - - uid: 29069 + - uid: 32766 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-25.5 + pos: -55.5,39.5 parent: 1 - - uid: 29070 + - uid: 32767 components: - type: Transform - pos: -39.5,-24.5 + rot: 1.5707963267948966 rad + pos: -54.5,39.5 parent: 1 - - uid: 29071 + - uid: 32768 components: - type: Transform - pos: -39.5,-23.5 + rot: 1.5707963267948966 rad + pos: -53.5,39.5 parent: 1 - - uid: 29072 + - uid: 32769 components: - type: Transform - pos: -39.5,-22.5 + rot: 1.5707963267948966 rad + pos: -52.5,39.5 parent: 1 - - uid: 29073 + - uid: 32770 components: - type: Transform - pos: -39.5,-21.5 + rot: 1.5707963267948966 rad + pos: -51.5,39.5 parent: 1 - - uid: 29074 + - uid: 32771 components: - type: Transform - pos: -39.5,-20.5 + rot: 1.5707963267948966 rad + pos: -50.5,39.5 parent: 1 - - uid: 29075 + - uid: 32778 components: - type: Transform - pos: -39.5,-19.5 + pos: -75.5,38.5 parent: 1 - - uid: 29076 + - uid: 32779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 + pos: -75.5,37.5 parent: 1 - - uid: 29077 + - uid: 32780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 + pos: -75.5,36.5 parent: 1 - - uid: 29078 + - uid: 32781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 + pos: -75.5,35.5 parent: 1 - - uid: 29079 + - uid: 32782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 + pos: -75.5,34.5 parent: 1 - - uid: 29080 + - uid: 32783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 + pos: -75.5,33.5 parent: 1 - - uid: 29081 + - uid: 32784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 + pos: -75.5,32.5 parent: 1 - - uid: 29082 + - uid: 32785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-8.5 + pos: -75.5,31.5 parent: 1 - - uid: 29083 + - uid: 32786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-8.5 + pos: -75.5,30.5 parent: 1 - - uid: 29084 + - uid: 32787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-8.5 + pos: -75.5,29.5 parent: 1 - - uid: 29085 + - uid: 32788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-8.5 + pos: -75.5,28.5 parent: 1 - - uid: 29086 + - uid: 32789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-9.5 + pos: -75.5,27.5 parent: 1 - - uid: 29087 + - uid: 32790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-10.5 + pos: -75.5,26.5 parent: 1 - - uid: 29088 + - uid: 32791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-11.5 + pos: -75.5,25.5 parent: 1 - - uid: 29089 + - uid: 32792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-12.5 + pos: -75.5,24.5 parent: 1 - - uid: 29090 + - uid: 32794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-18.5 + rot: -1.5707963267948966 rad + pos: -77.5,23.5 parent: 1 - - uid: 29091 + - uid: 32795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-18.5 + rot: -1.5707963267948966 rad + pos: -78.5,23.5 parent: 1 - - uid: 29092 + - uid: 32796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-18.5 + rot: -1.5707963267948966 rad + pos: -79.5,23.5 parent: 1 - - uid: 29093 + - uid: 32797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-18.5 + rot: -1.5707963267948966 rad + pos: -80.5,23.5 parent: 1 - - uid: 29094 + - uid: 32798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-18.5 + rot: -1.5707963267948966 rad + pos: -81.5,23.5 parent: 1 - - uid: 29095 + - uid: 32799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-18.5 + rot: -1.5707963267948966 rad + pos: -82.5,23.5 parent: 1 - - uid: 29096 + - uid: 32800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-18.5 + rot: -1.5707963267948966 rad + pos: -83.5,23.5 parent: 1 - - uid: 29097 + - uid: 32801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + rot: -1.5707963267948966 rad + pos: -84.5,23.5 parent: 1 - - uid: 29098 + - uid: 32802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,29.5 + rot: -1.5707963267948966 rad + pos: -85.5,23.5 parent: 1 - - uid: 29099 + - uid: 32803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-18.5 + rot: -1.5707963267948966 rad + pos: -86.5,23.5 parent: 1 - - uid: 29101 + - uid: 32804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-17.5 + rot: -1.5707963267948966 rad + pos: -87.5,23.5 parent: 1 - - uid: 29102 + - uid: 32805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-16.5 + rot: -1.5707963267948966 rad + pos: -88.5,23.5 parent: 1 - - uid: 29103 + - uid: 32806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-15.5 + rot: -1.5707963267948966 rad + pos: -89.5,23.5 parent: 1 - - uid: 29104 + - uid: 32807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-14.5 + rot: -1.5707963267948966 rad + pos: -90.5,23.5 parent: 1 - - uid: 29105 + - uid: 32808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 + rot: -1.5707963267948966 rad + pos: -91.5,23.5 parent: 1 - - uid: 29106 + - uid: 32809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-13.5 + rot: -1.5707963267948966 rad + pos: -92.5,23.5 parent: 1 - - uid: 29107 + - uid: 32810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-13.5 + rot: -1.5707963267948966 rad + pos: -93.5,23.5 parent: 1 - - uid: 29108 + - uid: 32811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 + rot: -1.5707963267948966 rad + pos: -94.5,23.5 parent: 1 - - uid: 29109 + - uid: 32812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-13.5 + rot: -1.5707963267948966 rad + pos: -95.5,23.5 parent: 1 - - uid: 29110 + - uid: 32813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-13.5 + rot: -1.5707963267948966 rad + pos: -96.5,23.5 parent: 1 - - uid: 29111 + - uid: 32814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-13.5 + rot: -1.5707963267948966 rad + pos: -97.5,23.5 parent: 1 - - uid: 29112 + - uid: 32815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-13.5 + rot: -1.5707963267948966 rad + pos: -98.5,23.5 parent: 1 - - uid: 29113 + - uid: 32816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-13.5 + rot: -1.5707963267948966 rad + pos: -99.5,23.5 parent: 1 - - uid: 29114 + - uid: 32817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-13.5 + rot: -1.5707963267948966 rad + pos: -100.5,23.5 parent: 1 - - uid: 29115 + - uid: 32818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-13.5 + rot: -1.5707963267948966 rad + pos: -101.5,23.5 parent: 1 - - uid: 29116 + - uid: 32819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-13.5 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 parent: 1 - - uid: 29117 + - uid: 32820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-13.5 + rot: -1.5707963267948966 rad + pos: -103.5,23.5 parent: 1 - - uid: 29118 + - uid: 32821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-13.5 + rot: -1.5707963267948966 rad + pos: -104.5,23.5 parent: 1 - - uid: 29119 + - uid: 32822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-13.5 + rot: -1.5707963267948966 rad + pos: -105.5,23.5 parent: 1 - - uid: 29120 + - uid: 32823 components: - type: Transform - pos: -66.5,-14.5 + rot: -1.5707963267948966 rad + pos: -106.5,23.5 parent: 1 - - uid: 29121 + - uid: 32824 components: - type: Transform - pos: -66.5,-15.5 + rot: -1.5707963267948966 rad + pos: -107.5,23.5 parent: 1 - - uid: 29122 + - uid: 32825 components: - type: Transform - pos: -66.5,-16.5 + rot: -1.5707963267948966 rad + pos: -108.5,23.5 parent: 1 - - uid: 29123 + - uid: 32826 components: - type: Transform - pos: -66.5,-17.5 + rot: -1.5707963267948966 rad + pos: -109.5,23.5 parent: 1 - - uid: 29124 + - uid: 32827 components: - type: Transform - pos: -66.5,-18.5 + rot: -1.5707963267948966 rad + pos: -110.5,23.5 parent: 1 - - uid: 29125 + - uid: 32828 components: - type: Transform - pos: -66.5,-19.5 + rot: -1.5707963267948966 rad + pos: -111.5,23.5 parent: 1 - - uid: 29126 + - uid: 32829 components: - type: Transform - pos: -66.5,-20.5 + rot: -1.5707963267948966 rad + pos: -112.5,23.5 parent: 1 - - uid: 29127 + - uid: 32830 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-13.5 + pos: -113.5,23.5 parent: 1 - - uid: 29128 + - uid: 32831 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-13.5 + pos: -114.5,23.5 parent: 1 - - uid: 29129 + - uid: 32832 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-13.5 + pos: -115.5,23.5 parent: 1 - - uid: 29130 + - uid: 32833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-13.5 + pos: -116.5,23.5 parent: 1 - - uid: 29131 + - uid: 32834 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,-13.5 + pos: -117.5,23.5 parent: 1 - - uid: 29132 + - uid: 32835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,-13.5 + pos: -118.5,23.5 parent: 1 - - uid: 29133 + - uid: 32836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-13.5 + pos: -119.5,23.5 parent: 1 - - uid: 29134 + - uid: 32837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-12.5 + rot: -1.5707963267948966 rad + pos: -120.5,23.5 parent: 1 - - uid: 29135 + - uid: 32838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-11.5 + rot: -1.5707963267948966 rad + pos: -121.5,23.5 parent: 1 - - uid: 29136 + - uid: 32839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-10.5 + rot: -1.5707963267948966 rad + pos: -122.5,23.5 parent: 1 - - uid: 29137 + - uid: 32840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-9.5 + rot: -1.5707963267948966 rad + pos: -123.5,23.5 parent: 1 - - uid: 29138 + - uid: 32843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-8.5 + pos: -124.5,22.5 parent: 1 - - uid: 29139 + - uid: 32844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-7.5 + pos: -124.5,21.5 parent: 1 - - uid: 29140 + - uid: 32845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-6.5 + pos: -124.5,20.5 parent: 1 - - uid: 29141 + - uid: 32846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-5.5 + pos: -124.5,19.5 parent: 1 - - uid: 29142 + - uid: 32847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-4.5 + pos: -124.5,18.5 parent: 1 - - uid: 29143 + - uid: 32848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-3.5 + pos: -124.5,17.5 parent: 1 - - uid: 29144 + - uid: 32849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-2.5 + pos: -124.5,16.5 parent: 1 - - uid: 29145 + - uid: 32850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-1.5 + pos: -124.5,15.5 parent: 1 - - uid: 29146 + - uid: 32852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,-0.5 + pos: -128.5,14.5 parent: 1 - - uid: 29147 + - uid: 32853 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,-0.5 + pos: -127.5,14.5 parent: 1 - - uid: 29148 + - uid: 32854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,-0.5 + pos: -126.5,14.5 parent: 1 - - uid: 29149 + - uid: 32855 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-0.5 + pos: -125.5,14.5 parent: 1 - - uid: 29150 + - uid: 32856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-0.5 + pos: -129.5,-6.5 parent: 1 - - uid: 29151 + - uid: 32857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-0.5 + pos: -129.5,13.5 parent: 1 - - uid: 29152 + - uid: 32858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-1.5 + pos: -129.5,12.5 parent: 1 - - uid: 29153 + - uid: 32859 components: - type: Transform - pos: -83.5,-2.5 + pos: -129.5,11.5 parent: 1 - - uid: 29154 + - uid: 32860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-3.5 + pos: -129.5,10.5 parent: 1 - - uid: 29155 + - uid: 32861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-3.5 + pos: -129.5,9.5 parent: 1 - - uid: 29156 + - uid: 32862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-3.5 + pos: -129.5,8.5 parent: 1 - - uid: 29157 + - uid: 32863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-2.5 + pos: -129.5,7.5 parent: 1 - - uid: 29158 + - uid: 32864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-0.5 + pos: -129.5,6.5 parent: 1 - - uid: 29159 + - uid: 32865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 + pos: -129.5,5.5 parent: 1 - - uid: 29160 + - uid: 32866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,1.5 + pos: -129.5,4.5 parent: 1 - - uid: 29161 + - uid: 32867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,2.5 + pos: -129.5,3.5 parent: 1 - - uid: 29162 + - uid: 32872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,2.5 + pos: -130.5,1.5 parent: 1 - - uid: 29163 + - uid: 32873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,2.5 + pos: -130.5,0.5 parent: 1 - - uid: 29164 + - uid: 32874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,2.5 + pos: -130.5,-0.5 parent: 1 - - uid: 29165 + - uid: 32875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,2.5 + pos: -130.5,-1.5 parent: 1 - - uid: 29166 + - uid: 32876 components: - type: Transform - pos: -94.5,3.5 + pos: -130.5,-2.5 parent: 1 - - uid: 29167 + - uid: 32877 components: - type: Transform - pos: -94.5,4.5 + pos: -130.5,-3.5 parent: 1 - - uid: 29168 + - uid: 32878 components: - type: Transform - pos: -94.5,5.5 + pos: -130.5,-4.5 parent: 1 - - uid: 29169 + - uid: 32879 components: - type: Transform - pos: -94.5,6.5 + pos: -129.5,-7.5 parent: 1 - - uid: 29170 + - uid: 32880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,9.5 + pos: -129.5,-8.5 parent: 1 - - uid: 29171 + - uid: 32881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,9.5 + pos: -129.5,-9.5 parent: 1 - - uid: 29172 + - uid: 32887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,9.5 + pos: -148.5,20.5 parent: 1 - - uid: 29173 + - uid: 32889 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,9.5 + pos: -147.5,20.5 parent: 1 - - uid: 29174 + - uid: 32893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,7.5 + pos: -144.5,-9.5 parent: 1 - - uid: 29175 + - uid: 32894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,6.5 + rot: 1.5707963267948966 rad + pos: -130.5,-10.5 parent: 1 - - uid: 29176 + - uid: 32895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,5.5 + rot: 1.5707963267948966 rad + pos: -131.5,-10.5 parent: 1 - - uid: 29177 + - uid: 32896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,4.5 + rot: 1.5707963267948966 rad + pos: -132.5,-10.5 parent: 1 - - uid: 29178 + - uid: 32897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,3.5 + rot: 1.5707963267948966 rad + pos: -133.5,-10.5 parent: 1 - - uid: 29179 + - uid: 32898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,2.5 + rot: 1.5707963267948966 rad + pos: -134.5,-10.5 parent: 1 - - uid: 29180 + - uid: 32899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,1.5 + rot: 1.5707963267948966 rad + pos: -135.5,-10.5 parent: 1 - - uid: 29181 + - uid: 32900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,0.5 + rot: 1.5707963267948966 rad + pos: -136.5,-10.5 parent: 1 - - uid: 29182 + - uid: 32901 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,-13.5 + pos: -137.5,-10.5 parent: 1 - - uid: 29183 + - uid: 32902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,-13.5 + pos: -138.5,-10.5 parent: 1 - - uid: 29184 + - uid: 32903 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,-13.5 + pos: -139.5,-10.5 parent: 1 - - uid: 29185 + - uid: 32904 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-13.5 + pos: -140.5,-10.5 parent: 1 - - uid: 29186 + - uid: 32905 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-13.5 + pos: -141.5,-10.5 + parent: 1 + - uid: 32906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -142.5,-10.5 + parent: 1 + - uid: 32907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -143.5,-10.5 + parent: 1 + - uid: 32908 + components: + - type: Transform + pos: -144.5,-8.5 + parent: 1 + - uid: 32909 + components: + - type: Transform + pos: -144.5,-7.5 + parent: 1 + - uid: 32910 + components: + - type: Transform + pos: -144.5,-6.5 + parent: 1 + - uid: 32911 + components: + - type: Transform + pos: -144.5,-5.5 + parent: 1 + - uid: 32912 + components: + - type: Transform + pos: -144.5,-4.5 + parent: 1 + - uid: 32913 + components: + - type: Transform + pos: -144.5,-3.5 + parent: 1 + - uid: 32914 + components: + - type: Transform + pos: -144.5,-2.5 parent: 1 - - uid: 29187 + - uid: 32917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-13.5 + rot: -1.5707963267948966 rad + pos: -149.5,20.5 parent: 1 - - uid: 29188 + - uid: 32920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-13.5 + pos: -130.5,23.5 parent: 1 - - uid: 29189 + - uid: 32933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-13.5 + rot: -1.5707963267948966 rad + pos: -146.5,20.5 parent: 1 - - uid: 29190 + - uid: 32936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-13.5 + rot: 3.141592653589793 rad + pos: -145.5,21.5 parent: 1 - - uid: 29191 + - uid: 32937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-13.5 + rot: 3.141592653589793 rad + pos: -145.5,22.5 parent: 1 - - uid: 29192 + - uid: 32938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-13.5 + rot: 3.141592653589793 rad + pos: -145.5,23.5 parent: 1 - - uid: 29193 + - uid: 32939 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-13.5 + pos: -144.5,24.5 parent: 1 - - uid: 29194 + - uid: 32940 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,-13.5 + pos: -143.5,24.5 parent: 1 - - uid: 29195 + - uid: 32941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,-13.5 + pos: -142.5,24.5 parent: 1 - - uid: 29196 + - uid: 32942 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,-13.5 + pos: -141.5,24.5 parent: 1 - - uid: 29197 + - uid: 32943 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-13.5 + pos: -140.5,24.5 parent: 1 - - uid: 29198 + - uid: 32944 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,-13.5 + pos: -139.5,24.5 parent: 1 - - uid: 29199 + - uid: 32945 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-13.5 + pos: -138.5,24.5 parent: 1 - - uid: 29200 + - uid: 32946 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,-13.5 + pos: -137.5,24.5 parent: 1 - - uid: 29201 + - uid: 32947 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,-13.5 + pos: -136.5,24.5 parent: 1 - - uid: 29202 + - uid: 32948 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,-13.5 + pos: -135.5,24.5 parent: 1 - - uid: 29203 + - uid: 32949 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-13.5 + pos: -134.5,24.5 parent: 1 - - uid: 29204 + - uid: 32950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-13.5 + pos: -133.5,24.5 parent: 1 - - uid: 29205 + - uid: 32951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-13.5 + pos: -132.5,24.5 parent: 1 - - uid: 29206 + - uid: 32952 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-13.5 + pos: -131.5,24.5 parent: 1 - - uid: 29207 + - uid: 32953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-13.5 + pos: -130.5,22.5 parent: 1 - - uid: 29209 + - uid: 32954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,36.5 + pos: -130.5,21.5 parent: 1 - - uid: 29211 + - uid: 32955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 + pos: -130.5,20.5 parent: 1 - - uid: 29225 + - uid: 32956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,29.5 + pos: -130.5,19.5 parent: 1 - - uid: 29226 + - uid: 32957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,36.5 + pos: -130.5,18.5 parent: 1 - - uid: 29647 + - uid: 32958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,36.5 + pos: -130.5,17.5 parent: 1 - - uid: 29736 + - uid: 32959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,30.5 + pos: -130.5,16.5 parent: 1 - - uid: 29764 + - uid: 32960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,22.5 + pos: -130.5,15.5 parent: 1 - - uid: 30075 + - uid: 32961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-25.5 + pos: -130.5,14.5 parent: 1 - - uid: 30076 + - uid: 32962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-24.5 + pos: -130.5,13.5 parent: 1 - - uid: 30081 + - uid: 32963 components: - type: Transform - pos: -73.5,-26.5 + pos: -130.5,12.5 parent: 1 - - uid: 30277 + - uid: 32964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,30.5 + pos: -130.5,11.5 parent: 1 - - uid: 30278 + - uid: 32965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,30.5 + pos: -130.5,10.5 parent: 1 - - uid: 30298 + - uid: 32966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,30.5 + pos: -130.5,9.5 parent: 1 - - uid: 30299 + - uid: 32967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,30.5 + pos: -130.5,8.5 parent: 1 - - uid: 30319 + - uid: 32968 components: - type: Transform - pos: -49.5,41.5 + pos: -130.5,7.5 parent: 1 - - uid: 30320 + - uid: 32969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,30.5 + pos: -130.5,6.5 parent: 1 - - uid: 30322 + - uid: 32970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,30.5 + pos: -130.5,5.5 parent: 1 - - uid: 31190 + - uid: 32971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-0.5 + pos: -130.5,4.5 parent: 1 - - uid: 31264 + - uid: 32973 components: - type: Transform rot: -1.5707963267948966 rad - pos: -127.5,-2.5 + pos: -129.5,3.5 parent: 1 - - uid: 31278 + - uid: 32974 components: - type: Transform rot: -1.5707963267948966 rad - pos: -126.5,-2.5 + pos: -128.5,3.5 parent: 1 - - uid: 32470 + - uid: 32975 components: - type: Transform - pos: -12.5,-60.5 + rot: -1.5707963267948966 rad + pos: -127.5,3.5 parent: 1 - - uid: 32471 + - uid: 32976 components: - type: Transform - pos: -12.5,-48.5 + rot: -1.5707963267948966 rad + pos: -126.5,3.5 parent: 1 - - uid: 32473 + - uid: 32977 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-59.5 + pos: -125.5,3.5 parent: 1 - - uid: 32480 + - uid: 32982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,25.5 + rot: 3.141592653589793 rad + pos: -125.5,-10.5 parent: 1 - - uid: 32529 + - uid: 32983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-78.5 + rot: 3.141592653589793 rad + pos: -125.5,-9.5 parent: 1 - - uid: 32530 + - uid: 32984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-78.5 + rot: 3.141592653589793 rad + pos: -125.5,-8.5 parent: 1 - - uid: 32532 + - uid: 32985 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-77.5 + pos: -124.5,-6.5 parent: 1 - - uid: 32533 + - uid: 32986 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-76.5 + pos: -124.5,-5.5 parent: 1 - - uid: 32534 + - uid: 32987 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-75.5 + pos: -124.5,-4.5 parent: 1 - - uid: 32535 + - uid: 32988 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-74.5 + pos: -124.5,-3.5 parent: 1 - - uid: 32536 + - uid: 32989 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-73.5 + pos: -124.5,-2.5 parent: 1 - - uid: 32537 + - uid: 32990 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-72.5 + pos: -124.5,-1.5 parent: 1 - - uid: 32540 + - uid: 32991 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-70.5 + pos: -124.5,-0.5 parent: 1 - - uid: 32541 + - uid: 32992 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-69.5 + pos: -124.5,0.5 parent: 1 - - uid: 32542 + - uid: 32993 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-68.5 + pos: -124.5,1.5 parent: 1 - - uid: 32543 + - uid: 32994 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-67.5 + pos: -124.5,2.5 parent: 1 - - uid: 32546 + - uid: 33268 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-66.5 + pos: -150.5,20.5 parent: 1 - - uid: 32547 + - uid: 33269 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,-66.5 + pos: -151.5,20.5 parent: 1 - - uid: 32548 + - uid: 33270 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-66.5 + pos: -152.5,20.5 parent: 1 - - uid: 32549 + - uid: 33271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-66.5 + pos: -153.5,20.5 parent: 1 - - uid: 32550 + - uid: 33272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-66.5 + rot: 3.141592653589793 rad + pos: -154.5,19.5 parent: 1 - - uid: 32551 + - uid: 33273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-66.5 + rot: 3.141592653589793 rad + pos: -154.5,18.5 parent: 1 - - uid: 32552 + - uid: 33274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-66.5 + rot: 3.141592653589793 rad + pos: -154.5,17.5 parent: 1 - - uid: 32553 + - uid: 33275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-66.5 + rot: 3.141592653589793 rad + pos: -154.5,16.5 parent: 1 - - uid: 32554 + - uid: 33276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-66.5 + rot: 3.141592653589793 rad + pos: -154.5,15.5 parent: 1 - - uid: 32555 + - uid: 33277 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-65.5 + pos: -154.5,14.5 parent: 1 - - uid: 32556 + - uid: 33278 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-64.5 + pos: -154.5,13.5 parent: 1 - - uid: 32557 + - uid: 33279 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-63.5 + pos: -154.5,12.5 parent: 1 - - uid: 32558 + - uid: 33280 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-62.5 + pos: -154.5,11.5 parent: 1 - - uid: 32559 + - uid: 33281 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-61.5 + pos: -154.5,10.5 parent: 1 - - uid: 32560 + - uid: 33282 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-60.5 + pos: -154.5,9.5 parent: 1 - - uid: 32561 + - uid: 33283 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-59.5 + pos: -154.5,8.5 parent: 1 - - uid: 32564 + - uid: 33284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-58.5 + rot: 3.141592653589793 rad + pos: -154.5,7.5 parent: 1 - - uid: 32565 + - uid: 33285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -154.5,6.5 + parent: 1 + - uid: 33286 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-58.5 + pos: -153.5,5.5 parent: 1 - - uid: 32566 + - uid: 33287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-58.5 + pos: -152.5,5.5 parent: 1 - - uid: 32567 + - uid: 33288 components: - type: Transform - pos: -44.5,-57.5 + rot: 1.5707963267948966 rad + pos: -151.5,5.5 parent: 1 - - uid: 32568 + - uid: 33289 components: - type: Transform - pos: -44.5,-56.5 + rot: 1.5707963267948966 rad + pos: -150.5,5.5 parent: 1 - - uid: 32569 + - uid: 33290 components: - type: Transform - pos: -44.5,-55.5 + rot: 1.5707963267948966 rad + pos: -149.5,5.5 parent: 1 - - uid: 32570 + - uid: 33291 components: - type: Transform - pos: -44.5,-54.5 + rot: 1.5707963267948966 rad + pos: -148.5,5.5 parent: 1 - - uid: 32571 + - uid: 33292 components: - type: Transform - pos: -44.5,-53.5 + rot: 1.5707963267948966 rad + pos: -147.5,5.5 parent: 1 - - uid: 32572 + - uid: 33293 components: - type: Transform - pos: -44.5,-52.5 + rot: 1.5707963267948966 rad + pos: -146.5,5.5 parent: 1 - - uid: 32573 + - uid: 33294 components: - type: Transform - pos: -44.5,-51.5 + rot: 1.5707963267948966 rad + pos: -145.5,5.5 parent: 1 - - uid: 32574 + - uid: 33295 components: - type: Transform - pos: -44.5,-50.5 + rot: 1.5707963267948966 rad + pos: -144.5,5.5 parent: 1 - - uid: 32579 + - uid: 33296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-47.5 + rot: 1.5707963267948966 rad + pos: -143.5,5.5 parent: 1 - - uid: 32580 + - uid: 33297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-48.5 + rot: 1.5707963267948966 rad + pos: -142.5,5.5 parent: 1 - - uid: 32585 + - uid: 33298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-45.5 + rot: 1.5707963267948966 rad + pos: -141.5,5.5 parent: 1 - - uid: 32586 + - uid: 33299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-44.5 + rot: 1.5707963267948966 rad + pos: -140.5,5.5 parent: 1 - - uid: 32587 + - uid: 33300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-43.5 + rot: 1.5707963267948966 rad + pos: -139.5,5.5 parent: 1 - - uid: 32588 + - uid: 33301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -138.5,4.5 parent: 1 - - uid: 32589 + - uid: 33302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-41.5 + pos: -138.5,3.5 parent: 1 - - uid: 32590 + - uid: 33303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-40.5 + pos: -138.5,2.5 parent: 1 - - uid: 32591 + - uid: 33304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-39.5 + pos: -138.5,1.5 parent: 1 - - uid: 32592 + - uid: 33305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-38.5 + pos: -138.5,0.5 parent: 1 - - uid: 32593 + - uid: 33306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-36.5 + rot: -1.5707963267948966 rad + pos: -139.5,-0.5 parent: 1 - - uid: 32594 + - uid: 33307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-35.5 + rot: -1.5707963267948966 rad + pos: -140.5,-0.5 parent: 1 - - uid: 32595 + - uid: 33308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-34.5 + rot: -1.5707963267948966 rad + pos: -141.5,-0.5 parent: 1 - - uid: 32596 + - uid: 33309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-33.5 + rot: -1.5707963267948966 rad + pos: -142.5,-0.5 parent: 1 - - uid: 32597 + - uid: 33310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 + rot: -1.5707963267948966 rad + pos: -143.5,-0.5 parent: 1 - - uid: 32598 + - uid: 33311 components: - type: Transform - pos: -38.5,-32.5 + rot: -1.5707963267948966 rad + pos: -144.5,-0.5 parent: 1 - - uid: 32599 + - uid: 33840 components: - type: Transform - pos: -38.5,-31.5 + pos: -42.5,26.5 parent: 1 - - uid: 32600 + - uid: 33842 components: - type: Transform - pos: -38.5,-30.5 + pos: -42.5,19.5 parent: 1 - - uid: 32601 + - uid: 33848 components: - type: Transform - pos: -38.5,-29.5 + pos: -42.5,22.5 parent: 1 - - uid: 32602 + - uid: 33849 components: - type: Transform - pos: -38.5,-28.5 + pos: -42.5,21.5 parent: 1 - - uid: 32603 + - uid: 35072 components: - type: Transform - pos: -38.5,-27.5 + rot: -1.5707963267948966 rad + pos: 21.5,-59.5 parent: 1 - - uid: 32604 + - uid: 35073 components: - type: Transform - pos: -38.5,-26.5 + rot: -1.5707963267948966 rad + pos: 20.5,-59.5 parent: 1 - - uid: 32605 + - uid: 35074 components: - type: Transform - pos: -38.5,-25.5 + rot: -1.5707963267948966 rad + pos: 19.5,-59.5 parent: 1 - - uid: 32606 + - uid: 35075 components: - type: Transform - pos: -38.5,-24.5 + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 parent: 1 - - uid: 32615 + - uid: 35076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-16.5 + rot: -1.5707963267948966 rad + pos: 17.5,-59.5 parent: 1 - - uid: 32616 + - uid: 35077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,-59.5 parent: 1 - - uid: 32617 + - uid: 35078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-18.5 + rot: -1.5707963267948966 rad + pos: 15.5,-59.5 parent: 1 - - uid: 32618 + - uid: 35079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-19.5 + rot: -1.5707963267948966 rad + pos: 13.5,-59.5 parent: 1 - - uid: 32619 + - uid: 37807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 + rot: -1.5707963267948966 rad + pos: 12.5,-59.5 parent: 1 - - uid: 32620 + - uid: 37847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-20.5 + rot: -1.5707963267948966 rad + pos: 11.5,-59.5 parent: 1 - - uid: 32621 + - uid: 37958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 + pos: 10.5,-58.5 parent: 1 - - uid: 32622 + - uid: 38048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-20.5 + pos: 10.5,-57.5 parent: 1 - - uid: 32623 + - uid: 38049 components: - type: Transform - pos: -27.5,-21.5 + pos: 10.5,-56.5 parent: 1 - - uid: 32624 + - uid: 38050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-22.5 + pos: 10.5,-55.5 parent: 1 - - uid: 32625 + - uid: 38051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-22.5 + pos: 10.5,-54.5 parent: 1 - - uid: 32626 + - uid: 38052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 + pos: 10.5,-53.5 parent: 1 - - uid: 32627 + - uid: 38053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-22.5 + pos: 10.5,-52.5 parent: 1 - - uid: 32628 + - uid: 38058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-22.5 + pos: 41.5,-59.5 parent: 1 - - uid: 32629 + - uid: 38059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-22.5 + pos: 40.5,-59.5 parent: 1 - - uid: 32630 + - uid: 38060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-22.5 + pos: 39.5,-59.5 parent: 1 - - uid: 32631 + - uid: 38061 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-22.5 + pos: 38.5,-59.5 parent: 1 - - uid: 32632 + - uid: 38062 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-22.5 + pos: 37.5,-59.5 parent: 1 - - uid: 32633 + - uid: 38063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-22.5 + pos: 36.5,-59.5 parent: 1 - - uid: 32634 + - uid: 38064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-23.5 + rot: -1.5707963267948966 rad + pos: 35.5,-59.5 parent: 1 - - uid: 32638 + - uid: 38065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 + rot: -1.5707963267948966 rad + pos: 34.5,-59.5 parent: 1 - - uid: 32639 + - uid: 38066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-9.5 + rot: -1.5707963267948966 rad + pos: 33.5,-59.5 parent: 1 - - uid: 32640 + - uid: 38067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-8.5 + rot: -1.5707963267948966 rad + pos: 32.5,-59.5 parent: 1 - - uid: 32641 + - uid: 38069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 31.5,-59.5 parent: 1 - - uid: 32642 + - uid: 38070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-6.5 + rot: -1.5707963267948966 rad + pos: 30.5,-59.5 parent: 1 - - uid: 32643 + - uid: 38071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 + rot: -1.5707963267948966 rad + pos: 28.5,-59.5 parent: 1 - - uid: 32644 + - uid: 38072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 + rot: -1.5707963267948966 rad + pos: 29.5,-59.5 parent: 1 - - uid: 32647 + - uid: 38372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-2.5 + pos: -42.5,25.5 parent: 1 - - uid: 32648 + - uid: 38406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-1.5 + rot: -1.5707963267948966 rad + pos: -55.5,36.5 parent: 1 - - uid: 32649 + - uid: 38407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-0.5 + rot: -1.5707963267948966 rad + pos: -54.5,36.5 parent: 1 - - uid: 32650 + - uid: 38408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 + rot: -1.5707963267948966 rad + pos: -53.5,36.5 parent: 1 - - uid: 32651 + - uid: 38409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,1.5 + rot: -1.5707963267948966 rad + pos: -52.5,36.5 parent: 1 - - uid: 32652 + - uid: 38410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,2.5 + rot: -1.5707963267948966 rad + pos: -51.5,36.5 parent: 1 - - uid: 32653 + - uid: 38411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: -50.5,36.5 parent: 1 - - uid: 32654 + - uid: 38412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 + rot: -1.5707963267948966 rad + pos: -49.5,36.5 parent: 1 - - uid: 32655 + - uid: 38413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,5.5 + rot: -1.5707963267948966 rad + pos: -48.5,36.5 parent: 1 - - uid: 32656 + - uid: 38414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,6.5 + rot: -1.5707963267948966 rad + pos: -36.5,36.5 parent: 1 - - uid: 32657 + - uid: 38415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,7.5 + rot: -1.5707963267948966 rad + pos: -35.5,36.5 parent: 1 - - uid: 32661 + - uid: 38419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,8.5 + rot: -1.5707963267948966 rad + pos: -16.5,36.5 parent: 1 - - uid: 32662 + - uid: 38420 components: - type: Transform - pos: -25.5,9.5 + rot: -1.5707963267948966 rad + pos: -32.5,36.5 parent: 1 - - uid: 32663 + - uid: 38421 components: - type: Transform - pos: -25.5,10.5 + rot: -1.5707963267948966 rad + pos: -31.5,36.5 parent: 1 - - uid: 32664 + - uid: 38422 components: - type: Transform - pos: -25.5,11.5 + rot: -1.5707963267948966 rad + pos: -29.5,36.5 parent: 1 - - uid: 32665 + - uid: 38423 components: - type: Transform - pos: -25.5,12.5 + rot: -1.5707963267948966 rad + pos: -28.5,36.5 parent: 1 - - uid: 32666 + - uid: 38424 components: - type: Transform - pos: -25.5,13.5 + rot: -1.5707963267948966 rad + pos: -27.5,36.5 parent: 1 - - uid: 32667 + - uid: 38425 components: - type: Transform - pos: -25.5,14.5 + rot: -1.5707963267948966 rad + pos: -26.5,36.5 parent: 1 - - uid: 32668 + - uid: 38426 components: - type: Transform - pos: -25.5,15.5 + rot: -1.5707963267948966 rad + pos: -25.5,36.5 parent: 1 - - uid: 32669 + - uid: 38427 components: - type: Transform - pos: -25.5,16.5 + rot: -1.5707963267948966 rad + pos: -24.5,36.5 parent: 1 - - uid: 32670 + - uid: 38428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,17.5 + pos: -23.5,36.5 parent: 1 - - uid: 32671 + - uid: 38429 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,17.5 + pos: -22.5,36.5 parent: 1 - - uid: 32672 + - uid: 38430 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,17.5 + pos: -21.5,36.5 parent: 1 - - uid: 32673 + - uid: 38431 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,17.5 + pos: -20.5,36.5 parent: 1 - - uid: 32674 + - uid: 38432 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,17.5 + pos: -19.5,36.5 parent: 1 - - uid: 32675 + - uid: 38433 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,17.5 + pos: -18.5,36.5 parent: 1 - - uid: 32676 + - uid: 38439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,17.5 + pos: -17.5,32.5 parent: 1 - - uid: 32677 + - uid: 38440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,17.5 + pos: -17.5,33.5 parent: 1 - - uid: 32680 + - uid: 38441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,17.5 + pos: -17.5,34.5 parent: 1 - - uid: 32681 + - uid: 38442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,17.5 + pos: -17.5,35.5 parent: 1 - - uid: 32682 + - uid: 38444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,18.5 + pos: -17.5,29.5 parent: 1 - - uid: 32683 + - uid: 38445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,19.5 + pos: -17.5,28.5 parent: 1 - - uid: 32684 + - uid: 38446 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,20.5 + pos: -39.5,35.5 parent: 1 - - uid: 32685 + - uid: 38447 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,21.5 + pos: -39.5,34.5 parent: 1 - - uid: 32686 + - uid: 38448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,22.5 + rot: 3.141592653589793 rad + pos: -39.5,33.5 parent: 1 - - uid: 32687 + - uid: 38449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,22.5 + rot: 3.141592653589793 rad + pos: -39.5,32.5 parent: 1 - - uid: 32688 + - uid: 38450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,22.5 + rot: 3.141592653589793 rad + pos: -39.5,31.5 parent: 1 - - uid: 32689 + - uid: 38451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,22.5 + rot: 3.141592653589793 rad + pos: -39.5,30.5 parent: 1 - - uid: 32694 + - uid: 38452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,29.5 parent: 1 - - uid: 32695 + - uid: 38453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,28.5 parent: 1 - - uid: 32696 + - uid: 38454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,27.5 parent: 1 - - uid: 32697 + - uid: 38455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,26.5 parent: 1 - - uid: 32698 + - uid: 38456 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,23.5 + pos: 27.5,-59.5 parent: 1 - - uid: 32699 + - uid: 38457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,23.5 + rot: 3.141592653589793 rad + pos: -39.5,24.5 parent: 1 - - uid: 32700 + - uid: 38458 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,22.5 + pos: -39.5,23.5 parent: 1 - - uid: 32701 + - uid: 38459 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,21.5 + pos: -39.5,22.5 parent: 1 - - uid: 32702 + - uid: 38460 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,20.5 + pos: -39.5,21.5 parent: 1 - - uid: 32703 + - uid: 38461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,19.5 + rot: -1.5707963267948966 rad + pos: -26.5,-2.5 parent: 1 - - uid: 32704 + - uid: 38462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,18.5 + pos: -35.5,2.5 parent: 1 - - uid: 32705 + - uid: 38463 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,18.5 + pos: -34.5,2.5 parent: 1 - - uid: 32706 + - uid: 38464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,18.5 + pos: -33.5,2.5 parent: 1 - - uid: 32707 + - uid: 38465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,18.5 + pos: -32.5,2.5 parent: 1 - - uid: 32708 + - uid: 38466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,18.5 + pos: -31.5,2.5 parent: 1 - - uid: 32709 + - uid: 38467 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,18.5 + pos: -30.5,2.5 parent: 1 - - uid: 32710 + - uid: 38468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,18.5 + pos: -29.5,2.5 parent: 1 - - uid: 32711 + - uid: 38469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,18.5 + pos: -28.5,2.5 parent: 1 - - uid: 32712 + - uid: 38470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,18.5 + pos: -27.5,1.5 parent: 1 - - uid: 32713 + - uid: 38471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,18.5 + pos: -27.5,0.5 parent: 1 - - uid: 32714 + - uid: 38472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 + pos: -27.5,-0.5 parent: 1 - - uid: 32715 + - uid: 38473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,18.5 + pos: -27.5,-1.5 parent: 1 - - uid: 32716 + - uid: 38870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,18.5 + rot: -1.5707963267948966 rad + pos: 26.5,-59.5 parent: 1 - - uid: 32717 + - uid: 38871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-59.5 parent: 1 - - uid: 32745 + - uid: 38872 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,23.5 + pos: 24.5,-59.5 parent: 1 - - uid: 32747 + - uid: 38873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,39.5 + rot: -1.5707963267948966 rad + pos: 23.5,-59.5 parent: 1 - - uid: 32748 + - uid: 38875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,39.5 + pos: -12.5,-49.5 parent: 1 - - uid: 32749 + - uid: 38876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,39.5 + pos: -12.5,-50.5 + parent: 1 + - uid: 38877 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 1 + - uid: 38878 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 1 + - uid: 38879 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 1 + - uid: 38880 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 1 + - uid: 38881 + components: + - type: Transform + pos: -12.5,-55.5 parent: 1 - - uid: 32750 + - uid: 38882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,39.5 + pos: -12.5,-56.5 parent: 1 - - uid: 32751 + - uid: 38883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,39.5 + pos: -12.5,-57.5 parent: 1 - - uid: 32752 + - uid: 38884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,39.5 + pos: -12.5,-58.5 parent: 1 - - uid: 32753 + - uid: 38885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,39.5 + pos: -12.5,-59.5 parent: 1 - - uid: 32754 + - uid: 38886 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,39.5 + pos: -11.5,-61.5 parent: 1 - - uid: 32755 + - uid: 38887 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,39.5 + pos: -9.5,-61.5 parent: 1 - - uid: 32756 + - uid: 38888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,39.5 + pos: -10.5,-61.5 parent: 1 - - uid: 32757 + - uid: 40095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,39.5 + pos: 10.5,-51.5 parent: 1 - - uid: 32758 + - uid: 40273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,39.5 + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 parent: 1 - - uid: 32759 + - uid: 40274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,39.5 + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 parent: 1 - - uid: 32760 + - uid: 40275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,39.5 + rot: -1.5707963267948966 rad + pos: 19.5,-46.5 parent: 1 - - uid: 32761 + - uid: 40276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,39.5 + rot: -1.5707963267948966 rad + pos: 20.5,-46.5 parent: 1 - - uid: 32762 + - uid: 40277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,39.5 + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 parent: 1 - - uid: 32763 + - uid: 40278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,39.5 + rot: -1.5707963267948966 rad + pos: 22.5,-46.5 parent: 1 - - uid: 32764 + - uid: 40279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,39.5 + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 parent: 1 - - uid: 32765 + - uid: 40280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,39.5 + rot: -1.5707963267948966 rad + pos: 24.5,-46.5 parent: 1 - - uid: 32766 + - uid: 40281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,-45.5 parent: 1 - - uid: 32767 + - uid: 40282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,-44.5 parent: 1 - - uid: 32768 + - uid: 40283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,-43.5 parent: 1 - - uid: 32769 + - uid: 40284 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,39.5 + pos: 19.5,-42.5 parent: 1 - - uid: 32770 + - uid: 40285 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,39.5 + pos: -37.5,25.5 parent: 1 - - uid: 32771 + - uid: 40286 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,39.5 + pos: -36.5,25.5 parent: 1 - - uid: 32778 + - uid: 40287 components: - type: Transform - pos: -75.5,38.5 + rot: 1.5707963267948966 rad + pos: -35.5,25.5 parent: 1 - - uid: 32779 + - uid: 40288 components: - type: Transform - pos: -75.5,37.5 + rot: 1.5707963267948966 rad + pos: -34.5,25.5 parent: 1 - - uid: 32780 + - uid: 40289 components: - type: Transform - pos: -75.5,36.5 + rot: 1.5707963267948966 rad + pos: -33.5,25.5 parent: 1 - - uid: 32781 + - uid: 40290 components: - type: Transform - pos: -75.5,35.5 + rot: 1.5707963267948966 rad + pos: -32.5,25.5 parent: 1 - - uid: 32782 + - uid: 40291 components: - type: Transform - pos: -75.5,34.5 + rot: 1.5707963267948966 rad + pos: -31.5,25.5 parent: 1 - - uid: 32783 + - uid: 40292 components: - type: Transform - pos: -75.5,33.5 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 parent: 1 - - uid: 32784 + - uid: 40293 components: - type: Transform - pos: -75.5,32.5 + rot: 1.5707963267948966 rad + pos: -29.5,25.5 parent: 1 - - uid: 32785 + - uid: 40294 components: - type: Transform - pos: -75.5,31.5 + rot: 1.5707963267948966 rad + pos: -28.5,25.5 parent: 1 - - uid: 32786 + - uid: 40295 components: - type: Transform - pos: -75.5,30.5 + rot: 1.5707963267948966 rad + pos: -27.5,25.5 parent: 1 - - uid: 32787 + - uid: 40296 components: - type: Transform - pos: -75.5,29.5 + rot: 1.5707963267948966 rad + pos: -26.5,25.5 parent: 1 - - uid: 32788 + - uid: 40297 components: - type: Transform - pos: -75.5,28.5 + rot: 1.5707963267948966 rad + pos: -25.5,25.5 parent: 1 - - uid: 32789 + - uid: 40298 components: - type: Transform - pos: -75.5,27.5 + rot: 1.5707963267948966 rad + pos: -24.5,25.5 parent: 1 - - uid: 32790 + - uid: 40299 components: - type: Transform - pos: -75.5,26.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 1 - - uid: 32791 + - uid: 40300 components: - type: Transform - pos: -75.5,25.5 + rot: 1.5707963267948966 rad + pos: -22.5,25.5 parent: 1 - - uid: 32792 + - uid: 40301 components: - type: Transform - pos: -75.5,24.5 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 1 - - uid: 32794 + - uid: 40302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,23.5 + rot: 1.5707963267948966 rad + pos: -20.5,25.5 parent: 1 - - uid: 32795 + - uid: 40303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,23.5 + rot: 1.5707963267948966 rad + pos: -19.5,25.5 parent: 1 - - uid: 32796 + - uid: 40304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,23.5 + rot: 1.5707963267948966 rad + pos: -17.5,26.5 parent: 1 - - uid: 32797 + - uid: 40305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,23.5 + rot: 1.5707963267948966 rad + pos: -16.5,26.5 parent: 1 - - uid: 32798 + - uid: 41393 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,23.5 + pos: -48.5,42.5 parent: 1 - - uid: 32799 + - uid: 41394 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,23.5 + pos: -47.5,42.5 parent: 1 - - uid: 32800 + - uid: 41395 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,23.5 + pos: -46.5,42.5 parent: 1 - - uid: 32801 + - uid: 41396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,23.5 + pos: -45.5,42.5 parent: 1 - - uid: 32802 + - uid: 41397 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,23.5 + pos: -44.5,42.5 parent: 1 - - uid: 32803 + - uid: 41398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,23.5 + pos: -43.5,42.5 parent: 1 - - uid: 32804 + - uid: 41399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,23.5 + rot: 1.5707963267948966 rad + pos: -35.5,22.5 parent: 1 - - uid: 32805 + - uid: 41400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,23.5 + rot: 1.5707963267948966 rad + pos: -36.5,22.5 parent: 1 - - uid: 32806 + - uid: 41401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,23.5 + rot: 1.5707963267948966 rad + pos: -37.5,22.5 parent: 1 - - uid: 32807 + - uid: 41402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,23.5 + rot: 1.5707963267948966 rad + pos: -39.5,21.5 parent: 1 - - uid: 32808 + - uid: 41407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,23.5 + pos: -24.5,-14.5 parent: 1 - - uid: 32809 + - uid: 41408 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,23.5 + pos: -103.5,22.5 parent: 1 - - uid: 32810 + - uid: 41409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,23.5 + rot: 1.5707963267948966 rad + pos: -33.5,22.5 parent: 1 - - uid: 32811 + - uid: 41410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,23.5 + rot: 1.5707963267948966 rad + pos: -32.5,22.5 parent: 1 - - uid: 32812 + - uid: 41411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,23.5 + rot: 1.5707963267948966 rad + pos: -31.5,22.5 parent: 1 - - uid: 32813 + - uid: 41412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,23.5 + rot: 1.5707963267948966 rad + pos: -30.5,22.5 parent: 1 - - uid: 32814 + - uid: 41413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,23.5 + pos: -29.5,21.5 parent: 1 - - uid: 32815 + - uid: 41414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,23.5 + pos: -29.5,20.5 parent: 1 - - uid: 32816 + - uid: 41426 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,23.5 + pos: -101.5,-15.5 parent: 1 - - uid: 32817 + - uid: 41427 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,23.5 + pos: -102.5,-15.5 parent: 1 - - uid: 32818 + - uid: 41428 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,23.5 + pos: -103.5,-15.5 parent: 1 - - uid: 32819 + - uid: 41429 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,23.5 + pos: -104.5,-15.5 parent: 1 - - uid: 32820 + - uid: 41430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,23.5 + rot: 3.141592653589793 rad + pos: -105.5,-14.5 parent: 1 - - uid: 32821 + - uid: 41431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,23.5 + rot: 3.141592653589793 rad + pos: -105.5,-13.5 parent: 1 - - uid: 32822 + - uid: 41432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,23.5 + rot: 1.5707963267948966 rad + pos: -106.5,-12.5 parent: 1 - - uid: 32823 + - uid: 41433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,23.5 + rot: 1.5707963267948966 rad + pos: -107.5,-12.5 parent: 1 - - uid: 32824 + - uid: 41434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,23.5 + rot: 1.5707963267948966 rad + pos: -108.5,-12.5 parent: 1 - - uid: 32825 + - uid: 41435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,23.5 + rot: 1.5707963267948966 rad + pos: -109.5,-12.5 parent: 1 - - uid: 32826 + - uid: 41436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,23.5 + rot: 1.5707963267948966 rad + pos: -110.5,-12.5 parent: 1 - - uid: 32827 + - uid: 41437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,23.5 + pos: -111.5,-14.5 parent: 1 - - uid: 32828 + - uid: 41438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,23.5 + pos: -105.5,-16.5 parent: 1 - - uid: 32829 + - uid: 41439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,23.5 + pos: -105.5,-17.5 parent: 1 - - uid: 32830 + - uid: 41440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,23.5 + pos: -105.5,-18.5 parent: 1 - - uid: 32831 + - uid: 41441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,23.5 + pos: -105.5,-19.5 parent: 1 - - uid: 32832 + - uid: 41442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,23.5 + pos: -105.5,-20.5 parent: 1 - - uid: 32833 + - uid: 41443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,23.5 + pos: -105.5,-21.5 parent: 1 - - uid: 32834 + - uid: 41444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,23.5 + pos: -105.5,-22.5 parent: 1 - - uid: 32835 + - uid: 41445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,23.5 + pos: -105.5,-23.5 parent: 1 - - uid: 32836 + - uid: 41446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,23.5 + pos: -105.5,-24.5 parent: 1 - - uid: 32837 + - uid: 41453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,23.5 + rot: 1.5707963267948966 rad + pos: -101.5,-24.5 parent: 1 - - uid: 32838 + - uid: 41454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,23.5 + rot: 1.5707963267948966 rad + pos: -103.5,-25.5 parent: 1 - - uid: 32839 + - uid: 41455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,23.5 + rot: 1.5707963267948966 rad + pos: -104.5,-25.5 parent: 1 - - uid: 32840 + - uid: 41456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,23.5 + rot: 1.5707963267948966 rad + pos: -106.5,-26.5 parent: 1 - - uid: 32843 + - uid: 41457 components: - type: Transform - pos: -124.5,22.5 + rot: 1.5707963267948966 rad + pos: -107.5,-26.5 parent: 1 - - uid: 32844 + - uid: 41458 components: - type: Transform - pos: -124.5,21.5 + rot: 1.5707963267948966 rad + pos: -51.5,-45.5 parent: 1 - - uid: 32845 + - uid: 41459 components: - type: Transform - pos: -124.5,20.5 + rot: 1.5707963267948966 rad + pos: -52.5,-45.5 parent: 1 - - uid: 32846 + - uid: 41460 components: - type: Transform - pos: -124.5,19.5 + pos: -53.5,-44.5 parent: 1 - - uid: 32847 + - uid: 41461 components: - type: Transform - pos: -124.5,18.5 + pos: -53.5,-43.5 parent: 1 - - uid: 32848 + - uid: 41462 components: - type: Transform - pos: -124.5,17.5 + pos: -53.5,-42.5 parent: 1 - - uid: 32849 + - uid: 41463 components: - type: Transform - pos: -124.5,16.5 + pos: -53.5,-41.5 parent: 1 - - uid: 32850 + - uid: 41464 components: - type: Transform - pos: -124.5,15.5 + pos: -53.5,-40.5 parent: 1 - - uid: 32852 + - uid: 41465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,14.5 + pos: -53.5,-39.5 parent: 1 - - uid: 32853 + - uid: 41466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,14.5 + pos: -53.5,-38.5 parent: 1 - - uid: 32854 + - uid: 41467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,14.5 + pos: -53.5,-37.5 parent: 1 - - uid: 32855 + - uid: 41468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,14.5 + pos: -53.5,-36.5 parent: 1 - - uid: 32856 + - uid: 41469 components: - type: Transform - pos: -129.5,-6.5 + pos: -53.5,-35.5 parent: 1 - - uid: 32857 + - uid: 41470 components: - type: Transform - pos: -129.5,13.5 + pos: -53.5,-34.5 parent: 1 - - uid: 32858 + - uid: 41471 components: - type: Transform - pos: -129.5,12.5 + pos: -53.5,-33.5 parent: 1 - - uid: 32859 + - uid: 41472 components: - type: Transform - pos: -129.5,11.5 + pos: -53.5,-32.5 parent: 1 - - uid: 32860 + - uid: 41473 components: - type: Transform - pos: -129.5,10.5 + pos: -53.5,-31.5 parent: 1 - - uid: 32861 + - uid: 41474 components: - type: Transform - pos: -129.5,9.5 + pos: -53.5,-30.5 parent: 1 - - uid: 32862 + - uid: 41475 components: - type: Transform - pos: -129.5,8.5 + pos: -53.5,-29.5 parent: 1 - - uid: 32863 + - uid: 41476 components: - type: Transform - pos: -129.5,7.5 + pos: -53.5,-28.5 parent: 1 - - uid: 32864 + - uid: 41477 components: - type: Transform - pos: -129.5,6.5 + pos: -53.5,-27.5 parent: 1 - - uid: 32865 + - uid: 41480 components: - type: Transform - pos: -129.5,5.5 + rot: 1.5707963267948966 rad + pos: -52.5,-26.5 parent: 1 - - uid: 32866 + - uid: 41481 components: - type: Transform - pos: -129.5,4.5 + rot: 1.5707963267948966 rad + pos: -51.5,-26.5 parent: 1 - - uid: 32867 + - uid: 41482 components: - type: Transform - pos: -129.5,3.5 + rot: 1.5707963267948966 rad + pos: -50.5,-26.5 parent: 1 - - uid: 32872 + - uid: 41483 components: - type: Transform - pos: -130.5,1.5 + rot: 1.5707963267948966 rad + pos: -49.5,-26.5 parent: 1 - - uid: 32873 + - uid: 41484 components: - type: Transform - pos: -130.5,0.5 + pos: -48.5,-25.5 parent: 1 - - uid: 32874 + - uid: 41485 components: - type: Transform - pos: -130.5,-0.5 + pos: -48.5,-24.5 parent: 1 - - uid: 32875 + - uid: 41486 components: - type: Transform - pos: -130.5,-1.5 + pos: -48.5,-23.5 parent: 1 - - uid: 32876 + - uid: 41487 components: - type: Transform - pos: -130.5,-2.5 + pos: -48.5,-22.5 parent: 1 - - uid: 32877 + - uid: 41488 components: - type: Transform - pos: -130.5,-3.5 + pos: -48.5,-21.5 parent: 1 - - uid: 32878 + - uid: 41489 components: - type: Transform - pos: -130.5,-4.5 + pos: -48.5,-20.5 parent: 1 - - uid: 32879 + - uid: 41490 components: - type: Transform - pos: -129.5,-7.5 + pos: -48.5,-19.5 parent: 1 - - uid: 32880 + - uid: 42048 components: - type: Transform - pos: -129.5,-8.5 + rot: 3.141592653589793 rad + pos: -67.5,-26.5 parent: 1 - - uid: 32881 + - uid: 42049 components: - type: Transform - pos: -129.5,-9.5 + rot: 3.141592653589793 rad + pos: -67.5,-27.5 parent: 1 - - uid: 32887 + - uid: 42050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -148.5,20.5 + rot: 1.5707963267948966 rad + pos: -66.5,-28.5 parent: 1 - - uid: 32889 + - uid: 42051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -147.5,20.5 + rot: 1.5707963267948966 rad + pos: -65.5,-28.5 parent: 1 - - uid: 32893 + - uid: 42052 components: - type: Transform - pos: -144.5,-9.5 + rot: 1.5707963267948966 rad + pos: -64.5,-28.5 parent: 1 - - uid: 32894 + - uid: 42461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,-10.5 + pos: -41.5,9.5 parent: 1 - - uid: 32895 + - uid: 42462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,-10.5 + pos: -42.5,9.5 parent: 1 - - uid: 32896 + - uid: 42463 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,-10.5 + pos: -43.5,9.5 parent: 1 - - uid: 32897 + - uid: 42464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -133.5,-10.5 + pos: -44.5,9.5 parent: 1 - - uid: 32898 + - uid: 42465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -134.5,-10.5 + pos: -45.5,9.5 parent: 1 - - uid: 32899 + - uid: 42466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,-10.5 + pos: -46.5,9.5 parent: 1 - - uid: 32900 + - uid: 42467 components: - type: Transform rot: 1.5707963267948966 rad - pos: -136.5,-10.5 + pos: -47.5,9.5 parent: 1 - - uid: 32901 + - uid: 42468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,-10.5 + pos: -48.5,9.5 parent: 1 - - uid: 32902 + - uid: 42469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,-10.5 + pos: -49.5,9.5 parent: 1 - - uid: 32903 + - uid: 42470 components: - type: Transform rot: 1.5707963267948966 rad - pos: -139.5,-10.5 + pos: -50.5,9.5 parent: 1 - - uid: 32904 + - uid: 42471 components: - type: Transform rot: 1.5707963267948966 rad - pos: -140.5,-10.5 + pos: -51.5,9.5 parent: 1 - - uid: 32905 + - uid: 42472 components: - type: Transform rot: 1.5707963267948966 rad - pos: -141.5,-10.5 + pos: -52.5,9.5 parent: 1 - - uid: 32906 + - uid: 42473 components: - type: Transform rot: 1.5707963267948966 rad - pos: -142.5,-10.5 + pos: -53.5,9.5 parent: 1 - - uid: 32907 + - uid: 42474 components: - type: Transform rot: 1.5707963267948966 rad - pos: -143.5,-10.5 + pos: -54.5,9.5 parent: 1 - - uid: 32908 + - uid: 42475 components: - type: Transform - pos: -144.5,-8.5 + pos: -55.5,10.5 parent: 1 - - uid: 32909 + - uid: 42476 components: - type: Transform - pos: -144.5,-7.5 + pos: -55.5,11.5 parent: 1 - - uid: 32910 + - uid: 42483 components: - type: Transform - pos: -144.5,-6.5 + rot: 1.5707963267948966 rad + pos: -56.5,9.5 parent: 1 - - uid: 32911 + - uid: 42484 components: - type: Transform - pos: -144.5,-5.5 + rot: 1.5707963267948966 rad + pos: -57.5,9.5 parent: 1 - - uid: 32912 + - uid: 42485 components: - type: Transform - pos: -144.5,-4.5 + pos: -58.5,8.5 parent: 1 - - uid: 32913 + - uid: 42486 components: - type: Transform - pos: -144.5,-3.5 + pos: -58.5,7.5 parent: 1 - - uid: 32914 + - uid: 42487 components: - type: Transform - pos: -144.5,-2.5 + rot: -1.5707963267948966 rad + pos: -57.5,6.5 parent: 1 - - uid: 32917 + - uid: 42488 components: - type: Transform rot: -1.5707963267948966 rad - pos: -149.5,20.5 + pos: -55.5,6.5 parent: 1 - - uid: 32920 + - uid: 42489 components: - type: Transform - pos: -130.5,23.5 + rot: 3.141592653589793 rad + pos: -54.5,5.5 parent: 1 - - uid: 32933 + - uid: 42490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -146.5,20.5 + rot: 3.141592653589793 rad + pos: -56.5,5.5 parent: 1 - - uid: 32936 + - uid: 42493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -145.5,21.5 + rot: 1.5707963267948966 rad + pos: -48.5,16.5 parent: 1 - - uid: 32937 + - uid: 42494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -145.5,22.5 + rot: 1.5707963267948966 rad + pos: -47.5,16.5 parent: 1 - - uid: 32938 + - uid: 42495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -145.5,23.5 + rot: 1.5707963267948966 rad + pos: -46.5,16.5 parent: 1 - - uid: 32939 + - uid: 42496 components: - type: Transform rot: 1.5707963267948966 rad - pos: -144.5,24.5 + pos: -45.5,16.5 parent: 1 - - uid: 32940 + - uid: 42497 components: - type: Transform rot: 1.5707963267948966 rad - pos: -143.5,24.5 + pos: -44.5,16.5 parent: 1 - - uid: 32941 + - uid: 42498 components: - type: Transform rot: 1.5707963267948966 rad - pos: -142.5,24.5 + pos: -43.5,16.5 parent: 1 - - uid: 32942 + - uid: 42499 components: - type: Transform rot: 1.5707963267948966 rad - pos: -141.5,24.5 + pos: -42.5,16.5 parent: 1 - - uid: 32943 + - uid: 42500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -140.5,24.5 + pos: -41.5,16.5 parent: 1 - - uid: 32944 + - uid: 42504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,24.5 + rot: -1.5707963267948966 rad + pos: -15.5,31.5 parent: 1 - - uid: 32945 + - uid: 42505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,24.5 + rot: -1.5707963267948966 rad + pos: -14.5,31.5 parent: 1 - - uid: 32946 + - uid: 42506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,24.5 + rot: -1.5707963267948966 rad + pos: -13.5,31.5 parent: 1 - - uid: 32947 + - uid: 42507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,24.5 + rot: -1.5707963267948966 rad + pos: -12.5,31.5 parent: 1 - - uid: 32948 + - uid: 42508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,24.5 + rot: -1.5707963267948966 rad + pos: -11.5,31.5 parent: 1 - - uid: 32949 + - uid: 42509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,24.5 + rot: -1.5707963267948966 rad + pos: -10.5,31.5 parent: 1 - - uid: 32950 + - uid: 42510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,24.5 + rot: -1.5707963267948966 rad + pos: -9.5,31.5 parent: 1 - - uid: 32951 + - uid: 42514 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,24.5 + pos: -18.5,24.5 parent: 1 - - uid: 32952 + - uid: 42515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,24.5 + pos: -19.5,24.5 parent: 1 - - uid: 32953 + - uid: 42516 components: - type: Transform - pos: -130.5,22.5 + pos: -20.5,25.5 parent: 1 - - uid: 32954 + - uid: 42517 components: - type: Transform - pos: -130.5,21.5 + pos: -20.5,26.5 parent: 1 - - uid: 32955 + - uid: 42518 components: - type: Transform - pos: -130.5,20.5 + pos: -20.5,27.5 parent: 1 - - uid: 32956 + - uid: 42519 components: - type: Transform - pos: -130.5,19.5 + pos: -20.5,28.5 parent: 1 - - uid: 32957 + - uid: 42520 components: - type: Transform - pos: -130.5,18.5 + pos: -20.5,29.5 parent: 1 - - uid: 32958 + - uid: 42521 components: - type: Transform - pos: -130.5,17.5 + pos: -20.5,30.5 parent: 1 - - uid: 32959 + - uid: 42522 components: - type: Transform - pos: -130.5,16.5 + pos: -20.5,31.5 parent: 1 - - uid: 32960 + - uid: 42523 components: - type: Transform - pos: -130.5,15.5 + pos: -20.5,32.5 parent: 1 - - uid: 32961 + - uid: 42528 components: - type: Transform - pos: -130.5,14.5 + rot: 1.5707963267948966 rad + pos: -79.5,24.5 parent: 1 - - uid: 32962 + - uid: 42529 components: - type: Transform - pos: -130.5,13.5 + rot: 1.5707963267948966 rad + pos: -78.5,24.5 parent: 1 - - uid: 32963 + - uid: 42530 components: - type: Transform - pos: -130.5,12.5 + rot: 1.5707963267948966 rad + pos: -77.5,24.5 parent: 1 - - uid: 32964 + - uid: 42531 components: - type: Transform - pos: -130.5,11.5 + rot: 1.5707963267948966 rad + pos: -76.5,24.5 parent: 1 - - uid: 32965 + - uid: 42532 components: - type: Transform - pos: -130.5,10.5 + rot: 1.5707963267948966 rad + pos: -75.5,24.5 parent: 1 - - uid: 32966 + - uid: 42533 components: - type: Transform - pos: -130.5,9.5 + rot: 1.5707963267948966 rad + pos: -74.5,24.5 parent: 1 - - uid: 32967 + - uid: 42544 components: - type: Transform - pos: -130.5,8.5 + rot: 1.5707963267948966 rad + pos: -98.5,6.5 parent: 1 - - uid: 32968 + - uid: 42545 components: - type: Transform - pos: -130.5,7.5 + rot: 1.5707963267948966 rad + pos: -99.5,6.5 parent: 1 - - uid: 32969 + - uid: 42546 components: - type: Transform - pos: -130.5,6.5 + rot: 1.5707963267948966 rad + pos: -100.5,6.5 parent: 1 - - uid: 32970 + - uid: 42547 components: - type: Transform - pos: -130.5,5.5 + rot: 1.5707963267948966 rad + pos: -101.5,6.5 parent: 1 - - uid: 32971 + - uid: 42548 components: - type: Transform - pos: -130.5,4.5 + pos: -102.5,5.5 parent: 1 - - uid: 32973 + - uid: 42549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,3.5 + pos: -102.5,4.5 parent: 1 - - uid: 32974 + - uid: 42550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,3.5 + pos: -102.5,3.5 parent: 1 - - uid: 32975 + - uid: 42551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,3.5 + pos: -102.5,2.5 parent: 1 - - uid: 32976 + - uid: 42552 components: - type: Transform rot: -1.5707963267948966 rad - pos: -126.5,3.5 + pos: -103.5,1.5 parent: 1 - - uid: 32977 + - uid: 42553 components: - type: Transform rot: -1.5707963267948966 rad - pos: -125.5,3.5 + pos: -104.5,1.5 parent: 1 - - uid: 32982 + - uid: 42554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-10.5 + rot: -1.5707963267948966 rad + pos: -105.5,1.5 parent: 1 - - uid: 32983 + - uid: 42555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-9.5 + rot: -1.5707963267948966 rad + pos: -106.5,1.5 parent: 1 - - uid: 32984 + - uid: 42556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-8.5 + rot: -1.5707963267948966 rad + pos: -107.5,1.5 parent: 1 - - uid: 32985 + - uid: 42557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-6.5 + rot: -1.5707963267948966 rad + pos: -108.5,1.5 parent: 1 - - uid: 32986 + - uid: 42558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-5.5 + rot: -1.5707963267948966 rad + pos: -110.5,0.5 parent: 1 - - uid: 32987 + - uid: 42559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-4.5 + rot: -1.5707963267948966 rad + pos: -111.5,0.5 parent: 1 - - uid: 32988 + - uid: 42560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-3.5 + rot: -1.5707963267948966 rad + pos: -112.5,0.5 parent: 1 - - uid: 32989 + - uid: 42561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-2.5 + rot: -1.5707963267948966 rad + pos: -113.5,0.5 parent: 1 - - uid: 32990 + - uid: 42562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-1.5 + rot: -1.5707963267948966 rad + pos: -114.5,0.5 parent: 1 - - uid: 32991 + - uid: 42563 components: - type: Transform rot: 3.141592653589793 rad - pos: -124.5,-0.5 + pos: -115.5,-0.5 parent: 1 - - uid: 32992 + - uid: 42564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,0.5 + rot: 1.5707963267948966 rad + pos: -116.5,-1.5 parent: 1 - - uid: 32993 + - uid: 42565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,1.5 + pos: -117.5,-0.5 parent: 1 - - uid: 32994 + - uid: 42571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,2.5 + rot: 1.5707963267948966 rad + pos: -113.5,-16.5 parent: 1 - - uid: 33268 + - uid: 42572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -150.5,20.5 + rot: 1.5707963267948966 rad + pos: -112.5,-16.5 parent: 1 - - uid: 33269 + - uid: 42573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -151.5,20.5 + rot: 1.5707963267948966 rad + pos: -110.5,-16.5 parent: 1 - - uid: 33270 + - uid: 42574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -152.5,20.5 + rot: 1.5707963267948966 rad + pos: -109.5,-16.5 parent: 1 - - uid: 33271 + - uid: 42577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -153.5,20.5 + rot: 3.141592653589793 rad + pos: -95.5,-70.5 parent: 1 - - uid: 33272 + - uid: 42578 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,19.5 + pos: -95.5,-69.5 parent: 1 - - uid: 33273 + - uid: 42579 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,18.5 + pos: -95.5,-68.5 parent: 1 - - uid: 33274 + - uid: 42580 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,17.5 + pos: -95.5,-67.5 parent: 1 - - uid: 33275 + - uid: 42581 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,16.5 + pos: -95.5,-66.5 parent: 1 - - uid: 33276 + - uid: 42582 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,15.5 + pos: -95.5,-65.5 parent: 1 - - uid: 33277 + - uid: 42583 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,14.5 + pos: -95.5,-64.5 parent: 1 - - uid: 33278 + - uid: 42584 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,13.5 + pos: -95.5,-63.5 parent: 1 - - uid: 33279 + - uid: 42585 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,12.5 + pos: -95.5,-62.5 parent: 1 - - uid: 33280 + - uid: 42586 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,11.5 + pos: -95.5,-61.5 parent: 1 - - uid: 33281 + - uid: 42587 components: - type: Transform rot: 3.141592653589793 rad - pos: -154.5,10.5 + pos: -95.5,-60.5 parent: 1 - - uid: 33282 + - uid: 42594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,9.5 + rot: 1.5707963267948966 rad + pos: -94.5,-59.5 parent: 1 - - uid: 33283 + - uid: 42595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,8.5 + rot: 1.5707963267948966 rad + pos: -93.5,-59.5 parent: 1 - - uid: 33284 + - uid: 42596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,7.5 + pos: -92.5,-60.5 parent: 1 - - uid: 33285 + - uid: 42597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -154.5,6.5 + pos: -92.5,-61.5 parent: 1 - - uid: 33286 + - uid: 42598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -153.5,5.5 + pos: -92.5,-62.5 parent: 1 - - uid: 33287 + - uid: 42599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -152.5,5.5 + pos: -92.5,-63.5 parent: 1 - - uid: 33288 + - uid: 42600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -151.5,5.5 + pos: -92.5,-64.5 parent: 1 - - uid: 33289 + - uid: 42601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -150.5,5.5 + pos: -92.5,-65.5 parent: 1 - - uid: 33290 + - uid: 42602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -149.5,5.5 + pos: -92.5,-66.5 parent: 1 - - uid: 33291 + - uid: 42603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -148.5,5.5 + pos: -92.5,-67.5 parent: 1 - - uid: 33292 + - uid: 42604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -147.5,5.5 + pos: -92.5,-68.5 parent: 1 - - uid: 33293 + - uid: 42605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -146.5,5.5 + pos: -92.5,-69.5 parent: 1 - - uid: 33294 + - uid: 42606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -145.5,5.5 + pos: -92.5,-70.5 parent: 1 - - uid: 33295 + - uid: 42607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -144.5,5.5 + pos: -92.5,-71.5 parent: 1 - - uid: 33296 + - uid: 42608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -143.5,5.5 + pos: -92.5,-72.5 parent: 1 - - uid: 33297 + - uid: 42609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -142.5,5.5 + pos: -92.5,-73.5 parent: 1 - - uid: 33298 + - uid: 42610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -141.5,5.5 + pos: -92.5,-74.5 parent: 1 - - uid: 33299 + - uid: 42611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -140.5,5.5 + pos: -92.5,-75.5 parent: 1 - - uid: 33300 + - uid: 42612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,5.5 + pos: -92.5,-76.5 parent: 1 - - uid: 33301 + - uid: 42613 components: - type: Transform - pos: -138.5,4.5 + pos: -92.5,-77.5 parent: 1 - - uid: 33302 + - uid: 42614 components: - type: Transform - pos: -138.5,3.5 + pos: -92.5,-78.5 parent: 1 - - uid: 33303 + - uid: 42615 components: - type: Transform - pos: -138.5,2.5 + pos: -92.5,-79.5 parent: 1 - - uid: 33304 + - uid: 42616 components: - type: Transform - pos: -138.5,1.5 + pos: -92.5,-80.5 parent: 1 - - uid: 33305 + - uid: 42617 components: - type: Transform - pos: -138.5,0.5 + pos: -92.5,-81.5 parent: 1 - - uid: 33306 + - uid: 42618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -139.5,-0.5 + pos: -93.5,-82.5 parent: 1 - - uid: 33307 + - uid: 42619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -140.5,-0.5 + pos: -94.5,-82.5 parent: 1 - - uid: 33308 + - uid: 42620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -141.5,-0.5 + pos: -95.5,-82.5 parent: 1 - - uid: 33309 + - uid: 42621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -142.5,-0.5 + rot: 3.141592653589793 rad + pos: -96.5,-83.5 parent: 1 - - uid: 33310 + - uid: 42622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -143.5,-0.5 + rot: 3.141592653589793 rad + pos: -96.5,-84.5 parent: 1 - - uid: 33311 + - uid: 42623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -144.5,-0.5 + rot: 3.141592653589793 rad + pos: -96.5,-85.5 parent: 1 - - uid: 33840 + - uid: 42624 components: - type: Transform - pos: -42.5,26.5 + rot: 3.141592653589793 rad + pos: -96.5,-86.5 parent: 1 - - uid: 33842 + - uid: 42632 components: - type: Transform - pos: -42.5,19.5 + pos: -58.5,-15.5 parent: 1 - - uid: 33848 + - uid: 42633 components: - type: Transform - pos: -42.5,22.5 + pos: -58.5,-16.5 parent: 1 - - uid: 33849 + - uid: 42634 components: - type: Transform - pos: -42.5,21.5 + pos: -58.5,-17.5 parent: 1 - - uid: 35072 + - uid: 42635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-59.5 + pos: -58.5,-18.5 parent: 1 - - uid: 35073 + - uid: 42636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-59.5 + pos: -58.5,-19.5 parent: 1 - - uid: 35074 + - uid: 42637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-59.5 + pos: -58.5,-20.5 parent: 1 - - uid: 35075 + - uid: 42638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-22.5 parent: 1 - - uid: 35076 + - uid: 42639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-23.5 parent: 1 - - uid: 35077 + - uid: 42640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-24.5 parent: 1 - - uid: 35078 + - uid: 42641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-25.5 parent: 1 - - uid: 35079 + - uid: 42642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-26.5 parent: 1 - - uid: 37807 + - uid: 42643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-27.5 parent: 1 - - uid: 37847 + - uid: 42644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-28.5 parent: 1 - - uid: 37958 + - uid: 42645 components: - type: Transform - pos: 10.5,-58.5 + rot: 3.141592653589793 rad + pos: -59.5,-29.5 parent: 1 - - uid: 38048 + - uid: 42646 components: - type: Transform - pos: 10.5,-57.5 + rot: 3.141592653589793 rad + pos: -59.5,-30.5 parent: 1 - - uid: 38049 + - uid: 42647 components: - type: Transform - pos: 10.5,-56.5 + rot: 3.141592653589793 rad + pos: -59.5,-31.5 parent: 1 - - uid: 38050 + - uid: 42648 components: - type: Transform - pos: 10.5,-55.5 + rot: 3.141592653589793 rad + pos: -59.5,-32.5 parent: 1 - - uid: 38051 + - uid: 42649 components: - type: Transform - pos: 10.5,-54.5 + rot: 3.141592653589793 rad + pos: -59.5,-33.5 parent: 1 - - uid: 38052 + - uid: 42650 components: - type: Transform - pos: 10.5,-53.5 + rot: 3.141592653589793 rad + pos: -59.5,-34.5 parent: 1 - - uid: 38053 + - uid: 42651 components: - type: Transform - pos: 10.5,-52.5 + rot: 3.141592653589793 rad + pos: -59.5,-35.5 parent: 1 - - uid: 38058 + - uid: 42652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-36.5 parent: 1 - - uid: 38059 + - uid: 42653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,-37.5 parent: 1 - - uid: 38060 + - uid: 42654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-59.5 + rot: 1.5707963267948966 rad + pos: -60.5,-38.5 parent: 1 - - uid: 38061 + - uid: 42655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-59.5 + rot: 1.5707963267948966 rad + pos: -61.5,-38.5 parent: 1 - - uid: 38062 + - uid: 42656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-59.5 + rot: 1.5707963267948966 rad + pos: -62.5,-38.5 parent: 1 - - uid: 38063 + - uid: 42657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-59.5 + rot: 1.5707963267948966 rad + pos: -63.5,-38.5 parent: 1 - - uid: 38064 + - uid: 42658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-59.5 + rot: 1.5707963267948966 rad + pos: -64.5,-38.5 parent: 1 - - uid: 38065 + - uid: 42659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-59.5 + rot: 1.5707963267948966 rad + pos: -65.5,-38.5 parent: 1 - - uid: 38066 + - uid: 42660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-59.5 + rot: 1.5707963267948966 rad + pos: -66.5,-38.5 parent: 1 - - uid: 38067 + - uid: 42661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-59.5 + rot: 1.5707963267948966 rad + pos: -67.5,-38.5 parent: 1 - - uid: 38069 + - uid: 42662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-59.5 + rot: 1.5707963267948966 rad + pos: -68.5,-38.5 parent: 1 - - uid: 38070 + - uid: 42663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-59.5 + rot: 1.5707963267948966 rad + pos: -69.5,-38.5 parent: 1 - - uid: 38071 + - uid: 42664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-59.5 + rot: 1.5707963267948966 rad + pos: -70.5,-38.5 parent: 1 - - uid: 38072 + - uid: 42665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-59.5 + rot: 1.5707963267948966 rad + pos: -71.5,-38.5 parent: 1 - - uid: 38372 + - uid: 42666 components: - type: Transform - pos: -42.5,25.5 + rot: 1.5707963267948966 rad + pos: -72.5,-38.5 parent: 1 - - uid: 38406 + - uid: 42667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,36.5 + rot: 1.5707963267948966 rad + pos: -73.5,-38.5 parent: 1 - - uid: 38407 + - uid: 42668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,36.5 + pos: -74.5,-39.5 parent: 1 - - uid: 38408 + - uid: 42669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,36.5 + pos: -74.5,-40.5 parent: 1 - - uid: 38409 + - uid: 42670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,36.5 + pos: -74.5,-41.5 parent: 1 - - uid: 38410 + - uid: 42671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,36.5 + pos: -74.5,-42.5 parent: 1 - - uid: 38411 + - uid: 42672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,36.5 + pos: -74.5,-43.5 parent: 1 - - uid: 38412 + - uid: 42673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,36.5 + pos: -74.5,-44.5 parent: 1 - - uid: 38413 + - uid: 42674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,36.5 + pos: -74.5,-45.5 parent: 1 - - uid: 38414 + - uid: 42675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,36.5 + pos: -74.5,-46.5 parent: 1 - - uid: 38415 + - uid: 42676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,36.5 + pos: -74.5,-47.5 parent: 1 - - uid: 38419 + - uid: 42677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,36.5 + pos: -74.5,-48.5 parent: 1 - - uid: 38420 + - uid: 42678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,36.5 + pos: -74.5,-49.5 parent: 1 - - uid: 38421 + - uid: 42679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,36.5 + pos: -74.5,-50.5 parent: 1 - - uid: 38422 + - uid: 42680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,36.5 + pos: -74.5,-51.5 parent: 1 - - uid: 38423 + - uid: 42681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,36.5 + pos: -74.5,-52.5 parent: 1 - - uid: 38424 + - uid: 42682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,36.5 + pos: -74.5,-53.5 parent: 1 - - uid: 38425 + - uid: 42683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,36.5 + pos: -74.5,-54.5 parent: 1 - - uid: 38426 + - uid: 42684 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,36.5 + pos: -75.5,-55.5 parent: 1 - - uid: 38427 + - uid: 42685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,36.5 + pos: -76.5,-55.5 parent: 1 - - uid: 38428 + - uid: 42686 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,36.5 + pos: -77.5,-55.5 parent: 1 - - uid: 38429 + - uid: 42687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,36.5 + rot: 3.141592653589793 rad + pos: -78.5,-56.5 parent: 1 - - uid: 38430 + - uid: 42688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,36.5 + rot: 3.141592653589793 rad + pos: -78.5,-57.5 parent: 1 - - uid: 38431 + - uid: 42689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,36.5 + rot: 3.141592653589793 rad + pos: -78.5,-58.5 parent: 1 - - uid: 38432 + - uid: 42690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,36.5 + rot: 1.5707963267948966 rad + pos: -79.5,-59.5 parent: 1 - - uid: 38433 + - uid: 42691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,36.5 + rot: 1.5707963267948966 rad + pos: -80.5,-59.5 parent: 1 - - uid: 38439 + - uid: 42692 components: - type: Transform - pos: -17.5,32.5 + rot: 1.5707963267948966 rad + pos: -81.5,-59.5 parent: 1 - - uid: 38440 + - uid: 42693 components: - type: Transform - pos: -17.5,33.5 + rot: 1.5707963267948966 rad + pos: -82.5,-59.5 parent: 1 - - uid: 38441 + - uid: 42694 components: - type: Transform - pos: -17.5,34.5 + rot: 1.5707963267948966 rad + pos: -83.5,-59.5 parent: 1 - - uid: 38442 + - uid: 42695 components: - type: Transform - pos: -17.5,35.5 + rot: 1.5707963267948966 rad + pos: -84.5,-59.5 parent: 1 - - uid: 38443 + - uid: 42696 components: - type: Transform - pos: -17.5,30.5 + rot: 1.5707963267948966 rad + pos: -85.5,-59.5 parent: 1 - - uid: 38444 + - uid: 42697 components: - type: Transform - pos: -17.5,29.5 + rot: 1.5707963267948966 rad + pos: -86.5,-59.5 parent: 1 - - uid: 38445 + - uid: 42698 components: - type: Transform - pos: -17.5,28.5 + rot: 1.5707963267948966 rad + pos: -87.5,-59.5 parent: 1 - - uid: 38446 + - uid: 42699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 + rot: 1.5707963267948966 rad + pos: -88.5,-59.5 parent: 1 - - uid: 38447 + - uid: 42700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,34.5 + rot: 1.5707963267948966 rad + pos: -89.5,-59.5 parent: 1 - - uid: 38448 + - uid: 42701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,33.5 + rot: 1.5707963267948966 rad + pos: -90.5,-59.5 parent: 1 - - uid: 38449 + - uid: 42702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 + rot: 1.5707963267948966 rad + pos: -91.5,-59.5 parent: 1 - - uid: 38450 + - uid: 42704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,31.5 + rot: 1.5707963267948966 rad + pos: -55.5,-28.5 parent: 1 - - uid: 38451 + - uid: 42705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,30.5 + rot: 1.5707963267948966 rad + pos: -54.5,-28.5 parent: 1 - - uid: 38452 + - uid: 42706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,29.5 + rot: 1.5707963267948966 rad + pos: -53.5,-28.5 parent: 1 - - uid: 38453 + - uid: 42710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 + rot: 1.5707963267948966 rad + pos: -51.5,-36.5 parent: 1 - - uid: 38454 + - uid: 42711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,27.5 + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 parent: 1 - - uid: 38455 + - uid: 42712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,26.5 + rot: 1.5707963267948966 rad + pos: -48.5,-36.5 parent: 1 - - uid: 38456 + - uid: 42713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-59.5 + rot: 1.5707963267948966 rad + pos: -46.5,-36.5 parent: 1 - - uid: 38457 + - uid: 42714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,24.5 + rot: 1.5707963267948966 rad + pos: -45.5,-36.5 parent: 1 - - uid: 38458 + - uid: 42715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,23.5 + pos: -44.5,-37.5 parent: 1 - - uid: 38459 + - uid: 42716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,22.5 + pos: -44.5,-38.5 parent: 1 - - uid: 38460 + - uid: 42717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,21.5 + pos: -47.5,-37.5 parent: 1 - - uid: 38461 + - uid: 42718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -47.5,-38.5 parent: 1 - - uid: 38462 + - uid: 42719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,2.5 + pos: -50.5,-37.5 parent: 1 - - uid: 38463 + - uid: 42720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,2.5 + pos: -50.5,-38.5 parent: 1 - - uid: 38464 + - uid: 42726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,2.5 + rot: 3.141592653589793 rad + pos: -45.5,-47.5 parent: 1 - - uid: 38465 + - uid: 42727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,2.5 + rot: 3.141592653589793 rad + pos: -45.5,-46.5 parent: 1 - - uid: 38466 + - uid: 42728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,2.5 + rot: 3.141592653589793 rad + pos: -45.5,-45.5 parent: 1 - - uid: 38467 + - uid: 42729 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,2.5 + pos: -46.5,-44.5 parent: 1 - - uid: 38468 + - uid: 42730 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,2.5 + pos: -47.5,-44.5 parent: 1 - - uid: 38469 + - uid: 42731 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,2.5 + pos: -48.5,-44.5 parent: 1 - - uid: 38470 + - uid: 42735 components: - type: Transform - pos: -27.5,1.5 + rot: 3.141592653589793 rad + pos: -21.5,-71.5 parent: 1 - - uid: 38471 + - uid: 42738 components: - type: Transform - pos: -27.5,0.5 + rot: -1.5707963267948966 rad + pos: -20.5,-70.5 parent: 1 - - uid: 38472 + - uid: 42739 components: - type: Transform - pos: -27.5,-0.5 + rot: -1.5707963267948966 rad + pos: -19.5,-70.5 parent: 1 - - uid: 38473 + - uid: 42740 components: - type: Transform - pos: -27.5,-1.5 + rot: -1.5707963267948966 rad + pos: -18.5,-70.5 parent: 1 - - uid: 38870 + - uid: 42741 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-59.5 + pos: -17.5,-70.5 parent: 1 - - uid: 38871 + - uid: 42742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-59.5 + rot: 3.141592653589793 rad + pos: -16.5,-69.5 parent: 1 - - uid: 38872 + - uid: 42743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-59.5 + rot: 3.141592653589793 rad + pos: -16.5,-68.5 parent: 1 - - uid: 38873 + - uid: 42744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-59.5 + rot: 3.141592653589793 rad + pos: -16.5,-67.5 parent: 1 - - uid: 38875 + - uid: 42745 components: - type: Transform - pos: -12.5,-49.5 + rot: 3.141592653589793 rad + pos: -16.5,-66.5 parent: 1 - - uid: 38876 + - uid: 42746 components: - type: Transform - pos: -12.5,-50.5 + rot: 3.141592653589793 rad + pos: -16.5,-65.5 parent: 1 - - uid: 38877 + - uid: 42747 components: - type: Transform - pos: -12.5,-51.5 + rot: 3.141592653589793 rad + pos: -16.5,-64.5 parent: 1 - - uid: 38878 + - uid: 42748 components: - type: Transform - pos: -12.5,-52.5 + rot: 3.141592653589793 rad + pos: -16.5,-63.5 parent: 1 - - uid: 38879 + - uid: 42749 components: - type: Transform - pos: -12.5,-53.5 + rot: 3.141592653589793 rad + pos: -16.5,-62.5 parent: 1 - - uid: 38880 + - uid: 42750 components: - type: Transform - pos: -12.5,-54.5 + rot: 3.141592653589793 rad + pos: -16.5,-61.5 parent: 1 - - uid: 38881 + - uid: 42751 components: - type: Transform - pos: -12.5,-55.5 + rot: 3.141592653589793 rad + pos: -16.5,-60.5 parent: 1 - - uid: 38882 + - uid: 42752 components: - type: Transform - pos: -12.5,-56.5 + rot: 3.141592653589793 rad + pos: -16.5,-59.5 parent: 1 - - uid: 38883 + - uid: 42753 components: - type: Transform - pos: -12.5,-57.5 + rot: 3.141592653589793 rad + pos: -16.5,-58.5 parent: 1 - - uid: 38884 + - uid: 42754 components: - type: Transform - pos: -12.5,-58.5 + rot: 3.141592653589793 rad + pos: -16.5,-57.5 parent: 1 - - uid: 38885 + - uid: 42755 components: - type: Transform - pos: -12.5,-59.5 + rot: 3.141592653589793 rad + pos: -16.5,-56.5 parent: 1 - - uid: 38886 + - uid: 42756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-61.5 + rot: 3.141592653589793 rad + pos: -16.5,-55.5 parent: 1 - - uid: 38887 + - uid: 42757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-61.5 + rot: 3.141592653589793 rad + pos: -16.5,-54.5 parent: 1 - - uid: 38888 + - uid: 42758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-61.5 + rot: 3.141592653589793 rad + pos: -16.5,-53.5 parent: 1 - - uid: 40095 + - uid: 42759 components: - type: Transform - pos: 10.5,-51.5 + rot: 3.141592653589793 rad + pos: -16.5,-52.5 parent: 1 - - uid: 40273 + - uid: 42760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-46.5 + rot: 3.141592653589793 rad + pos: -16.5,-51.5 parent: 1 - - uid: 40274 + - uid: 42763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-46.5 + rot: 3.141592653589793 rad + pos: -15.5,-48.5 parent: 1 - - uid: 40275 + - uid: 42764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-46.5 + rot: 3.141592653589793 rad + pos: -15.5,-49.5 parent: 1 - - uid: 40276 + - uid: 42767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,-48.5 parent: 1 - - uid: 40277 + - uid: 42768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,-49.5 parent: 1 - - uid: 40278 + - uid: 42769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,-50.5 parent: 1 - - uid: 40279 + - uid: 42770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,-51.5 parent: 1 - - uid: 40280 + - uid: 42771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,-52.5 parent: 1 - - uid: 40281 + - uid: 42772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-45.5 + rot: 1.5707963267948966 rad + pos: -6.5,-53.5 parent: 1 - - uid: 40282 + - uid: 42783 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-44.5 + pos: 23.5,-37.5 parent: 1 - - uid: 40283 + - uid: 42784 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-43.5 + pos: 24.5,-37.5 parent: 1 - - uid: 40284 + - uid: 42785 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-42.5 + pos: 25.5,-38.5 parent: 1 - - uid: 40285 + - uid: 42786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,25.5 + pos: 27.5,-39.5 parent: 1 - - uid: 40286 + - uid: 42787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,25.5 + pos: 26.5,-37.5 parent: 1 - - uid: 40287 + - uid: 42788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,25.5 + pos: 26.5,-36.5 parent: 1 - - uid: 40288 + - uid: 42789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,25.5 + pos: 26.5,-35.5 parent: 1 - - uid: 40289 + - uid: 42791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,-35.5 parent: 1 - - uid: 40290 + - uid: 42792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,25.5 + pos: 18.5,-34.5 parent: 1 - - uid: 40291 + - uid: 42793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,25.5 + pos: 19.5,-34.5 parent: 1 - - uid: 40292 + - uid: 42794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,25.5 + pos: 20.5,-34.5 parent: 1 - - uid: 40293 + - uid: 42795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,25.5 + pos: 21.5,-34.5 parent: 1 - - uid: 40294 + - uid: 42796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,25.5 + pos: 22.5,-34.5 parent: 1 - - uid: 40295 + - uid: 42797 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,25.5 + pos: 23.5,-34.5 parent: 1 - - uid: 40296 + - uid: 42798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,25.5 + pos: 24.5,-34.5 parent: 1 - - uid: 40297 + - uid: 42799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,25.5 + pos: 25.5,-34.5 parent: 1 - - uid: 40298 + - uid: 42802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,25.5 + pos: 14.5,-36.5 parent: 1 - - uid: 40299 + - uid: 42803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 + rot: -1.5707963267948966 rad + pos: 15.5,-35.5 parent: 1 - - uid: 40300 + - uid: 42804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,25.5 + rot: -1.5707963267948966 rad + pos: 16.5,-35.5 parent: 1 - - uid: 40301 + - uid: 42810 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: -32.5,-14.5 parent: 1 - - uid: 40302 + - uid: 42811 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,25.5 + pos: -31.5,-14.5 parent: 1 - - uid: 40303 + - uid: 42812 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,25.5 + pos: -30.5,-14.5 parent: 1 - - uid: 40304 + - uid: 42813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,26.5 + pos: -29.5,-15.5 parent: 1 - - uid: 40305 + - uid: 42814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,26.5 + pos: -29.5,-16.5 parent: 1 - - uid: 41393 + - uid: 42815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,42.5 + pos: -29.5,-17.5 parent: 1 - - uid: 41394 + - uid: 42816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,42.5 + pos: -29.5,-18.5 parent: 1 - - uid: 41395 + - uid: 42817 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 1 + - uid: 42818 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,42.5 + pos: -30.5,-20.5 parent: 1 - - uid: 41396 + - uid: 42819 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,42.5 + pos: -31.5,-20.5 parent: 1 - - uid: 41397 + - uid: 42820 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,42.5 + pos: -32.5,-20.5 parent: 1 - - uid: 41398 + - uid: 42821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,42.5 + pos: -33.5,-20.5 parent: 1 - - uid: 41399 + - uid: 42822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,-19.5 parent: 1 - - uid: 41400 + - uid: 42823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,22.5 + rot: 3.141592653589793 rad + pos: -34.5,-18.5 parent: 1 - - uid: 41401 + - uid: 42826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,22.5 + rot: 3.141592653589793 rad + pos: -20.5,-18.5 parent: 1 - - uid: 41402 + - uid: 42827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,21.5 + rot: 3.141592653589793 rad + pos: -20.5,-19.5 parent: 1 - - uid: 41407 + - uid: 42828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-14.5 + rot: 3.141592653589793 rad + pos: -20.5,-20.5 parent: 1 - - uid: 41408 + - uid: 42829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,22.5 + rot: 3.141592653589793 rad + pos: -20.5,-21.5 parent: 1 - - uid: 41409 + - uid: 42830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,22.5 + pos: -19.5,-22.5 parent: 1 - - uid: 41410 + - uid: 42831 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,22.5 + pos: -18.5,-22.5 parent: 1 - - uid: 41411 + - uid: 42836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-1.5 + parent: 1 + - uid: 42837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,22.5 + pos: -31.5,-0.5 parent: 1 - - uid: 41412 + - uid: 42838 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 42839 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,22.5 + pos: -31.5,-2.5 parent: 1 - - uid: 41413 + - uid: 42840 components: - type: Transform - pos: -29.5,21.5 + pos: -32.5,1.5 parent: 1 - - uid: 41414 + - uid: 42841 components: - type: Transform - pos: -29.5,20.5 + pos: -32.5,2.5 parent: 1 - - uid: 41426 + - uid: 42842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-15.5 + pos: -32.5,3.5 parent: 1 - - uid: 41427 + - uid: 42843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-15.5 + pos: -32.5,4.5 parent: 1 - - uid: 41428 + - uid: 42850 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,-15.5 + pos: -29.5,5.5 parent: 1 - - uid: 41429 + - uid: 42851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,-15.5 + pos: -28.5,5.5 parent: 1 - - uid: 41430 + - uid: 42852 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,-14.5 + pos: -27.5,6.5 parent: 1 - - uid: 41431 + - uid: 42853 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,-13.5 + pos: -27.5,7.5 parent: 1 - - uid: 41432 + - uid: 42854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-12.5 + rot: 3.141592653589793 rad + pos: -27.5,8.5 parent: 1 - - uid: 41433 + - uid: 42855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-12.5 + rot: 3.141592653589793 rad + pos: -27.5,9.5 parent: 1 - - uid: 41434 + - uid: 42856 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,-12.5 + pos: -28.5,10.5 parent: 1 - - uid: 41435 + - uid: 42857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-12.5 + pos: -29.5,11.5 parent: 1 - - uid: 41436 + - uid: 42858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-12.5 + pos: -29.5,12.5 parent: 1 - - uid: 41437 + - uid: 42865 components: - type: Transform - pos: -111.5,-14.5 + pos: 8.5,-24.5 parent: 1 - - uid: 41438 + - uid: 42866 components: - type: Transform - pos: -105.5,-16.5 + pos: 10.5,-24.5 parent: 1 - - uid: 41439 + - uid: 42867 components: - type: Transform - pos: -105.5,-17.5 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 parent: 1 - - uid: 41440 + - uid: 42868 components: - type: Transform - pos: -105.5,-18.5 + rot: 3.141592653589793 rad + pos: 10.5,-22.5 parent: 1 - - uid: 41441 + - uid: 42869 components: - type: Transform - pos: -105.5,-19.5 + rot: 3.141592653589793 rad + pos: 10.5,-21.5 parent: 1 - - uid: 41442 + - uid: 42870 components: - type: Transform - pos: -105.5,-20.5 + rot: 3.141592653589793 rad + pos: 10.5,-20.5 parent: 1 - - uid: 41443 + - uid: 42871 components: - type: Transform - pos: -105.5,-21.5 + rot: 3.141592653589793 rad + pos: 10.5,-19.5 parent: 1 - - uid: 41444 + - uid: 42872 components: - type: Transform - pos: -105.5,-22.5 + rot: 3.141592653589793 rad + pos: 10.5,-18.5 parent: 1 - - uid: 41445 + - uid: 42873 components: - type: Transform - pos: -105.5,-23.5 + rot: 3.141592653589793 rad + pos: 10.5,-17.5 parent: 1 - - uid: 41446 + - uid: 42874 components: - type: Transform - pos: -105.5,-24.5 + rot: 3.141592653589793 rad + pos: 10.5,-16.5 parent: 1 - - uid: 41453 + - uid: 42875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-24.5 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 parent: 1 - - uid: 41454 + - uid: 42876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,-25.5 + rot: 3.141592653589793 rad + pos: 10.5,-14.5 parent: 1 - - uid: 41455 + - uid: 42877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-25.5 + rot: 3.141592653589793 rad + pos: 10.5,-13.5 parent: 1 - - uid: 41456 + - uid: 42901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-26.5 + rot: 3.141592653589793 rad + pos: 13.5,-15.5 parent: 1 - - uid: 41457 + - uid: 42902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,-26.5 + rot: 3.141592653589793 rad + pos: 13.5,-14.5 parent: 1 - - uid: 41458 + - uid: 42903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-45.5 + rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 1 - - uid: 41459 + - uid: 42904 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-45.5 + pos: 12.5,-12.5 parent: 1 - - uid: 41460 + - uid: 42905 components: - type: Transform - pos: -53.5,-44.5 + pos: 11.5,-11.5 parent: 1 - - uid: 41461 + - uid: 42906 components: - type: Transform - pos: -53.5,-43.5 + pos: 11.5,-10.5 parent: 1 - - uid: 41462 + - uid: 42907 components: - type: Transform - pos: -53.5,-42.5 + pos: 11.5,-9.5 parent: 1 - - uid: 41463 + - uid: 42908 components: - type: Transform - pos: -53.5,-41.5 + pos: 11.5,-8.5 parent: 1 - - uid: 41464 + - uid: 42909 components: - type: Transform - pos: -53.5,-40.5 + pos: 11.5,-7.5 parent: 1 - - uid: 41465 + - uid: 42910 components: - type: Transform - pos: -53.5,-39.5 + pos: 11.5,-6.5 parent: 1 - - uid: 41466 + - uid: 42911 components: - type: Transform - pos: -53.5,-38.5 + pos: 11.5,-5.5 parent: 1 - - uid: 41467 + - uid: 42912 components: - type: Transform - pos: -53.5,-37.5 + pos: 11.5,-4.5 parent: 1 - - uid: 41468 + - uid: 42913 components: - type: Transform - pos: -53.5,-36.5 + pos: 11.5,-3.5 parent: 1 - - uid: 41469 + - uid: 42914 components: - type: Transform - pos: -53.5,-35.5 + pos: 11.5,-2.5 parent: 1 - - uid: 41470 + - uid: 42915 components: - type: Transform - pos: -53.5,-34.5 + pos: 11.5,-1.5 parent: 1 - - uid: 41471 + - uid: 42916 components: - type: Transform - pos: -53.5,-33.5 + pos: 11.5,-0.5 parent: 1 - - uid: 41472 + - uid: 42917 components: - type: Transform - pos: -53.5,-32.5 + pos: 11.5,0.5 parent: 1 - - uid: 41473 + - uid: 42918 components: - type: Transform - pos: -53.5,-31.5 + pos: 11.5,1.5 parent: 1 - - uid: 41474 + - uid: 42919 components: - type: Transform - pos: -53.5,-30.5 + pos: 11.5,2.5 parent: 1 - - uid: 41475 + - uid: 42920 components: - type: Transform - pos: -53.5,-29.5 + pos: 11.5,3.5 parent: 1 - - uid: 41476 + - uid: 42921 components: - type: Transform - pos: -53.5,-28.5 + pos: 11.5,4.5 parent: 1 - - uid: 41477 + - uid: 42922 components: - type: Transform - pos: -53.5,-27.5 + pos: 11.5,5.5 parent: 1 - - uid: 41480 + - uid: 42923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-26.5 + rot: -1.5707963267948966 rad + pos: 10.5,6.5 parent: 1 - - uid: 41481 + - uid: 42924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-26.5 + rot: -1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 41482 + - uid: 42925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-26.5 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 parent: 1 - - uid: 41483 + - uid: 42926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-26.5 + rot: -1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 41484 + - uid: 42927 components: - type: Transform - pos: -48.5,-25.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 41485 + - uid: 42928 components: - type: Transform - pos: -48.5,-24.5 + rot: -1.5707963267948966 rad + pos: 3.5,6.5 parent: 1 - - uid: 41486 + - uid: 42929 components: - type: Transform - pos: -48.5,-23.5 + rot: -1.5707963267948966 rad + pos: 2.5,6.5 parent: 1 - - uid: 41487 + - uid: 42930 components: - type: Transform - pos: -48.5,-22.5 + rot: -1.5707963267948966 rad + pos: 0.5,6.5 parent: 1 - - uid: 41488 + - uid: 42931 components: - type: Transform - pos: -48.5,-21.5 + rot: -1.5707963267948966 rad + pos: -0.5,6.5 parent: 1 - - uid: 41489 + - uid: 42932 components: - type: Transform - pos: -48.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,6.5 parent: 1 - - uid: 41490 + - uid: 42933 components: - type: Transform - pos: -48.5,-19.5 + rot: -1.5707963267948966 rad + pos: -3.5,6.5 parent: 1 - - uid: 42048 + - uid: 42934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 42935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 42936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 42937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - uid: 42938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + - uid: 42939 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-26.5 + pos: -10.5,7.5 parent: 1 - - uid: 42049 + - uid: 42940 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: -6.5,7.5 parent: 1 - - uid: 42050 + - uid: 42941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-28.5 + rot: 3.141592653589793 rad + pos: -2.5,7.5 parent: 1 - - uid: 42051 + - uid: 42942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-28.5 + rot: 3.141592653589793 rad + pos: 1.5,7.5 parent: 1 - - uid: 42052 + - uid: 42943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-28.5 + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + - uid: 42944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 parent: 1 - proto: DisposalTagger entities: @@ -104815,6 +106979,18 @@ entities: rot: -1.5707963267948966 rad pos: -100.5,-24.5 parent: 1 + - uid: 42590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-87.5 + parent: 1 + - uid: 42790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 1 - proto: DisposalTrunk entities: - uid: 3061 @@ -104985,6 +107161,12 @@ entities: - type: Transform pos: 24.5,-24.5 parent: 1 + - uid: 14352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 - uid: 14366 components: - type: Transform @@ -105140,6 +107322,11 @@ entities: - type: Transform pos: 12.5,-44.5 parent: 1 + - uid: 21349 + components: + - type: Transform + pos: -54.5,13.5 + parent: 1 - uid: 28815 components: - type: Transform @@ -105310,6 +107497,221 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-24.5 parent: 1 + - uid: 42477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,4.5 + parent: 1 + - uid: 42478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,4.5 + parent: 1 + - uid: 42491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,15.5 + parent: 1 + - uid: 42501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,31.5 + parent: 1 + - uid: 42511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,33.5 + parent: 1 + - uid: 42527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,24.5 + parent: 1 + - uid: 42534 + components: + - type: Transform + pos: -118.5,1.5 + parent: 1 + - uid: 42567 + components: + - type: Transform + pos: -114.5,-15.5 + parent: 1 + - uid: 42568 + components: + - type: Transform + pos: -108.5,-15.5 + parent: 1 + - uid: 42575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-71.5 + parent: 1 + - uid: 42589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-88.5 + parent: 1 + - uid: 42703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 1 + - uid: 42721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-39.5 + parent: 1 + - uid: 42722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-39.5 + parent: 1 + - uid: 42723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-39.5 + parent: 1 + - uid: 42725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-48.5 + parent: 1 + - uid: 42733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-72.5 + parent: 1 + - uid: 42734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-72.5 + parent: 1 + - uid: 42765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 1 + - uid: 42773 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 1 + - uid: 42774 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 1 + - uid: 42775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 1 + - uid: 42776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 1 + - uid: 42805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 1 + - uid: 42824 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 1 + - uid: 42832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 1 + - uid: 42833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + - uid: 42844 + components: + - type: Transform + pos: -30.5,14.5 + parent: 1 + - uid: 42859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-25.5 + parent: 1 + - uid: 42860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1 + - uid: 42878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 1 + - uid: 42879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + - uid: 42880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 42881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 42882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 42883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 42900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1 - proto: DisposalUnit entities: - uid: 1473 @@ -105715,6 +108117,24 @@ entities: rot: 1.5707963267948966 rad pos: -105.5,-15.5 parent: 1 + - uid: 42566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,-16.5 + parent: 1 + - uid: 42732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-72.5 + parent: 1 + - uid: 42779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-38.5 + parent: 1 - proto: DogBed entities: - uid: 827 @@ -106193,7 +108613,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -106364,7 +108783,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -106443,7 +108861,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -106580,6 +108997,18 @@ entities: - type: Transform pos: -114.40862,1.6014926 parent: 1 +- proto: DrinkTonicWaterBottleFull + entities: + - uid: 42423 + components: + - type: Transform + pos: -97.312,-66.38646 + parent: 1 + - uid: 42445 + components: + - type: Transform + pos: -97.70783,-66.17798 + parent: 1 - proto: DrinkVacuumFlask entities: - uid: 17538 @@ -106715,7 +109144,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -109123,8 +111551,6 @@ entities: - 29650 - 143 - 212 - - type: AtmosDevice - joinedGrid: 1 - uid: 61 components: - type: Transform @@ -109142,8 +111568,6 @@ entities: - 41782 - 27338 - 27339 - - type: AtmosDevice - joinedGrid: 1 - uid: 68 components: - type: Transform @@ -109177,8 +111601,6 @@ entities: - 29659 - 29656 - 29653 - - type: AtmosDevice - joinedGrid: 1 - uid: 96 components: - type: Transform @@ -109192,8 +111614,6 @@ entities: - 41492 - 41542 - 41543 - - type: AtmosDevice - joinedGrid: 1 - uid: 98 components: - type: Transform @@ -109211,8 +111631,6 @@ entities: - 27333 - 27334 - 27335 - - type: AtmosDevice - joinedGrid: 1 - uid: 99 components: - type: Transform @@ -109224,8 +111642,6 @@ entities: - 29650 - 27346 - 27345 - - type: AtmosDevice - joinedGrid: 1 - uid: 144 components: - type: Transform @@ -109238,8 +111654,6 @@ entities: - 29654 - 27341 - 63 - - type: AtmosDevice - joinedGrid: 1 - uid: 520 components: - type: Transform @@ -109263,8 +111677,6 @@ entities: - 14554 - 29608 - 30061 - - type: AtmosDevice - joinedGrid: 1 - uid: 1585 components: - type: Transform @@ -109278,8 +111690,6 @@ entities: - 30199 - 29700 - 22391 - - type: AtmosDevice - joinedGrid: 1 - uid: 4090 components: - type: Transform @@ -109296,8 +111706,6 @@ entities: - 41491 - 41540 - 41541 - - type: AtmosDevice - joinedGrid: 1 - uid: 4740 components: - type: Transform @@ -109315,8 +111723,6 @@ entities: - 29808 - 29610 - 14577 - - type: AtmosDevice - joinedGrid: 1 - uid: 5124 components: - type: Transform @@ -109329,8 +111735,6 @@ entities: - 29604 - 29916 - 10518 - - type: AtmosDevice - joinedGrid: 1 - uid: 5456 components: - type: Transform @@ -109343,8 +111747,6 @@ entities: - 29900 - 29916 - 29797 - - type: AtmosDevice - joinedGrid: 1 - uid: 6118 components: - type: Transform @@ -109376,8 +111778,6 @@ entities: - 22345 - 22346 - 22347 - - type: AtmosDevice - joinedGrid: 1 - uid: 6689 components: - type: Transform @@ -109399,8 +111799,6 @@ entities: - 41580 - 29920 - 41583 - - type: AtmosDevice - joinedGrid: 1 - uid: 8102 components: - type: Transform @@ -109419,8 +111817,6 @@ entities: - 29795 - 29575 - 29794 - - type: AtmosDevice - joinedGrid: 1 - uid: 8313 components: - type: Transform @@ -109436,8 +111832,6 @@ entities: - 29676 - 30073 - 30093 - - type: AtmosDevice - joinedGrid: 1 - uid: 9856 components: - type: Transform @@ -109453,8 +111847,6 @@ entities: - 29614 - 29616 - 29615 - - type: AtmosDevice - joinedGrid: 1 - uid: 12147 components: - type: Transform @@ -109474,8 +111866,6 @@ entities: - 29601 - 14554 - 30029 - - type: AtmosDevice - joinedGrid: 1 - uid: 12232 components: - type: Transform @@ -109501,8 +111891,6 @@ entities: - 22318 - 29675 - 22322 - - type: AtmosDevice - joinedGrid: 1 - uid: 13960 components: - type: Transform @@ -109528,8 +111916,6 @@ entities: - 11375 - 22302 - 22303 - - type: AtmosDevice - joinedGrid: 1 - uid: 13988 components: - type: Transform @@ -109542,8 +111928,6 @@ entities: - 22321 - 29779 - 29844 - - type: AtmosDevice - joinedGrid: 1 - uid: 13997 components: - type: Transform @@ -109556,8 +111940,6 @@ entities: - 22320 - 29779 - 30115 - - type: AtmosDevice - joinedGrid: 1 - uid: 14067 components: - type: MetaData @@ -109594,8 +111976,6 @@ entities: - 41803 - 41802 - 41801 - - type: AtmosDevice - joinedGrid: 1 - uid: 14068 components: - type: Transform @@ -109630,8 +112010,6 @@ entities: - 12070 - 12071 - 12072 - - type: AtmosDevice - joinedGrid: 1 - uid: 14069 components: - type: Transform @@ -109658,8 +112036,6 @@ entities: - 29660 - 27336 - 27337 - - type: AtmosDevice - joinedGrid: 1 - uid: 14555 components: - type: Transform @@ -109677,8 +112053,6 @@ entities: - 29939 - 4385 - 13502 - - type: AtmosDevice - joinedGrid: 1 - uid: 14568 components: - type: Transform @@ -109689,8 +112063,6 @@ entities: devices: - 29601 - 30054 - - type: AtmosDevice - joinedGrid: 1 - uid: 14572 components: - type: Transform @@ -109703,8 +112075,6 @@ entities: - 30191 - 30207 - 29834 - - type: AtmosDevice - joinedGrid: 1 - uid: 15030 components: - type: Transform @@ -109729,8 +112099,6 @@ entities: - 12078 - 12077 - 12076 - - type: AtmosDevice - joinedGrid: 1 - uid: 16488 components: - type: Transform @@ -109758,8 +112126,6 @@ entities: - 30270 - 30288 - 41661 - - type: AtmosDevice - joinedGrid: 1 - uid: 16627 components: - type: Transform @@ -109787,8 +112153,6 @@ entities: - 30113 - 41520 - 41517 - - type: AtmosDevice - joinedGrid: 1 - uid: 16629 components: - type: Transform @@ -109816,8 +112180,6 @@ entities: - 30324 - 41520 - 41518 - - type: AtmosDevice - joinedGrid: 1 - uid: 16631 components: - type: Transform @@ -109843,8 +112205,6 @@ entities: - 41684 - 29709 - 22374 - - type: AtmosDevice - joinedGrid: 1 - uid: 16632 components: - type: Transform @@ -109859,8 +112219,6 @@ entities: - 33738 - 12843 - 12718 - - type: AtmosDevice - joinedGrid: 1 - uid: 27562 components: - type: Transform @@ -109878,8 +112236,6 @@ entities: - 29563 - 29803 - 29574 - - type: AtmosDevice - joinedGrid: 1 - uid: 29583 components: - type: Transform @@ -109892,8 +112248,6 @@ entities: - 29881 - 22363 - 29571 - - type: AtmosDevice - joinedGrid: 1 - uid: 29724 components: - type: Transform @@ -109907,8 +112261,6 @@ entities: - 27342 - 29852 - 29725 - - type: AtmosDevice - joinedGrid: 1 - uid: 29784 components: - type: Transform @@ -109923,8 +112275,6 @@ entities: - 29785 - 28519 - 29859 - - type: AtmosDevice - joinedGrid: 1 - uid: 29787 components: - type: Transform @@ -109939,8 +112289,6 @@ entities: - 29731 - 29765 - 29730 - - type: AtmosDevice - joinedGrid: 1 - uid: 29789 components: - type: Transform @@ -109958,8 +112306,6 @@ entities: - 22324 - 29556 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29861 components: - type: Transform @@ -109980,8 +112326,6 @@ entities: - 22358 - 29569 - 33509 - - type: AtmosDevice - joinedGrid: 1 - uid: 29864 components: - type: Transform @@ -110009,8 +112353,6 @@ entities: - 22358 - 22359 - 22360 - - type: AtmosDevice - joinedGrid: 1 - uid: 29875 components: - type: Transform @@ -110024,8 +112366,6 @@ entities: - 20075 - 30084 - 30083 - - type: AtmosDevice - joinedGrid: 1 - uid: 29876 components: - type: Transform @@ -110037,8 +112377,6 @@ entities: - 29564 - 29569 - 29867 - - type: AtmosDevice - joinedGrid: 1 - uid: 29877 components: - type: Transform @@ -110049,8 +112387,6 @@ entities: - 29564 - 29569 - 29868 - - type: AtmosDevice - joinedGrid: 1 - uid: 29878 components: - type: Transform @@ -110061,8 +112397,6 @@ entities: - 29564 - 29569 - 29869 - - type: AtmosDevice - joinedGrid: 1 - uid: 29880 components: - type: Transform @@ -110090,8 +112424,6 @@ entities: - 29573 - 29572 - 29866 - - type: AtmosDevice - joinedGrid: 1 - uid: 29884 components: - type: Transform @@ -110110,8 +112442,6 @@ entities: - 28519 - 29557 - 29730 - - type: AtmosDevice - joinedGrid: 1 - uid: 29886 components: - type: Transform @@ -110122,8 +112452,6 @@ entities: devices: - 29865 - 29571 - - type: AtmosDevice - joinedGrid: 1 - uid: 29890 components: - type: Transform @@ -110134,8 +112462,6 @@ entities: devices: - 29588 - 29892 - - type: AtmosDevice - joinedGrid: 1 - uid: 29895 components: - type: Transform @@ -110154,8 +112480,6 @@ entities: - 29908 - 29586 - 29892 - - type: AtmosDevice - joinedGrid: 1 - uid: 29904 components: - type: Transform @@ -110170,8 +112494,6 @@ entities: - 29891 - 29590 - 29905 - - type: AtmosDevice - joinedGrid: 1 - uid: 29907 components: - type: Transform @@ -110185,8 +112507,6 @@ entities: - 29905 - 29893 - 29588 - - type: AtmosDevice - joinedGrid: 1 - uid: 29911 components: - type: Transform @@ -110197,8 +112517,6 @@ entities: devices: - 29571 - 29866 - - type: AtmosDevice - joinedGrid: 1 - uid: 29929 components: - type: Transform @@ -110208,8 +112526,6 @@ entities: devices: - 29556 - 30105 - - type: AtmosDevice - joinedGrid: 1 - uid: 29938 components: - type: Transform @@ -110220,8 +112536,6 @@ entities: - 29848 - 29811 - 29920 - - type: AtmosDevice - joinedGrid: 1 - uid: 30037 components: - type: Transform @@ -110232,8 +112546,6 @@ entities: - 29816 - 29618 - 29815 - - type: AtmosDevice - joinedGrid: 1 - uid: 30062 components: - type: Transform @@ -110256,8 +112568,6 @@ entities: - 30086 - 29915 - 29677 - - type: AtmosDevice - joinedGrid: 1 - uid: 30064 components: - type: Transform @@ -110288,8 +112598,6 @@ entities: - 22336 - 29681 - 29682 - - type: AtmosDevice - joinedGrid: 1 - uid: 30066 components: - type: Transform @@ -110317,8 +112625,6 @@ entities: - 22331 - 22330 - 29676 - - type: AtmosDevice - joinedGrid: 1 - uid: 30069 components: - type: Transform @@ -110333,8 +112639,6 @@ entities: - 29677 - 29680 - 29679 - - type: AtmosDevice - joinedGrid: 1 - uid: 30070 components: - type: Transform @@ -110357,8 +112661,6 @@ entities: - 29676 - 22326 - 10306 - - type: AtmosDevice - joinedGrid: 1 - uid: 30078 components: - type: Transform @@ -110369,8 +112671,6 @@ entities: devices: - 29601 - 30056 - - type: AtmosDevice - joinedGrid: 1 - uid: 30080 components: - type: Transform @@ -110381,8 +112681,6 @@ entities: devices: - 29601 - 30055 - - type: AtmosDevice - joinedGrid: 1 - uid: 30091 components: - type: Transform @@ -110412,16 +112710,12 @@ entities: - 29675 - 29629 - 30093 - - type: AtmosDevice - joinedGrid: 1 - uid: 30104 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30110 components: - type: Transform @@ -110433,8 +112727,6 @@ entities: - 41647 - 29697 - 41648 - - type: AtmosDevice - joinedGrid: 1 - uid: 30117 components: - type: Transform @@ -110445,8 +112737,6 @@ entities: devices: - 29779 - 29845 - - type: AtmosDevice - joinedGrid: 1 - uid: 30119 components: - type: Transform @@ -110467,8 +112757,6 @@ entities: - 30138 - 29637 - 16351 - - type: AtmosDevice - joinedGrid: 1 - uid: 30121 components: - type: Transform @@ -110477,23 +112765,20 @@ entities: parent: 1 - type: DeviceList devices: - - 29633 - - 30146 - - 29778 - - 29842 - - 29632 - - 30135 - - 29638 - - 30136 - - 30137 - - 30138 - - 29636 - - 30134 - - 30143 - - 30149 - 16351 - - type: AtmosDevice - joinedGrid: 1 + - 30149 + - 30143 + - 30134 + - 29636 + - 30138 + - 30137 + - 30136 + - 29638 + - 30135 + - 29632 + - 29842 + - 29778 + - 30146 - uid: 30123 components: - type: Transform @@ -110512,8 +112797,6 @@ entities: - 22412 - 30142 - 29640 - - type: AtmosDevice - joinedGrid: 1 - uid: 30125 components: - type: Transform @@ -110526,8 +112809,6 @@ entities: - 30142 - 29839 - 30152 - - type: AtmosDevice - joinedGrid: 1 - uid: 30127 components: - type: Transform @@ -110538,8 +112819,6 @@ entities: devices: - 29637 - 30135 - - type: AtmosDevice - joinedGrid: 1 - uid: 30129 components: - type: Transform @@ -110556,8 +112835,6 @@ entities: - 30132 - 27326 - 29649 - - type: AtmosDevice - joinedGrid: 1 - uid: 30145 components: - type: Transform @@ -110570,19 +112847,6 @@ entities: - 30149 - 30139 - 29639 - - type: AtmosDevice - joinedGrid: 1 - - uid: 30148 - components: - - type: Transform - pos: -21.5,12.5 - parent: 1 - - type: DeviceList - devices: - - 29637 - - 30146 - - type: AtmosDevice - joinedGrid: 1 - uid: 30166 components: - type: Transform @@ -110599,8 +112863,6 @@ entities: - 29651 - 27329 - 27325 - - type: AtmosDevice - joinedGrid: 1 - uid: 30167 components: - type: Transform @@ -110616,8 +112878,6 @@ entities: - 41524 - 41677 - 41676 - - type: AtmosDevice - joinedGrid: 1 - uid: 30172 components: - type: Transform @@ -110633,8 +112893,6 @@ entities: - 41501 - 41615 - 41616 - - type: AtmosDevice - joinedGrid: 1 - uid: 30187 components: - type: Transform @@ -110644,8 +112902,6 @@ entities: - type: DeviceList devices: - 27340 - - type: AtmosDevice - joinedGrid: 1 - uid: 30189 components: - type: Transform @@ -110659,8 +112915,6 @@ entities: - 29671 - 29669 - 30199 - - type: AtmosDevice - joinedGrid: 1 - uid: 30209 components: - type: Transform @@ -110680,8 +112934,6 @@ entities: - 30214 - 30215 - 29690 - - type: AtmosDevice - joinedGrid: 1 - uid: 30229 components: - type: Transform @@ -110693,8 +112945,6 @@ entities: - 29688 - 29690 - 30216 - - type: AtmosDevice - joinedGrid: 1 - uid: 30231 components: - type: Transform @@ -110731,8 +112981,6 @@ entities: - 30226 - 29692 - 30232 - - type: AtmosDevice - joinedGrid: 1 - uid: 30235 components: - type: Transform @@ -110752,8 +113000,6 @@ entities: - 30225 - 29821 - 30023 - - type: AtmosDevice - joinedGrid: 1 - uid: 30237 components: - type: Transform @@ -110767,8 +113013,6 @@ entities: - 30227 - 30226 - 29688 - - type: AtmosDevice - joinedGrid: 1 - uid: 30246 components: - type: Transform @@ -110780,8 +113024,6 @@ entities: - 30240 - 29819 - 30022 - - type: AtmosDevice - joinedGrid: 1 - uid: 30249 components: - type: Transform @@ -110797,8 +113039,6 @@ entities: - 30241 - 30242 - 30243 - - type: AtmosDevice - joinedGrid: 1 - uid: 30254 components: - type: Transform @@ -110822,8 +113062,6 @@ entities: - 29699 - 29838 - 30152 - - type: AtmosDevice - joinedGrid: 1 - uid: 30256 components: - type: Transform @@ -110854,8 +113092,6 @@ entities: - 30259 - 30260 - 29627 - - type: AtmosDevice - joinedGrid: 1 - uid: 30262 components: - type: Transform @@ -110874,8 +113110,6 @@ entities: - 29623 - 29624 - 30288 - - type: AtmosDevice - joinedGrid: 1 - uid: 30276 components: - type: Transform @@ -110891,8 +113125,7 @@ entities: - 29628 - 29623 - 30288 - - type: AtmosDevice - joinedGrid: 1 + - 21348 - uid: 30280 components: - type: Transform @@ -110909,8 +113142,6 @@ entities: - 30288 - 30023 - 41791 - - type: AtmosDevice - joinedGrid: 1 - uid: 30282 components: - type: Transform @@ -110931,8 +113162,6 @@ entities: - 30271 - 30269 - 30270 - - type: AtmosDevice - joinedGrid: 1 - uid: 30283 components: - type: Transform @@ -110945,8 +113174,6 @@ entities: - 30273 - 29619 - 30274 - - type: AtmosDevice - joinedGrid: 1 - uid: 30286 components: - type: Transform @@ -110957,8 +113184,6 @@ entities: devices: - 29620 - 30274 - - type: AtmosDevice - joinedGrid: 1 - uid: 33643 components: - type: Transform @@ -110980,8 +113205,6 @@ entities: - 27340 - 29719 - 29720 - - type: AtmosDevice - joinedGrid: 1 - uid: 41549 components: - type: Transform @@ -110998,8 +113221,6 @@ entities: - 41544 - 41546 - 41547 - - type: AtmosDevice - joinedGrid: 1 - uid: 41551 components: - type: Transform @@ -111022,8 +113243,6 @@ entities: - 41554 - 41553 - 41552 - - type: AtmosDevice - joinedGrid: 1 - uid: 41557 components: - type: Transform @@ -111041,8 +113260,6 @@ entities: - 41563 - 41495 - 41564 - - type: AtmosDevice - joinedGrid: 1 - uid: 41561 components: - type: Transform @@ -111053,8 +113270,6 @@ entities: devices: - 41499 - 41562 - - type: AtmosDevice - joinedGrid: 1 - uid: 41568 components: - type: Transform @@ -111068,8 +113283,6 @@ entities: - 41565 - 41499 - 41563 - - type: AtmosDevice - joinedGrid: 1 - uid: 41569 components: - type: Transform @@ -111082,8 +113295,6 @@ entities: - 41566 - 41497 - 41573 - - type: AtmosDevice - joinedGrid: 1 - uid: 41572 components: - type: Transform @@ -111097,8 +113308,6 @@ entities: - 41574 - 37608 - 37609 - - type: AtmosDevice - joinedGrid: 1 - uid: 41576 components: - type: Transform @@ -111113,8 +113322,6 @@ entities: - 41564 - 29779 - 41567 - - type: AtmosDevice - joinedGrid: 1 - uid: 41577 components: - type: Transform @@ -111127,8 +113334,6 @@ entities: - 41579 - 29594 - 41578 - - type: AtmosDevice - joinedGrid: 1 - uid: 41584 components: - type: Transform @@ -111148,8 +113353,6 @@ entities: - 29921 - 41501 - 19234 - - type: AtmosDevice - joinedGrid: 1 - uid: 41586 components: - type: Transform @@ -111170,8 +113373,6 @@ entities: - 41611 - 41503 - 41614 - - type: AtmosDevice - joinedGrid: 1 - uid: 41588 components: - type: Transform @@ -111182,8 +113383,6 @@ entities: devices: - 41501 - 41611 - - type: AtmosDevice - joinedGrid: 1 - uid: 41597 components: - type: Transform @@ -111205,8 +113404,6 @@ entities: - 41501 - 41617 - 19235 - - type: AtmosDevice - joinedGrid: 1 - uid: 41598 components: - type: Transform @@ -111219,8 +113416,6 @@ entities: - 41609 - 41505 - 41610 - - type: AtmosDevice - joinedGrid: 1 - uid: 41602 components: - type: Transform @@ -111233,8 +113428,6 @@ entities: - 41605 - 41604 - 41603 - - type: AtmosDevice - joinedGrid: 1 - uid: 41620 components: - type: Transform @@ -111245,8 +113438,6 @@ entities: - 41501 - 41613 - 41612 - - type: AtmosDevice - joinedGrid: 1 - uid: 41624 components: - type: Transform @@ -111257,8 +113448,6 @@ entities: devices: - 41625 - 41626 - - type: AtmosDevice - joinedGrid: 1 - uid: 41637 components: - type: Transform @@ -111276,8 +113465,6 @@ entities: - 41513 - 41632 - 41633 - - type: AtmosDevice - joinedGrid: 1 - uid: 41639 components: - type: Transform @@ -111288,8 +113475,6 @@ entities: devices: - 41512 - 41634 - - type: AtmosDevice - joinedGrid: 1 - uid: 41641 components: - type: Transform @@ -111303,8 +113488,6 @@ entities: - 41632 - 41508 - 41635 - - type: AtmosDevice - joinedGrid: 1 - uid: 41646 components: - type: Transform @@ -111318,8 +113501,6 @@ entities: - 29920 - 41631 - 41630 - - type: AtmosDevice - joinedGrid: 1 - uid: 41651 components: - type: Transform @@ -111339,8 +113520,6 @@ entities: - 30238 - 29613 - 30239 - - type: AtmosDevice - joinedGrid: 1 - uid: 41656 components: - type: Transform @@ -111355,8 +113534,6 @@ entities: - 23613 - 41652 - 41653 - - type: AtmosDevice - joinedGrid: 1 - uid: 41660 components: - type: Transform @@ -111369,8 +113546,6 @@ entities: - 41661 - 30287 - 41658 - - type: AtmosDevice - joinedGrid: 1 - uid: 41663 components: - type: Transform @@ -111384,8 +113559,6 @@ entities: - 30321 - 29752 - 29751 - - type: AtmosDevice - joinedGrid: 1 - uid: 41666 components: - type: Transform @@ -111399,8 +113572,6 @@ entities: - 41523 - 16628 - 41664 - - type: AtmosDevice - joinedGrid: 1 - uid: 41667 components: - type: Transform @@ -111413,8 +113584,6 @@ entities: - 41517 - 29709 - 41518 - - type: AtmosDevice - joinedGrid: 1 - uid: 41738 components: - type: Transform @@ -111425,8 +113594,6 @@ entities: devices: - 29710 - 41736 - - type: AtmosDevice - joinedGrid: 1 - uid: 41740 components: - type: Transform @@ -111443,8 +113610,6 @@ entities: - 29709 - 41680 - 41679 - - type: AtmosDevice - joinedGrid: 1 - uid: 41745 components: - type: Transform @@ -111460,8 +113625,6 @@ entities: - 18596 - 41742 - 41743 - - type: AtmosDevice - joinedGrid: 1 - uid: 41746 components: - type: Transform @@ -111476,8 +113639,6 @@ entities: - 41523 - 41673 - 41672 - - type: AtmosDevice - joinedGrid: 1 - uid: 41747 components: - type: Transform @@ -111490,8 +113651,6 @@ entities: - 41675 - 41523 - 41674 - - type: AtmosDevice - joinedGrid: 1 - uid: 41750 components: - type: Transform @@ -111504,8 +113663,6 @@ entities: - 41763 - 41529 - 37479 - - type: AtmosDevice - joinedGrid: 1 - uid: 41752 components: - type: Transform @@ -111521,8 +113678,6 @@ entities: - 37476 - 37473 - 37474 - - type: AtmosDevice - joinedGrid: 1 - uid: 41754 components: - type: Transform @@ -111535,8 +113690,6 @@ entities: - 41767 - 41528 - 41768 - - type: AtmosDevice - joinedGrid: 1 - uid: 41755 components: - type: Transform @@ -111550,8 +113703,6 @@ entities: - 41765 - 41527 - 41767 - - type: AtmosDevice - joinedGrid: 1 - uid: 41758 components: - type: Transform @@ -111572,8 +113723,6 @@ entities: - 41526 - 41766 - 41765 - - type: AtmosDevice - joinedGrid: 1 - uid: 41759 components: - type: Transform @@ -111593,8 +113742,6 @@ entities: - 41524 - 41761 - 41762 - - type: AtmosDevice - joinedGrid: 1 - uid: 41771 components: - type: Transform @@ -111607,8 +113754,6 @@ entities: - 41769 - 29718 - 30191 - - type: AtmosDevice - joinedGrid: 1 - uid: 41773 components: - type: Transform @@ -111625,8 +113770,6 @@ entities: - 41742 - 29654 - 29853 - - type: AtmosDevice - joinedGrid: 1 - uid: 41774 components: - type: Transform @@ -111642,8 +113785,6 @@ entities: - 18596 - 41779 - 41780 - - type: AtmosDevice - joinedGrid: 1 - uid: 41783 components: - type: Transform @@ -111659,8 +113800,6 @@ entities: - 29649 - 41786 - 41785 - - type: AtmosDevice - joinedGrid: 1 - uid: 41795 components: - type: MetaData @@ -111677,8 +113816,6 @@ entities: - 41803 - 41802 - 41801 - - type: AtmosDevice - joinedGrid: 1 - proto: FireAlarmAssembly entities: - uid: 30613 @@ -111742,6 +113879,15 @@ entities: - type: Transform pos: -74.5,-74.5 parent: 1 + - uid: 21348 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 30276 + - 30275 - uid: 22424 components: - type: Transform @@ -112069,6 +114215,10 @@ entities: - type: Transform pos: -26.5,12.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 29843 components: - type: Transform @@ -114411,26 +116561,46 @@ entities: - type: Transform pos: -24.5,0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30135 components: - type: Transform pos: -28.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30136 components: - type: Transform pos: -31.5,5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30137 components: - type: Transform pos: -31.5,4.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30138 components: - type: Transform pos: -31.5,3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30139 components: - type: Transform @@ -114456,11 +116626,19 @@ entities: - type: Transform pos: -25.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30149 components: - type: Transform pos: -25.5,-3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 30121 + - 30120 - uid: 30190 components: - type: Transform @@ -117849,7 +120027,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 10 name: null @@ -118457,6 +120634,11 @@ entities: parent: 1 - proto: FoodPoppy entities: + - uid: 8343 + components: + - type: Transform + pos: -69.99157,7.6034684 + parent: 1 - uid: 9701 components: - type: Transform @@ -118467,6 +120649,11 @@ entities: - type: Transform pos: -30.465496,-20.39303 parent: 1 + - uid: 30796 + components: + - type: Transform + pos: -70.39416,-40.21738 + parent: 1 - proto: FoodPotato entities: - uid: 907 @@ -118539,7 +120726,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -118807,22 +120993,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20312 components: - type: Transform pos: -107.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20319 components: - type: Transform pos: -107.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 20324 @@ -118830,8 +121010,6 @@ entities: - type: Transform pos: -107.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 22365 @@ -118840,8 +121018,6 @@ entities: rot: -1.5707963267948966 rad pos: -100.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22431 @@ -118850,8 +121026,6 @@ entities: rot: -1.5707963267948966 rad pos: -103.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24424 @@ -118860,8 +121034,6 @@ entities: rot: -1.5707963267948966 rad pos: -98.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 24770 @@ -118870,8 +121042,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25580 @@ -118879,8 +121049,6 @@ entities: - type: Transform pos: -107.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 36705 @@ -118889,16 +121057,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36706 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasFilterFlipped entities: - uid: 9057 @@ -118907,16 +121071,12 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13127 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#CCE5FFFF' - uid: 13247 @@ -118925,8 +121085,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15719 @@ -118935,8 +121093,6 @@ entities: rot: 3.141592653589793 rad pos: -96.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23017 @@ -118945,8 +121101,6 @@ entities: rot: 1.5707963267948966 rad pos: -97.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 31699 @@ -118955,22 +121109,16 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-76.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31702 components: - type: Transform pos: -110.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31703 components: - type: Transform pos: -110.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerNitrogenStationLarge entities: - uid: 22161 @@ -118978,8 +121126,6 @@ entities: - type: Transform pos: -104.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerOxygenStationLarge entities: - uid: 22162 @@ -118987,8 +121133,6 @@ entities: - type: Transform pos: -101.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerWaterVapor entities: - uid: 32178 @@ -118996,8 +121140,6 @@ entities: - type: Transform pos: -107.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMixer entities: - uid: 26297 @@ -119005,8 +121147,6 @@ entities: - type: Transform pos: -103.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26299 @@ -119014,8 +121154,6 @@ entities: - type: Transform pos: -103.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26316 @@ -119023,8 +121161,6 @@ entities: - type: Transform pos: -103.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - proto: GasMixerFlipped @@ -119037,8 +121173,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27916 @@ -119047,8 +121181,6 @@ entities: rot: 1.5707963267948966 rad pos: -111.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasOutletInjector entities: - uid: 3366 @@ -119056,8 +121188,6 @@ entities: - type: Transform pos: -24.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 4954 @@ -119065,8 +121195,6 @@ entities: - type: Transform pos: -102.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16054 @@ -119075,22 +121203,16 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 18868 components: - type: Transform pos: -103.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22120 components: - type: Transform pos: -103.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22128 @@ -119098,8 +121220,6 @@ entities: - type: Transform pos: -100.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 26902 @@ -119108,8 +121228,6 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26903 @@ -119118,16 +121236,12 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26904 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26905 @@ -119136,8 +121250,6 @@ entities: rot: 1.5707963267948966 rad pos: -109.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28580 @@ -119146,8 +121258,6 @@ entities: rot: 3.141592653589793 rad pos: -105.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28581 @@ -119156,8 +121266,6 @@ entities: rot: 3.141592653589793 rad pos: -102.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 28583 @@ -119166,8 +121274,6 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 28587 @@ -119176,8 +121282,6 @@ entities: rot: 3.141592653589793 rad pos: -104.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 28588 @@ -119186,23 +121290,17 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32180 components: - type: Transform pos: -106.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34068 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - proto: GasPassiveGate @@ -119213,8 +121311,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25539 @@ -119223,8 +121319,6 @@ entities: rot: 3.141592653589793 rad pos: -96.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 27753 @@ -119233,8 +121327,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 31737 @@ -119243,8 +121335,6 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 3283 @@ -119253,23 +121343,17 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3287 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4953 components: - type: Transform pos: -101.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11111 @@ -119278,8 +121362,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20348 @@ -119288,8 +121370,6 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22126 @@ -119298,8 +121378,6 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22127 @@ -119308,8 +121386,6 @@ entities: rot: 3.141592653589793 rad pos: -100.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22311 @@ -119317,8 +121393,6 @@ entities: - type: Transform pos: -101.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22312 @@ -119326,8 +121400,6 @@ entities: - type: Transform pos: -104.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 26910 @@ -119335,8 +121407,6 @@ entities: - type: Transform pos: -110.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26911 @@ -119344,15 +121414,11 @@ entities: - type: Transform pos: -110.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26912 components: - type: Transform pos: -110.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26913 @@ -119360,8 +121426,6 @@ entities: - type: Transform pos: -110.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28549 @@ -119369,66 +121433,48 @@ entities: - type: Transform pos: -105.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28550 components: - type: Transform pos: -104.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28551 components: - type: Transform pos: -103.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28552 components: - type: Transform pos: -102.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28566 components: - type: Transform pos: -101.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28592 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31219 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,-79.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32182 components: - type: Transform pos: -108.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34069 components: - type: Transform pos: -94.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - proto: GasPipeBend @@ -119478,6 +121524,8 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,24.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6634 components: - type: Transform @@ -123887,6 +125935,8 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,24.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7717 components: - type: Transform @@ -123938,6 +125988,8 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,24.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 11309 components: - type: Transform @@ -168304,85 +170356,63 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7006 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 19246 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20313 components: - type: Transform rot: -1.5707963267948966 rad pos: -104.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22309 components: - type: Transform pos: -95.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22310 components: - type: Transform pos: -94.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 24467 components: - type: Transform pos: -65.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25545 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25546 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25556 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 25557 @@ -168391,8 +170421,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 26294 @@ -168401,15 +170429,11 @@ entities: rot: -1.5707963267948966 rad pos: -104.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26345 components: - type: Transform pos: -105.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 26346 @@ -168418,8 +170442,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 26347 @@ -168428,80 +170450,60 @@ entities: rot: 3.141592653589793 rad pos: -108.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27197 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28508 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28703 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31705 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31706 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34074 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,-54.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36708 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36709 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36710 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPressurePump entities: - uid: 1706 @@ -168510,24 +170512,18 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3182 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-63.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18901 @@ -168536,15 +170532,11 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 18902 components: - type: Transform pos: -101.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20342 @@ -168553,16 +170545,12 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22140 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22141 @@ -168571,8 +170559,6 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22307 @@ -168580,8 +170566,6 @@ entities: - type: Transform pos: -95.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22308 @@ -168589,8 +170573,6 @@ entities: - type: Transform pos: -94.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22315 @@ -168598,8 +170580,6 @@ entities: - type: Transform pos: -104.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 22364 @@ -168607,8 +170587,6 @@ entities: - type: Transform pos: -101.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 22589 @@ -168617,8 +170595,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24756 @@ -168626,8 +170602,6 @@ entities: - type: Transform pos: -97.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25543 @@ -168636,8 +170610,6 @@ entities: rot: -1.5707963267948966 rad pos: -95.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25544 @@ -168646,8 +170618,6 @@ entities: rot: -1.5707963267948966 rad pos: -95.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 25581 @@ -168656,8 +170626,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 25587 @@ -168666,8 +170634,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 25588 @@ -168676,8 +170642,6 @@ entities: rot: 1.5707963267948966 rad pos: -107.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31343 @@ -168686,22 +170650,16 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,-76.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 32187 components: - type: Transform pos: -108.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34073 components: - type: Transform pos: -94.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF9999FF' - uid: 34183 @@ -168709,8 +170667,6 @@ entities: - type: Transform pos: -96.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasRecycler @@ -168720,8 +170676,6 @@ entities: - type: Transform pos: -97.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - proto: GasThermoMachineFreezer @@ -168733,33 +170687,18 @@ entities: parent: 1 - type: AtmosPipeColor color: '#CCE5FFFF' - - type: AtmosDevice - joinedGrid: 1 - - uid: 11108 - components: - - type: Transform - pos: -23.5,-22.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 1 - uid: 31369 components: - type: Transform rot: 3.141592653589793 rad pos: -108.5,-77.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31697 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34589 components: - type: Transform @@ -168767,8 +170706,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 1 - proto: GasThermoMachineFreezerEnabled entities: - uid: 8786 @@ -168778,8 +170715,11 @@ entities: parent: 1 - type: GasThermoMachine targetTemperature: 249.81 - - type: AtmosDevice - joinedGrid: 1 + - uid: 29633 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 1 - proto: GasThermoMachineHeater entities: - uid: 24754 @@ -168790,16 +170730,12 @@ entities: parent: 1 - type: AtmosPipeColor color: '#80FF00FF' - - type: AtmosDevice - joinedGrid: 1 - uid: 31698 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-73.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasValve entities: - uid: 25583 @@ -168810,8 +170746,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 25584 @@ -168822,8 +170756,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 26286 @@ -168833,8 +170765,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 26287 @@ -168845,8 +170775,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 26288 components: - type: Transform @@ -168855,8 +170783,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 26289 components: - type: Transform @@ -168865,8 +170791,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26290 @@ -168877,8 +170801,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 26291 @@ -168889,8 +170811,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31372 @@ -168901,8 +170821,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 31375 @@ -168913,8 +170831,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 31379 @@ -168925,8 +170841,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 31380 components: - type: Transform @@ -168935,8 +170849,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - uid: 31381 @@ -168947,8 +170859,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 31715 @@ -168958,8 +170868,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - uid: 31718 components: - type: Transform @@ -168967,8 +170875,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - proto: GasVentPump entities: - uid: 6014 @@ -168979,8 +170885,6 @@ entities: - type: DeviceNetwork deviceLists: - 41599 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6754 @@ -168992,8 +170896,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14557 @@ -169001,8 +170903,6 @@ entities: - type: Transform pos: -65.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15649 @@ -169010,8 +170910,8 @@ entities: - type: Transform pos: -9.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 16376 components: - type: Transform @@ -169021,8 +170921,6 @@ entities: - type: DeviceNetwork deviceLists: - 30109 - - type: AtmosDevice - joinedGrid: 1 - uid: 22275 components: - type: Transform @@ -169032,8 +170930,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22851 @@ -169045,8 +170941,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23025 @@ -169058,8 +170952,6 @@ entities: - type: DeviceNetwork deviceLists: - 41601 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23026 @@ -169070,8 +170962,6 @@ entities: - type: DeviceNetwork deviceLists: - 7586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23501 @@ -169083,8 +170973,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23512 @@ -169096,8 +170984,6 @@ entities: - type: DeviceNetwork deviceLists: - 16630 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23596 @@ -169106,8 +170992,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23614 @@ -169118,8 +171002,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23615 @@ -169130,8 +171012,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23908 @@ -169143,8 +171023,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23978 @@ -169156,8 +171034,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23979 @@ -169168,8 +171044,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23980 @@ -169177,8 +171051,6 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23981 @@ -169187,8 +171059,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24076 @@ -169200,8 +171070,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24077 @@ -169213,8 +171081,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24078 @@ -169226,8 +171092,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24082 @@ -169239,8 +171103,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24083 @@ -169249,8 +171111,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24108 @@ -169262,8 +171122,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24109 @@ -169272,8 +171130,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24131 @@ -169282,8 +171138,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24136 @@ -169292,8 +171146,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24141 @@ -169302,8 +171154,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24156 @@ -169312,8 +171162,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24157 @@ -169322,8 +171170,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24174 @@ -169331,8 +171177,6 @@ entities: - type: Transform pos: -43.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24175 @@ -169340,8 +171184,6 @@ entities: - type: Transform pos: -47.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24185 @@ -169349,8 +171191,6 @@ entities: - type: Transform pos: -43.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24193 @@ -169359,8 +171199,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24200 @@ -169369,8 +171207,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24201 @@ -169379,8 +171215,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24202 @@ -169389,8 +171223,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24203 @@ -169399,8 +171231,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24221 @@ -169409,8 +171239,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24222 @@ -169419,8 +171247,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24223 @@ -169428,8 +171254,6 @@ entities: - type: Transform pos: -52.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24224 @@ -169438,8 +171262,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24242 @@ -169448,8 +171270,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24248 @@ -169457,8 +171277,6 @@ entities: - type: Transform pos: -57.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24249 @@ -169467,8 +171285,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24269 @@ -169480,8 +171296,6 @@ entities: - type: DeviceNetwork deviceLists: - 41650 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24273 @@ -169490,8 +171304,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24274 @@ -169500,8 +171312,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24285 @@ -169510,8 +171320,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24287 @@ -169520,8 +171328,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24300 @@ -169530,8 +171336,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24318 @@ -169540,8 +171344,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24319 @@ -169550,8 +171352,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24320 @@ -169560,8 +171360,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24337 @@ -169570,8 +171368,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24338 @@ -169580,8 +171376,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24348 @@ -169590,8 +171384,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24352 @@ -169600,8 +171392,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-64.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24367 @@ -169610,8 +171400,6 @@ entities: rot: 3.141592653589793 rad pos: -62.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24373 @@ -169620,8 +171408,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,-68.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24374 @@ -169629,8 +171415,6 @@ entities: - type: Transform pos: -73.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24375 @@ -169639,8 +171423,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24376 @@ -169649,8 +171431,6 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24377 @@ -169659,8 +171439,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24378 @@ -169668,8 +171446,6 @@ entities: - type: Transform pos: -63.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24500 @@ -169678,8 +171454,6 @@ entities: rot: 3.141592653589793 rad pos: -87.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24501 @@ -169688,8 +171462,6 @@ entities: rot: -1.5707963267948966 rad pos: -84.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24529 @@ -169698,8 +171470,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24539 @@ -169708,8 +171478,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24549 @@ -169718,8 +171486,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24628 @@ -169731,8 +171497,6 @@ entities: - type: DeviceNetwork deviceLists: - 41585 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24666 @@ -169744,8 +171508,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24700 @@ -169757,8 +171519,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24748 @@ -169769,8 +171529,6 @@ entities: - type: DeviceNetwork deviceLists: - 41596 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24826 @@ -169782,8 +171540,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24827 @@ -169795,8 +171551,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24828 @@ -169804,8 +171558,6 @@ entities: - type: Transform pos: -67.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24829 @@ -169817,8 +171569,6 @@ entities: - type: DeviceNetwork deviceLists: - 4412 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24830 @@ -169830,8 +171580,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24831 @@ -169843,8 +171591,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24833 @@ -169855,8 +171601,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24835 @@ -169868,8 +171612,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24836 @@ -169880,8 +171622,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24837 @@ -169893,8 +171633,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24842 @@ -169903,8 +171641,6 @@ entities: rot: 3.141592653589793 rad pos: -87.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24846 @@ -169913,8 +171649,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24847 @@ -169923,8 +171657,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24855 @@ -169933,8 +171665,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24861 @@ -169945,8 +171675,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24927 @@ -169957,8 +171685,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24930 @@ -169970,8 +171696,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24982 @@ -169983,8 +171707,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24984 @@ -169995,8 +171717,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24985 @@ -170007,8 +171727,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25014 @@ -170019,8 +171737,6 @@ entities: - type: DeviceNetwork deviceLists: - 29917 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25844 @@ -170029,8 +171745,6 @@ entities: rot: -1.5707963267948966 rad pos: -142.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25847 @@ -170039,8 +171753,6 @@ entities: rot: 3.141592653589793 rad pos: -127.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25848 @@ -170048,8 +171760,6 @@ entities: - type: Transform pos: -127.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25849 @@ -170058,8 +171768,6 @@ entities: rot: -1.5707963267948966 rad pos: -126.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25850 @@ -170068,8 +171776,6 @@ entities: rot: 1.5707963267948966 rad pos: -132.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25851 @@ -170077,8 +171783,6 @@ entities: - type: Transform pos: -142.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25852 @@ -170087,8 +171791,6 @@ entities: rot: 3.141592653589793 rad pos: -132.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26005 @@ -170096,8 +171798,6 @@ entities: - type: Transform pos: -106.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26006 @@ -170106,8 +171806,6 @@ entities: rot: 3.141592653589793 rad pos: -109.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26007 @@ -170119,8 +171817,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26008 @@ -170132,8 +171828,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26009 @@ -170145,8 +171839,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26012 @@ -170155,8 +171847,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26013 @@ -170165,8 +171855,6 @@ entities: rot: 3.141592653589793 rad pos: -97.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26018 @@ -170175,8 +171863,6 @@ entities: rot: 1.5707963267948966 rad pos: -114.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26019 @@ -170184,8 +171870,6 @@ entities: - type: Transform pos: -113.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26020 @@ -170194,8 +171878,6 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26021 @@ -170203,8 +171885,6 @@ entities: - type: Transform pos: -101.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26079 @@ -170213,8 +171893,6 @@ entities: rot: 3.141592653589793 rad pos: -119.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26080 @@ -170223,8 +171901,6 @@ entities: rot: 3.141592653589793 rad pos: -105.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26089 @@ -170233,8 +171909,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26094 @@ -170242,8 +171916,6 @@ entities: - type: Transform pos: -83.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26095 @@ -170252,8 +171924,6 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26098 @@ -170265,8 +171935,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26099 @@ -170277,8 +171945,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26100 @@ -170290,8 +171956,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26120 @@ -170300,8 +171964,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26121 @@ -170310,8 +171972,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26122 @@ -170319,8 +171979,6 @@ entities: - type: Transform pos: -77.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26205 @@ -170329,8 +171987,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26206 @@ -170339,8 +171995,6 @@ entities: rot: 1.5707963267948966 rad pos: -84.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26207 @@ -170349,8 +172003,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26208 @@ -170359,8 +172011,6 @@ entities: rot: -1.5707963267948966 rad pos: -82.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26227 @@ -170369,8 +172019,6 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26228 @@ -170378,8 +172026,6 @@ entities: - type: Transform pos: -79.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26270 @@ -170388,8 +172034,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26274 @@ -170398,8 +172042,6 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26280 @@ -170411,8 +172053,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26281 @@ -170424,8 +172064,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26298 @@ -170436,8 +172074,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26362 @@ -170449,8 +172085,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26363 @@ -170459,8 +172093,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26364 @@ -170468,8 +172100,6 @@ entities: - type: Transform pos: -72.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26392 @@ -170478,8 +172108,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26393 @@ -170488,8 +172116,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26394 @@ -170498,8 +172124,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26395 @@ -170508,8 +172132,6 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26396 @@ -170518,8 +172140,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26397 @@ -170528,8 +172148,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26398 @@ -170538,8 +172156,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26442 @@ -170547,8 +172163,6 @@ entities: - type: Transform pos: -67.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26443 @@ -170557,8 +172171,6 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26444 @@ -170567,8 +172179,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26463 @@ -170580,8 +172190,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26464 @@ -170590,8 +172198,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26466 @@ -170600,8 +172206,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26476 @@ -170610,8 +172214,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26477 @@ -170619,8 +172221,6 @@ entities: - type: Transform pos: -55.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26478 @@ -170629,8 +172229,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26489 @@ -170639,8 +172237,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26493 @@ -170649,8 +172245,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26570 @@ -170662,8 +172256,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26577 @@ -170674,8 +172266,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26578 @@ -170686,8 +172276,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26579 @@ -170696,8 +172284,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26589 @@ -170706,8 +172292,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26590 @@ -170716,8 +172300,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26591 @@ -170725,8 +172307,6 @@ entities: - type: Transform pos: -56.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26594 @@ -170735,8 +172315,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26596 @@ -170745,8 +172323,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26597 @@ -170755,8 +172331,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26634 @@ -170765,8 +172339,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26648 @@ -170775,8 +172347,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26922 @@ -170787,8 +172357,6 @@ entities: - type: DeviceNetwork deviceLists: - 41775 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26925 @@ -170797,8 +172365,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27198 @@ -170810,8 +172376,6 @@ entities: - type: DeviceNetwork deviceLists: - 41770 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27633 @@ -170822,8 +172386,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27634 @@ -170834,8 +172396,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27638 @@ -170847,8 +172407,6 @@ entities: - type: DeviceNetwork deviceLists: - 30096 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27639 @@ -170859,8 +172417,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27656 @@ -170871,8 +172427,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27657 @@ -170884,8 +172438,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27658 @@ -170897,8 +172449,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27659 @@ -170910,8 +172460,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27660 @@ -170922,8 +172470,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27697 @@ -170935,8 +172481,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27699 @@ -170948,8 +172492,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27700 @@ -170961,8 +172503,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27762 @@ -170971,8 +172511,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 27763 @@ -170981,8 +172519,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 27764 @@ -170990,8 +172526,6 @@ entities: - type: Transform pos: -30.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27765 @@ -171000,8 +172534,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27774 @@ -171010,8 +172542,9 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 30120 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27783 @@ -171019,8 +172552,6 @@ entities: - type: Transform pos: -32.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27784 @@ -171029,8 +172560,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27806 @@ -171038,8 +172567,6 @@ entities: - type: Transform pos: -35.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27807 @@ -171048,8 +172575,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27822 @@ -171058,8 +172583,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27823 @@ -171068,8 +172591,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27824 @@ -171078,8 +172599,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27825 @@ -171088,8 +172607,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27826 @@ -171098,8 +172615,9 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 30120 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27959 @@ -171108,8 +172626,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27960 @@ -171118,8 +172634,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27961 @@ -171128,8 +172642,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27962 @@ -171137,8 +172649,6 @@ entities: - type: Transform pos: -22.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27980 @@ -171146,8 +172656,6 @@ entities: - type: Transform pos: -17.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27983 @@ -171156,8 +172664,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27990 @@ -171166,8 +172672,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27991 @@ -171176,8 +172680,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27992 @@ -171186,8 +172688,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27993 @@ -171195,8 +172695,6 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27997 @@ -171208,8 +172706,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28004 @@ -171220,8 +172716,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28005 @@ -171232,8 +172726,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28006 @@ -171244,8 +172736,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28007 @@ -171256,8 +172746,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28008 @@ -171268,8 +172756,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28009 @@ -171280,8 +172766,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28093 @@ -171290,8 +172774,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28095 @@ -171302,8 +172784,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28096 @@ -171312,8 +172792,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28105 @@ -171322,8 +172800,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28106 @@ -171335,8 +172811,6 @@ entities: - type: DeviceNetwork deviceLists: - 30102 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28107 @@ -171345,8 +172819,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28108 @@ -171354,8 +172826,6 @@ entities: - type: Transform pos: -3.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28109 @@ -171364,8 +172834,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28110 @@ -171374,8 +172842,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28157 @@ -171384,8 +172850,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28158 @@ -171394,8 +172858,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28180 @@ -171404,8 +172866,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28181 @@ -171414,8 +172874,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28199 @@ -171427,8 +172885,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28200 @@ -171440,8 +172896,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28201 @@ -171452,8 +172906,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28202 @@ -171462,8 +172914,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28203 @@ -171472,8 +172922,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28204 @@ -171482,8 +172930,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28205 @@ -171492,8 +172938,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28206 @@ -171502,8 +172946,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28208 @@ -171515,8 +172957,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28242 @@ -171525,8 +172965,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28243 @@ -171534,8 +172972,6 @@ entities: - type: Transform pos: 18.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28247 @@ -171547,8 +172983,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28248 @@ -171560,8 +172994,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28249 @@ -171572,8 +173004,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28259 @@ -171585,8 +173015,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28260 @@ -171595,8 +173023,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28276 @@ -171605,8 +173031,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28277 @@ -171615,8 +173039,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28287 @@ -171625,8 +173047,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28288 @@ -171635,8 +173055,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28291 @@ -171645,8 +173063,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28308 @@ -171655,8 +173071,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28377 @@ -171667,8 +173081,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28378 @@ -171679,8 +173091,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28408 @@ -171688,8 +173098,6 @@ entities: - type: Transform pos: 17.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28416 @@ -171698,8 +173106,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28426 @@ -171708,8 +173114,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29221 @@ -171721,8 +173125,6 @@ entities: - type: DeviceNetwork deviceLists: - 41619 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30025 @@ -171734,8 +173136,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30183 @@ -171744,8 +173144,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30205 @@ -171754,8 +173152,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30290 @@ -171764,8 +173160,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30344 @@ -171776,8 +173170,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33260 @@ -171785,8 +173177,6 @@ entities: - type: Transform pos: -153.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33634 @@ -171795,8 +173185,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33635 @@ -171807,8 +173195,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 33654 @@ -171816,8 +173202,6 @@ entities: - type: Transform pos: -98.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34218 @@ -171829,8 +173213,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34596 @@ -171842,8 +173224,6 @@ entities: - type: DeviceNetwork deviceLists: - 41640 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34597 @@ -171855,8 +173235,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34598 @@ -171868,8 +173246,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34602 @@ -171881,8 +173257,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34603 @@ -171894,8 +173268,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 34604 @@ -171907,8 +173279,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 35510 @@ -171920,8 +173290,6 @@ entities: - type: DeviceNetwork deviceLists: - 41744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 35564 @@ -171933,8 +173301,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36907 @@ -171943,8 +173309,6 @@ entities: rot: 3.141592653589793 rad pos: -108.5,-86.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36908 @@ -171956,8 +173320,6 @@ entities: - type: DeviceNetwork deviceLists: - 41623 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36909 @@ -171966,8 +173328,6 @@ entities: rot: 3.141592653589793 rad pos: -92.5,-88.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 36950 @@ -171976,8 +173336,6 @@ entities: rot: 1.5707963267948966 rad pos: -121.5,-59.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37013 @@ -171986,8 +173344,6 @@ entities: rot: 1.5707963267948966 rad pos: -120.5,-53.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37022 @@ -171996,8 +173352,6 @@ entities: rot: 1.5707963267948966 rad pos: -150.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37023 @@ -172006,8 +173360,6 @@ entities: rot: 3.141592653589793 rad pos: -140.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37110 @@ -172019,8 +173371,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37111 @@ -172032,8 +173382,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37240 @@ -172045,8 +173393,6 @@ entities: - type: DeviceNetwork deviceLists: - 29918 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37363 @@ -172058,8 +173404,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37374 @@ -172071,8 +173415,6 @@ entities: - type: DeviceNetwork deviceLists: - 14983 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37386 @@ -172084,8 +173426,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37424 @@ -172097,8 +173437,6 @@ entities: - type: DeviceNetwork deviceLists: - 41655 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37449 @@ -172110,8 +173448,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37450 @@ -172123,8 +173459,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37624 @@ -172136,8 +173470,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37646 @@ -172149,8 +173481,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37647 @@ -172162,8 +173492,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37648 @@ -172175,8 +173503,6 @@ entities: - type: DeviceNetwork deviceLists: - 41570 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37649 @@ -172187,8 +173513,6 @@ entities: - type: DeviceNetwork deviceLists: - 30173 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37650 @@ -172200,8 +173524,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37682 @@ -172213,8 +173535,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37683 @@ -172226,8 +173546,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37684 @@ -172238,8 +173556,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37685 @@ -172250,8 +173566,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37686 @@ -172262,8 +173576,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37687 @@ -172275,8 +173587,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37688 @@ -172288,8 +173598,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37689 @@ -172301,8 +173609,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37694 @@ -172314,8 +173620,6 @@ entities: - type: DeviceNetwork deviceLists: - 29883 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37695 @@ -172327,8 +173631,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37696 @@ -172340,8 +173642,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37747 @@ -172349,8 +173649,6 @@ entities: - type: Transform pos: 25.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37783 @@ -172363,8 +173661,6 @@ entities: - 41772 - 14068 - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37809 @@ -172373,8 +173669,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37859 @@ -172385,8 +173679,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37860 @@ -172398,8 +173690,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37870 @@ -172410,8 +173700,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37871 @@ -172423,8 +173711,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37874 @@ -172436,8 +173722,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37953 @@ -172451,8 +173735,6 @@ entities: - 30167 - 16630 - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 37983 @@ -172464,8 +173746,6 @@ entities: - type: DeviceNetwork deviceLists: - 41751 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38014 @@ -172477,8 +173757,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38015 @@ -172490,8 +173768,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38016 @@ -172503,8 +173779,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38017 @@ -172516,8 +173790,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38102 @@ -172526,8 +173798,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38103 @@ -172536,8 +173806,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38104 @@ -172546,8 +173814,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38170 @@ -172558,8 +173824,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38180 @@ -172571,8 +173835,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38214 @@ -172584,8 +173846,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38215 @@ -172597,8 +173857,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38229 @@ -172609,8 +173867,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38259 @@ -172622,8 +173878,6 @@ entities: - type: DeviceNetwork deviceLists: - 30174 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38260 @@ -172635,8 +173889,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38289 @@ -172647,8 +173899,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38320 @@ -172657,8 +173907,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38321 @@ -172669,8 +173917,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38322 @@ -172682,8 +173928,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38331 @@ -172695,8 +173939,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 38332 @@ -172708,8 +173950,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41534 @@ -172721,8 +173961,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41590 @@ -172734,8 +173972,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41687 @@ -172747,8 +173983,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41688 @@ -172760,8 +173994,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41690 @@ -172770,11 +174002,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41705 @@ -172786,8 +174013,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 41706 @@ -172799,8 +174024,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 42145 @@ -172808,8 +174031,6 @@ entities: - type: Transform pos: -57.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -172820,8 +174041,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9474 @@ -172833,8 +174052,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13961 @@ -172846,8 +174063,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14676 @@ -172859,8 +174074,6 @@ entities: - type: DeviceNetwork deviceLists: - 41619 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14704 @@ -172868,8 +174081,6 @@ entities: - type: Transform pos: -64.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16805 @@ -172881,8 +174092,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16848 @@ -172894,8 +174103,6 @@ entities: - type: DeviceNetwork deviceLists: - 41599 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16849 @@ -172907,8 +174114,6 @@ entities: - type: DeviceNetwork deviceLists: - 41601 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22019 @@ -172920,8 +174125,6 @@ entities: - type: DeviceNetwork deviceLists: - 30109 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22231 @@ -172933,8 +174136,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22232 @@ -172946,8 +174147,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22234 @@ -172958,8 +174157,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22423 @@ -172971,8 +174168,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22605 @@ -172984,8 +174179,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22656 @@ -172994,8 +174187,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22670 @@ -173003,8 +174194,6 @@ entities: - type: Transform pos: -24.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22698 @@ -173016,8 +174205,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22699 @@ -173029,8 +174216,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22700 @@ -173039,8 +174224,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22707 @@ -173049,8 +174232,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22726 @@ -173062,8 +174243,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22727 @@ -173075,8 +174254,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22734 @@ -173084,8 +174261,6 @@ entities: - type: Transform pos: -30.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22752 @@ -173097,8 +174272,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22753 @@ -173110,8 +174283,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22762 @@ -173120,8 +174291,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22763 @@ -173132,8 +174301,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22773 @@ -173145,8 +174312,6 @@ entities: - type: DeviceNetwork deviceLists: - 30111 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22786 @@ -173155,8 +174320,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22794 @@ -173165,8 +174328,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22803 @@ -173175,8 +174336,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22852 @@ -173188,8 +174347,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22905 @@ -173198,8 +174355,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-65.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22922 @@ -173208,8 +174363,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,-69.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22928 @@ -173218,8 +174371,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-75.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22941 @@ -173228,8 +174379,6 @@ entities: rot: 3.141592653589793 rad pos: -72.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22942 @@ -173238,8 +174387,6 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22943 @@ -173248,8 +174395,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-71.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22955 @@ -173258,8 +174403,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-70.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22974 @@ -173268,8 +174411,6 @@ entities: rot: 3.141592653589793 rad pos: -88.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23029 @@ -173281,8 +174422,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23048 @@ -173294,8 +174433,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23065 @@ -173304,8 +174441,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23097 @@ -173313,8 +174448,6 @@ entities: - type: Transform pos: -56.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23101 @@ -173323,8 +174456,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23103 @@ -173332,8 +174463,6 @@ entities: - type: Transform pos: -44.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23122 @@ -173341,8 +174470,6 @@ entities: - type: Transform pos: -47.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23124 @@ -173351,8 +174478,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23125 @@ -173360,8 +174485,6 @@ entities: - type: Transform pos: -56.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23134 @@ -173370,8 +174493,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23137 @@ -173379,8 +174500,6 @@ entities: - type: Transform pos: -53.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23141 @@ -173389,8 +174508,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23145 @@ -173398,8 +174515,6 @@ entities: - type: Transform pos: -48.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23146 @@ -173408,8 +174523,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23147 @@ -173417,8 +174530,6 @@ entities: - type: Transform pos: -44.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23170 @@ -173427,8 +174538,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23171 @@ -173437,8 +174546,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23176 @@ -173447,8 +174554,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23177 @@ -173457,8 +174562,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23179 @@ -173467,8 +174570,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23180 @@ -173477,8 +174578,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23181 @@ -173487,8 +174586,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23205 @@ -173500,8 +174597,6 @@ entities: - type: DeviceNetwork deviceLists: - 41650 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23207 @@ -173509,8 +174604,6 @@ entities: - type: Transform pos: -49.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23208 @@ -173519,8 +174612,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23211 @@ -173529,8 +174620,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23230 @@ -173539,8 +174628,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23232 @@ -173549,8 +174636,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23235 @@ -173559,8 +174644,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23236 @@ -173569,8 +174652,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-61.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23262 @@ -173579,8 +174660,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23265 @@ -173589,8 +174668,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23278 @@ -173599,8 +174676,6 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23279 @@ -173608,8 +174683,6 @@ entities: - type: Transform pos: -57.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23291 @@ -173620,8 +174693,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23293 @@ -173630,8 +174701,6 @@ entities: rot: 3.141592653589793 rad pos: -82.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23294 @@ -173640,8 +174709,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23295 @@ -173650,8 +174717,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23296 @@ -173660,8 +174725,6 @@ entities: rot: 3.141592653589793 rad pos: -86.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23303 @@ -173672,8 +174735,6 @@ entities: - type: DeviceNetwork deviceLists: - 4486 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23332 @@ -173685,8 +174746,6 @@ entities: - type: DeviceNetwork deviceLists: - 13266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23335 @@ -173698,8 +174757,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23336 @@ -173711,8 +174768,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23356 @@ -173724,8 +174779,6 @@ entities: - type: DeviceNetwork deviceLists: - 14556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23357 @@ -173733,8 +174786,6 @@ entities: - type: Transform pos: -68.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23358 @@ -173746,8 +174797,6 @@ entities: - type: DeviceNetwork deviceLists: - 4412 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23368 @@ -173759,8 +174808,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23369 @@ -173771,8 +174818,6 @@ entities: - type: DeviceNetwork deviceLists: - 1744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23394 @@ -173784,8 +174829,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23395 @@ -173797,8 +174840,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23396 @@ -173810,8 +174851,6 @@ entities: - type: DeviceNetwork deviceLists: - 29913 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23397 @@ -173823,8 +174862,6 @@ entities: - type: DeviceNetwork deviceLists: - 29917 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23595 @@ -173833,8 +174870,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24395 @@ -173842,8 +174877,6 @@ entities: - type: Transform pos: -68.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24934 @@ -173855,8 +174888,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24975 @@ -173868,8 +174899,6 @@ entities: - type: DeviceNetwork deviceLists: - 7586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25016 @@ -173877,8 +174906,6 @@ entities: - type: Transform pos: -143.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25026 @@ -173889,8 +174916,6 @@ entities: - type: DeviceNetwork deviceLists: - 16633 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25045 @@ -173899,8 +174924,6 @@ entities: rot: 1.5707963267948966 rad pos: -127.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25046 @@ -173909,8 +174932,6 @@ entities: rot: 3.141592653589793 rad pos: -126.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25047 @@ -173919,8 +174940,6 @@ entities: rot: 1.5707963267948966 rad pos: -133.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25049 @@ -173929,8 +174948,6 @@ entities: rot: -1.5707963267948966 rad pos: -141.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25050 @@ -173939,8 +174956,6 @@ entities: rot: 3.141592653589793 rad pos: -131.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25051 @@ -173949,8 +174964,6 @@ entities: rot: 3.141592653589793 rad pos: -126.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25055 @@ -173958,8 +174971,6 @@ entities: - type: Transform pos: -120.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25056 @@ -173967,8 +174978,6 @@ entities: - type: Transform pos: -104.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25060 @@ -173977,8 +174986,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25061 @@ -173987,8 +174994,6 @@ entities: rot: 3.141592653589793 rad pos: -89.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25062 @@ -173996,8 +175001,6 @@ entities: - type: Transform pos: -87.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25064 @@ -174006,8 +175009,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25284 @@ -174016,8 +175017,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25287 @@ -174026,8 +175025,6 @@ entities: rot: 1.5707963267948966 rad pos: -103.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25288 @@ -174036,8 +175033,6 @@ entities: rot: 1.5707963267948966 rad pos: -115.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25289 @@ -174045,8 +175040,6 @@ entities: - type: Transform pos: -108.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25292 @@ -174055,8 +175048,6 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25299 @@ -174068,8 +175059,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25300 @@ -174081,8 +175070,6 @@ entities: - type: DeviceNetwork deviceLists: - 42164 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25350 @@ -174091,8 +175078,6 @@ entities: rot: 3.141592653589793 rad pos: -98.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25367 @@ -174104,8 +175089,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25368 @@ -174117,8 +175100,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25369 @@ -174127,8 +175108,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25370 @@ -174137,8 +175116,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25371 @@ -174147,8 +175124,6 @@ entities: rot: 3.141592653589793 rad pos: -78.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25372 @@ -174157,8 +175132,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25373 @@ -174166,8 +175139,6 @@ entities: - type: Transform pos: -78.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25374 @@ -174176,8 +175147,6 @@ entities: rot: -1.5707963267948966 rad pos: -77.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25375 @@ -174185,8 +175154,6 @@ entities: - type: Transform pos: -78.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25376 @@ -174195,8 +175162,6 @@ entities: rot: 1.5707963267948966 rad pos: -88.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25384 @@ -174207,8 +175172,6 @@ entities: - type: DeviceNetwork deviceLists: - 29903 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25428 @@ -174217,8 +175180,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25431 @@ -174227,8 +175188,6 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25432 @@ -174237,8 +175196,6 @@ entities: rot: 3.141592653589793 rad pos: -78.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25436 @@ -174247,8 +175204,6 @@ entities: rot: 3.141592653589793 rad pos: -74.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25509 @@ -174257,8 +175212,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25510 @@ -174267,8 +175220,6 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25511 @@ -174277,8 +175228,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25512 @@ -174287,8 +175236,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25517 @@ -174300,8 +175247,6 @@ entities: - type: DeviceNetwork deviceLists: - 3209 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25528 @@ -174310,8 +175255,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25606 @@ -174323,8 +175266,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25612 @@ -174332,8 +175273,6 @@ entities: - type: Transform pos: -69.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25613 @@ -174342,8 +175281,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25615 @@ -174352,8 +175289,6 @@ entities: rot: 1.5707963267948966 rad pos: -69.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25654 @@ -174361,8 +175296,6 @@ entities: - type: Transform pos: -67.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25660 @@ -174371,8 +175304,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25661 @@ -174381,8 +175312,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25662 @@ -174391,8 +175320,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25676 @@ -174401,8 +175328,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25677 @@ -174411,8 +175336,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25678 @@ -174421,8 +175344,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25686 @@ -174431,8 +175352,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25688 @@ -174441,8 +175360,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25689 @@ -174451,8 +175368,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25767 @@ -174464,8 +175379,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25768 @@ -174476,8 +175389,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25769 @@ -174486,8 +175397,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25770 @@ -174495,8 +175404,6 @@ entities: - type: Transform pos: -37.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25771 @@ -174505,8 +175412,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25772 @@ -174515,8 +175420,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25782 @@ -174528,8 +175431,6 @@ entities: - type: DeviceNetwork deviceLists: - 29926 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25820 @@ -174538,8 +175439,6 @@ entities: rot: 3.141592653589793 rad pos: -110.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25825 @@ -174548,8 +175447,6 @@ entities: rot: 1.5707963267948966 rad pos: -76.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26004 @@ -174558,8 +175455,6 @@ entities: rot: 3.141592653589793 rad pos: -107.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26426 @@ -174570,8 +175465,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26674 @@ -174580,8 +175473,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26675 @@ -174589,8 +175480,6 @@ entities: - type: Transform pos: -17.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26677 @@ -174598,8 +175487,6 @@ entities: - type: Transform pos: -29.5,14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26678 @@ -174608,8 +175495,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26720 @@ -174618,8 +175503,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26721 @@ -174628,8 +175511,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26722 @@ -174638,8 +175519,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26723 @@ -174648,8 +175527,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26724 @@ -174658,8 +175535,6 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26753 @@ -174668,8 +175543,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26754 @@ -174678,8 +175551,9 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 30120 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26755 @@ -174688,8 +175562,9 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 30120 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26757 @@ -174697,8 +175572,6 @@ entities: - type: Transform pos: -33.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26758 @@ -174707,8 +175580,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26786 @@ -174719,8 +175590,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26792 @@ -174732,8 +175601,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26793 @@ -174745,8 +175612,6 @@ entities: - type: DeviceNetwork deviceLists: - 29928 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26798 @@ -174758,8 +175623,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26800 @@ -174768,8 +175631,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26801 @@ -174778,8 +175639,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26802 @@ -174790,8 +175649,6 @@ entities: - type: DeviceNetwork deviceLists: - 30092 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26808 @@ -174803,8 +175660,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26809 @@ -174816,8 +175671,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26810 @@ -174829,8 +175682,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26811 @@ -174842,8 +175693,6 @@ entities: - type: DeviceNetwork deviceLists: - 13956 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26928 @@ -174855,8 +175704,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26949 @@ -174865,8 +175712,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26950 @@ -174878,8 +175723,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26966 @@ -174890,8 +175733,6 @@ entities: - type: DeviceNetwork deviceLists: - 30095 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26988 @@ -174903,8 +175744,6 @@ entities: - type: DeviceNetwork deviceLists: - 30096 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27009 @@ -174912,8 +175751,6 @@ entities: - type: Transform pos: 16.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27013 @@ -174925,8 +175762,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27025 @@ -174937,8 +175772,6 @@ entities: - type: DeviceNetwork deviceLists: - 41784 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27053 @@ -174949,8 +175782,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27054 @@ -174961,8 +175792,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27055 @@ -174973,8 +175802,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27056 @@ -174985,8 +175812,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27057 @@ -174997,8 +175822,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27058 @@ -175010,8 +175833,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27059 @@ -175022,8 +175843,6 @@ entities: - type: DeviceNetwork deviceLists: - 36730 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27060 @@ -175032,8 +175851,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27061 @@ -175045,8 +175862,6 @@ entities: - type: DeviceNetwork deviceLists: - 30099 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27100 @@ -175055,8 +175870,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27101 @@ -175065,8 +175878,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27117 @@ -175075,8 +175886,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27123 @@ -175085,8 +175894,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27124 @@ -175095,8 +175902,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27125 @@ -175104,8 +175909,6 @@ entities: - type: Transform pos: -18.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27147 @@ -175114,8 +175917,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27149 @@ -175124,8 +175925,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27155 @@ -175134,8 +175933,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27156 @@ -175144,8 +175941,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27178 @@ -175154,8 +175949,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27179 @@ -175164,8 +175957,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27180 @@ -175174,8 +175965,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27182 @@ -175184,8 +175973,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27183 @@ -175193,8 +175980,6 @@ entities: - type: Transform pos: -5.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27185 @@ -175203,8 +175988,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27186 @@ -175216,8 +175999,6 @@ entities: - type: DeviceNetwork deviceLists: - 30102 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27193 @@ -175229,8 +176010,6 @@ entities: - type: DeviceNetwork deviceLists: - 41770 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27262 @@ -175239,8 +176018,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27268 @@ -175252,8 +176029,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27269 @@ -175265,8 +176040,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27270 @@ -175278,8 +176051,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27271 @@ -175288,8 +176059,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27272 @@ -175298,8 +176067,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27274 @@ -175308,8 +176075,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27275 @@ -175318,8 +176083,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27286 @@ -175331,8 +176094,6 @@ entities: - type: DeviceNetwork deviceLists: - 29780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27321 @@ -175341,8 +176102,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27347 @@ -175353,8 +176112,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27354 @@ -175366,8 +176123,6 @@ entities: - type: DeviceNetwork deviceLists: - 30101 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27355 @@ -175376,8 +176131,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27362 @@ -175386,8 +176139,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27363 @@ -175396,8 +176147,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27364 @@ -175406,8 +176155,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27365 @@ -175416,8 +176163,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27366 @@ -175425,8 +176170,6 @@ entities: - type: Transform pos: 10.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27411 @@ -175435,8 +176178,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27413 @@ -175448,8 +176189,6 @@ entities: - type: DeviceNetwork deviceLists: - 41744 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27423 @@ -175461,8 +176200,6 @@ entities: - type: DeviceNetwork deviceLists: - 41775 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27428 @@ -175471,8 +176208,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27456 @@ -175481,8 +176216,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27458 @@ -175491,8 +176224,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27479 @@ -175504,8 +176235,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27480 @@ -175516,8 +176245,6 @@ entities: - type: DeviceNetwork deviceLists: - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27482 @@ -175526,8 +176253,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27483 @@ -175535,8 +176260,6 @@ entities: - type: Transform pos: 16.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27615 @@ -175545,8 +176268,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28092 @@ -175555,8 +176276,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28207 @@ -175565,8 +176284,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30182 @@ -175575,8 +176292,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30200 @@ -175585,8 +176300,6 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30289 @@ -175595,8 +176308,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33259 @@ -175604,8 +176315,6 @@ entities: - type: Transform pos: -152.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33653 @@ -175617,8 +176326,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33655 @@ -175627,8 +176334,6 @@ entities: rot: 1.5707963267948966 rad pos: -100.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33656 @@ -175637,8 +176342,6 @@ entities: rot: 3.141592653589793 rad pos: -94.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 33758 @@ -175650,8 +176353,6 @@ entities: - type: DeviceNetwork deviceLists: - 30168 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34209 @@ -175663,8 +176364,6 @@ entities: - type: DeviceNetwork deviceLists: - 41645 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34595 @@ -175675,8 +176374,6 @@ entities: - type: DeviceNetwork deviceLists: - 41640 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34600 @@ -175688,8 +176385,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34601 @@ -175701,8 +176396,6 @@ entities: - type: DeviceNetwork deviceLists: - 41638 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34628 @@ -175714,8 +176407,6 @@ entities: - type: DeviceNetwork deviceLists: - 30114 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34631 @@ -175727,8 +176418,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 34984 @@ -175740,8 +176429,6 @@ entities: - type: DeviceNetwork deviceLists: - 29902 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36276 @@ -175753,8 +176440,6 @@ entities: - type: DeviceNetwork deviceLists: - 41585 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36285 @@ -175766,8 +176451,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 36286 @@ -175779,8 +176462,6 @@ entities: - type: DeviceNetwork deviceLists: - 41587 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37121 @@ -175792,8 +176473,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - uid: 37122 components: - type: Transform @@ -175803,8 +176482,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37123 @@ -175816,8 +176493,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37124 @@ -175829,8 +176504,6 @@ entities: - type: DeviceNetwork deviceLists: - 30094 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37148 @@ -175839,8 +176512,6 @@ entities: rot: 1.5707963267948966 rad pos: -150.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37149 @@ -175848,8 +176519,6 @@ entities: - type: Transform pos: -140.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37241 @@ -175861,8 +176530,6 @@ entities: - type: DeviceNetwork deviceLists: - 29918 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37251 @@ -175871,8 +176538,6 @@ entities: rot: 1.5707963267948966 rad pos: -120.5,-52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37252 @@ -175881,8 +176546,6 @@ entities: rot: 1.5707963267948966 rad pos: -119.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37278 @@ -175894,8 +176557,6 @@ entities: - type: DeviceNetwork deviceLists: - 41623 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37279 @@ -175904,8 +176565,6 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-86.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37281 @@ -175913,8 +176572,6 @@ entities: - type: Transform pos: -95.5,-82.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37362 @@ -175926,8 +176583,6 @@ entities: - type: DeviceNetwork deviceLists: - 41636 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37371 @@ -175939,8 +176594,6 @@ entities: - type: DeviceNetwork deviceLists: - 14983 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37388 @@ -175951,8 +176604,6 @@ entities: - type: DeviceNetwork deviceLists: - 41662 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37422 @@ -175963,8 +176614,6 @@ entities: - type: DeviceNetwork deviceLists: - 41655 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37446 @@ -175976,8 +176625,6 @@ entities: - type: DeviceNetwork deviceLists: - 41659 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37488 @@ -175989,8 +176636,6 @@ entities: - type: DeviceNetwork deviceLists: - 29883 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37497 @@ -176002,8 +176647,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37498 @@ -176014,8 +176657,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37499 @@ -176027,8 +176668,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37514 @@ -176040,8 +176679,6 @@ entities: - type: DeviceNetwork deviceLists: - 41548 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37519 @@ -176052,8 +176689,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37520 @@ -176065,8 +176700,6 @@ entities: - type: DeviceNetwork deviceLists: - 41550 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37525 @@ -176078,8 +176711,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37526 @@ -176091,8 +176722,6 @@ entities: - type: DeviceNetwork deviceLists: - 41560 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37527 @@ -176103,8 +176732,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37528 @@ -176115,8 +176742,6 @@ entities: - type: DeviceNetwork deviceLists: - 41556 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37578 @@ -176127,8 +176752,6 @@ entities: - type: DeviceNetwork deviceLists: - 41570 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37579 @@ -176139,8 +176762,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37580 @@ -176152,8 +176773,6 @@ entities: - type: DeviceNetwork deviceLists: - 41571 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37594 @@ -176164,8 +176783,6 @@ entities: - type: DeviceNetwork deviceLists: - 30173 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37623 @@ -176177,8 +176794,6 @@ entities: - type: DeviceNetwork deviceLists: - 41575 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37746 @@ -176186,8 +176801,6 @@ entities: - type: Transform pos: 24.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37782 @@ -176201,8 +176814,6 @@ entities: - 41772 - 14068 - 30100 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37888 @@ -176214,8 +176825,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37897 @@ -176226,8 +176835,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37898 @@ -176239,8 +176846,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37908 @@ -176251,8 +176856,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37909 @@ -176264,8 +176867,6 @@ entities: - type: DeviceNetwork deviceLists: - 41749 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37931 @@ -176274,8 +176875,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37952 @@ -176287,8 +176886,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 37982 @@ -176300,8 +176897,6 @@ entities: - type: DeviceNetwork deviceLists: - 41751 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38010 @@ -176312,8 +176907,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38011 @@ -176325,8 +176918,6 @@ entities: - type: DeviceNetwork deviceLists: - 41753 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38012 @@ -176337,8 +176928,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38013 @@ -176350,8 +176939,6 @@ entities: - type: DeviceNetwork deviceLists: - 41756 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38099 @@ -176360,8 +176947,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38100 @@ -176370,8 +176955,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38101 @@ -176380,8 +176963,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38148 @@ -176393,8 +176974,6 @@ entities: - type: DeviceNetwork deviceLists: - 41757 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38169 @@ -176406,8 +176985,6 @@ entities: - type: DeviceNetwork deviceLists: - 16630 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38179 @@ -176419,8 +176996,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38227 @@ -176432,8 +177007,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38228 @@ -176444,8 +177017,6 @@ entities: - type: DeviceNetwork deviceLists: - 41748 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38257 @@ -176457,8 +177028,6 @@ entities: - type: DeviceNetwork deviceLists: - 41760 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38258 @@ -176470,8 +177039,6 @@ entities: - type: DeviceNetwork deviceLists: - 30174 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38288 @@ -176483,8 +177050,6 @@ entities: - type: DeviceNetwork deviceLists: - 30112 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38300 @@ -176496,8 +177061,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38301 @@ -176509,8 +177072,6 @@ entities: - type: DeviceNetwork deviceLists: - 41668 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38302 @@ -176519,8 +177080,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38330 @@ -176532,8 +177091,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 38333 @@ -176545,8 +177102,6 @@ entities: - type: DeviceNetwork deviceLists: - 41665 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41533 @@ -176558,8 +177113,6 @@ entities: - type: DeviceNetwork deviceLists: - 30171 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41622 @@ -176571,8 +177124,6 @@ entities: - type: DeviceNetwork deviceLists: - 41596 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41702 @@ -176581,11 +177132,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41703 @@ -176597,8 +177143,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41704 @@ -176610,8 +177154,6 @@ entities: - type: DeviceNetwork deviceLists: - 41737 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41722 @@ -176622,8 +177164,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 41734 @@ -176635,8 +177175,6 @@ entities: - type: DeviceNetwork deviceLists: - 41741 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 42144 @@ -176644,8 +177182,6 @@ entities: - type: Transform pos: -56.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -176656,16 +177192,12 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-58.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 26324 components: - type: Transform rot: 3.141592653589793 rad pos: -100.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#80FF00FF' - uid: 27921 @@ -176673,8 +177205,6 @@ entities: - type: Transform pos: -101.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 27922 @@ -176682,15 +177212,11 @@ entities: - type: Transform pos: -103.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27923 components: - type: Transform pos: -105.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66FF66FF' - uid: 28534 @@ -176698,8 +177224,6 @@ entities: - type: Transform pos: -102.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF3333FF' - uid: 28535 @@ -176707,8 +177231,6 @@ entities: - type: Transform pos: -104.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66B2FF' - proto: Gauze @@ -177601,12 +178123,7 @@ entities: - uid: 839 components: - type: Transform - pos: -9.5,14.5 - parent: 1 - - uid: 840 - components: - - type: Transform - pos: -11.5,14.5 + pos: -8.5,14.5 parent: 1 - uid: 843 components: @@ -178868,106 +179385,6 @@ entities: - type: Transform pos: -46.5,-25.5 parent: 1 - - uid: 3610 - components: - - type: Transform - pos: -8.5,14.5 - parent: 1 - - uid: 3611 - components: - - type: Transform - pos: -7.5,14.5 - parent: 1 - - uid: 3612 - components: - - type: Transform - pos: -6.5,14.5 - parent: 1 - - uid: 3613 - components: - - type: Transform - pos: -5.5,14.5 - parent: 1 - - uid: 3614 - components: - - type: Transform - pos: -4.5,14.5 - parent: 1 - - uid: 3615 - components: - - type: Transform - pos: -3.5,14.5 - parent: 1 - - uid: 3616 - components: - - type: Transform - pos: -2.5,14.5 - parent: 1 - - uid: 3617 - components: - - type: Transform - pos: -1.5,14.5 - parent: 1 - - uid: 3618 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1 - - uid: 3619 - components: - - type: Transform - pos: 0.5,14.5 - parent: 1 - - uid: 3620 - components: - - type: Transform - pos: 1.5,14.5 - parent: 1 - - uid: 3621 - components: - - type: Transform - pos: 2.5,14.5 - parent: 1 - - uid: 3622 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 - - uid: 3623 - components: - - type: Transform - pos: 4.5,14.5 - parent: 1 - - uid: 3624 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1 - - uid: 3625 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1 - - uid: 3626 - components: - - type: Transform - pos: 7.5,14.5 - parent: 1 - - uid: 3627 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1 - - uid: 3628 - components: - - type: Transform - pos: 9.5,14.5 - parent: 1 - - uid: 3629 - components: - - type: Transform - pos: 10.5,14.5 - parent: 1 - uid: 3665 components: - type: Transform @@ -185758,6 +186175,106 @@ entities: - type: Transform pos: -93.5,-44.5 parent: 1 + - uid: 21317 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 21329 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 21330 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 21331 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 21332 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 21333 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 21334 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 21335 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 21336 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 21337 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 21338 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 21339 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 21340 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 21341 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 21342 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 21343 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 21344 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 21345 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 21346 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 21347 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1 - uid: 22118 components: - type: Transform @@ -188513,6 +189030,11 @@ entities: - type: Transform pos: -14.5,42.5 parent: 1 + - uid: 38443 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1 - uid: 38475 components: - type: Transform @@ -192209,7 +192731,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192226,7 +192747,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192243,7 +192763,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192260,7 +192779,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192277,7 +192795,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192294,7 +192811,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -192302,6 +192818,26 @@ entities: - data: null ReagentId: Bleach Quantity: 60 +- proto: Jukebox + entities: + - uid: 10028 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 1 + - uid: 42983 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 +- proto: JukeboxCircuitBoard + entities: + - uid: 42982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.89536,-54.43699 + parent: 1 - proto: KitchenDeepFryer entities: - uid: 533 @@ -192873,8 +193409,8 @@ entities: immutable: False temperature: 293.1465 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -192891,7 +193427,16 @@ entities: showEnts: False occludes: True ents: + - 42950 + - 42949 + - 42948 + - 42947 + - 42946 + - 42945 + - 41126 + - 30148 - 27210 + - 9810 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -194836,15 +195381,21 @@ entities: - type: Transform pos: -18.522738,-59.332596 parent: 1 - - uid: 41126 + - uid: 42951 components: - type: Transform - pos: -119.61984,-21.358727 + pos: -119.45167,-21.418072 + parent: 1 + - uid: 42953 + components: + - type: Transform + pos: -119.45167,-21.418072 + parent: 1 + - uid: 42955 + components: + - type: Transform + pos: -119.45167,-21.418072 parent: 1 - - type: Stack - count: 3 - - type: Item - size: 3 - proto: MatterBinStockPart entities: - uid: 30880 @@ -198318,90 +198869,71 @@ entities: parent: 1 - proto: NitrogenCanister entities: + - uid: 516 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 1 - uid: 7541 components: - type: Transform pos: -64.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7996 components: - type: Transform pos: -103.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10271 components: - type: Transform pos: 27.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10709 components: - type: Transform pos: 39.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 11596 components: - type: Transform pos: 5.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15788 components: - type: Transform pos: -62.5,-56.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 21209 components: - type: Transform pos: -106.5,-46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28778 components: - type: Transform pos: -17.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30456 components: - type: Transform pos: -87.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30703 components: - type: Transform pos: -18.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30764 components: - type: Transform pos: -58.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 42045 components: - type: Transform pos: -80.5,-40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: NitrogenTank entities: - uid: 36726 @@ -198503,7 +199035,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 3000 name: null @@ -198664,120 +199195,86 @@ entities: - type: Transform pos: -58.5,-72.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4227 components: - type: Transform pos: 5.5,45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7540 components: - type: Transform pos: -64.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 8874 components: - type: Transform pos: -100.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9904 components: - type: Transform pos: 53.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10135 components: - type: Transform pos: 23.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 10708 components: - type: Transform pos: 38.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 20333 components: - type: Transform pos: -106.5,-45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 28779 components: - type: Transform pos: -15.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 29542 components: - type: Transform pos: 58.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30454 components: - type: Transform pos: -92.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30698 components: - type: Transform pos: -35.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30702 components: - type: Transform pos: -18.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31009 components: - type: Transform pos: 14.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 35681 components: - type: Transform pos: -106.5,-88.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36307 components: - type: Transform pos: -131.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 42046 components: - type: Transform pos: -81.5,-40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenTank entities: - uid: 36725 @@ -203026,7 +203523,7 @@ entities: - uid: 15590 components: - type: Transform - pos: -101.69829,0.493998 + pos: -101.7105,0.5489277 parent: 1 - type: Paper content: > @@ -204227,9 +204724,13 @@ entities: - uid: 32162 components: - type: Transform - pos: -16.977177,40.726406 + pos: -17.181759,40.516174 parent: 1 - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom content: > To: Logistics Officer @@ -204244,16 +204745,24 @@ entities: - uid: 32163 components: - type: Transform - pos: 15.240699,-22.171131 + pos: 15.97237,-22.32553 parent: 1 - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom content: "To: Warden\n\nMessage: As Hammurabi Station is a designated prison facility, all ore is to be diverted to prison workshop for processing. Materials produced by the prisoners will be sent back to Logistics for distribution throughout the station as needed.\n\nPlease coordinate with the Logistics Officer to ensure the production chain is maintained efficiently. \n\nFrom: Centcom Central Logistics " - uid: 32164 components: - type: Transform - pos: -99.21102,-0.2790439 + pos: -99.255486,-0.32356215 parent: 1 - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom content: "To: Logistics Officer\n\nMessage: As Hammurabi Station is a designated prison facility, all ore is to be diverted to prison workshop for processing. Materials produced by the prisoners will be sent back to Logistics for distribution throughout the station as needed.\n\nPlease coordinate with the warden and your salvage team to ensure the production chain is maintained efficiently. \n\nFrom: Centcom Central Logistics " - uid: 33489 components: @@ -204385,9 +204894,13 @@ entities: - uid: 42000 components: - type: Transform - pos: -100.50558,0.7054387 + pos: -100.5159,0.7469725 parent: 1 - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom content: >- Captain: @@ -204881,7 +205394,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -205268,6 +205780,42 @@ entities: - type: Transform pos: 49.53656,-49.454006 parent: 1 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 30625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-50.5 + parent: 1 + - uid: 30937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-49.5 + parent: 1 + - uid: 31045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-48.5 + parent: 1 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 33513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,-4.5 + parent: 1 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 37955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-61.5 + parent: 1 - proto: PlasticFlapsAirtightClear entities: - uid: 2106 @@ -205353,8 +205901,8 @@ entities: pos: 42.5,-1.5 parent: 1 missingComponents: - - Damageable - Construction + - Damageable - uid: 15226 components: - type: Transform @@ -206385,25 +206933,25 @@ entities: - type: Transform pos: -108.5,-35.5 parent: 1 - - uid: 5208 + - uid: 15267 components: - type: Transform - pos: -113.5,-22.5 + pos: 60.5,-56.5 parent: 1 - - uid: 8961 + - uid: 15855 components: - type: Transform - pos: -114.5,-22.5 + pos: 49.5,-47.5 parent: 1 - - uid: 15267 + - uid: 42458 components: - type: Transform - pos: 60.5,-56.5 + pos: -111.5,-19.5 parent: 1 - - uid: 15855 + - uid: 42459 components: - type: Transform - pos: 49.5,-47.5 + pos: -110.5,-19.5 parent: 1 - proto: PortableGeneratorSuperPacman entities: @@ -212642,7 +213190,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212665,7 +213212,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212684,7 +213230,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -212704,7 +213249,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -215533,6 +216077,11 @@ entities: - type: Transform pos: -65.5,-5.5 parent: 1 + - uid: 8281 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 - uid: 11163 components: - type: Transform @@ -215543,11 +216092,6 @@ entities: - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 11165 - components: - - type: Transform - pos: -6.5,3.5 - parent: 1 - uid: 11166 components: - type: Transform @@ -222780,11 +223324,6 @@ entities: parent: 1 - proto: RandomVendingSnacks entities: - - uid: 1552 - components: - - type: Transform - pos: -53.5,-5.5 - parent: 1 - uid: 23767 components: - type: Transform @@ -231520,20 +232059,21 @@ entities: - uid: 9810 components: - type: Transform - pos: -109.44787,-37.35083 - parent: 1 - - type: Stack - count: 3 - - type: Item - size: 3 + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 27210 components: - type: Transform parent: 27209 - - type: Stack - count: 10 - - type: Item - size: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30148 + components: + - type: Transform + parent: 27209 - type: Physics canCollide: False - type: InsideEntityStorage @@ -231562,6 +232102,70 @@ entities: - type: Transform pos: 18.486887,19.689005 parent: 1 + - uid: 41126 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42945 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42946 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42947 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42948 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42949 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42950 + components: + - type: Transform + parent: 27209 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42952 + components: + - type: Transform + pos: -109.49469,-37.37247 + parent: 1 + - uid: 42954 + components: + - type: Transform + pos: -109.49469,-37.37247 + parent: 1 + - uid: 42956 + components: + - type: Transform + pos: -109.49469,-37.37247 + parent: 1 - proto: SheetPlasteel entities: - uid: 8811 @@ -232257,6 +232861,69 @@ entities: - type: DeviceLinkSink links: - 12289 + - uid: 42974 + components: + - type: Transform + pos: -70.5,22.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42975 + components: + - type: Transform + pos: -70.5,21.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42976 + components: + - type: Transform + pos: -63.5,23.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42977 + components: + - type: Transform + pos: -63.5,22.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42978 + components: + - type: Transform + pos: -63.5,21.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42979 + components: + - type: Transform + pos: -63.5,20.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 + - uid: 42980 + components: + - type: Transform + pos: -63.5,19.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 42981 - proto: ShuttersRadiationOpen entities: - uid: 10902 @@ -235134,6 +235801,42 @@ entities: linkedPorts: 41056: - Status: Toggle + - uid: 42981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,18.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 42976: + - On: Close + - Off: Open + - Status: Close + 42977: + - On: Close + - Off: Open + - Status: Close + 42978: + - On: Close + - Off: Open + - Status: Close + 42979: + - On: Close + - Off: Open + - Status: Close + 42980: + - On: Close + - Off: Open + - Status: Close + 42974: + - On: Open + - Off: Close + - Status: Close + 42975: + - On: Open + - Off: Close + - Status: Close - proto: SignAnomaly entities: - uid: 20875 @@ -237285,6 +237988,13 @@ entities: - type: Transform pos: -145.5,-39.5 parent: 1 + - uid: 42452 + components: + - type: MetaData + name: Main SMES 4 + - type: Transform + pos: -113.5,-21.5 + parent: 1 - proto: SMESBasicEmpty entities: - uid: 4283 @@ -238089,8 +238799,6 @@ entities: - type: Transform pos: -93.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: SpaceHeaterEnabled entities: - uid: 30414 @@ -238098,8 +238806,6 @@ entities: - type: Transform pos: 53.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: SpacemenFigureSpawner entities: - uid: 15141 @@ -238251,11 +238957,6 @@ entities: parent: 1 - proto: SpawnMobMouse entities: - - uid: 9647 - components: - - type: Transform - pos: -16.5,11.5 - parent: 1 - uid: 11241 components: - type: Transform @@ -238276,6 +238977,11 @@ entities: - type: Transform pos: -60.5,-77.5 parent: 1 + - uid: 30147 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 - uid: 36836 components: - type: Transform @@ -239681,7 +240387,6 @@ entities: solutions: spray: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -240193,141 +240898,96 @@ entities: - type: Transform pos: -73.5,-51.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 12270 components: - type: Transform pos: -32.5,-55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13280 components: - type: Transform pos: -106.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 13555 components: - type: Transform pos: -105.5,-48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 21126 - components: - - type: Transform - pos: -125.5,18.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 21142 components: - type: Transform pos: -125.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22433 components: - type: Transform pos: -113.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 27207 components: - type: Transform pos: 4.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30770 components: - type: Transform pos: -65.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30894 components: - type: Transform pos: -31.5,-79.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30895 components: - type: Transform pos: -32.5,-81.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 30973 components: - type: Transform pos: -27.5,-74.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 31342 components: - type: Transform pos: -32.5,-62.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33878 components: - type: Transform pos: -112.5,-67.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33879 components: - type: Transform pos: -112.5,-69.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 33880 components: - type: Transform pos: -113.5,-68.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 34090 components: - type: Transform pos: -111.5,-57.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36663 components: - type: Transform pos: -90.5,-70.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36718 components: - type: Transform pos: -20.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 36719 components: - type: Transform pos: -19.5,-66.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: StrangePill entities: - uid: 15740 @@ -244683,16 +245343,6 @@ entities: - type: Transform pos: -18.5,12.5 parent: 1 - - uid: 662 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 1 - - uid: 665 - components: - - type: Transform - pos: -23.5,-24.5 - parent: 1 - uid: 782 components: - type: Transform @@ -245133,15 +245783,15 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,-50.5 parent: 1 - - uid: 11081 + - uid: 11082 components: - type: Transform - pos: -22.5,-24.5 + pos: -23.5,-24.5 parent: 1 - - uid: 11082 + - uid: 11165 components: - type: Transform - pos: -25.5,-24.5 + pos: -24.5,-24.5 parent: 1 - uid: 11294 components: @@ -245193,6 +245843,11 @@ entities: - type: Transform pos: -46.5,-32.5 parent: 1 + - uid: 12667 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 1 - uid: 13627 components: - type: Transform @@ -245228,6 +245883,11 @@ entities: - type: Transform pos: 26.5,-23.5 parent: 1 + - uid: 16127 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 1 - uid: 16652 components: - type: Transform @@ -247038,7 +247698,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -247772,20 +248431,22 @@ entities: - type: Transform pos: -53.5,2.5 parent: 1 - - uid: 7722 + - uid: 13799 components: - type: Transform - pos: -64.5,30.5 + pos: 23.5,-22.5 parent: 1 - - uid: 12667 +- proto: VendingMachineBoozeUnlocked + entities: + - uid: 21126 components: - type: Transform - pos: -86.5,-52.5 + pos: -64.5,30.5 parent: 1 - - uid: 13799 + - uid: 28801 components: - type: Transform - pos: 23.5,-22.5 + pos: -86.5,-52.5 parent: 1 - proto: VendingMachineBoxingDrobe entities: @@ -249644,11 +250305,6 @@ entities: - type: Transform pos: 11.5,13.5 parent: 1 - - uid: 1071 - components: - - type: Transform - pos: 11.5,14.5 - parent: 1 - uid: 1072 components: - type: Transform @@ -252924,11 +253580,6 @@ entities: - type: Transform pos: -35.5,-34.5 parent: 1 - - uid: 4086 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 1 - uid: 4087 components: - type: Transform @@ -262844,6 +263495,11 @@ entities: - type: Transform pos: -100.5,-39.5 parent: 1 + - uid: 21315 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 - uid: 21318 components: - type: Transform @@ -272264,8 +272920,6 @@ entities: - type: Transform pos: -108.5,-50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: WeaponCapacitorRecharger entities: - uid: 395 @@ -273067,24 +273721,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-23.5 parent: 1 - - uid: 4204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-48.5 - parent: 1 - - uid: 4205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-49.5 - parent: 1 - - uid: 4206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-50.5 - parent: 1 - proto: WindoorSecureCargoLocked entities: - uid: 2113 @@ -273115,12 +273751,6 @@ entities: parent: 1 - proto: WindoorSecureCommandLocked entities: - - uid: 8281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-4.5 - parent: 1 - uid: 15281 components: - type: Transform @@ -273424,12 +274054,6 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-28.5 parent: 1 - - uid: 4141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-61.5 - parent: 1 - uid: 4240 components: - type: Transform diff --git a/Resources/Maps/hive.yml b/Resources/Maps/hive.yml index 5f766beb172..6142830be2b 100644 --- a/Resources/Maps/hive.yml +++ b/Resources/Maps/hive.yml @@ -177,7 +177,7 @@ entities: version: 6 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAMwAAAAACMwAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAeQAAAAABeQAAAAACeQAAAAADeQAAAAACeQAAAAACeQAAAAADeQAAAAACeQAAAAAAeQAAAAADeQAAAAABeQAAAAABeQAAAAADeQAAAAABeQAAAAABeQAAAAAATgAAAAAAeQAAAAAAeQAAAAABeQAAAAAATQAAAAAATQAAAAABeQAAAAABeQAAAAACTQAAAAADeQAAAAADeQAAAAADTQAAAAADTQAAAAAAeQAAAAACeQAAAAACTQAAAAADeQAAAAABeQAAAAACeQAAAAAAeQAAAAADTQAAAAABTQAAAAADeQAAAAADeQAAAAABTQAAAAABeQAAAAADeQAAAAAATQAAAAAATQAAAAABeQAAAAAAeQAAAAACTQAAAAAAeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAAAeQAAAAABeQAAAAACeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAADeQAAAAAAeQAAAAADeQAAAAAAeQAAAAACTgAAAAAAeQAAAAADeQAAAAABTgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAfAAAAAAAeQAAAAACeQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADTgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAQQAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAACeQAAAAABfAAAAAAAeQAAAAACfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAABfAAAAAAAfAAAAAAAeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAIwAAAAAAIwAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAACeQAAAAAAfAAAAAAAeQAAAAACfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAawAAAAAAQQAAAAAAfAAAAAAAMwAAAAACMwAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAeQAAAAABeQAAAAACeQAAAAADeQAAAAACeQAAAAACeQAAAAADeQAAAAACeQAAAAAAeQAAAAADeQAAAAABeQAAAAABeQAAAAADeQAAAAABeQAAAAABeQAAAAAATgAAAAAAeQAAAAAAeQAAAAABeQAAAAAATQAAAAAATQAAAAABeQAAAAABeQAAAAACTQAAAAADeQAAAAADeQAAAAADTQAAAAADTQAAAAAAeQAAAAACeQAAAAACTQAAAAADeQAAAAABeQAAAAACeQAAAAAAeQAAAAADTQAAAAABTQAAAAADeQAAAAADeQAAAAABTQAAAAABeQAAAAADeQAAAAAATQAAAAAATQAAAAABeQAAAAAAeQAAAAACTQAAAAAAeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAAAeQAAAAABeQAAAAACeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAADeQAAAAAAeQAAAAADeQAAAAAAeQAAAAACTgAAAAAAeQAAAAADeQAAAAABTgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAfAAAAAAAeQAAAAACeQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAABfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADTgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAQQAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAACeQAAAAABfAAAAAAAeQAAAAACfAAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAABfAAAAAAAfAAAAAAAeQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAATgAAAAAAIwAAAAAAIwAAAAAATgAAAAAATgAAAAAAfAAAAAAAeQAAAAACeQAAAAAAfAAAAAAAeQAAAAACfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAA version: 6 0,2: ind: 0,2 @@ -329,7 +329,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAawAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbQAAAAACewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAawAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAfAAAAAAATgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbQAAAAACewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -8668,2713 +8668,2877 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 65294 + -1,0: + 0: 65358 0,1: - 0: 61439 + 0: 52479 + -1,1: + 0: 13311 0,2: - 0: 65534 + 0: 65484 + -1,2: + 0: 65331 + 0,3: + 0: 65295 + -1,3: + 0: 65039 + 0,4: + 0: 33279 + 2: 12288 + 0,-1: + 0: 61166 1,0: - 0: 65535 + 0: 64973 1,1: - 0: 65535 + 0: 56799 1,2: - 0: 65535 + 0: 65309 + 1,3: + 0: 65423 + 1,-1: + 0: 53755 + 1,4: + 0: 63743 2,0: 0: 65535 2,1: 0: 65535 2,2: - 0: 65535 + 0: 65423 + 2,3: + 0: 40399 + 2,-1: + 0: 64735 + 2,4: + 0: 64733 3,0: - 0: 65535 + 0: 64319 3,1: - 0: 65535 + 0: 62395 3,2: + 0: 65439 + 3,3: + 0: 8191 + 3,-1: + 0: 64511 + 3,4: + 0: 48059 + 4,0: + 0: 65487 + 4,1: + 0: 64767 + 4,2: 0: 65535 + 4,3: + 0: 52639 + 0,-4: + 0: 64764 + 0,-5: + 0: 65359 0,-3: - 0: 65535 + 0: 65167 + -1,-3: + 0: 56645 0,-2: - 0: 65535 - 0,-1: + 0: 61006 + -1,-2: + 0: 57309 + -1,-1: + 0: 60637 + 1,-4: 0: 65535 1,-3: - 0: 65535 + 0: 47887 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 64395 + 1,-5: + 0: 7407 + 2,-4: + 0: 64989 2,-3: - 0: 65535 + 0: 64973 2,-2: 0: 65535 - 2,-1: - 0: 65535 + 2,-5: + 0: 52701 + 3,-4: + 0: 64315 3,-3: - 0: 65535 + 0: 46011 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 32767 - -1,2: - 0: 65527 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -4,-3: - 1: 1 - 0: 65534 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 5,0: - 0: 65535 + 0: 62395 + 3,-5: + 0: 64435 + 4,-4: + 0: 65295 + 4,-3: + 0: 63743 4,-2: - 0: 65535 + 0: 63743 4,-1: 0: 65535 - 5,-1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -7,-1: - 0: 65535 - -6,-1: - 0: 65535 - -5,-1: - 0: 65535 - -5,-2: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -10,4: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - 0,3: - 0: 65535 - 1,3: - 0: 65535 - 2,3: - 0: 65535 - 3,3: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: + -8,-8: + 0: 39743 + -8,-9: + 0: 65280 + 1: 4 + -9,-8: + 0: 65416 + -8,-7: + 0: 4369 + 1: 52428 + -9,-7: + 0: 48056 + -8,-6: + 0: 4593 + 1: 49152 + -9,-6: + 0: 63931 + -8,-5: + 0: 30577 + -9,-5: 0: 65535 - 2,-4: + -8,-4: + 0: 52838 + -7,-8: + 0: 21839 + -7,-7: + 1: 65521 + 0: 4 + -7,-6: + 1: 65535 + -7,-5: + 0: 61681 + 1: 14 + -7,-9: 0: 65535 - 3,-4: + -7,-4: + 0: 62703 + -6,-8: 0: 65535 + -6,-7: + 1: 65520 + -6,-6: + 1: 16383 -6,-5: - 0: 65535 + 1: 1 + 0: 47290 + -6,-9: + 0: 65297 + 1: 4 + -6,-4: + 0: 65225 + -5,-8: + 0: 13119 + 1: 34816 + -5,-7: + 1: 30712 -5,-6: - 0: 65535 + 1: 7 + 0: 60928 -5,-5: - 0: 16383 - 1: 49152 + 0: 4479 + 2: 49152 + -5,-9: + 0: 65416 + -5,-4: + 0: 4881 + 2: 52428 + -4,-8: + 0: 15 + 1: 65280 + -4,-6: + 0: 65294 + -4,-5: + 0: 34947 + 2: 13056 -4,-4: - 1: 4403 - 0: 61132 + 2: 4403 + 0: 49288 + -4,-3: + 2: 1 + 0: 32524 + -5,-3: + 2: 12 + 0: 64272 + -4,-2: + 0: 63255 + -5,-2: + 0: 60942 + -4,-1: + 0: 63351 + -5,-1: + 0: 61166 + -4,0: + 0: 65287 -3,-4: + 0: 63709 + -3,-3: + 0: 65485 + -3,-2: 0: 65535 + -3,-1: + 0: 62207 + -3,-5: + 0: 7633 + -3,0: + 0: 65519 -2,-4: + 0: 56413 + -2,-3: + 0: 65311 + -2,-2: 0: 65535 + -2,-1: + 0: 62207 + -2,0: + 0: 65407 + -2,-5: + 0: 49660 -1,-4: - 0: 65535 - 4,2: - 0: 65535 - 4,3: + 0: 21830 + -1,-5: + 0: 25719 + 4,4: + 0: 47357 + 5,0: 0: 65535 5,1: 0: 65535 5,2: 0: 65535 5,3: + 0: 65295 + 5,-1: 0: 65535 - 6,0: + 5,4: 0: 65535 + 6,0: + 0: 62702 6,1: 0: 65535 6,2: - 0: 65535 + 0: 65503 6,3: + 0: 65295 + 6,4: 0: 65535 + 6,-1: + 0: 61183 7,0: - 0: 65535 + 0: 62071 7,1: - 0: 65535 + 0: 3663 7,2: - 0: 65535 + 0: 65290 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 + 0: 56607 + 7,-1: + 0: 29183 + 7,4: + 0: 64285 + 8,0: + 0: 62719 + 8,1: + 0: 3663 + 8,2: + 0: 65290 + 8,3: + 0: 64783 + 4,-5: + 0: 65520 5,-4: - 0: 65535 + 0: 4078 5,-3: - 0: 65535 + 0: 56541 5,-2: - 0: 65535 + 0: 61661 + 5,-5: + 0: 61166 6,-4: - 0: 65535 + 0: 12030 6,-3: 0: 65535 6,-2: - 0: 65535 - 6,-1: - 0: 65535 + 0: 63231 + 6,-5: + 0: 60943 7,-4: - 0: 65535 + 0: 3003 7,-3: - 0: 65535 + 0: 48059 7,-2: + 0: 61627 + 7,-5: + 0: 45967 + 8,-4: + 0: 20479 + 8,-3: 0: 65535 - 7,-1: - 0: 65535 + 8,-2: + 0: 62207 + 8,-1: + 0: 61695 -8,0: - 0: 65535 + 0: 63351 + -8,-1: + 0: 21572 + 1: 17 + -9,0: + 0: 65501 -8,1: - 0: 65535 + 0: 30591 + -9,1: + 0: 56831 + -8,2: + 0: 17477 + 1: 4352 + -9,2: + 0: 284 + 1: 52224 + -8,3: + 1: 23 + 0: 31744 + -9,3: + 1: 255 + 0: 53504 + -8,4: + 0: 57460 + -7,0: + 0: 65451 -7,1: - 0: 65535 + 0: 47871 + -7,2: + 0: 48059 + -7,3: + 0: 48955 + -7,-1: + 0: 48059 + -7,4: + 0: 65339 + -6,0: + 0: 65375 -6,1: + 0: 63743 + -6,2: 0: 65535 - -8,-4: + -6,3: + 0: 65295 + -6,-1: 0: 65535 + -6,4: + 0: 47887 + -5,0: + 0: 65422 + -5,1: + 0: 58623 + -5,3: + 0: 63310 + -5,2: + 0: 61166 + -5,4: + 0: 30535 + -4,1: + 0: 28927 + -4,2: + 0: 30583 + -4,3: + 0: 65287 + -9,-4: + 1: 65248 -8,-3: - 0: 65535 + 0: 17873 + 1: 4096 + -9,-3: + 1: 65535 -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 + 1: 30583 + -9,-2: + 1: 52462 + 0: 785 + -9,-1: + 1: 204 + 0: 49425 -7,-3: - 0: 65535 + 0: 30591 -7,-2: - 0: 65535 - -6,-4: - 0: 65535 + 0: 48051 -6,-3: - 0: 65535 + 0: 65481 -6,-2: - 0: 65535 - -5,-4: - 0: 13107 - 1: 52428 - -5,-3: - 0: 65523 - 1: 12 - -4,3: - 0: 65535 + 0: 65520 + -4,4: + 0: 53759 + -3,1: + 0: 64767 + -3,2: + 0: 49151 -3,3: - 0: 65535 + 0: 64907 + -3,4: + 0: 31965 + -2,1: + 0: 47359 + -2,2: + 0: 35839 -2,3: - 0: 65535 - -1,3: - 0: 65535 - -6,4: - 0: 65535 + 0: 48127 + -2,4: + 0: 61160 + -1,4: + 0: 4607 + 2: 49152 + -9,4: + 0: 196 + 1: 61713 + -8,5: + 0: 65534 + -8,6: + 0: 7679 + -9,6: + 0: 61182 + -8,7: + 0: 56607 + -9,7: + 0: 56558 + -8,8: + 0: 141 + 1: 57856 + -7,5: + 0: 511 + 1: 49152 + -7,7: + 0: 12289 + 1: 35054 + -7,6: + 1: 61166 + -7,8: + 0: 55 + 1: 63624 -6,5: - 0: 65535 + 0: 3827 -6,6: - 0: 65535 - -5,4: - 0: 65535 + 1: 30481 + 0: 102 + -6,7: + 1: 65527 + -6,8: + 1: 65535 -5,5: - 0: 65535 + 0: 15344 -5,6: - 0: 65535 + 0: 49151 -5,7: - 0: 65535 - 0,4: - 0: 53247 - 1: 12288 + 1: 65328 + 0: 8 + -5,8: + 1: 8191 + -4,5: + 0: 52700 + -4,6: + 0: 65311 + -4,7: + 0: 79 + 1: 28928 0,5: - 1: 51 - 0: 65484 + 2: 51 + 0: 63628 + -1,5: + 2: 204 + 0: 61457 0,6: - 0: 65535 + 0: 62702 + -1,6: + 0: 62347 0,7: - 0: 65535 - 1,4: - 0: 65535 + 0: 3087 + 1: 13056 + -1,7: + 0: 13103 + 1: 34816 + 0,8: + 1: 4095 1,5: - 0: 65535 + 0: 61183 1,6: - 0: 65535 + 0: 61678 1,7: - 0: 65535 - 2,4: - 0: 65535 + 0: 53007 + 1,8: + 1: 273 + 0: 3276 2,5: - 0: 65535 + 0: 56575 2,6: - 0: 65535 + 0: 64733 2,7: - 0: 65535 - 3,4: - 0: 65535 + 0: 65421 + 2,8: + 0: 53247 3,5: - 0: 65535 + 0: 48059 3,6: - 0: 65535 + 0: 62395 3,7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 52479 - 1: 13056 + 0: 65307 + 3,8: + 0: 16383 + 4,5: + 0: 15347 + 4,6: + 0: 63739 + 4,7: + 0: 16143 + -4,-9: + 0: 65523 + -4,-7: + 0: 58976 + -3,-8: + 0: 3299 + 1: 4096 + -3,-7: + 1: 52479 + 0: 4096 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 65281 + 1: 12 + -3,-9: + 0: 40160 + -2,-8: + 0: 20465 + -2,-7: + 1: 65393 -2,-6: - 0: 65535 - -2,-5: - 0: 65535 + 1: 15 + 0: 65280 + -2,-9: + 0: 56784 + -1,-8: + 0: 49136 + -1,-7: + 0: 3 + 1: 65408 -1,-6: - 0: 65535 - -1,-5: - 0: 65535 + 1: 15 + 0: 65280 + -1,-9: + 0: 48058 + 0,-8: + 0: 4080 + 0,-7: + 1: 16382 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 + 1: 3 + 0: 65292 + 0,-9: + 0: 61199 1,-8: - 0: 65535 + 0: 53208 + 1,-6: + 0: 65295 + 1,-9: + 0: 56717 1,-7: - 0: 65535 + 0: 52974 2,-8: - 0: 65535 + 0: 40413 2,-7: 0: 65535 2,-6: - 0: 65535 - 2,-5: - 0: 65535 + 0: 64911 + 2,-9: + 0: 65501 3,-8: - 0: 65535 + 0: 39867 3,-7: 0: 65535 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 + 0: 64287 + 3,-9: + 0: 65467 + 4,-8: + 0: 16305 + 4,-7: + 0: 14199 + 4,-6: + 0: 65295 + -4,8: + 1: 4095 -3,5: - 0: 65535 + 0: 54551 -3,6: - 0: 65535 + 0: 63949 -3,7: - 0: 65535 - -2,4: - 0: 65535 + 0: 33727 + -3,8: + 1: 4095 -2,5: - 0: 65535 + 0: 55807 -2,6: - 0: 65535 + 0: 64541 -2,7: + 0: 28783 + -2,8: + 1: 247 + 0: 10240 + -1,8: + 1: 248 + 0: 16640 + -12,0: + 0: 32767 + -12,-1: + 0: 65520 + -13,0: + 0: 48063 + -12,1: + 0: 30471 + -13,1: + 0: 47931 + -12,2: + 0: 32631 + -13,2: + 0: 48123 + -12,3: + 0: 1908 + -13,3: + 0: 15291 + -12,4: + 0: 7 + 1: 61064 + -11,0: 0: 65535 - -1,4: - 0: 16383 - 1: 49152 - -1,5: - 0: 65331 - 1: 204 - -1,6: - 0: 65535 - -1,7: + -11,1: 0: 65535 + -11,2: + 0: 65520 + -11,3: + 0: 2991 + -11,-1: + 0: 64796 + -11,4: + 1: 65535 -10,0: - 0: 65535 + 0: 61438 -10,1: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 + 0: 61183 + -10,2: + 0: 32752 + -10,3: + 0: 35591 + -10,4: + 1: 65535 + -10,-1: + 0: 36591 + 4,8: + 0: 819 + 1: 2184 5,5: - 0: 65535 + 0: 49617 5,6: - 0: 65535 + 0: 64433 5,7: - 0: 65535 - 6,4: - 0: 65535 + 0: 783 + 1: 52224 + 5,8: + 1: 4095 6,5: - 0: 65535 + 0: 48120 6,6: - 0: 65535 + 0: 16305 6,7: - 0: 65535 - 7,4: - 0: 65535 + 0: 79 + 1: 28928 + 6,8: + 1: 255 + 0: 10240 7,5: - 0: 65535 + 0: 47931 7,6: - 0: 65535 + 0: 33720 7,7: - 0: 65535 + 0: 959 + 1: 32768 + 7,8: + 1: 255 + 0: 16640 8,4: - 0: 65535 + 0: 65485 8,5: - 0: 65535 + 0: 49039 8,6: - 0: 65535 + 0: 63803 8,7: - 0: 65535 + 0: 15 + 1: 65024 + 8,8: + 1: 255 + 0: 3840 9,4: 0: 65535 9,5: 0: 65535 9,6: - 0: 65535 + 0: 65287 9,7: - 0: 65535 + 0: 3919 + 9,3: + 0: 65359 + 9,8: + 1: 30719 10,4: 0: 65535 10,5: - 0: 65535 + 0: 32767 10,6: - 0: 65535 + 0: 65520 10,7: - 0: 65535 + 0: 271 + 1: 60928 + 10,3: + 0: 65294 + 10,8: + 1: 51 + 0: 63616 11,4: - 0: 65535 - 11,5: - 0: 65535 + 0: 53213 11,6: - 0: 65535 + 0: 4371 + 1: 52360 + 11,7: + 0: 1 + 1: 4044 + 11,3: + 0: 53709 + 11,5: + 0: 9966 + 11,8: + 0: 65534 12,4: - 0: 65535 + 0: 30583 12,5: + 0: 7 + 1: 15872 + 12,6: + 1: 3 + 0: 61320 + 12,7: + 0: 18190 + 12,3: + 0: 30311 + 12,8: 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: + 13,4: + 1: 29491 + 0: 136 + 13,5: + 1: 1911 + 13,6: + 0: 48059 + 13,7: + 0: 65419 + 13,3: + 1: 13107 + 0: 32844 + 13,8: + 0: 13107 + 1: 34944 + 14,4: + 0: 48059 + 14,5: + 0: 11195 + 14,6: 0: 65535 + 14,7: + 0: 287 + 1: 1024 + 14,3: + 0: 16360 + 15,4: + 0: 46011 + 15,5: + 0: 3067 + 15,6: + 0: 48059 + 15,7: + 0: 139 + 1: 512 + 15,3: + 0: 7163 + 16,4: + 0: 61661 + 16,5: + 0: 4095 + 16,6: + 0: 65501 + 16,7: + 0: 57565 9,0: - 0: 65535 + 0: 65262 9,1: - 0: 65535 + 0: 61167 9,2: - 0: 65535 - 9,3: - 0: 65535 + 0: 65518 + 9,-1: + 0: 61183 10,0: - 0: 65535 + 0: 65294 10,1: - 0: 65535 + 0: 61695 10,2: - 0: 65535 - 10,3: - 0: 65535 + 0: 61166 + 10,-1: + 0: 61166 11,0: - 0: 65535 + 0: 65295 11,1: - 0: 65535 + 0: 61695 11,2: - 0: 65535 - 11,3: + 0: 54783 + 11,-1: 0: 65535 12,0: - 0: 65535 + 0: 63302 12,1: - 0: 65535 + 0: 25727 12,2: - 0: 65535 - 12,3: - 0: 65535 + 0: 26214 + 12,-1: + 0: 26214 13,0: - 0: 65535 + 0: 65373 13,1: - 0: 65535 + 0: 55807 + 13,2: + 0: 49629 + 1: 12288 + 13,-1: + 0: 56592 + 1: 15 14,0: - 0: 65535 + 0: 65435 14,1: - 0: 65535 + 0: 47359 + 14,2: + 0: 35003 + 1: 12288 + 14,-1: + 0: 48012 + 1: 1 15,0: - 0: 65535 + 0: 65485 15,1: - 0: 65535 + 0: 53503 15,2: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 + 0: 48029 + 15,-1: + 0: 55773 + 16,0: + 0: 65295 + 16,1: + 0: 62463 + 16,2: + 0: 56735 + 16,3: + 0: 24573 + 8,-5: + 0: 61695 + 9,-2: + 0: 62702 9,-4: - 0: 65535 + 0: 61152 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 + 0: 20206 + 9,-5: + 0: 60970 10,-4: - 0: 65535 + 0: 65336 10,-3: - 0: 65535 + 0: 3831 10,-2: - 0: 65535 - 10,-1: - 0: 65535 + 0: 61167 + 10,-5: + 0: 61167 11,-4: - 0: 65535 + 0: 61135 11,-3: - 0: 65535 + 0: 7160 11,-2: 0: 65535 - 11,-1: - 0: 65535 + 11,-5: + 0: 61440 + 1: 238 12,-4: - 0: 65535 + 0: 4096 + 1: 35942 12,-3: - 0: 65535 + 0: 28531 12,-2: + 0: 26215 + 12,-5: + 1: 26227 + 0: 12 + 13,-4: + 0: 15 + 1: 30464 + 13,-3: + 1: 26215 + 13,-2: + 1: 65399 + 13,-5: + 0: 15245 + 14,-4: + 0: 30583 + 14,-3: + 0: 30583 + 14,-2: + 0: 52839 + 14,-5: + 0: 26211 + 15,-4: + 0: 65423 + 15,-3: + 0: 65528 + 15,-2: + 0: 55467 + 15,-5: + 0: 65359 + 16,-4: + 0: 65485 + 16,-3: 0: 65535 - 12,-1: - 0: 65535 - 15,-1: - 0: 65535 + 16,-2: + 0: 63743 + 16,-1: + 0: 63231 + 8,-8: + 0: 4092 + 8,-9: + 0: 53725 + 7,-8: + 0: 49136 + 8,-7: + 1: 65534 + 7,-7: + 1: 65408 + 0: 3 8,-6: - 0: 65535 - 8,-5: - 0: 65535 + 1: 15 + 0: 65280 + 7,-6: + 1: 15 + 0: 65280 + 9,-8: + 0: 1775 + 9,-7: + 1: 8191 9,-6: - 0: 65535 - 9,-5: - 0: 65535 + 1: 1 + 0: 65422 + 9,-9: + 0: 64733 + 10,-8: + 0: 61439 + 10,-7: + 1: 18224 + 0: 8 10,-6: + 0: 61699 + 1: 204 + 10,-9: + 0: 4369 + 11,-8: + 0: 63624 + 11,-7: + 0: 61247 + 11,-6: + 1: 58992 + 0: 128 + 12,-8: 0: 65535 - 10,-5: - 0: 65535 - 11,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 + 12,-7: + 0: 65295 + 12,-6: + 0: 51258 + 1: 12288 + 4,-9: + 0: 48027 + 5,-8: + 0: 4080 + 5,-7: + 1: 53247 5,-6: - 0: 65535 - 5,-5: - 0: 65535 + 0: 65283 + 1: 12 + 5,-9: + 0: 47931 + 6,-8: + 0: 20466 + 6,-7: + 1: 65393 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 16,0: - 0: 65535 - 16,1: - 0: 65535 - 16,2: - 0: 65535 + 1: 15 + 0: 65280 + 6,-9: + 0: 30471 + 7,-9: + 0: 45567 17,0: - 0: 65535 + 0: 65391 17,1: - 0: 65535 + 0: 26367 17,2: - 0: 65535 + 0: 65382 + 17,3: + 0: 61439 + 17,-1: + 0: 62055 + 17,4: + 0: 61166 18,0: - 0: 65535 + 0: 65287 18,1: - 0: 65535 + 0: 30719 + 18,2: + 0: 63279 + 18,3: + 0: 30583 + 18,-1: + 0: 30719 + 18,4: + 0: 14327 19,0: - 0: 65535 + 1: 15 + 0: 65280 19,1: - 0: 65535 + 0: 12543 + 1: 32768 + 19,2: + 0: 65283 + 1: 8 + 19,3: + 0: 30479 + 19,-1: + 1: 61440 + 0: 191 + 19,4: + 0: 1919 20,0: - 0: 65535 + 1: 15 + 0: 65280 20,1: + 0: 255 + 1: 61440 + 20,2: + 1: 1 + 0: 56576 + 20,3: + 0: 65309 + 20,-1: + 1: 61440 + 0: 187 + 20,4: + 0: 64511 + 21,0: + 1: 15 + 0: 65280 + 21,1: + 0: 255 + 1: 61440 + 21,2: + 0: 4352 + 1: 34952 + 21,3: + 0: 54721 + 21,-1: + 1: 63488 + 0: 55 + 21,4: + 0: 56541 + 22,0: + 1: 3 + 0: 65416 + 22,1: + 0: 52479 + 1: 4096 + 22,2: + 1: 12561 + 0: 2252 + 22,-1: + 1: 13107 + 0: 34952 + 22,3: + 0: 41640 + 22,4: + 0: 48123 + 23,0: + 0: 64973 + 23,1: + 0: 7647 + 23,2: + 0: 8191 + 23,3: + 0: 59647 + 23,-1: + 0: 61815 + 23,4: 0: 65535 - 1,8: + 24,0: 0: 65535 - 1,9: + 24,1: + 0: 61439 + 24,2: + 0: 36592 + 24,3: + 0: 8179 + 0,9: + 0: 45311 + -1,9: + 0: 62719 + 0,10: + 0: 47931 + -1,10: 0: 65535 + 0,11: + 0: 48127 + -1,11: + 0: 57308 + 1,9: + 0: 28799 1,10: - 0: 65535 - 2,8: - 0: 65535 + 0: 63239 + 1,11: + 0: 14327 2,9: - 0: 65535 + 0: 36863 2,10: 0: 65535 - 3,8: - 0: 65535 + 2,11: + 0: 12287 + 1,12: + 0: 44984 + 2,12: + 0: 15291 3,9: - 0: 65535 + 0: 8191 3,10: 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-9: - 0: 65535 - 4,8: - 0: 65535 + 3,11: + 0: 8191 + 3,12: + 0: 4095 4,9: - 0: 65535 + 0: 57583 4,10: + 0: 3838 + 4,11: + 0: 3838 + 0,-12: + 0: 45311 + 0,-13: + 0: 65282 + 1: 8 + -1,-12: + 0: 57583 + 0,-11: + 0: 7099 + -1,-11: + 0: 3822 + 0,-10: + 0: 57599 + -1,-10: + 0: 63679 + 1,-12: + 0: 61951 + 1,-11: + 0: 53631 + 1,-10: + 0: 56575 + 1,-13: + 0: 65280 + 1: 7 + 2,-12: + 0: 55551 + 2,-11: + 0: 65485 + 2,-10: + 0: 8191 + 2,-13: + 0: 65281 + 1: 12 + 3,-12: + 0: 45567 + 3,-11: + 0: 30523 + 3,-10: + 0: 36863 + 3,-13: + 0: 65280 + 1: 15 + 4,-12: + 0: 63743 + 4,-11: + 0: 12287 + 4,-10: + 0: 16383 + 8,-12: + 0: 47359 + 8,-13: + 0: 28672 + 1: 200 + 7,-12: + 0: 53631 + 8,-11: + 0: 64315 + 7,-11: + 0: 56781 + 8,-10: + 0: 55483 + 7,-10: + 0: 61917 + 9,-12: + 0: 65296 + 9,-11: + 0: 56559 + 9,-10: + 0: 56829 + 10,-12: + 0: 4352 + 1: 35023 + 10,-11: + 0: 12561 + 1: 35016 + 10,-10: + 0: 13107 + 1: 34952 + 10,-13: + 1: 43694 + 4,12: + 0: 3838 + 5,9: + 0: 28927 + 5,10: + 0: 2039 + 5,11: + 0: 3581 + 5,12: + 0: 20222 + 6,9: + 0: 61695 + 6,10: 0: 65535 - 16,-1: - 0: 65535 - 17,-1: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -8,-5: - 0: 65535 - -8,-6: - 0: 65535 - -7,-8: + 6,11: + 0: 36863 + 6,12: + 0: 3822 + 7,9: + 0: 58623 + 7,10: + 0: 30222 + 7,11: + 0: 1648 + 7,12: + 0: 2039 + 8,9: + 0: 3831 + 8,10: + 0: 65382 + 8,11: 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,7: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - -12,3: - 0: 65535 - -11,3: - 0: 65535 - 11,7: - 0: 65535 - 12,6: - 0: 65535 - 12,7: - 0: 65535 - 13,4: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 13,7: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 65535 - 14,6: - 0: 65535 - 14,7: - 0: 14335 - 15,4: - 0: 65535 - 15,5: - 0: 65535 - 15,6: - 0: 65535 - 15,7: - 0: 3839 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 14,2: - 0: 65535 - 14,3: - 0: 65535 - 15,3: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 10,-8: - 0: 65535 - 10,-7: - 0: 65535 - 11,-8: - 0: 65501 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 16,3: - 0: 65535 - 17,3: - 0: 65535 - 18,2: - 0: 65535 - 18,3: - 0: 65535 - 19,3: - 0: 65535 - 19,2: - 0: 65535 - 20,2: - 0: 65535 - 21,0: - 0: 65535 - 21,1: - 0: 65535 - 21,2: - 0: 65535 - 22,0: - 0: 65535 - 22,1: - 0: 65535 - 22,2: - 0: 65535 - 22,3: - 0: 65535 - 23,0: - 0: 65535 - 23,1: - 0: 65535 - 23,2: - 0: 65535 - 23,3: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 1,11: - 0: 65535 - 2,11: - 0: 65535 - 3,11: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 3,-12: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 8,-12: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-12: - 0: 65523 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-11: - 0: 63347 - 10,-10: - 0: 65535 - 10,-9: - 0: 62263 - 4,11: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 16,-4: - 0: 65535 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 17,-4: - 0: 65535 - 17,-3: - 0: 65535 - 17,-2: - 0: 65535 - 18,-4: + 16,-5: + 0: 56781 + 17,-4: + 0: 65262 + 17,-3: + 0: 57599 + 17,-2: + 0: 25327 + 17,-5: + 0: 53240 + 18,-4: 0: 65535 18,-3: - 0: 65535 + 0: 61007 18,-2: - 0: 65535 - 18,-1: - 0: 65535 + 0: 65252 + 18,-5: + 0: 40944 19,-4: - 0: 65535 + 0: 56797 19,-3: - 0: 65535 + 0: 56589 19,-2: - 0: 65535 - 19,-1: - 0: 65535 - 16,4: - 0: 65535 - 16,5: - 0: 65535 - 16,6: - 0: 65535 - 16,7: - 0: 65535 - 17,4: - 0: 65535 + 0: 46008 + 19,-5: + 0: 36849 + 20,-4: + 0: 48059 + 20,-3: + 0: 30491 + 20,-2: + 0: 45175 + 16,8: + 0: 14 17,5: - 0: 65535 + 0: 28414 17,6: - 0: 65535 + 0: 65390 17,7: - 0: 65535 - 18,4: - 0: 65535 + 0: 61542 + 17,8: + 0: 65518 18,5: - 0: 65535 + 0: 4095 18,6: 0: 65535 18,7: - 0: 65535 - 19,4: + 0: 61695 + 18,8: 0: 65535 19,5: - 0: 65535 + 0: 3067 19,6: 0: 65535 - 12,-8: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: + 19,7: + 0: 61695 + 19,8: 0: 65535 - 12,-5: + 20,5: + 0: 4095 + 20,6: 0: 65535 + 20,7: + 0: 61951 13,-7: - 0: 65535 + 0: 13070 + 1: 2048 13,-6: - 0: 65535 - 13,-5: - 0: 65535 + 0: 56559 + 13,-8: + 0: 61152 + 14,-8: + 0: 65523 + 14,-7: + 0: 34831 + 1: 768 14,-6: - 0: 65535 - 14,-5: - 0: 65535 + 0: 47935 + 14,-9: + 0: 12288 + 15,-8: + 0: 65528 + 15,-7: + 0: 65295 15,-6: - 0: 65535 - 15,-5: - 0: 65535 + 0: 65481 + 15,-9: + 0: 34816 + 16,-8: + 0: 15281 + 16,-7: + 0: 65419 16,-6: - 0: 62463 - 16,-5: - 0: 65535 + 0: 4380 + 16,-9: + 0: 4352 + 1: 19456 + 17,-8: + 0: 4401 + 17,-7: + 0: 57599 17,-6: - 0: 65535 - 17,-5: - 0: 65535 + 0: 61166 + 18,-7: + 0: 47359 18,-6: - 0: 65535 - 18,-5: - 0: 65535 - 19,-5: - 0: 65535 - 8,-13: - 0: 65480 + 0: 48051 + 19,-7: + 0: 4095 + 19,-6: + 0: 65534 + 20,-7: + 0: 61439 + 20,-6: + 0: 55772 + 20,-5: + 0: 4092 + 8,-14: + 1: 36608 + 7,-14: + 1: 3584 + 9,-14: + 1: 3840 + 9,-13: + 1: 272 + 10,-14: + 1: 28416 + 11,-14: + 1: 4352 + 11,-13: + 1: 17 + 4,-14: + 0: 43520 4,-13: - 0: 65535 + 0: 65450 5,-13: - 0: 65535 + 0: 65280 + 1: 14 + 5,-12: + 0: 64767 6,-13: + 0: 65450 + 6,-14: + 0: 43520 + 6,-12: 0: 65535 7,-13: - 0: 65529 - 0,-13: - 0: 65535 - 1,-13: - 0: 65535 - 2,-13: - 0: 65535 - 3,-13: - 0: 65535 + 0: 30464 + 1: 8 + 0,-14: + 0: 8192 + -1,-13: + 0: 65280 + 2,-14: + 0: 4096 + -4,-14: + 1: 61440 + -5,-14: + 1: 61440 + -3,-14: + 1: 28672 -3,-13: - 0: 65522 + 1: 498 + 0: 49152 + -3,-12: + 0: 14206 -2,-13: - 0: 65522 - -1,-13: - 0: 65520 + 1: 18 + 0: 56320 + -2,-12: + 0: 65295 + -4,-12: + 0: 48112 -4,-11: - 0: 65535 + 0: 16376 + -5,-11: + 0: 34944 -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -4,-12: - 0: 65535 - -3,-12: - 0: 65535 + 0: 48123 + -5,-10: + 0: 34952 -3,-11: - 0: 65535 + 0: 4057 -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 + 0: 30583 -2,-11: - 0: 65535 + 0: 4095 -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - -8,-9: - 0: 65532 + 0: 63351 + -9,-9: + 0: 32768 + 1: 17 -8,-10: - 0: 52428 + 1: 17484 + -8,-12: + 1: 34952 + -8,-13: + 1: 34956 + -8,-11: + 1: 34952 -7,-10: - 0: 65520 - -7,-9: - 0: 65535 + 0: 65280 -6,-10: - 0: 30582 - -6,-9: - 0: 65527 - -5,-9: - 0: 65532 - -5,-11: - 0: 52428 - -5,-10: - 0: 52428 - 4,-12: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 5,-12: - 0: 65535 + 0: 4352 + 1: 17478 + -6,-12: + 1: 8738 + -6,-13: + 1: 8743 + -6,-11: + 1: 8738 5,-11: - 0: 65535 + 0: 52511 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-12: - 0: 65535 + 0: 40767 6,-11: - 0: 65535 + 0: 65295 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-12: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - 20,-1: - 0: 65535 - 21,-1: - 0: 65535 + 0: 30479 + 21,-4: + 0: 29631 + 21,-3: + 0: 65319 + 21,-2: + 0: 28927 + 21,-5: + 0: 7099 + 22,-4: + 0: 29934 + 22,-3: + 0: 65287 22,-2: - 0: 65535 - 22,-1: - 0: 65535 + 0: 4095 + 22,-5: + 0: 61438 + 23,-4: + 0: 30583 + 23,-3: + 0: 7631 23,-2: - 0: 65535 - 23,-1: - 0: 65535 - 24,0: - 0: 65535 - 24,1: - 0: 65535 - 24,2: - 0: 65535 - 24,3: - 0: 65535 + 0: 49425 + 1: 68 + 24,-4: + 1: 497 + 24,-3: + 0: 65280 + 1: 2 + 24,-2: + 0: 14335 + 24,-1: + 0: 15288 + 24,4: + 0: 4575 + 1: 16384 25,0: - 0: 65535 + 0: 46011 25,1: - 0: 65535 + 0: 47935 25,2: + 0: 65528 + 25,3: + 0: 36849 + 25,4: + 0: 59 + 26,0: + 0: 62071 + 26,1: + 0: 30495 + 26,2: 0: 65535 - 24,-2: - 0: 65535 - 24,-1: - 0: 65535 - 25,-1: - 0: 65535 - 8,8: - 0: 65535 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 9,8: - 0: 65535 + 26,3: + 0: 2512 + 26,4: + 0: 3 + 1: 76 + 26,-1: + 0: 12151 + 27,0: + 0: 65528 + 27,1: + 0: 61439 + 27,3: + 0: 272 + 1: 50240 + 27,-1: + 0: 15251 + 27,2: + 0: 28398 + 27,4: + 1: 8823 + 28,0: + 0: 65527 + 28,1: + 0: 32767 + 28,2: + 0: 1911 + 28,3: + 1: 61440 + 20,-8: + 0: 19692 + 21,-6: + 0: 47359 + 21,-8: + 1: 3822 + 0: 24576 + 21,-7: + 0: 36590 + 22,-8: + 1: 819 + 22,-7: + 0: 273 + 1: 49152 + 22,-6: + 1: 3720 + 22,-9: + 1: 8738 + 23,-7: + 1: 61440 + 23,-6: + 1: 3976 + 24,-7: + 1: 61440 + 24,-6: + 1: 3976 + 8,12: + 0: 6015 9,9: - 0: 65535 + 0: 65280 + 1: 6 9,10: - 0: 65535 + 0: 48015 9,11: - 0: 65535 - 10,8: - 0: 65535 + 0: 35835 + 9,12: + 0: 16366 10,9: - 0: 65535 + 0: 4095 10,10: - 0: 30515 + 0: 12288 + 1: 34 10,11: - 0: 30583 - 11,8: - 0: 65535 + 0: 13107 + 10,12: + 0: 273 + 1: 16384 11,9: - 0: 56799 + 0: 34944 + 11,10: + 0: 128 + 12,9: + 0: 65521 + 12,10: + 0: 185 8,13: - 0: 65535 - 8,12: - 0: 65535 - 9,12: - 0: 65535 + 0: 8188 + 7,13: + 0: 4087 + 8,14: + 0: 19 + 7,14: + 0: 8 9,13: - 0: 63351 - 10,12: - 0: 29495 - -4,8: - 0: 65535 + 0: 819 + 1: 32768 + 9,14: + 1: 12 + 10,13: + 1: 61998 + 11,13: + 1: 64719 + 12,13: + 1: 61455 -4,9: - 0: 65535 + 0: 52701 + -5,9: + 0: 7645 -4,10: - 0: 65535 + 0: 53631 + -5,10: + 0: 52479 -4,11: - 0: 65535 - -3,8: - 0: 65535 + 0: 56797 + -5,11: + 0: 52428 + -4,12: + 0: 65309 -3,9: - 0: 65535 + 0: 62463 -3,10: + 0: 65291 + -3,11: 0: 65535 - -2,8: - 0: 65535 + -3,12: + 0: 61167 -2,9: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -8,8: - 0: 65535 + 0: 53503 + -2,10: + 0: 65485 + -2,11: + 0: 56785 + -2,12: + 0: 4369 + -9,8: + 0: 65487 -8,9: - 0: 65535 + 0: 30576 + -9,9: + 0: 35071 + 1: 12288 -8,10: - 0: 36607 - -7,8: - 0: 65535 + 0: 207 + -9,10: + 0: 8 + 1: 48 + -8,11: + 1: 28672 + -9,11: + 1: 61696 + -8,12: + 1: 35946 -7,9: - 0: 65535 + 1: 255 + 0: 33536 -7,10: - 0: 65535 - -6,8: - 0: 65535 + 0: 14591 + -7,11: + 0: 61439 -6,9: - 0: 65535 + 1: 119 + 0: 28672 -6,10: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 61439 - -5,11: - 0: 61166 + 0: 14335 + -6,11: + 0: 30583 + -6,12: + 0: 7 -5,12: - 0: 61166 - -4,12: - 0: 65535 + 0: 52364 + -7,12: + 1: 12560 + -7,13: + 1: 2246 + -6,13: + 1: 3840 + -5,13: + 1: 25360 + 0: 140 -4,13: - 0: 65535 - -3,12: - 0: 65535 + 0: 4095 -3,13: - 0: 65535 + 0: 36848 + -3,14: + 0: 140 -2,13: - 0: 65535 + 0: 4080 + -2,14: + 0: 1 -1,13: - 0: 65535 + 0: 52732 + -1,12: + 0: 52416 + -1,14: + 0: 140 + 0,12: + 0: 15280 0,13: 0: 65535 + 0,14: + 0: 127 1,13: - 0: 65535 - 1,12: - 0: 65535 - 2,12: - 0: 65535 + 0: 3832 2,13: - 0: 65535 - 3,12: - 0: 65535 + 0: 4088 + 2,14: + 0: 136 3,13: - 0: 65535 - 4,12: - 0: 65535 + 0: 8191 + 3,14: + 0: 307 4,13: - 0: 65535 - 5,12: - 0: 65535 + 0: 4094 5,13: - 0: 65535 - 6,12: - 0: 65535 + 0: 65534 + 5,14: + 0: 239 6,13: - 0: 65535 - 7,13: - 0: 65535 - 12,8: - 0: 65535 - 12,9: - 0: 65535 - 13,8: - 0: 65535 + 0: 15355 + 6,14: + 0: 19 13,9: - 0: 65535 + 0: 63344 + 13,10: + 0: 119 14,8: - 0: 65297 + 1: 16 + 0: 57344 + 14,9: + 0: 65534 + 14,10: + 0: 61183 + 14,11: + 1: 32768 + 14,12: + 1: 4972 + 15,11: + 1: 8030 + 15,10: + 1: 32768 + 16,10: + 1: 5100 + 16,11: + 1: 3968 -12,-4: - 0: 65535 + 0: 255 + 1: 57344 + -12,-5: + 0: 65520 + -13,-4: + 0: 62327 -12,-3: - 0: 65535 + 1: 35054 + 0: 28672 + -13,-3: + 0: 63487 -12,-2: - 0: 65535 + 0: 65520 + -13,-2: + 0: 49075 + -13,-1: + 0: 48051 -11,-4: - 0: 65535 + 0: 255 + 1: 61440 -11,-3: - 0: 65535 + 1: 65535 -11,-2: - 0: 65535 + 0: 65520 + -11,-5: + 0: 65520 -10,-4: - 0: 65535 + 1: 61440 + 0: 238 -10,-3: - 0: 65535 + 1: 65535 -10,-2: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 + 0: 30576 + -10,-5: + 0: 61160 + -16,-4: + 0: 61030 + -17,-4: + 1: 2296 + -16,-3: + 0: 61166 -16,-2: - 0: 65535 - -15,-2: - 0: 65535 + 0: 16372 + -16,-1: + 0: 56731 + -17,-2: + 0: 32768 + -17,-1: + 0: 47880 + -16,0: + 0: 56733 + -16,-5: + 0: 58976 -15,-4: - 0: 8191 + 0: 239 + -15,-2: + 0: 4080 + -15,-1: + 0: 64443 + -15,-5: + 0: 65520 + -15,0: + 0: 56587 -14,-4: - 0: 53247 + 0: 32887 -14,-2: - 0: 65535 + 0: 3952 + -14,-1: + 0: 30711 + -14,-5: + 0: 63344 + -14,0: + 0: 63239 -14,-3: - 0: 52428 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -17,-1: - 0: 65532 - -17,-2: - 0: 52360 + 0: 34952 + -13,-5: + 0: 63346 + -20,-4: + 1: 4096 + -20,-3: + 1: 61299 + -21,-4: + 1: 61440 + -21,-3: + 1: 4528 + -20,-1: + 0: 65329 + 1: 8 + -21,-1: + 0: 31 + 1: 4576 + -20,0: + 0: 43955 + 1: 4096 + -20,-2: + 1: 34956 + -19,-3: + 1: 4096 + -19,-2: + 1: 4369 + -19,-1: + 1: 1 + 0: 48896 + -19,0: + 0: 65522 + -18,-1: + 0: 48000 + -18,0: + 0: 64434 + -18,-4: + 1: 17604 + -18,-5: + 1: 17476 + -18,-3: + 1: 12 + -17,-3: + 1: 1 -17,0: - 0: 65535 + 0: 64441 + -21,0: + 0: 9 + 1: 37142 + -20,1: + 1: 16 + 0: 15274 + -21,1: + 1: 4496 + 0: 9 + -20,2: + 0: 15291 + -21,2: + 0: 4105 + 1: 57622 + -20,3: + 0: 1 + 1: 34952 + -21,3: + 0: 255 + 1: 4864 + -19,1: + 0: 4095 + -19,2: + 0: 187 + -19,3: + 1: 4369 + -20,4: + 1: 32748 + -19,4: + 1: 17 + -18,1: + 0: 3007 + -18,2: + 0: 2235 -17,1: - 0: 65535 + 0: 39871 -17,2: - 0: 53247 + 0: 2235 -17,3: - 0: 52428 + 0: 34952 + -16,1: + 0: 53725 + -16,2: + 0: 7647 -16,3: - 0: 65535 + 0: 8183 + -15,1: + 0: 45277 + -15,2: + 0: 13243 -15,3: - 0: 65535 + 0: 4080 + -14,1: + 0: 61559 + -14,2: + 0: 119 -14,3: - 0: 65535 - -13,3: - 0: 65535 + 0: 3952 + -14,4: + 0: 34952 + -13,4: + 0: 65407 + -16,-8: + 1: 39 + 0: 34816 + -17,-8: + 1: 15 -16,-7: - 0: 65516 + 1: 4384 + 0: 51336 -16,-6: - 0: 65535 - -16,-5: - 0: 65535 + 1: 4369 + 0: 52236 -15,-8: - 0: 65535 + 0: 65520 -15,-7: - 0: 65535 - -15,-5: - 0: 65535 + 0: 59647 + -15,-6: + 0: 65262 -14,-8: - 0: 65535 + 0: 64976 + -14,-7: + 0: 56349 + -14,-6: + 0: 56797 -13,-8: - 0: 65535 + 0: 65520 + -13,-7: + 0: 30479 + -13,-6: + 0: 32631 + -13,-9: + 1: 51200 + 0: 8 -12,-8: - 0: 65535 + 0: 64988 + -12,-7: + 0: 65293 + -12,-6: + 0: 65295 + -12,-9: + 1: 4352 + 0: 52431 -11,-8: - 0: 65535 + 0: 65523 + -11,-7: + 0: 65295 + -11,-6: + 0: 65295 + -11,-9: + 0: 48003 -10,-8: - 0: 65535 - -9,-8: - 0: 65532 - -9,-5: - 0: 65535 - -9,-7: - 0: 65535 + 0: 30579 + -10,-7: + 0: 47879 + -10,-6: + 0: 62379 + -10,-9: + 0: 30579 -16,6: - 0: 64527 + 1: 15 + 0: 32768 + -17,6: + 1: 15 -16,7: - 0: 65535 + 0: 52367 + 1: 4352 + -17,7: + 0: 26120 + 1: 7 + -16,8: + 1: 17153 + 0: 140 -15,6: + 1: 17 + 0: 64716 + -15,7: 0: 65535 -15,5: - 0: 62656 - 2: 2048 - -14,5: - 0: 63740 - 2: 1792 - -14,4: - 0: 52428 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -10,5: - 0: 65535 - -9,6: - 0: 65535 - -16,8: - 0: 53247 + 1: 4096 + 3: 2048 -15,8: 0: 65535 - -15,9: - 0: 65535 - -14,9: - 0: 65535 - -13,9: - 0: 65535 - -12,9: - 0: 65535 - -11,9: - 0: 65535 - -10,9: - 0: 65535 - -9,9: - 0: 65535 - -9,8: - 0: 65535 - -9,10: - 0: 252 - -9,-9: - 0: 52369 - -12,-1: - 0: 65535 - -11,-1: - 0: 65535 - -10,-1: - 0: 65535 - -13,-1: - 0: 65535 - -15,7: - 0: 65535 + -14,5: + 3: 1792 + 0: 8 -14,6: 0: 65535 -14,7: - 0: 48127 - 3: 17408 + 0: 4383 + 4: 17408 + -14,8: + 0: 65297 + 4: 4 + -13,5: + 0: 65311 -13,6: 0: 65535 -13,7: - 0: 43775 - 4: 4352 - 2: 17408 + 0: 15 + 5: 4352 + 3: 17408 + -13,8: + 5: 1 + 3: 4 + 0: 65280 + -12,5: + 0: 65280 + 1: 14 -12,6: 0: 65535 -12,7: - 0: 43775 - 5: 4352 - 2: 17408 + 0: 15 + 6: 4352 + 3: 17408 + -12,8: + 6: 1 + 3: 4 + 0: 65280 + -11,5: + 1: 3 + 0: 65292 -11,6: 0: 65535 -11,7: - 0: 61183 - 2: 4352 + 0: 52431 + 3: 4352 + -11,8: + 3: 1 + 0: 65484 + -10,5: + 0: 65283 + 1: 12 -10,6: 0: 65535 -10,7: 0: 65535 - -9,7: - 0: 65535 - -14,8: - 0: 65531 - 3: 4 - -13,8: - 4: 1 - 0: 65530 - 2: 4 - -12,8: - 5: 1 - 0: 65530 - 2: 4 - -11,8: - 2: 1 - 0: 65534 -10,8: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 6,10: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 8,11: - 0: 65535 - -3,11: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - -2,12: - 0: 13119 - -1,12: - 0: 61167 - 0,12: - 0: 65535 - 7,12: - 0: 65535 - -16,-1: - 0: 65535 - -15,-1: - 0: 65535 - -14,-1: - 0: 65535 - -16,0: - 0: 65535 - -16,1: - 0: 65535 - -16,2: - 0: 65535 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 32767 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -14,2: - 0: 36863 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -15,-6: - 0: 65535 - -14,-7: - 0: 65535 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-6: - 0: 65535 + 0: 30591 + -9,5: + 1: 1 + 0: 17732 + -17,8: + 1: 3840 + 0: 6 + -16,9: + 1: 29696 + -16,10: + 1: 36079 + -17,9: + 1: 61440 + -15,9: + 0: 4095 + -15,10: + 1: 4097 + -15,11: + 1: 35939 + -14,9: + 0: 3569 + -14,11: + 1: 12834 + -14,10: + 1: 8743 + -14,12: + 1: 8866 + 0: 2056 + -13,9: + 0: 3568 + -13,10: + 1: 132 + 0: 8 + -12,9: + 0: 4080 -12,10: - 0: 61439 + 0: 19655 + 1: 9008 -12,11: 0: 17476 + -12,12: + 0: 17733 + 1: 176 + -11,9: + 0: 4080 + -11,10: + 0: 4091 + -10,9: + 0: 6128 + -10,10: + 0: 819 + 1: 34952 + -10,11: + 1: 34956 + -10,12: + 1: 35000 + 0: 771 + -9,12: + 1: 1 -12,-12: - 0: 52464 + 1: 48 + 0: 52416 + -13,-12: + 1: 20208 -12,-11: - 0: 65535 + 0: 30576 + -13,-11: + 0: 65520 -12,-10: 0: 65535 - -12,-9: - 0: 65535 - -12,12: - 0: 17909 + -13,-10: + 0: 35071 + -11,-12: + 0: 13104 + 1: 52428 + -11,-11: + 0: 48051 + 1: 8 + -11,-10: + 0: 48059 + -11,-13: + 1: 52224 + 0: 238 + -10,-12: + 0: 48048 + 1: 17472 + -10,-11: + 0: 65467 + 1: 68 + -10,-10: + 0: 191 + 1: 47872 + -9,-12: + 0: 4368 + -9,-11: + 0: 13105 + -9,-10: + 0: 51 + 1: 4352 + -13,12: + 0: 3855 + 1: 240 -12,13: - 0: 17909 + 0: 17733 + 1: 176 + -13,13: + 0: 3855 + 1: 240 -12,14: - 0: 17909 + 0: 17733 + 1: 176 + -13,14: + 0: 3855 + 1: 240 -12,15: - 0: 17909 - 20,-2: - 0: 65535 - 21,-2: - 0: 65535 - 20,3: - 0: 65535 - 21,3: - 0: 65535 - 19,7: - 0: 65535 - -11,-10: - 0: 65535 - -11,-9: - 0: 65535 - -10,-10: - 0: 48063 - -10,-9: - 0: 65535 - 20,4: - 0: 65535 - 20,5: - 0: 65535 - 20,6: - 0: 65535 - 20,7: - 0: 65535 - 21,4: - 0: 65535 + 0: 325 + 1: 17584 + -13,15: + 0: 3855 + 1: 240 + -12,16: + 1: 61444 + -11,12: + 1: 240 + 0: 3855 + -11,13: + 1: 240 + 0: 3855 + -11,14: + 1: 240 + 0: 3855 + -11,15: + 1: 240 + 0: 3855 + -10,13: + 0: 771 + 1: 35000 + -10,14: + 0: 771 + 1: 35000 + -10,15: + 0: 771 + 1: 35000 + -10,16: + 1: 64648 + -11,-14: + 0: 57344 + -10,-14: + 0: 4096 + -10,-13: + 0: 17 + 20,8: + 0: 30719 21,5: - 0: 65535 + 0: 3581 21,6: - 0: 65535 + 0: 61183 21,7: - 0: 32767 - 22,4: - 0: 65535 - 22,5: - 0: 65535 + 0: 12526 + 21,8: + 0: 19 + 1: 29696 22,6: - 0: 32767 + 0: 13311 22,7: - 0: 36727 - 23,4: - 0: 65535 + 0: 3 + 1: 36352 + 22,5: + 0: 3816 + 23,7: + 1: 36608 + 22,8: + 1: 234 23,5: - 0: 65535 + 0: 1646 23,6: - 0: 283 - 19,-6: - 0: 65535 - 20,-4: - 0: 65535 - 20,-3: - 0: 65535 - 21,-4: - 0: 65535 - 21,-3: - 0: 65535 - 22,-4: - 0: 65535 - 22,-3: - 0: 65535 - 23,-4: - 0: 65535 - 23,-3: - 0: 65535 - 25,3: - 0: 65535 - 26,0: - 0: 65535 - 26,1: - 0: 65535 - 26,2: - 0: 65535 - 26,3: - 0: 65535 - 27,0: - 0: 65535 - 27,1: - 0: 65535 - 27,2: - 0: 65535 - 27,3: - 0: 63359 - 20,-6: - 0: 65535 - 20,-5: - 0: 65535 - 21,-6: - 0: 65535 - 21,-5: - 0: 65535 - 22,-6: - 0: 65433 - 22,-5: - 0: 65535 - 23,-6: - 0: 8072 - 23,-5: - 0: 61713 - 23,7: - 0: 36608 - 24,4: - 0: 32767 + 1: 10 24,5: - 0: 62259 + 0: 1 + 1: 62208 + 24,6: + 1: 3 24,7: - 0: 36608 - 25,4: - 0: 2047 + 1: 36608 + 23,8: + 1: 248 25,5: - 0: 61440 + 1: 61440 25,7: - 0: 36744 + 1: 36608 + 24,8: + 1: 248 26,5: - 0: 61440 + 1: 61440 + 26,6: + 0: 30706 26,7: - 0: 36863 + 0: 7 + 1: 36608 + 25,8: + 1: 248 27,5: - 0: 63266 + 1: 63266 + 27,6: + 0: 30576 27,7: - 0: 36863 - 24,-4: - 0: 4593 - 24,-3: - 0: 65523 + 0: 7 + 1: 36608 + 26,8: + 1: 248 + 28,5: + 1: 61440 + 28,6: + 1: 117 + 0: 12288 + 28,7: + 1: 36672 + 27,8: + 1: 248 25,-4: - 0: 240 - 25,-3: - 0: 65520 + 1: 240 25,-2: - 0: 65535 + 0: 2303 + 25,-1: + 0: 1911 + 25,-3: + 0: 11776 26,-4: - 0: 240 + 1: 240 26,-3: - 0: 65296 + 1: 3856 26,-2: - 0: 65535 - 26,-1: - 0: 65535 + 0: 3959 27,-4: - 0: 240 + 1: 240 27,-3: - 0: 63232 + 1: 63232 27,-2: - 0: 63345 - 27,-1: - 0: 65535 + 1: 32769 + 0: 13056 28,-4: - 0: 240 + 1: 240 28,-3: - 0: 61440 + 1: 61440 28,-1: - 0: 65535 + 0: 16368 29,-4: - 0: 240 + 1: 240 + 28,-2: + 1: 8 29,-3: - 0: 61440 + 1: 61440 + 29,-2: + 1: 4379 + 29,-1: + 1: 36767 30,-4: - 0: 240 + 1: 240 30,-3: - 0: 61440 + 1: 61440 + 30,-2: + 1: 275 + 29,0: + 0: 34958 31,-4: - 0: 240 + 1: 240 31,-3: - 0: 61440 - 28,0: - 0: 65535 - 28,1: - 0: 65535 - 28,2: - 0: 65535 - 28,3: - 0: 61440 - 29,0: - 0: 39327 - 29,1: - 0: 63897 + 1: 61440 + 31,-1: + 1: 512 + 31,0: + 2: 35020 + 0: 28944 + 32,-4: + 1: 20222 + 32,-3: + 1: 63044 29,3: - 0: 61440 + 1: 61440 + 29,1: + 0: 59528 + 30,3: + 1: 61712 30,0: - 0: 65535 + 0: 61152 30,1: - 0: 65535 - 30,3: - 0: 61727 - 31,0: - 0: 30515 - 1: 35020 + 0: 3822 31,1: - 0: 13175 - 1: 52360 + 0: 279 + 2: 52360 31,3: - 0: 61455 - 28,5: - 0: 61440 - 28,7: - 0: 36679 + 1: 61440 + 31,2: + 1: 32 + 32,0: + 2: 30583 + 32,1: + 2: 30583 + 32,3: + 1: 62528 29,5: - 0: 61440 + 1: 61440 29,7: - 0: 36608 + 1: 36608 + 28,8: + 1: 248 30,5: - 0: 61440 + 1: 61440 30,7: - 0: 36608 + 1: 36608 + 29,8: + 1: 248 31,5: - 0: 61440 + 1: 61440 31,7: - 0: 36608 + 1: 36608 + 30,8: + 1: 248 32,5: - 0: 63044 + 1: 63044 32,7: - 0: 1860 - 32,4: - 0: 17476 + 1: 1860 + 31,8: + 1: 248 32,6: - 0: 50246 - 32,0: - 1: 30583 - 0: 34952 - 32,1: - 1: 30583 - 0: 34952 - 32,3: - 0: 62543 - 32,2: - 0: 3983 - 32,-4: - 0: 20222 - 32,-3: - 0: 63044 - 32,-2: - 0: 62534 - 32,-1: - 0: 63728 - 32,-6: - 0: 18176 - 32,-5: - 0: 17484 - 24,-6: - 0: 3976 - 25,-6: - 0: 3976 - 26,-6: - 0: 3976 - 27,-6: - 0: 3976 - 28,-6: - 0: 3976 - 29,-6: - 0: 3976 - 30,-6: - 0: 3976 - 31,-6: - 0: 3976 - -18,7: - 0: 36092 - -17,7: - 0: 65535 - -17,6: - 0: 32783 - -18,8: - 0: 3324 - -17,8: - 0: 4095 - -18,-1: - 0: 65520 - -18,0: - 0: 65535 - -18,1: - 0: 65535 - -18,2: - 0: 4095 - -18,-7: - 0: 17476 - -18,-6: - 0: 17476 - -18,-8: - 0: 17484 - -18,-5: - 0: 17476 - -17,-8: - 0: 15 - 4,-14: - 0: 65280 - 5,-14: - 0: 4352 - 6,-14: - 0: 65280 - 7,-14: - 0: 7936 - 0,-14: - 0: 28672 - 1,-14: - 0: 32768 - 2,-14: - 0: 12288 - 26,4: - 0: 127 - 30,-2: - 0: 61715 - 30,-1: - 0: 4593 - 31,-2: - 0: 61440 - 31,-1: - 0: 58096 - 30,2: - 0: 7953 - 31,2: - 0: 3886 - 33,2: - 0: 20292 - 33,3: - 0: 4367 - 33,0: - 0: 17479 - 33,1: - 0: 29764 - 34,0: - 0: 4369 - 34,1: - 0: 4369 - 34,2: - 0: 4369 - 34,3: - 0: 1 - 33,-2: - 0: 61442 - 33,-1: - 0: 17652 - 34,-2: - 0: 4096 - 34,-1: - 0: 4369 - 15,-7: - 0: 65535 - 16,-7: - 0: 65535 - 18,-7: - 0: 65535 - 19,-7: - 0: 65535 - 8,14: - 0: 119 - -3,14: - 0: 238 - -2,14: - 0: 51 - -1,14: - 0: 3310 - 0,14: - 0: 4095 - 1,14: - 0: 17 - 2,14: - 0: 3276 - 3,14: - 0: 1911 - 4,14: - 0: 136 - 5,14: - 0: 4095 - 6,14: - 0: 887 - 7,14: - 0: 204 - -13,10: - 0: 140 - -11,10: - 0: 65535 - -10,10: - 0: 65535 - -11,-12: - 0: 65532 - -11,-11: - 0: 65535 - -10,-12: - 0: 65520 - -10,-11: - 0: 65535 - -11,12: - 0: 4095 - -11,13: - 0: 4095 - -11,14: - 0: 4095 - -11,15: - 0: 4095 - -10,12: - 0: 35771 - -10,13: - 0: 35771 - -10,14: - 0: 35771 - -10,15: - 0: 35771 - -11,-14: - 0: 57344 - -11,-13: - 0: 52462 - -10,-14: - 0: 4096 - -10,-13: - 0: 17 - 20,8: - 0: 65535 - 17,8: - 0: 65535 - 18,8: - 0: 65535 - 19,8: - 0: 65535 - -14,-12: - 0: 128 - -14,-11: - 0: 34952 - -13,-12: - 0: 20208 - -13,-11: - 0: 65535 - -13,-9: - 0: 51404 - -14,12: - 0: 10922 - -14,13: - 0: 10922 - -14,14: - 0: 10922 - -14,15: - 0: 10922 - -13,12: - 0: 4095 - -13,13: - 0: 4095 - -13,14: - 0: 4095 - -13,15: - 0: 4095 - -12,16: - 0: 61444 - -8,11: - 0: 63624 - -7,11: - 0: 65535 - -6,11: - 0: 65535 - -7,12: - 0: 12575 - -6,12: - 0: 15 - 11,-9: - 0: 53248 - 13,-8: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 15,-8: - 0: 65535 - 16,-8: - 0: 65535 - 11,10: - 0: 3276 - 12,10: - 0: 4095 - 13,10: - 0: 4095 - 14,9: - 0: 65535 - 14,10: - 0: 65535 - 14,11: - 0: 32783 - 15,8: - 0: 4352 - 15,9: - 0: 4369 - 15,10: - 0: 37137 - 15,11: - 0: 8031 - 12,-9: - 0: 61440 - 13,-9: - 0: 38912 - 14,-9: - 0: 30464 - 15,-9: - 0: 52224 - 16,-9: - 0: 65280 - 27,4: - 0: 8823 - 29,-2: - 0: 4379 - 29,-1: - 0: 36767 - -16,-4: - 0: 65535 - 10,-12: - 0: 13175 - 17,-8: - 0: 62259 - 18,-8: - 0: 61440 - 19,-8: - 0: 61440 - 8,-14: - 0: 36608 - 9,-14: - 0: 3840 - 9,-13: - 0: 4368 - 10,-14: - 0: 28416 - 10,-13: - 0: 8750 - 11,-14: - 0: 20224 - 11,-13: - 0: 15 - -4,-14: - 0: 61440 - -3,-14: - 0: 28672 - -8,-12: - 0: 34952 - -8,-11: - 0: 34952 - -6,-12: - 0: 8738 - -6,-11: - 0: 8738 - -5,-12: - 0: 34952 - 20,-8: - 0: 65262 - 21,-8: - 0: 65535 - 22,-8: - 0: 13107 - 22,-7: - 0: 62259 - 23,-7: - 0: 61440 - 9,14: - 0: 12 - 10,13: - 0: 61998 - 11,13: - 0: 64719 - -8,12: - 0: 35946 - -7,13: - 0: 2246 - -6,13: - 0: 3840 - -5,13: - 0: 61438 - -16,-3: - 0: 65535 - -15,-3: - 0: 4369 - -16,-8: - 0: 52463 - -16,4: - 0: 3 - -16,9: - 0: 64648 - -16,10: - 0: 36079 - -15,10: - 0: 4097 - -15,11: - 0: 35939 - -14,10: - 0: 8743 - -14,11: - 0: 12834 - -10,11: - 0: 34956 - -9,11: - 0: 61696 - -9,-10: - 0: 4403 - -9,12: - 0: 1 - 24,6: - 0: 3 - 28,-2: - 0: 8 - 33,4: - 0: 4369 + 1: 50246 + 32,4: + 1: 17476 33,5: - 0: 4369 + 1: 4369 33,6: - 0: 4369 + 1: 4369 + 33,4: + 1: 4369 + 33,3: + 1: 4352 33,7: - 0: 1 + 1: 1 + 33,0: + 1: 3 + 33,1: + 1: 12288 + 32,2: + 1: 128 + 33,2: + 1: 18432 + 32,-2: + 1: 1094 + 32,-5: + 1: 17484 33,-4: - 0: 9011 + 1: 9011 33,-3: - 0: 12834 + 1: 12834 + 32,-1: + 1: 2048 + 33,-5: + 1: 8739 + 33,-2: + 1: 2 + 33,-1: + 1: 132 32,-7: - 0: 61440 + 1: 61440 + 31,-7: + 1: 61440 + 32,-6: + 1: 18176 + 31,-6: + 1: 3976 33,-7: - 0: 12288 - 33,-5: - 0: 8739 + 1: 12288 33,-6: - 0: 8706 - 24,-7: - 0: 61440 + 1: 8706 25,-7: - 0: 65252 + 1: 65252 + 25,-6: + 1: 3976 + 25,-8: + 1: 50244 + 25,-9: + 1: 50244 + 26,-8: + 1: 4369 26,-7: - 0: 61713 + 1: 61713 + 26,-6: + 1: 3976 + 26,-9: + 1: 4369 27,-7: - 0: 61440 + 1: 61440 + 27,-6: + 1: 3976 28,-7: - 0: 61440 + 1: 61440 + 28,-6: + 1: 3976 29,-7: - 0: 61440 + 1: 61440 + 29,-6: + 1: 3976 30,-7: - 0: 61440 - 31,-7: - 0: 61440 + 1: 61440 + 30,-6: + 1: 3976 + -20,5: + 1: 19 + -21,4: + 1: 45329 + -21,5: + 1: 240 -19,5: - 0: 19456 + 1: 19456 -19,6: - 0: 17484 + 1: 17484 -19,7: - 0: 19660 - -18,6: - 0: 15 - -17,4: - 0: 12 + 1: 19660 -19,8: - 0: 19660 + 1: 19660 + -18,6: + 1: 15 + -18,7: + 1: 36092 + -18,8: + 1: 3324 -19,9: - 0: 52292 + 1: 52292 -19,10: - 0: 3148 + 1: 3148 -18,9: - 0: 61440 - -17,9: - 0: 61440 + 1: 61440 20,9: - 0: 30591 - 21,8: - 0: 30583 - 22,8: - 0: 234 - 23,8: - 0: 248 - 16,10: - 0: 5100 + 0: 4099 + 1: 26112 + 19,9: + 0: 255 + 1: 61440 + 20,10: + 1: 17478 + 20,11: + 1: 1996 + 19,11: + 1: 3840 + 21,11: + 1: 1 + 21,10: + 1: 16034 + 21,9: + 1: 8738 + 22,10: + 1: 19 + 22,9: + 1: 8192 16,9: - 0: 35020 + 1: 35012 17,9: - 0: 61439 + 1: 41728 + 0: 142 + 17,10: + 1: 4371 + 17,11: + 1: 3889 18,9: - 0: 65535 - 19,9: - 0: 65535 + 0: 255 + 1: 61440 + 18,11: + 1: 3840 + -14,-12: + 1: 128 + -14,-11: + 0: 2048 -14,-10: - 0: 2184 + 0: 8 + -14,13: + 1: 8866 + 0: 2056 + -14,14: + 1: 8866 + 0: 2056 + -14,15: + 1: 8866 + 0: 2056 + -14,16: + 1: 58914 + -13,16: + 1: 61440 -12,17: - 0: 240 + 1: 240 + -13,17: + 1: 240 -11,16: - 0: 61440 + 1: 61440 -11,17: - 0: 240 - -10,16: - 0: 64648 + 1: 240 -10,17: - 0: 242 + 1: 242 17,-9: - 0: 13056 - 24,8: - 0: 248 - 25,8: - 0: 248 - 26,8: - 0: 248 - 27,8: - 0: 248 - 28,8: - 0: 248 - 29,8: - 0: 248 - 30,8: - 0: 248 - 31,8: - 0: 248 + 1: 3840 + 18,-9: + 1: 3840 + 19,-9: + 1: 3954 + 19,-12: + 1: 8738 + 19,-13: + 1: 8738 + 19,-11: + 1: 8738 + 19,-10: + 1: 8738 + 20,-9: + 1: 3840 32,8: - 0: 240 + 1: 240 33,8: - 0: 17 - 12,13: - 0: 61455 + 1: 17 13,13: - 0: 4975 + 1: 4975 13,12: - 0: 32768 - 14,12: - 0: 4972 - -14,16: - 0: 58914 + 1: 32768 -14,17: - 0: 232 - -13,16: - 0: 61440 - -13,17: - 0: 240 + 1: 232 -8,-14: - 0: 49152 - -8,-13: - 0: 34956 + 1: 49152 -7,-14: - 0: 61440 + 1: 61440 -7,-13: - 0: 1 + 1: 1 -6,-14: - 0: 61440 - -6,-13: - 0: 8743 - -5,-14: - 0: 61440 - 20,-9: - 0: 57344 - 21,-9: - 0: 4096 - 22,-9: - 0: 8738 - 12,-14: - 0: 20224 - 12,-13: - 0: 15 - 13,-14: - 0: 20224 - 13,-13: - 0: 15 - 14,-14: - 0: 20224 - 14,-13: - 0: 15 - 15,-14: - 0: 20452 - 15,-13: - 0: 15 - 16,-14: - 0: 20452 - 16,-13: - 0: 15 - 17,-14: - 0: 256 - 17,-13: - 0: 1 - -9,-11: - 0: 13105 - -13,-10: - 0: 53247 - 21,-7: - 0: 65535 - -20,-4: - 0: 4096 - -20,-3: - 0: 61299 - -20,-1: - 0: 65529 - -20,-2: - 0: 34956 - -19,-3: - 0: 4096 - -19,-2: - 0: 4369 - -19,-1: - 0: 65521 - -20,0: - 0: 65535 - -20,1: - 0: 65534 - -20,2: - 0: 65535 - -20,3: - 0: 34953 - -19,0: - 0: 65535 - -19,1: - 0: 65535 - -19,2: - 0: 8191 - -19,3: - 0: 4369 - 25,-8: - 0: 50244 - 26,-8: - 0: 4369 - -20,4: - 0: 32748 - -20,5: - 0: 19 - -19,4: - 0: 17 + 1: 61440 20,-12: - 0: 52416 + 0: 49344 + 1: 3072 20,-11: - 0: 52416 + 0: 49344 + 1: 3072 20,-10: - 0: 52416 + 0: 49344 + 1: 3072 21,-12: - 0: 65520 + 0: 61680 + 1: 3840 21,-11: - 0: 65520 + 0: 61680 + 1: 3840 21,-10: - 0: 65520 + 0: 61680 + 1: 3840 + 21,-9: + 1: 256 22,-12: - 0: 44962 + 1: 12066 + 0: 32896 22,-11: - 0: 44962 + 1: 12066 + 0: 32896 22,-10: - 0: 44962 + 1: 12066 + 0: 32896 + 22,-13: + 1: 12066 + 0: 32896 23,-12: - 0: 65520 + 0: 61680 + 1: 3840 23,-11: - 0: 65520 + 0: 61680 + 1: 3840 23,-10: - 0: 65520 - 15,-15: - 0: 58592 - 16,-15: - 0: 62704 - 17,-15: - 0: 62704 - 18,-15: - 0: 62704 + 0: 61680 + 1: 3840 + 24,-12: + 0: 4112 + 1: 256 + 24,-11: + 0: 4112 + 1: 256 + 24,-10: + 0: 4112 + 1: 256 19,-15: - 0: 62704 + 1: 62960 + 19,-14: + 1: 8743 + 20,-15: + 1: 62704 -24,0: - 0: 30591 + 0: 22355 + 1: 8236 + -24,-1: + 0: 4415 + 1: 192 + -25,0: + 0: 61166 + 1: 1 -24,1: - 0: 30591 + 0: 22353 + 1: 8238 + -25,1: + 0: 61166 + 1: 1 -24,2: - 0: 61727 + 0: 12563 + 1: 49164 + -25,2: + 0: 61166 + 1: 1 -24,3: - 0: 2303 + 0: 255 + 1: 2048 + -25,3: + 0: 140 -23,0: - 0: 37151 + 0: 32769 + 1: 4382 -23,1: - 0: 4511 + 0: 137 + 1: 4374 -23,2: - 0: 65311 + 0: 24065 + 1: 41246 -23,3: - 0: 5119 + 0: 255 + 1: 4864 + -23,-1: + 1: 4512 + 0: 3679 + -23,4: + 1: 12561 -22,0: - 0: 12575 + 0: 12289 + 1: 286 -22,1: - 0: 4415 + 0: 51 + 1: 4364 -22,2: - 0: 65311 + 0: 19969 + 1: 45342 -22,3: - 0: 2303 - -21,0: - 0: 37151 - -21,1: - 0: 4505 - -21,2: - 0: 61727 - -21,3: - 0: 5119 + 0: 255 + 1: 2048 + -22,-1: + 1: 4528 + 0: 3663 -24,-4: - 0: 61440 - -24,-3: - 0: 143 + 1: 61440 + -25,-4: + 1: 49152 -24,-2: - 0: 63488 - -24,-1: - 0: 4607 - -23,-4: 0: 61440 + 1: 2048 + -25,-2: + 0: 32768 + 1: 1 + -25,-1: + 0: 61164 + -23,-4: + 1: 61440 + -24,-3: + 1: 128 -23,-3: - 0: 4415 + 1: 4400 -23,-2: - 0: 62225 - -23,-1: - 0: 8191 - -22,-4: + 1: 785 0: 61440 - -22,-3: - 0: 143 + -22,-4: + 1: 61440 -22,-2: - 0: 63488 - -22,-1: - 0: 8191 - -21,-4: 0: 61440 - -21,-3: - 0: 4543 + 1: 2048 + -22,-3: + 1: 128 -21,-2: - 0: 62225 - -21,-1: - 0: 4607 + 1: 785 + 0: 61440 -26,-3: - 0: 51200 + 1: 51200 -26,-2: - 0: 52428 + 1: 17476 -26,-1: - 0: 52428 - -25,-3: - 0: 14334 - -25,-2: - 0: 32769 - -25,-1: - 0: 61164 - -25,-4: - 0: 49152 + 1: 17476 -26,0: - 0: 52428 + 1: 17476 + -25,-3: + 1: 14326 -26,1: - 0: 52428 + 1: 17476 -26,2: - 0: 52428 + 1: 17476 -26,3: - 0: 52428 - -25,0: - 0: 61167 - -25,1: - 0: 61167 - -25,2: - 0: 61167 - -25,3: - 0: 140 + 1: 17476 + -26,4: + 1: 2244 -24,5: - 0: 255 + 1: 240 + -25,5: + 1: 198 -24,4: - 0: 32768 - -23,4: - 0: 12561 + 1: 32768 -23,5: - 0: 255 + 1: 240 -22,5: - 0: 255 + 1: 240 -22,4: - 0: 32768 - -21,4: - 0: 45329 - -21,5: - 0: 255 - -26,4: - 0: 2252 + 1: 32768 -25,4: - 0: 63281 - -25,5: - 0: 206 - 20,-15: - 0: 62704 + 1: 63281 20,-13: - 0: 52416 + 0: 49344 + 1: 3072 21,-15: - 0: 62704 + 1: 62704 21,-13: - 0: 65520 + 0: 61680 + 1: 3840 22,-15: - 0: 62704 - 22,-13: - 0: 44962 + 1: 62704 22,-14: - 0: 8192 + 1: 8192 23,-15: - 0: 62704 + 1: 62704 23,-13: - 0: 65520 - 24,-12: - 0: 4368 - 24,-11: - 0: 4368 - 24,-10: - 0: 4368 + 0: 61680 + 1: 3840 + 24,-15: + 1: 62704 + 24,-13: + 0: 4112 + 1: 256 25,-12: - 0: 50244 + 1: 50244 + 25,-13: + 1: 50244 25,-11: - 0: 50244 + 1: 50244 25,-10: - 0: 50244 - 25,-9: - 0: 50244 + 1: 50244 26,-12: - 0: 4369 + 1: 4369 26,-11: - 0: 4369 + 1: 4369 26,-10: - 0: 4369 - 26,-9: - 0: 4369 - 24,-15: - 0: 62704 - 24,-13: - 0: 4368 + 1: 4369 + 26,-13: + 1: 4369 25,-15: - 0: 62576 + 1: 62576 25,-14: - 0: 50244 - 25,-13: - 0: 50244 + 1: 50244 26,-15: - 0: 4368 + 1: 4368 26,-14: - 0: 4369 - 26,-13: - 0: 4369 - 25,6: - 0: 34952 - 26,6: - 0: 65535 - 27,6: - 0: 65535 - 28,6: - 0: 30581 - -9,-12: - 0: 4368 - -18,-4: - 0: 17604 - -18,-3: - 0: 12 - -17,-4: - 0: 2296 - -17,-3: - 0: 1 + 1: 4369 + -18,-8: + 1: 17484 -18,-9: - 0: 17600 + 1: 17600 + -18,-7: + 1: 17476 + -18,-6: + 1: 17476 -17,-9: - 0: 16 - 17,-7: - 0: 65535 - 20,-7: - 0: 65535 - 20,10: - 0: 17479 - 20,11: - 0: 1996 - 21,10: - 0: 16034 - 21,11: - 0: 1 - 21,9: - 0: 8738 - 22,10: - 0: 19 - 22,9: - 0: 8192 - 16,8: - 0: 35071 - 16,11: - 0: 3968 - 17,10: - 0: 4383 - 17,11: - 0: 3889 - 18,10: - 0: 15 - 18,11: - 0: 3840 - 19,10: - 0: 15 - 19,11: - 0: 3840 + 1: 16 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -11391,6 +11555,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -11477,12 +11656,13 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 11213 @@ -11529,8 +11709,6 @@ entities: - 15082 - 15083 - 12995 - - type: AtmosDevice - joinedGrid: 1 - uid: 16 components: - type: Transform @@ -11550,8 +11728,6 @@ entities: - 12609 - 11095 - 12617 - - type: AtmosDevice - joinedGrid: 1 - uid: 18 components: - type: Transform @@ -11587,8 +11763,6 @@ entities: - 7042 - 22168 - 15171 - - type: AtmosDevice - joinedGrid: 1 - uid: 22 components: - type: Transform @@ -11614,8 +11788,6 @@ entities: - 23724 - 12607 - 12591 - - type: AtmosDevice - joinedGrid: 1 - uid: 62 components: - type: Transform @@ -11630,8 +11802,6 @@ entities: - 22364 - 22353 - 14659 - - type: AtmosDevice - joinedGrid: 1 - uid: 595 components: - type: Transform @@ -11648,8 +11818,6 @@ entities: - 9258 - 13683 - 23614 - - type: AtmosDevice - joinedGrid: 1 - uid: 1163 components: - type: Transform @@ -11682,8 +11850,6 @@ entities: - 1295 - 11341 - 24209 - - type: AtmosDevice - joinedGrid: 1 - uid: 1234 components: - type: Transform @@ -11703,8 +11869,6 @@ entities: - 11423 - 14520 - 20110 - - type: AtmosDevice - joinedGrid: 1 - uid: 1258 components: - type: Transform @@ -11720,8 +11884,6 @@ entities: - 13319 - 13318 - 22382 - - type: AtmosDevice - joinedGrid: 1 - uid: 1304 components: - type: Transform @@ -11736,8 +11898,6 @@ entities: - 7591 - 10348 - 10399 - - type: AtmosDevice - joinedGrid: 1 - uid: 2290 components: - type: Transform @@ -11777,8 +11937,6 @@ entities: - 15472 - 12916 - 15473 - - type: AtmosDevice - joinedGrid: 1 - uid: 7608 components: - type: Transform @@ -11811,8 +11969,6 @@ entities: - 13388 - 14660 - 13345 - - type: AtmosDevice - joinedGrid: 1 - uid: 8044 components: - type: Transform @@ -11826,8 +11982,6 @@ entities: - 26011 - 26012 - 25977 - - type: AtmosDevice - joinedGrid: 1 - uid: 8047 components: - type: Transform @@ -11852,8 +12006,6 @@ entities: - 59 - 14624 - 13361 - - type: AtmosDevice - joinedGrid: 1 - uid: 9281 components: - type: Transform @@ -11872,8 +12024,6 @@ entities: - 15058 - 13159 - 15059 - - type: AtmosDevice - joinedGrid: 1 - uid: 9433 components: - type: Transform @@ -11899,8 +12049,6 @@ entities: - 12451 - 23959 - 23972 - - type: AtmosDevice - joinedGrid: 1 - uid: 11406 components: - type: Transform @@ -11937,8 +12085,6 @@ entities: - 15350 - 18198 - 17009 - - type: AtmosDevice - joinedGrid: 1 - uid: 12573 components: - type: Transform @@ -11955,8 +12101,6 @@ entities: - 22082 - 15076 - 12553 - - type: AtmosDevice - joinedGrid: 1 - uid: 12576 components: - type: Transform @@ -11975,8 +12119,6 @@ entities: - 9301 - 14287 - 17486 - - type: AtmosDevice - joinedGrid: 1 - uid: 12580 components: - type: Transform @@ -12010,8 +12152,6 @@ entities: - 14143 - 14071 - 11038 - - type: AtmosDevice - joinedGrid: 1 - uid: 14243 components: - type: Transform @@ -12033,8 +12173,6 @@ entities: - 14751 - 8390 - 6140 - - type: AtmosDevice - joinedGrid: 1 - uid: 16934 components: - type: Transform @@ -12060,8 +12198,6 @@ entities: - 11441 - 16937 - 16939 - - type: AtmosDevice - joinedGrid: 1 - uid: 22033 components: - type: Transform @@ -12088,8 +12224,6 @@ entities: - 14519 - 11411 - 14392 - - type: AtmosDevice - joinedGrid: 1 - uid: 22038 components: - type: Transform @@ -12105,8 +12239,6 @@ entities: - 9239 - 9240 - 9241 - - type: AtmosDevice - joinedGrid: 1 - uid: 22078 components: - type: Transform @@ -12125,8 +12257,6 @@ entities: - 12972 - 15084 - 13098 - - type: AtmosDevice - joinedGrid: 1 - uid: 22089 components: - type: Transform @@ -12150,8 +12280,6 @@ entities: - 9109 - 12992 - 15080 - - type: AtmosDevice - joinedGrid: 1 - uid: 22094 components: - type: Transform @@ -12169,8 +12297,6 @@ entities: - 13100 - 13099 - 14992 - - type: AtmosDevice - joinedGrid: 1 - uid: 22096 components: - type: Transform @@ -12185,8 +12311,6 @@ entities: - 22098 - 23737 - 23738 - - type: AtmosDevice - joinedGrid: 1 - uid: 22116 components: - type: Transform @@ -12224,8 +12348,6 @@ entities: - 12839 - 21394 - 21395 - - type: AtmosDevice - joinedGrid: 1 - uid: 22117 components: - type: Transform @@ -12259,8 +12381,6 @@ entities: - 13047 - 22119 - 12988 - - type: AtmosDevice - joinedGrid: 1 - uid: 22134 components: - type: Transform @@ -12277,8 +12397,6 @@ entities: - 15439 - 13814 - 15436 - - type: AtmosDevice - joinedGrid: 1 - uid: 22157 components: - type: Transform @@ -12312,8 +12430,6 @@ entities: - 12676 - 24187 - 24197 - - type: AtmosDevice - joinedGrid: 1 - uid: 22182 components: - type: Transform @@ -12347,8 +12463,6 @@ entities: - 14165 - 14164 - 12637 - - type: AtmosDevice - joinedGrid: 1 - uid: 22187 components: - type: Transform @@ -12363,8 +12477,6 @@ entities: - 9293 - 11136 - 14210 - - type: AtmosDevice - joinedGrid: 1 - uid: 22190 components: - type: Transform @@ -12383,8 +12495,6 @@ entities: - 11119 - 11135 - 14196 - - type: AtmosDevice - joinedGrid: 1 - uid: 22204 components: - type: Transform @@ -12405,8 +12515,6 @@ entities: - 7030 - 11142 - 13961 - - type: AtmosDevice - joinedGrid: 1 - uid: 22210 components: - type: Transform @@ -12424,8 +12532,6 @@ entities: - 14093 - 11009 - 14094 - - type: AtmosDevice - joinedGrid: 1 - uid: 22235 components: - type: Transform @@ -12440,8 +12546,6 @@ entities: - 14116 - 14114 - 11288 - - type: AtmosDevice - joinedGrid: 1 - uid: 22237 components: - type: Transform @@ -12458,8 +12562,6 @@ entities: - 15068 - 14069 - 10980 - - type: AtmosDevice - joinedGrid: 1 - uid: 22249 components: - type: Transform @@ -12478,8 +12580,6 @@ entities: - 10844 - 10843 - 10866 - - type: AtmosDevice - joinedGrid: 1 - uid: 22250 components: - type: Transform @@ -12511,8 +12611,6 @@ entities: - 13446 - 15606 - 13477 - - type: AtmosDevice - joinedGrid: 1 - uid: 22269 components: - type: Transform @@ -12540,8 +12638,6 @@ entities: - 15073 - 25830 - 25831 - - type: AtmosDevice - joinedGrid: 1 - uid: 22304 components: - type: Transform @@ -12559,8 +12655,6 @@ entities: - 15694 - 15693 - 13565 - - type: AtmosDevice - joinedGrid: 1 - uid: 22306 components: - type: Transform @@ -12574,8 +12668,6 @@ entities: - 15713 - 13447 - 25719 - - type: AtmosDevice - joinedGrid: 1 - uid: 22318 components: - type: Transform @@ -12596,8 +12688,6 @@ entities: - 15571 - 23621 - 23623 - - type: AtmosDevice - joinedGrid: 1 - uid: 22320 components: - type: Transform @@ -12611,8 +12701,6 @@ entities: - 22308 - 13471 - 15557 - - type: AtmosDevice - joinedGrid: 1 - uid: 22343 components: - type: Transform @@ -12652,16 +12740,12 @@ entities: - 14752 - 19151 - 19159 - - type: AtmosDevice - joinedGrid: 1 - uid: 22423 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22426 components: - type: Transform @@ -12677,8 +12761,6 @@ entities: - 14739 - 13850 - 8390 - - type: AtmosDevice - joinedGrid: 1 - uid: 22427 components: - type: Transform @@ -12697,8 +12779,6 @@ entities: - 13889 - 14792 - 13888 - - type: AtmosDevice - joinedGrid: 1 - uid: 22436 components: - type: Transform @@ -12715,8 +12795,6 @@ entities: - 22339 - 14832 - 13632 - - type: AtmosDevice - joinedGrid: 1 - uid: 22450 components: - type: Transform @@ -12738,16 +12816,12 @@ entities: - 13645 - 14838 - 13647 - - type: AtmosDevice - joinedGrid: 1 - uid: 22452 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22456 components: - type: Transform @@ -12783,8 +12857,6 @@ entities: - 13633 - 25328 - 25327 - - type: AtmosDevice - joinedGrid: 1 - uid: 22458 components: - type: Transform @@ -12812,8 +12884,6 @@ entities: - 13745 - 14944 - 26572 - - type: AtmosDevice - joinedGrid: 1 - uid: 23931 components: - type: Transform @@ -12836,8 +12906,6 @@ entities: - 19995 - 12448 - 11199 - - type: AtmosDevice - joinedGrid: 1 - uid: 24189 components: - type: Transform @@ -12846,27 +12914,23 @@ entities: parent: 1 - type: DeviceList devices: - - 22068 - - 1295 - - 24188 - - 1296 - - 24195 - - 22067 - - 24197 - - 22142 - - 14403 - - 24194 - - 24196 - - 19227 - - 19329 - - 19308 - - 19336 - - 19307 - 19370 - - 822 - - 19337 - - type: AtmosDevice - joinedGrid: 1 + - 19307 + - 19336 + - 19308 + - 19329 + - 19227 + - 24196 + - 24194 + - 14403 + - 22142 + - 24197 + - 22067 + - 24195 + - 1296 + - 24188 + - 1295 + - 22068 - uid: 24191 components: - type: Transform @@ -12874,23 +12938,19 @@ entities: parent: 1 - type: DeviceList devices: - - 22142 - - 14404 - - 24187 - - 24193 - - 24195 - - 1296 - - 22153 - - 1427 - - 1426 - - 1335 - - 822 - - 19337 - - 19235 - - 19369 - 19231 - - type: AtmosDevice - joinedGrid: 1 + - 19369 + - 19235 + - 1335 + - 1426 + - 1427 + - 22153 + - 1296 + - 24195 + - 24193 + - 24187 + - 14404 + - 22142 - uid: 24198 components: - type: Transform @@ -12915,8 +12975,6 @@ entities: - 22141 - 19624 - 19618 - - type: AtmosDevice - joinedGrid: 1 - uid: 25329 components: - type: Transform @@ -12935,8 +12993,6 @@ entities: - 23964 - 14877 - 13698 - - type: AtmosDevice - joinedGrid: 1 - uid: 25389 components: - type: Transform @@ -12950,8 +13006,6 @@ entities: - 25392 - 25366 - 25335 - - type: AtmosDevice - joinedGrid: 1 - uid: 25543 components: - type: Transform @@ -12973,8 +13027,6 @@ entities: - 11047 - 25553 - 25554 - - type: AtmosDevice - joinedGrid: 1 - uid: 25558 components: - type: Transform @@ -12993,8 +13045,6 @@ entities: - 25656 - 25655 - 25670 - - type: AtmosDevice - joinedGrid: 1 - uid: 25560 components: - type: Transform @@ -13017,8 +13067,6 @@ entities: - 25426 - 25406 - 25427 - - type: AtmosDevice - joinedGrid: 1 - uid: 25563 components: - type: Transform @@ -13038,8 +13086,6 @@ entities: - 14750 - 13840 - 22430 - - type: AtmosDevice - joinedGrid: 1 - uid: 25671 components: - type: Transform @@ -13052,8 +13098,6 @@ entities: - 25655 - 17458 - 25632 - - type: AtmosDevice - joinedGrid: 1 - uid: 26192 components: - type: Transform @@ -13068,8 +13112,6 @@ entities: - 26193 - 3485 - 26183 - - type: AtmosDevice - joinedGrid: 1 - uid: 26197 components: - type: Transform @@ -13096,8 +13138,6 @@ entities: - 26033 - 25954 - 10390 - - type: AtmosDevice - joinedGrid: 1 - uid: 26199 components: - type: Transform @@ -13112,8 +13152,6 @@ entities: - 26035 - 25992 - 26034 - - type: AtmosDevice - joinedGrid: 1 - uid: 26202 components: - type: Transform @@ -13126,8 +13164,6 @@ entities: - 26187 - 26058 - 25990 - - type: AtmosDevice - joinedGrid: 1 - uid: 26203 components: - type: Transform @@ -13146,8 +13182,6 @@ entities: - 25975 - 25986 - 26005 - - type: AtmosDevice - joinedGrid: 1 - uid: 26205 components: - type: Transform @@ -13167,8 +13201,6 @@ entities: - 25951 - 10339 - 13317 - - type: AtmosDevice - joinedGrid: 1 - uid: 26311 components: - type: Transform @@ -13185,8 +13217,6 @@ entities: - 26565 - 26572 - 22438 - - type: AtmosDevice - joinedGrid: 1 - proto: AirAlarmElectronics entities: - uid: 16397 @@ -13202,50 +13232,36 @@ entities: - type: Transform pos: 67.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 5553 components: - type: Transform pos: 82.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6513 components: - type: Transform pos: -60.5,33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9137 components: - type: Transform pos: 49.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15733 components: - type: Transform pos: -39.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15857 components: - type: Transform pos: -37.5,38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 24823 components: - type: Transform pos: 64.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 1233 @@ -15160,13 +15176,6 @@ entities: - type: Transform pos: -12.5,-4.5 parent: 1 -- proto: AirlockMailLocked - entities: - - uid: 2045 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 1 - proto: AirlockMaint entities: - uid: 694 @@ -15639,6 +15648,13 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 1 +- proto: AirlockMaintMailLocked + entities: + - uid: 2045 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 1 - proto: AirlockMaintMedLocked entities: - uid: 16271 @@ -16159,11 +16175,6 @@ entities: - type: Transform pos: 70.5,9.5 parent: 1 - - uid: 4757 - components: - - type: Transform - pos: 68.5,31.5 - parent: 1 - uid: 25277 components: - type: Transform @@ -16238,6 +16249,13 @@ entities: - type: Transform pos: 33.5,15.5 parent: 1 +- proto: AirlockVaultLocked + entities: + - uid: 4729 + components: + - type: Transform + pos: 68.5,31.5 + parent: 1 - proto: AirlockVirologyGlassLocked entities: - uid: 8052 @@ -16369,6 +16387,9 @@ entities: - type: Transform pos: -1.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 22068 components: - type: Transform @@ -16380,6 +16401,7 @@ entities: - 2290 - 2692 - 9433 + - 24189 - uid: 22076 components: - type: Transform @@ -16448,6 +16470,10 @@ entities: - type: Transform pos: -24.5,20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 + - 24189 - uid: 22143 components: - type: Transform @@ -16458,6 +16484,9 @@ entities: - type: Transform pos: 11.5,24.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 22156 components: - type: Transform @@ -16737,11 +16766,17 @@ entities: - type: Transform pos: -4.5,19.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 24188 components: - type: Transform pos: 5.5,21.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 24211 components: - type: Transform @@ -16959,7 +16994,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -18621,8 +18655,6 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Basketball entities: - uid: 25918 @@ -18672,7 +18704,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -19672,24 +19703,32 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-8.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 6925 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-9.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 15993 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-19.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 19217 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,23.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: BoardGameSpawner entities: - uid: 1487 @@ -49065,22 +49104,16 @@ entities: - type: Transform pos: -43.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7343 components: - type: Transform pos: -0.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 23418 components: - type: Transform pos: -43.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: CargoPallet entities: - uid: 11080 @@ -50488,6 +50521,13 @@ entities: rot: 1.5707963267948966 rad pos: -29.46467,30.534334 parent: 1 +- proto: CartridgeRocket + entities: + - uid: 6529 + components: + - type: Transform + pos: 82.51179,10.456494 + parent: 1 - proto: Catwalk entities: - uid: 620 @@ -56497,7 +56537,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 30 name: null @@ -56914,11 +56953,6 @@ entities: - type: Transform pos: 3.5,-49.5 parent: 1 - - uid: 9359 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 1 - uid: 9385 components: - type: Transform @@ -56944,6 +56978,78 @@ entities: - type: Transform pos: -32.5,-31.5 parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 839 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 55.5,16.5 + parent: 1 + - uid: 26860 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 1 + - uid: 26861 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - uid: 26862 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 1 + - uid: 26863 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 26864 + components: + - type: Transform + pos: -23.5,18.5 + parent: 1 + - uid: 26865 + components: + - type: Transform + pos: 49.5,10.5 + parent: 1 + - uid: 26866 + components: + - type: Transform + pos: -47.5,38.5 + parent: 1 + - uid: 26867 + components: + - type: Transform + pos: 27.5,54.5 + parent: 1 + - uid: 26868 + components: + - type: Transform + pos: -3.5,54.5 + parent: 1 + - uid: 26869 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 1 + - uid: 26870 + components: + - type: Transform + pos: -56.5,38.5 + parent: 1 + - uid: 26871 + components: + - type: Transform + pos: 92.5,0.5 + parent: 1 - proto: ClosetFire entities: - uid: 9128 @@ -57983,31 +58089,6 @@ entities: - type: Transform pos: -28.391754,33.244553 parent: 1 -- proto: ClothingHeadHatHairflower - entities: - - uid: 4019 - components: - - type: Transform - pos: 60.892315,20.397236 - parent: 1 - - uid: 9411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.443083,-43.94188 - parent: 1 - - uid: 9412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.505583,-44.035698 - parent: 1 - - uid: 22140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.245552,20.64422 - parent: 1 - proto: ClothingHeadHatHardhatOrange entities: - uid: 23507 @@ -59018,13 +59099,13 @@ entities: - CloningPodSender: CloningPodReceiver - proto: ComputerComms entities: - - uid: 6290 + - uid: 4757 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,0.5 parent: 1 - - uid: 6291 + - uid: 5472 components: - type: Transform rot: -1.5707963267948966 rad @@ -60772,8 +60853,6 @@ entities: - type: Transform pos: 61.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: CryoxadoneBeakerSmall entities: - uid: 24819 @@ -61696,12 +61775,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 - - uid: 4729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - uid: 4862 components: - type: Transform @@ -61713,12 +61786,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 1 - - uid: 5472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,26.5 - parent: 1 - uid: 5490 components: - type: Transform @@ -61777,18 +61844,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - - uid: 10114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1 - - uid: 10115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - uid: 10143 components: - type: Transform @@ -61868,12 +61923,6 @@ entities: - type: Transform pos: 71.5,27.5 parent: 1 - - uid: 10204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,27.5 - parent: 1 - uid: 10205 components: - type: Transform @@ -61932,12 +61981,6 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,14.5 parent: 1 - - uid: 10347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-15.5 - parent: 1 - uid: 10353 components: - type: Transform @@ -62498,12 +62541,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,19.5 parent: 1 - - uid: 23995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - uid: 24225 components: - type: Transform @@ -62566,6 +62603,271 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,39.5 parent: 1 + - uid: 26445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,25.5 + parent: 1 + - uid: 26644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + - uid: 26645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 1 + - uid: 26651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - uid: 26660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 1 + - uid: 26661 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 1 + - uid: 26666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 1 + - uid: 26676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,36.5 + parent: 1 + - uid: 26677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,37.5 + parent: 1 + - uid: 26678 + components: + - type: Transform + pos: -32.5,37.5 + parent: 1 + - uid: 26679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,24.5 + parent: 1 + - uid: 26680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 1 + - uid: 26681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 1 + - uid: 26682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 1 + - uid: 26683 + components: + - type: Transform + pos: -31.5,24.5 + parent: 1 + - uid: 26684 + components: + - type: Transform + pos: -30.5,23.5 + parent: 1 + - uid: 26685 + components: + - type: Transform + pos: -29.5,22.5 + parent: 1 + - uid: 26686 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1 + - uid: 26731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + - uid: 26732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + - uid: 26733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + - uid: 26742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + - uid: 26743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + - uid: 26744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + - uid: 26763 + components: + - type: Transform + pos: 28.5,21.5 + parent: 1 + - uid: 26771 + components: + - type: Transform + pos: 24.5,23.5 + parent: 1 + - uid: 26778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 1 + - uid: 26779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 1 + - uid: 26780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 1 + - uid: 26781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 1 + - uid: 26783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + - uid: 26784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 1 + - uid: 26807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 1 + - uid: 26808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 1 + - uid: 26809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 1 + - uid: 26810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 + parent: 1 + - uid: 26811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 1 + - uid: 26812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 1 + - uid: 26835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,-15.5 + parent: 1 + - uid: 26838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,-1.5 + parent: 1 + - uid: 26839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,-1.5 + parent: 1 + - uid: 26848 + components: + - type: Transform + pos: 64.5,28.5 + parent: 1 + - uid: 26850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 1 + - uid: 26855 + components: + - type: Transform + pos: 67.5,29.5 + parent: 1 + - uid: 26856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,29.5 + parent: 1 + - uid: 26857 + components: + - type: Transform + pos: 70.5,28.5 + parent: 1 - proto: DisposalJunction entities: - uid: 2691 @@ -62602,6 +62904,12 @@ entities: rot: -1.5707963267948966 rad pos: 104.5,4.5 parent: 1 + - uid: 10204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-15.5 + parent: 1 - uid: 10321 components: - type: Transform @@ -62620,6 +62928,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,4.5 parent: 1 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,26.5 + parent: 1 - uid: 10531 components: - type: Transform @@ -62643,12 +62957,23 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,11.5 parent: 1 + - uid: 10696 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1 - uid: 10704 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,3.5 parent: 1 + - uid: 12019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 1 - uid: 12851 components: - type: Transform @@ -62672,6 +62997,30 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,2.5 parent: 1 + - uid: 23979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 1 + - uid: 23988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,27.5 + parent: 1 + - uid: 26782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 1 + - uid: 26859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 1 - proto: DisposalJunctionFlipped entities: - uid: 2696 @@ -62686,6 +63035,12 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-11.5 parent: 1 + - uid: 6290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 1 - uid: 8578 components: - type: Transform @@ -62697,6 +63052,22 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-27.5 parent: 1 + - uid: 10152 + components: + - type: Transform + pos: 70.5,27.5 + parent: 1 + - uid: 10211 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - uid: 10347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 105.5,4.5 + parent: 1 - uid: 10352 components: - type: Transform @@ -62756,11 +63127,23 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,11.5 parent: 1 + - uid: 10660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 1 - uid: 10743 components: - type: Transform pos: -50.5,8.5 parent: 1 + - uid: 10963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 - uid: 21598 components: - type: Transform @@ -62779,6 +63162,35 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,3.5 parent: 1 + - uid: 23995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 1 + - uid: 26444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,26.5 + parent: 1 + - uid: 26665 + components: + - type: Transform + pos: -48.5,11.5 + parent: 1 + - uid: 26762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1 + - uid: 26852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,28.5 + parent: 1 - proto: DisposalMachineFrame entities: - uid: 15943 @@ -63177,12 +63589,6 @@ entities: rot: 1.5707963267948966 rad pos: 106.5,4.5 parent: 1 - - uid: 10152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,4.5 - parent: 1 - uid: 10153 components: - type: Transform @@ -63390,12 +63796,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,4.5 parent: 1 - - uid: 10211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,27.5 - parent: 1 - uid: 10212 components: - type: Transform @@ -64049,12 +64449,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,4.5 parent: 1 - - uid: 10421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,4.5 - parent: 1 - uid: 10422 components: - type: Transform @@ -65009,11 +65403,6 @@ entities: - type: Transform pos: 12.5,26.5 parent: 1 - - uid: 10660 - components: - - type: Transform - pos: 12.5,27.5 - parent: 1 - uid: 10661 components: - type: Transform @@ -65211,12 +65600,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,3.5 parent: 1 - - uid: 10696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 1 - uid: 10697 components: - type: Transform @@ -65606,24 +65989,12 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,8.5 parent: 1 - - uid: 10963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 1 - uid: 10964 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,8.5 parent: 1 - - uid: 12019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-28.5 - parent: 1 - uid: 12022 components: - type: Transform @@ -68135,12 +68506,6 @@ entities: rot: -1.5707963267948966 rad pos: 100.5,5.5 parent: 1 - - uid: 23979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,26.5 - parent: 1 - uid: 23981 components: - type: Transform @@ -68177,12 +68542,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,11.5 parent: 1 - - uid: 23988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 1 - uid: 23989 components: - type: Transform @@ -69088,12 +69447,6 @@ entities: rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 1 - - uid: 26431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 1 - uid: 26432 components: - type: Transform @@ -69159,20 +69512,840 @@ entities: - type: Transform pos: 66.5,30.5 parent: 1 - - uid: 26443 + - uid: 26647 components: - type: Transform - pos: 66.5,29.5 + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 parent: 1 - - uid: 26444 + - uid: 26648 components: - type: Transform - pos: 66.5,28.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 1 - - uid: 26445 + - uid: 26649 components: - type: Transform - pos: 66.5,27.5 + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + - uid: 26652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 1 + - uid: 26653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + - uid: 26654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + - uid: 26655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + - uid: 26656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + - uid: 26657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + - uid: 26658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + - uid: 26659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 1 + - uid: 26667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,13.5 + parent: 1 + - uid: 26668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,12.5 + parent: 1 + - uid: 26669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,13.5 + parent: 1 + - uid: 26670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,12.5 + parent: 1 + - uid: 26671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,11.5 + parent: 1 + - uid: 26672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,11.5 + parent: 1 + - uid: 26673 + components: + - type: Transform + pos: -48.5,10.5 + parent: 1 + - uid: 26674 + components: + - type: Transform + pos: -48.5,9.5 + parent: 1 + - uid: 26687 + components: + - type: Transform + pos: -26.5,15.5 + parent: 1 + - uid: 26688 + components: + - type: Transform + pos: -26.5,16.5 + parent: 1 + - uid: 26689 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - uid: 26690 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1 + - uid: 26691 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 26692 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 26693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,21.5 + parent: 1 + - uid: 26694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,21.5 + parent: 1 + - uid: 26695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,25.5 + parent: 1 + - uid: 26696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,26.5 + parent: 1 + - uid: 26697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,27.5 + parent: 1 + - uid: 26698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,28.5 + parent: 1 + - uid: 26699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,29.5 + parent: 1 + - uid: 26700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,30.5 + parent: 1 + - uid: 26701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,31.5 + parent: 1 + - uid: 26702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,32.5 + parent: 1 + - uid: 26703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 1 + - uid: 26704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,34.5 + parent: 1 + - uid: 26705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,35.5 + parent: 1 + - uid: 26706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 1 + - uid: 26707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,37.5 + parent: 1 + - uid: 26708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 1 + - uid: 26709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 1 + - uid: 26710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,37.5 + parent: 1 + - uid: 26711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,37.5 + parent: 1 + - uid: 26712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,37.5 + parent: 1 + - uid: 26713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,37.5 + parent: 1 + - uid: 26714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,37.5 + parent: 1 + - uid: 26715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,37.5 + parent: 1 + - uid: 26716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,37.5 + parent: 1 + - uid: 26717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,37.5 + parent: 1 + - uid: 26718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,37.5 + parent: 1 + - uid: 26719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,37.5 + parent: 1 + - uid: 26720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,37.5 + parent: 1 + - uid: 26721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 1 + - uid: 26722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,37.5 + parent: 1 + - uid: 26723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,37.5 + parent: 1 + - uid: 26724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,37.5 + parent: 1 + - uid: 26725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,37.5 + parent: 1 + - uid: 26726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,37.5 + parent: 1 + - uid: 26727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,37.5 + parent: 1 + - uid: 26728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,37.5 + parent: 1 + - uid: 26729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,37.5 + parent: 1 + - uid: 26734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + - uid: 26735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + - uid: 26736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + - uid: 26737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 1 + - uid: 26738 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 26739 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 26740 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 26745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 1 + - uid: 26746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1 + - uid: 26747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 1 + - uid: 26748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 1 + - uid: 26749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + - uid: 26750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 1 + - uid: 26751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + - uid: 26752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + - uid: 26753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 1 + - uid: 26754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 1 + - uid: 26755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 1 + - uid: 26756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 1 + - uid: 26757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + - uid: 26758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 1 + - uid: 26759 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1 + - uid: 26764 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - uid: 26765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + - uid: 26766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,21.5 + parent: 1 + - uid: 26767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 1 + - uid: 26768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,21.5 + parent: 1 + - uid: 26769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 1 + - uid: 26770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,23.5 + parent: 1 + - uid: 26785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 1 + - uid: 26786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,9.5 + parent: 1 + - uid: 26787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 1 + - uid: 26788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 1 + - uid: 26789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 1 + - uid: 26790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 1 + - uid: 26791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,4.5 + parent: 1 + - uid: 26792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + - uid: 26793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 1 + - uid: 26794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + - uid: 26795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + - uid: 26796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + - uid: 26797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + - uid: 26798 + components: + - type: Transform + pos: 34.5,4.5 + parent: 1 + - uid: 26799 + components: + - type: Transform + pos: 34.5,5.5 + parent: 1 + - uid: 26800 + components: + - type: Transform + pos: 30.5,4.5 + parent: 1 + - uid: 26801 + components: + - type: Transform + pos: 30.5,5.5 + parent: 1 + - uid: 26802 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1 + - uid: 26803 + components: + - type: Transform + pos: 31.5,7.5 + parent: 1 + - uid: 26804 + components: + - type: Transform + pos: 33.5,7.5 + parent: 1 + - uid: 26805 + components: + - type: Transform + pos: 35.5,7.5 + parent: 1 + - uid: 26813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,3.5 + parent: 1 + - uid: 26814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,2.5 + parent: 1 + - uid: 26815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 1 + - uid: 26816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,0.5 + parent: 1 + - uid: 26817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-0.5 + parent: 1 + - uid: 26818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-1.5 + parent: 1 + - uid: 26819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 1 + - uid: 26820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-4.5 + parent: 1 + - uid: 26821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-5.5 + parent: 1 + - uid: 26822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-6.5 + parent: 1 + - uid: 26823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-7.5 + parent: 1 + - uid: 26824 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 1 + - uid: 26825 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 1 + - uid: 26826 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 1 + - uid: 26827 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 1 + - uid: 26828 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 1 + - uid: 26829 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 1 + - uid: 26830 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 1 + - uid: 26831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-15.5 + parent: 1 + - uid: 26832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-15.5 + parent: 1 + - uid: 26833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-15.5 + parent: 1 + - uid: 26834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-16.5 + parent: 1 + - uid: 26837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,-15.5 + parent: 1 + - uid: 26841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 107.5,-1.5 + parent: 1 + - uid: 26842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 106.5,-1.5 + parent: 1 + - uid: 26843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,-0.5 + parent: 1 + - uid: 26844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,0.5 + parent: 1 + - uid: 26845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,1.5 + parent: 1 + - uid: 26846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,2.5 + parent: 1 + - uid: 26847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 105.5,3.5 + parent: 1 + - uid: 26853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,26.5 + parent: 1 + - uid: 26854 + components: + - type: Transform + pos: 67.5,27.5 parent: 1 - proto: DisposalTagger entities: @@ -69390,6 +70563,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-11.5 parent: 1 + - uid: 6291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,25.5 + parent: 1 - uid: 6914 components: - type: Transform @@ -69671,6 +70850,126 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,39.5 parent: 1 + - uid: 26431 + components: + - type: Transform + pos: 84.5,33.5 + parent: 1 + - uid: 26443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,28.5 + parent: 1 + - uid: 26646 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1 + - uid: 26650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + - uid: 26662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-30.5 + parent: 1 + - uid: 26663 + components: + - type: Transform + pos: -48.5,14.5 + parent: 1 + - uid: 26664 + components: + - type: Transform + pos: -45.5,14.5 + parent: 1 + - uid: 26675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,36.5 + parent: 1 + - uid: 26730 + components: + - type: Transform + pos: -15.5,19.5 + parent: 1 + - uid: 26741 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1 + - uid: 26760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 1 + - uid: 26761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 + - uid: 26772 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1 + - uid: 26773 + components: + - type: Transform + pos: 31.5,8.5 + parent: 1 + - uid: 26774 + components: + - type: Transform + pos: 33.5,8.5 + parent: 1 + - uid: 26775 + components: + - type: Transform + pos: 35.5,8.5 + parent: 1 + - uid: 26806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-17.5 + parent: 1 + - uid: 26836 + components: + - type: Transform + pos: 87.5,-14.5 + parent: 1 + - uid: 26840 + components: + - type: Transform + pos: 108.5,-0.5 + parent: 1 + - uid: 26849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 1 + - uid: 26851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,25.5 + parent: 1 + - uid: 26858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,28.5 + parent: 1 - proto: DisposalUnit entities: - uid: 902 @@ -69872,6 +71171,18 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,8.5 parent: 1 + - uid: 10114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 1 + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 - uid: 10130 components: - type: Transform @@ -69907,6 +71218,16 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 1 + - uid: 26776 + components: + - type: Transform + pos: 34.5,6.5 + parent: 1 + - uid: 26777 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1 - proto: DogBed entities: - uid: 1292 @@ -70419,7 +71740,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -70495,7 +71815,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -70579,7 +71898,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -70649,7 +71967,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -70666,7 +71983,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -70683,7 +71999,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -70786,7 +72101,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 10 name: null @@ -70975,7 +72289,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -71023,7 +72336,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71040,7 +72352,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -71059,7 +72370,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -72051,10 +73361,10 @@ entities: canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 6530 + - uid: 21478 components: - type: Transform - parent: 6529 + parent: 6530 - type: Physics canCollide: False - proto: EncryptionKeyMedical @@ -72070,7 +73380,7 @@ entities: - uid: 6531 components: - type: Transform - parent: 6529 + parent: 6536 - type: Physics canCollide: False - proto: EncryptionKeyScience @@ -72116,6 +73426,13 @@ entities: - type: Transform pos: 106.5,24.5 parent: 1 +- proto: ExtendedEmergencyNitrogenTankFilled + entities: + - uid: 26872 + components: + - type: Transform + pos: 88.58,-11.390545 + parent: 1 - proto: ExtendedEmergencyOxygenTankFilled entities: - uid: 25284 @@ -72524,8 +73841,6 @@ entities: - 9260 - 9261 - 9262 - - type: AtmosDevice - joinedGrid: 1 - uid: 11 components: - type: Transform @@ -72554,8 +73869,6 @@ entities: - 1295 - 11341 - 24209 - - type: AtmosDevice - joinedGrid: 1 - uid: 12 components: - type: Transform @@ -72570,8 +73883,6 @@ entities: - 22083 - 1310 - 22082 - - type: AtmosDevice - joinedGrid: 1 - uid: 19 components: - type: Transform @@ -72588,8 +73899,6 @@ entities: - 9302 - 22179 - 9301 - - type: AtmosDevice - joinedGrid: 1 - uid: 23 components: - type: Transform @@ -72615,8 +73924,6 @@ entities: - 25542 - 25541 - 25540 - - type: AtmosDevice - joinedGrid: 1 - uid: 1035 components: - type: Transform @@ -72631,8 +73938,6 @@ entities: - 22104 - 15173 - 22105 - - type: AtmosDevice - joinedGrid: 1 - uid: 1270 components: - type: Transform @@ -72642,8 +73947,6 @@ entities: devices: - 26176 - 22397 - - type: AtmosDevice - joinedGrid: 1 - uid: 2692 components: - type: Transform @@ -72663,8 +73966,6 @@ entities: - 24210 - 22068 - 24209 - - type: AtmosDevice - joinedGrid: 1 - uid: 5056 components: - type: Transform @@ -72677,8 +73978,6 @@ entities: - 26172 - 26193 - 26183 - - type: AtmosDevice - joinedGrid: 1 - uid: 7426 components: - type: Transform @@ -72693,8 +73992,6 @@ entities: - 22104 - 15173 - 9258 - - type: AtmosDevice - joinedGrid: 1 - uid: 7715 components: - type: Transform @@ -72706,8 +74003,6 @@ entities: - 26184 - 22364 - 22353 - - type: AtmosDevice - joinedGrid: 1 - uid: 7719 components: - type: Transform @@ -72720,8 +74015,6 @@ entities: - 22375 - 22337 - 9263 - - type: AtmosDevice - joinedGrid: 1 - uid: 8045 components: - type: Transform @@ -72732,8 +74025,6 @@ entities: devices: - 26178 - 10346 - - type: AtmosDevice - joinedGrid: 1 - uid: 9284 components: - type: Transform @@ -72767,8 +74058,6 @@ entities: - 7027 - 7026 - 7025 - - type: AtmosDevice - joinedGrid: 1 - uid: 11419 components: - type: Transform @@ -72789,8 +74078,6 @@ entities: - 9241 - 14393 - 14391 - - type: AtmosDevice - joinedGrid: 1 - uid: 12572 components: - type: Transform @@ -72822,8 +74109,6 @@ entities: - 9251 - 22055 - 22057 - - type: AtmosDevice - joinedGrid: 1 - uid: 12574 components: - type: Transform @@ -72839,8 +74124,6 @@ entities: - 22046 - 9252 - 9253 - - type: AtmosDevice - joinedGrid: 1 - uid: 12575 components: - type: Transform @@ -72872,8 +74155,6 @@ entities: - 9109 - 12585 - 25396 - - type: AtmosDevice - joinedGrid: 1 - uid: 12579 components: - type: Transform @@ -72892,8 +74173,6 @@ entities: - 22195 - 22055 - 22194 - - type: AtmosDevice - joinedGrid: 1 - uid: 13353 components: - type: Transform @@ -72916,8 +74195,6 @@ entities: - 22358 - 22359 - 22360 - - type: AtmosDevice - joinedGrid: 1 - uid: 19617 components: - type: Transform @@ -72935,8 +74212,6 @@ entities: - 5237 - 14394 - 22046 - - type: AtmosDevice - joinedGrid: 1 - uid: 19625 components: - type: Transform @@ -72949,8 +74224,6 @@ entities: - 11341 - 24200 - 24201 - - type: AtmosDevice - joinedGrid: 1 - uid: 22034 components: - type: Transform @@ -72970,8 +74243,6 @@ entities: - 22032 - 11411 - 14392 - - type: AtmosDevice - joinedGrid: 1 - uid: 22039 components: - type: Transform @@ -72987,8 +74258,6 @@ entities: - 9239 - 9240 - 9241 - - type: AtmosDevice - joinedGrid: 1 - uid: 22077 components: - type: Transform @@ -73003,8 +74272,6 @@ entities: - 9250 - 15173 - 9254 - - type: AtmosDevice - joinedGrid: 1 - uid: 22090 components: - type: Transform @@ -73026,8 +74293,6 @@ entities: - 22156 - 9110 - 9109 - - type: AtmosDevice - joinedGrid: 1 - uid: 22093 components: - type: Transform @@ -73041,8 +74306,6 @@ entities: - 9255 - 22056 - 22091 - - type: AtmosDevice - joinedGrid: 1 - uid: 22097 components: - type: Transform @@ -73053,8 +74316,6 @@ entities: devices: - 15173 - 9257 - - type: AtmosDevice - joinedGrid: 1 - uid: 22115 components: - type: Transform @@ -73075,8 +74336,6 @@ entities: - 5206 - 5226 - 5224 - - type: AtmosDevice - joinedGrid: 1 - uid: 22118 components: - type: Transform @@ -73106,8 +74365,6 @@ entities: - 7020 - 7019 - 7018 - - type: AtmosDevice - joinedGrid: 1 - uid: 22121 components: - type: Transform @@ -73120,8 +74377,6 @@ entities: - 9277 - 15255 - 10546 - - type: AtmosDevice - joinedGrid: 1 - uid: 22158 components: - type: Transform @@ -73149,8 +74404,6 @@ entities: - 14213 - 24187 - 24197 - - type: AtmosDevice - joinedGrid: 1 - uid: 22183 components: - type: Transform @@ -73175,8 +74428,6 @@ entities: - 22172 - 22174 - 9301 - - type: AtmosDevice - joinedGrid: 1 - uid: 22188 components: - type: Transform @@ -73189,8 +74440,6 @@ entities: - 22189 - 22179 - 9293 - - type: AtmosDevice - joinedGrid: 1 - uid: 22191 components: - type: Transform @@ -73205,8 +74454,6 @@ entities: - 22192 - 22159 - 22189 - - type: AtmosDevice - joinedGrid: 1 - uid: 22205 components: - type: Transform @@ -73225,8 +74472,6 @@ entities: - 22179 - 7029 - 7030 - - type: AtmosDevice - joinedGrid: 1 - uid: 22211 components: - type: Transform @@ -73240,8 +74485,6 @@ entities: - 22173 - 9299 - 9298 - - type: AtmosDevice - joinedGrid: 1 - uid: 22236 components: - type: Transform @@ -73252,8 +74495,6 @@ entities: devices: - 22208 - 22212 - - type: AtmosDevice - joinedGrid: 1 - uid: 22238 components: - type: Transform @@ -73264,8 +74505,6 @@ entities: devices: - 22208 - 22232 - - type: AtmosDevice - joinedGrid: 1 - uid: 22248 components: - type: Transform @@ -73280,8 +74519,6 @@ entities: - 22246 - 22244 - 22245 - - type: AtmosDevice - joinedGrid: 1 - uid: 22251 components: - type: Transform @@ -73307,8 +74544,6 @@ entities: - 22264 - 9285 - 9286 - - type: AtmosDevice - joinedGrid: 1 - uid: 22270 components: - type: Transform @@ -73324,8 +74559,6 @@ entities: - 25142 - 25830 - 25831 - - type: AtmosDevice - joinedGrid: 1 - uid: 22305 components: - type: Transform @@ -73338,8 +74571,6 @@ entities: - 9287 - 22259 - 22266 - - type: AtmosDevice - joinedGrid: 1 - uid: 22307 components: - type: Transform @@ -73351,8 +74582,6 @@ entities: - 22143 - 9288 - 25719 - - type: AtmosDevice - joinedGrid: 1 - uid: 22321 components: - type: Transform @@ -73364,8 +74593,6 @@ entities: - 22261 - 22309 - 22308 - - type: AtmosDevice - joinedGrid: 1 - uid: 22344 components: - type: Transform @@ -73395,8 +74622,6 @@ entities: - 9274 - 9270 - 9271 - - type: AtmosDevice - joinedGrid: 1 - uid: 22409 components: - type: Transform @@ -73416,8 +74641,6 @@ entities: - 9275 - 8390 - 6140 - - type: AtmosDevice - joinedGrid: 1 - uid: 22422 components: - type: Transform @@ -73432,8 +74655,6 @@ entities: - 22413 - 22417 - 22414 - - type: AtmosDevice - joinedGrid: 1 - uid: 22424 components: - type: Transform @@ -73452,8 +74673,6 @@ entities: - 14796 - 14795 - 13848 - - type: AtmosDevice - joinedGrid: 1 - uid: 22425 components: - type: Transform @@ -73467,8 +74686,6 @@ entities: - 22411 - 22415 - 8390 - - type: AtmosDevice - joinedGrid: 1 - uid: 22428 components: - type: Transform @@ -73481,8 +74698,6 @@ entities: - 22419 - 22412 - 22420 - - type: AtmosDevice - joinedGrid: 1 - uid: 22437 components: - type: Transform @@ -73497,8 +74712,6 @@ entities: - 22342 - 22340 - 22339 - - type: AtmosDevice - joinedGrid: 1 - uid: 22451 components: - type: Transform @@ -73512,16 +74725,12 @@ entities: - 22446 - 22442 - 22449 - - type: AtmosDevice - joinedGrid: 1 - uid: 22453 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22457 components: - type: Transform @@ -73548,8 +74757,6 @@ entities: - 22461 - 25328 - 25327 - - type: AtmosDevice - joinedGrid: 1 - uid: 22459 components: - type: Transform @@ -73562,8 +74769,6 @@ entities: - 22461 - 26468 - 26572 - - type: AtmosDevice - joinedGrid: 1 - uid: 23937 components: - type: Transform @@ -73579,8 +74784,6 @@ entities: - 15557 - 22308 - 22309 - - type: AtmosDevice - joinedGrid: 1 - uid: 23947 components: - type: Transform @@ -73596,8 +74799,6 @@ entities: - 15255 - 23802 - 24207 - - type: AtmosDevice - joinedGrid: 1 - uid: 24190 components: - type: Transform @@ -73617,8 +74818,6 @@ entities: - 14403 - 24194 - 24196 - - type: AtmosDevice - joinedGrid: 1 - uid: 24192 components: - type: Transform @@ -73637,8 +74836,6 @@ entities: - 1427 - 1426 - 1335 - - type: AtmosDevice - joinedGrid: 1 - uid: 24199 components: - type: Transform @@ -73661,8 +74858,6 @@ entities: - 7022 - 22142 - 22141 - - type: AtmosDevice - joinedGrid: 1 - uid: 25330 components: - type: Transform @@ -73675,8 +74870,6 @@ entities: - 25127 - 22342 - 25327 - - type: AtmosDevice - joinedGrid: 1 - uid: 25390 components: - type: Transform @@ -73688,8 +74881,6 @@ entities: - 22217 - 25391 - 25392 - - type: AtmosDevice - joinedGrid: 1 - uid: 25544 components: - type: Transform @@ -73705,8 +74896,6 @@ entities: - 25538 - 25298 - 25539 - - type: AtmosDevice - joinedGrid: 1 - uid: 25559 components: - type: Transform @@ -73722,8 +74911,6 @@ entities: - 25656 - 25655 - 25670 - - type: AtmosDevice - joinedGrid: 1 - uid: 25561 components: - type: Transform @@ -73734,8 +74921,6 @@ entities: devices: - 22224 - 25555 - - type: AtmosDevice - joinedGrid: 1 - uid: 25672 components: - type: Transform @@ -73747,8 +74932,6 @@ entities: - 22224 - 25656 - 25655 - - type: AtmosDevice - joinedGrid: 1 - uid: 26198 components: - type: Transform @@ -73771,8 +74954,6 @@ entities: - 26187 - 26180 - 26188 - - type: AtmosDevice - joinedGrid: 1 - uid: 26200 components: - type: Transform @@ -73783,8 +74964,6 @@ entities: devices: - 26178 - 26188 - - type: AtmosDevice - joinedGrid: 1 - uid: 26201 components: - type: Transform @@ -73795,8 +74974,6 @@ entities: devices: - 26178 - 26187 - - type: AtmosDevice - joinedGrid: 1 - uid: 26204 components: - type: Transform @@ -73812,8 +74989,6 @@ entities: - 26186 - 26175 - 22397 - - type: AtmosDevice - joinedGrid: 1 - uid: 26206 components: - type: Transform @@ -73829,8 +75004,6 @@ entities: - 22360 - 22374 - 22375 - - type: AtmosDevice - joinedGrid: 1 - uid: 26312 components: - type: Transform @@ -73841,8 +75014,6 @@ entities: devices: - 22438 - 26572 - - type: AtmosDevice - joinedGrid: 1 - proto: FireAlarmElectronics entities: - uid: 16392 @@ -73933,11 +75104,17 @@ entities: - type: Transform pos: -8.5,26.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 14404 components: - type: Transform pos: 2.5,26.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 15160 components: - type: Transform @@ -74703,16 +75880,26 @@ entities: - type: Transform pos: 7.5,13.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 1296 components: - type: Transform pos: 7.5,18.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 + - 24189 - uid: 1335 components: - type: Transform pos: 8.5,19.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 1382 components: - type: Transform @@ -74729,11 +75916,17 @@ entities: - type: Transform pos: 8.5,20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 1427 components: - type: Transform pos: 8.5,21.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 1548 components: - type: Transform @@ -75549,26 +76742,42 @@ entities: - type: Transform pos: -1.5,23.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - uid: 24194 components: - type: Transform pos: 0.5,23.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 24195 components: - type: Transform pos: 0.5,18.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24191 + - 24189 - uid: 24196 components: - type: Transform pos: 2.5,20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 24197 components: - type: Transform pos: -4.5,14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - uid: 24200 components: - type: Transform @@ -76542,7 +77751,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -76561,7 +77769,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -76934,7 +78141,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 18 name: null @@ -77332,6 +78538,31 @@ entities: rot: 3.141592653589793 rad pos: -31.527704,21.782972 parent: 1 +- proto: FoodPoppy + entities: + - uid: 4019 + components: + - type: Transform + pos: 60.892315,20.397236 + parent: 1 + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.443083,-43.94188 + parent: 1 + - uid: 9412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.505583,-44.035698 + parent: 1 + - uid: 22140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.245552,20.64422 + parent: 1 - proto: FoodRicePudding entities: - uid: 4745 @@ -77362,7 +78593,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 20 name: null @@ -77620,8 +78850,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 392 @@ -77630,16 +78858,12 @@ entities: rot: 3.141592653589793 rad pos: -57.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 393 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasFilterFlipped entities: - uid: 239 @@ -77648,8 +78872,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 240 @@ -77658,8 +78880,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 241 @@ -77668,8 +78888,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 242 @@ -77678,8 +78896,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 243 @@ -77688,8 +78904,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 244 @@ -77698,8 +78912,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 249 @@ -77708,8 +78920,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 273 @@ -77718,8 +78928,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 5577 @@ -77728,8 +78936,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5616 @@ -77738,8 +78944,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasMinerCarbonDioxide @@ -77749,8 +78953,6 @@ entities: - type: Transform pos: -43.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerNitrogenStationLarge entities: - uid: 1908 @@ -77758,8 +78960,6 @@ entities: - type: Transform pos: -51.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMinerOxygenStationLarge entities: - uid: 1909 @@ -77767,8 +78967,6 @@ entities: - type: Transform pos: -53.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMixer entities: - uid: 260 @@ -77776,8 +78974,6 @@ entities: - type: Transform pos: -41.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 280 @@ -77786,8 +78982,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 289 @@ -77796,8 +78990,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 290 @@ -77806,8 +78998,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 305 @@ -77819,8 +79009,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.20999998 inletOneConcentration: 0.79 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 314 @@ -77829,8 +79017,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - proto: GasMixerFlipped @@ -77841,8 +79027,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 315 @@ -77851,8 +79035,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 326 @@ -77864,8 +79046,6 @@ entities: - type: GasMixer inletTwoConcentration: 0 inletOneConcentration: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6481 @@ -77874,8 +79054,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 6483 @@ -77884,16 +79062,12 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6484 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasOutletInjector entities: - uid: 329 @@ -77902,16 +79076,12 @@ entities: rot: 3.141592653589793 rad pos: -56.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 331 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 348 @@ -77920,8 +79090,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 349 @@ -77930,8 +79098,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - uid: 350 @@ -77940,8 +79106,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 351 @@ -77950,8 +79114,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 352 @@ -77960,16 +79122,12 @@ entities: rot: 3.141592653589793 rad pos: -45.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 353 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 4685 @@ -77978,23 +79136,17 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4686 components: - type: Transform pos: -4.5,45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6460 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - proto: GasPassiveGate @@ -78004,16 +79156,12 @@ entities: - type: Transform pos: -38.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 390 @@ -78022,8 +79170,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 394 @@ -78032,8 +79178,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 1069 @@ -78042,8 +79186,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasPassiveVent @@ -78054,8 +79196,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 333 @@ -78064,8 +79204,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 354 @@ -78073,8 +79211,6 @@ entities: - type: Transform pos: -53.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 355 @@ -78082,8 +79218,6 @@ entities: - type: Transform pos: -51.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - uid: 356 @@ -78091,8 +79225,6 @@ entities: - type: Transform pos: -49.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 357 @@ -78100,8 +79232,6 @@ entities: - type: Transform pos: -47.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 358 @@ -78109,15 +79239,11 @@ entities: - type: Transform pos: -45.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 359 components: - type: Transform pos: -43.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 6459 @@ -78126,16 +79252,12 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6476 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25229 @@ -78144,8 +79266,6 @@ entities: rot: 3.141592653589793 rad pos: 109.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPipeBend entities: - uid: 254 @@ -109246,8 +110366,6 @@ entities: - type: Transform pos: -40.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 259 @@ -109256,45 +110374,33 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 337 components: - type: Transform pos: -56.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 338 components: - type: Transform pos: -55.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 395 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 406 components: - type: Transform pos: -41.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4676 @@ -109303,24 +110409,18 @@ entities: rot: 3.141592653589793 rad pos: -1.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4678 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 5562 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 6463 @@ -109329,24 +110429,18 @@ entities: rot: 3.141592653589793 rad pos: -60.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6464 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6479 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6480 @@ -109355,15 +110449,11 @@ entities: rot: 3.141592653589793 rad pos: -58.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15771 components: - type: Transform pos: 76.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPressurePump entities: - uid: 251 @@ -109371,8 +110461,6 @@ entities: - type: Transform pos: -43.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#808080FF' - uid: 268 @@ -109381,8 +110469,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 278 @@ -109390,15 +110476,11 @@ entities: - type: Transform pos: -45.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 293 components: - type: Transform pos: -47.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 294 @@ -109406,8 +110488,6 @@ entities: - type: Transform pos: -49.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 295 @@ -109415,8 +110495,6 @@ entities: - type: Transform pos: -51.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - uid: 296 @@ -109424,8 +110502,6 @@ entities: - type: Transform pos: -53.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 335 @@ -109434,8 +110510,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 336 @@ -109443,24 +110517,18 @@ entities: - type: Transform pos: -56.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 5064 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6377 @@ -109469,8 +110537,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8657 @@ -109479,8 +110545,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#66B2FFFF' - proto: GasRecycler @@ -109490,8 +110554,6 @@ entities: - type: Transform pos: -43.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - proto: GasThermoMachineFreezer @@ -109503,15 +110565,11 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 1 - uid: 401 components: - type: Transform pos: -58.5,32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 5647 components: - type: Transform @@ -109519,8 +110577,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 1 - proto: GasThermoMachineFreezerEnabled entities: - uid: 1066 @@ -109535,8 +110591,6 @@ entities: powerDisabled: True - type: AtmosPipeColor color: '#E5CCFFFF' - - type: AtmosDevice - joinedGrid: 1 - proto: GasThermoMachineHeater entities: - uid: 271 @@ -109547,8 +110601,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#33FF33FF' - - type: AtmosDevice - joinedGrid: 1 - proto: GasValve entities: - uid: 250 @@ -109559,8 +110611,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 252 @@ -109571,8 +110621,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 300 @@ -109581,8 +110629,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 307 @@ -109593,8 +110639,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - uid: 310 @@ -109605,8 +110649,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#3399FFFF' - uid: 312 @@ -109615,8 +110657,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF6666FF' - uid: 384 @@ -109627,8 +110667,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - uid: 399 @@ -109639,8 +110677,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6477 @@ -109649,8 +110685,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6482 @@ -109661,8 +110695,6 @@ entities: parent: 1 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - proto: GasVentPump @@ -109676,8 +110708,6 @@ entities: - type: DeviceNetwork deviceLists: - 8047 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 643 @@ -109686,8 +110716,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 822 @@ -109696,8 +110724,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#E5CCFFFF' - uid: 2105 @@ -109706,8 +110732,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2141 @@ -109716,8 +110740,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2194 @@ -109726,8 +110748,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2832 @@ -109739,8 +110759,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6721 @@ -109749,8 +110767,6 @@ entities: rot: 3.141592653589793 rad pos: 73.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7591 @@ -109761,8 +110777,6 @@ entities: - type: DeviceNetwork deviceLists: - 1304 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7619 @@ -109774,8 +110788,6 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9504 @@ -109784,8 +110796,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9508 @@ -109797,8 +110807,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9527 @@ -109807,8 +110815,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9864 @@ -109820,8 +110826,6 @@ entities: - type: DeviceNetwork deviceLists: - 26205 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10295 @@ -109829,8 +110833,6 @@ entities: - type: Transform pos: 81.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10390 @@ -109842,8 +110844,6 @@ entities: - type: DeviceNetwork deviceLists: - 26197 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10399 @@ -109855,8 +110855,6 @@ entities: - type: DeviceNetwork deviceLists: - 1304 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10820 @@ -109865,8 +110863,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10866 @@ -109875,8 +110871,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10947 @@ -109885,8 +110879,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10951 @@ -109895,8 +110887,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10976 @@ -109905,8 +110895,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10977 @@ -109915,8 +110903,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10978 @@ -109925,8 +110911,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10980 @@ -109934,8 +110918,6 @@ entities: - type: Transform pos: -61.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11009 @@ -109943,8 +110925,6 @@ entities: - type: Transform pos: -41.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11010 @@ -109953,8 +110933,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11038 @@ -109963,8 +110941,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11047 @@ -109972,8 +110948,6 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11049 @@ -109982,8 +110956,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11092 @@ -109992,8 +110964,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11116 @@ -110002,8 +110972,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11119 @@ -110011,8 +110979,6 @@ entities: - type: Transform pos: -19.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11135 @@ -110020,8 +110986,6 @@ entities: - type: Transform pos: -18.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11136 @@ -110030,8 +110994,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11142 @@ -110040,8 +111002,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11198 @@ -110053,8 +111013,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11199 @@ -110066,8 +111024,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11288 @@ -110076,8 +111032,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11337 @@ -110086,8 +111040,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11392 @@ -110096,8 +111048,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11393 @@ -110106,8 +111056,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11439 @@ -110116,8 +111064,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11548 @@ -110126,8 +111072,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 11549 @@ -110136,8 +111080,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12553 @@ -110145,8 +111087,6 @@ entities: - type: Transform pos: 3.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12577 @@ -110154,8 +111094,6 @@ entities: - type: Transform pos: -8.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12578 @@ -110164,8 +111102,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12607 @@ -110174,8 +111110,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12609 @@ -110184,8 +111118,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12617 @@ -110194,8 +111126,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12628 @@ -110204,8 +111134,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12629 @@ -110213,8 +111141,6 @@ entities: - type: Transform pos: -23.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12637 @@ -110223,8 +111149,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12638 @@ -110233,8 +111157,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12650 @@ -110243,8 +111165,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12676 @@ -110252,8 +111172,6 @@ entities: - type: Transform pos: -9.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12692 @@ -110261,8 +111179,6 @@ entities: - type: Transform pos: -20.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12703 @@ -110271,8 +111187,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12750 @@ -110281,8 +111195,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12766 @@ -110291,8 +111203,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12831 @@ -110301,8 +111211,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12832 @@ -110311,8 +111219,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12839 @@ -110321,8 +111227,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12869 @@ -110331,8 +111235,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12915 @@ -110341,8 +111243,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12916 @@ -110354,8 +111254,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12917 @@ -110367,8 +111265,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12918 @@ -110376,8 +111272,6 @@ entities: - type: Transform pos: 74.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12941 @@ -110385,8 +111279,6 @@ entities: - type: Transform pos: 84.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12943 @@ -110395,8 +111287,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12949 @@ -110405,8 +111295,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12972 @@ -110415,8 +111303,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12987 @@ -110424,8 +111310,6 @@ entities: - type: Transform pos: 15.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12988 @@ -110433,8 +111317,6 @@ entities: - type: Transform pos: 16.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12992 @@ -110443,8 +111325,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12993 @@ -110453,8 +111333,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12994 @@ -110463,8 +111341,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12995 @@ -110473,8 +111349,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13041 @@ -110482,8 +111356,6 @@ entities: - type: Transform pos: 25.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13042 @@ -110491,8 +111363,6 @@ entities: - type: Transform pos: 26.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13043 @@ -110500,8 +111370,6 @@ entities: - type: Transform pos: 27.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13044 @@ -110509,8 +111377,6 @@ entities: - type: Transform pos: 28.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13045 @@ -110518,8 +111384,6 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13046 @@ -110527,8 +111391,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13047 @@ -110536,8 +111398,6 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13048 @@ -110546,8 +111406,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13065 @@ -110556,8 +111414,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13082 @@ -110569,8 +111425,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13098 @@ -110578,8 +111432,6 @@ entities: - type: Transform pos: 19.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13099 @@ -110588,8 +111440,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13100 @@ -110597,8 +111447,6 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13148 @@ -110606,8 +111454,6 @@ entities: - type: Transform pos: -60.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13159 @@ -110618,8 +111464,6 @@ entities: - type: DeviceNetwork deviceLists: - 9281 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13160 @@ -110631,8 +111475,6 @@ entities: - type: DeviceNetwork deviceLists: - 9281 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13317 @@ -110644,8 +111486,6 @@ entities: - type: DeviceNetwork deviceLists: - 26205 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13318 @@ -110657,8 +111497,6 @@ entities: - type: DeviceNetwork deviceLists: - 1258 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13319 @@ -110670,8 +111508,6 @@ entities: - type: DeviceNetwork deviceLists: - 1258 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13345 @@ -110683,8 +111519,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13361 @@ -110696,8 +111530,6 @@ entities: - type: DeviceNetwork deviceLists: - 8047 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13362 @@ -110709,8 +111541,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13363 @@ -110722,8 +111552,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13366 @@ -110735,8 +111563,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13388 @@ -110748,8 +111574,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13399 @@ -110757,8 +111581,6 @@ entities: - type: Transform pos: 60.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13401 @@ -110766,8 +111588,6 @@ entities: - type: Transform pos: 70.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13413 @@ -110776,8 +111596,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13445 @@ -110786,8 +111604,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13446 @@ -110795,8 +111611,6 @@ entities: - type: Transform pos: 10.5,38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13447 @@ -110804,8 +111618,6 @@ entities: - type: Transform pos: 9.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13471 @@ -110813,8 +111625,6 @@ entities: - type: Transform pos: -11.5,43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13477 @@ -110823,8 +111633,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13478 @@ -110832,8 +111640,6 @@ entities: - type: Transform pos: 4.5,43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13499 @@ -110841,8 +111647,6 @@ entities: - type: Transform pos: 0.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13563 @@ -110851,8 +111655,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,48.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13564 @@ -110860,8 +111662,6 @@ entities: - type: Transform pos: 18.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13565 @@ -110869,8 +111669,6 @@ entities: - type: Transform pos: 12.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13584 @@ -110879,8 +111677,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13591 @@ -110889,8 +111685,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13592 @@ -110899,8 +111693,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13593 @@ -110909,8 +111701,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13594 @@ -110919,8 +111709,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13596 @@ -110929,8 +111717,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13625 @@ -110938,8 +111724,6 @@ entities: - type: Transform pos: 66.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13631 @@ -110948,8 +111732,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13632 @@ -110958,8 +111740,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13633 @@ -110967,8 +111747,6 @@ entities: - type: Transform pos: 63.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13636 @@ -110977,8 +111755,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13640 @@ -110987,8 +111763,6 @@ entities: rot: 3.141592653589793 rad pos: 75.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13645 @@ -110997,8 +111771,6 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13646 @@ -111006,8 +111778,6 @@ entities: - type: Transform pos: 80.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13647 @@ -111016,8 +111786,6 @@ entities: rot: 3.141592653589793 rad pos: 77.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13698 @@ -111026,8 +111794,6 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13699 @@ -111036,8 +111802,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13700 @@ -111046,8 +111810,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13701 @@ -111056,8 +111818,6 @@ entities: rot: -1.5707963267948966 rad pos: 88.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13742 @@ -111066,8 +111826,6 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13745 @@ -111076,8 +111834,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13746 @@ -111086,8 +111842,6 @@ entities: rot: 3.141592653589793 rad pos: 67.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13747 @@ -111095,8 +111849,6 @@ entities: - type: Transform pos: 64.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13748 @@ -111104,8 +111856,6 @@ entities: - type: Transform pos: 67.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13749 @@ -111113,8 +111863,6 @@ entities: - type: Transform pos: 69.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13764 @@ -111122,8 +111870,6 @@ entities: - type: Transform pos: 88.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13814 @@ -111131,8 +111877,6 @@ entities: - type: Transform pos: 46.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13840 @@ -111141,8 +111885,6 @@ entities: rot: 3.141592653589793 rad pos: 99.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13841 @@ -111150,8 +111892,6 @@ entities: - type: Transform pos: 99.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13842 @@ -111159,8 +111899,6 @@ entities: - type: Transform pos: 95.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13847 @@ -111169,8 +111907,6 @@ entities: rot: 3.141592653589793 rad pos: 110.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13848 @@ -111178,8 +111914,6 @@ entities: - type: Transform pos: 110.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13850 @@ -111188,8 +111922,6 @@ entities: rot: 1.5707963267948966 rad pos: 102.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13888 @@ -111198,8 +111930,6 @@ entities: rot: 1.5707963267948966 rad pos: 101.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13889 @@ -111208,8 +111938,6 @@ entities: rot: -1.5707963267948966 rad pos: 106.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13898 @@ -111218,8 +111946,6 @@ entities: rot: 1.5707963267948966 rad pos: 104.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14008 @@ -111228,8 +111954,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14370 @@ -111238,8 +111962,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15073 @@ -111247,8 +111969,6 @@ entities: - type: Transform pos: 21.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15281 @@ -111257,8 +111977,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15375 @@ -111267,8 +111985,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15378 @@ -111277,8 +111993,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15379 @@ -111287,8 +112001,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15380 @@ -111296,8 +112008,6 @@ entities: - type: Transform pos: 2.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15386 @@ -111306,8 +112016,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15811 @@ -111316,8 +112024,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16112 @@ -111326,8 +112032,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16807 @@ -111335,8 +112039,6 @@ entities: - type: Transform pos: 0.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16939 @@ -111345,8 +112047,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16940 @@ -111355,8 +112055,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16947 @@ -111364,8 +112062,6 @@ entities: - type: Transform pos: 19.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16948 @@ -111373,8 +112069,6 @@ entities: - type: Transform pos: 25.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17009 @@ -111382,8 +112076,6 @@ entities: - type: Transform pos: 28.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17011 @@ -111392,8 +112084,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17213 @@ -111402,8 +112092,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17458 @@ -111412,8 +112100,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17486 @@ -111422,8 +112108,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18192 @@ -111432,8 +112116,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18207 @@ -111441,8 +112123,6 @@ entities: - type: Transform pos: 31.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19147 @@ -111450,8 +112130,6 @@ entities: - type: Transform pos: 56.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19151 @@ -111460,8 +112138,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19231 @@ -111469,8 +112145,9 @@ entities: - type: Transform pos: 3.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19235 @@ -111478,8 +112155,9 @@ entities: - type: Transform pos: 4.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19307 @@ -111488,8 +112166,9 @@ entities: rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19308 @@ -111498,8 +112177,9 @@ entities: rot: 3.141592653589793 rad pos: -5.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19327 @@ -111508,8 +112188,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19329 @@ -111518,8 +112196,9 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19618 @@ -111528,8 +112207,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20025 @@ -111540,8 +112217,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20028 @@ -111553,8 +112228,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20110 @@ -111562,8 +112235,6 @@ entities: - type: Transform pos: 20.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20111 @@ -111572,8 +112243,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20113 @@ -111582,8 +112251,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21394 @@ -111592,8 +112259,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22168 @@ -111602,8 +112267,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23614 @@ -111615,8 +112278,6 @@ entities: - type: DeviceNetwork deviceLists: - 595 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23623 @@ -111625,8 +112286,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23642 @@ -111635,8 +112294,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23699 @@ -111645,8 +112302,6 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23700 @@ -111655,8 +112310,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23718 @@ -111665,8 +112318,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23722 @@ -111675,8 +112326,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23724 @@ -111685,8 +112334,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23729 @@ -111694,8 +112341,6 @@ entities: - type: Transform pos: -17.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23738 @@ -111704,8 +112349,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23769 @@ -111713,8 +112356,6 @@ entities: - type: Transform pos: 25.5,55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23959 @@ -111726,8 +112367,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24816 @@ -111739,8 +112378,6 @@ entities: - type: DeviceNetwork deviceLists: - 26192 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25188 @@ -111749,8 +112386,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25331 @@ -111758,8 +112393,6 @@ entities: - type: Transform pos: 64.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25366 @@ -111767,8 +112400,6 @@ entities: - type: Transform pos: -71.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25367 @@ -111776,8 +112407,6 @@ entities: - type: Transform pos: -67.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25406 @@ -111786,8 +112415,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25407 @@ -111796,8 +112423,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25408 @@ -111806,8 +112431,6 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25409 @@ -111816,8 +112439,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25553 @@ -111826,8 +112447,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25628 @@ -111836,8 +112455,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26005 @@ -111849,8 +112466,6 @@ entities: - type: DeviceNetwork deviceLists: - 26203 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26006 @@ -111862,8 +112477,6 @@ entities: - type: DeviceNetwork deviceLists: - 26203 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26011 @@ -111874,8 +112487,6 @@ entities: - type: DeviceNetwork deviceLists: - 8044 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26012 @@ -111887,8 +112498,6 @@ entities: - type: DeviceNetwork deviceLists: - 8044 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26033 @@ -111899,8 +112508,6 @@ entities: - type: DeviceNetwork deviceLists: - 26197 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26034 @@ -111912,8 +112519,6 @@ entities: - type: DeviceNetwork deviceLists: - 26199 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26035 @@ -111925,8 +112530,6 @@ entities: - type: DeviceNetwork deviceLists: - 26199 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26058 @@ -111938,8 +112541,6 @@ entities: - type: DeviceNetwork deviceLists: - 26202 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26548 @@ -111951,8 +112552,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26549 @@ -111964,8 +112563,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26565 @@ -111977,8 +112574,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -111989,8 +112584,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2723 @@ -111999,8 +112592,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2744 @@ -112009,8 +112600,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2745 @@ -112019,8 +112608,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2747 @@ -112029,8 +112616,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3485 @@ -112042,8 +112627,6 @@ entities: - type: DeviceNetwork deviceLists: - 26192 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7042 @@ -112051,8 +112634,6 @@ entities: - type: Transform pos: -9.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7714 @@ -112063,8 +112644,6 @@ entities: - type: DeviceNetwork deviceLists: - 8047 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10339 @@ -112076,8 +112655,6 @@ entities: - type: DeviceNetwork deviceLists: - 26205 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10348 @@ -112088,8 +112665,6 @@ entities: - type: DeviceNetwork deviceLists: - 1304 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10376 @@ -112100,8 +112675,6 @@ entities: - type: DeviceNetwork deviceLists: - 1304 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10718 @@ -112110,8 +112683,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10843 @@ -112120,8 +112691,6 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10844 @@ -112130,8 +112699,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11095 @@ -112140,8 +112707,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11423 @@ -112150,8 +112715,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11441 @@ -112160,8 +112723,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12448 @@ -112173,8 +112734,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12451 @@ -112186,8 +112745,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12591 @@ -112196,8 +112753,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12606 @@ -112205,8 +112760,6 @@ entities: - type: Transform pos: -4.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13683 @@ -112218,8 +112771,6 @@ entities: - type: DeviceNetwork deviceLists: - 595 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13961 @@ -112228,8 +112779,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13999 @@ -112238,8 +112787,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14010 @@ -112247,8 +112794,6 @@ entities: - type: Transform pos: -52.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14041 @@ -112257,8 +112802,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14047 @@ -112267,8 +112810,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14069 @@ -112276,8 +112817,6 @@ entities: - type: Transform pos: -59.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14070 @@ -112285,8 +112824,6 @@ entities: - type: Transform pos: -54.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14071 @@ -112295,8 +112832,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14093 @@ -112305,8 +112840,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14094 @@ -112314,8 +112847,6 @@ entities: - type: Transform pos: -42.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14114 @@ -112324,8 +112855,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14116 @@ -112334,8 +112863,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14143 @@ -112344,8 +112871,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14144 @@ -112354,8 +112879,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14154 @@ -112363,8 +112886,6 @@ entities: - type: Transform pos: -51.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14164 @@ -112373,8 +112894,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14165 @@ -112383,8 +112902,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14169 @@ -112392,8 +112909,6 @@ entities: - type: Transform pos: -21.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14170 @@ -112402,8 +112917,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14185 @@ -112411,8 +112924,6 @@ entities: - type: Transform pos: -22.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14195 @@ -112421,8 +112932,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14196 @@ -112431,8 +112940,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14210 @@ -112440,8 +112947,6 @@ entities: - type: Transform pos: -16.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14287 @@ -112449,8 +112954,6 @@ entities: - type: Transform pos: -15.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14331 @@ -112459,8 +112962,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14346 @@ -112469,8 +112970,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14414 @@ -112478,8 +112977,6 @@ entities: - type: Transform pos: -0.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14454 @@ -112491,8 +112988,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14518 @@ -112500,8 +112995,6 @@ entities: - type: Transform pos: -5.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14519 @@ -112510,8 +113003,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14520 @@ -112520,8 +113011,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14521 @@ -112530,8 +113019,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14522 @@ -112540,8 +113027,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14615 @@ -112550,8 +113035,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14624 @@ -112563,8 +113046,6 @@ entities: - type: DeviceNetwork deviceLists: - 8047 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14645 @@ -112573,8 +113054,6 @@ entities: rot: 3.141592653589793 rad pos: 69.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14647 @@ -112586,8 +113065,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14654 @@ -112599,8 +113076,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14659 @@ -112612,8 +113087,6 @@ entities: - type: DeviceNetwork deviceLists: - 62 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14660 @@ -112625,8 +113098,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14661 @@ -112638,8 +113109,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14662 @@ -112651,8 +113120,6 @@ entities: - type: DeviceNetwork deviceLists: - 7608 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14739 @@ -112661,8 +113128,6 @@ entities: rot: -1.5707963267948966 rad pos: 102.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14750 @@ -112671,8 +113136,6 @@ entities: rot: 3.141592653589793 rad pos: 99.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14751 @@ -112681,8 +113144,6 @@ entities: rot: 3.141592653589793 rad pos: 84.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14752 @@ -112691,8 +113152,6 @@ entities: rot: 3.141592653589793 rad pos: 74.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14792 @@ -112701,8 +113160,6 @@ entities: rot: 1.5707963267948966 rad pos: 100.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14793 @@ -112711,8 +113168,6 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14794 @@ -112721,8 +113176,6 @@ entities: rot: 1.5707963267948966 rad pos: 104.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14795 @@ -112730,8 +113183,6 @@ entities: - type: Transform pos: 112.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14796 @@ -112740,8 +113191,6 @@ entities: rot: -1.5707963267948966 rad pos: 114.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14829 @@ -112749,8 +113198,6 @@ entities: - type: Transform pos: 61.5,19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14832 @@ -112759,8 +113206,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14833 @@ -112768,8 +113213,6 @@ entities: - type: Transform pos: 64.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14834 @@ -112777,8 +113220,6 @@ entities: - type: Transform pos: 67.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14838 @@ -112787,8 +113228,6 @@ entities: rot: -1.5707963267948966 rad pos: 79.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14839 @@ -112797,8 +113236,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14855 @@ -112807,8 +113244,6 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14877 @@ -112817,8 +113252,6 @@ entities: rot: 1.5707963267948966 rad pos: 65.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14878 @@ -112826,8 +113259,6 @@ entities: - type: Transform pos: 76.5,21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14884 @@ -112836,8 +113267,6 @@ entities: rot: 3.141592653589793 rad pos: 83.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14885 @@ -112846,8 +113275,6 @@ entities: rot: 1.5707963267948966 rad pos: 82.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14886 @@ -112856,8 +113283,6 @@ entities: rot: -1.5707963267948966 rad pos: 88.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14902 @@ -112866,8 +113291,6 @@ entities: rot: 3.141592653589793 rad pos: 82.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14928 @@ -112876,8 +113299,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14943 @@ -112885,8 +113306,6 @@ entities: - type: Transform pos: 63.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14944 @@ -112895,8 +113314,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14945 @@ -112905,8 +113322,6 @@ entities: rot: 3.141592653589793 rad pos: 66.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14946 @@ -112914,8 +113329,6 @@ entities: - type: Transform pos: 66.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14947 @@ -112923,8 +113336,6 @@ entities: - type: Transform pos: 70.5,29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14968 @@ -112933,8 +113344,6 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14969 @@ -112942,8 +113351,6 @@ entities: - type: Transform pos: 79.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14970 @@ -112952,8 +113359,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14991 @@ -112961,8 +113366,6 @@ entities: - type: Transform pos: 26.5,-10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14992 @@ -112971,8 +113374,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15058 @@ -112984,8 +113385,6 @@ entities: - type: DeviceNetwork deviceLists: - 9281 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15059 @@ -112996,8 +113395,6 @@ entities: - type: DeviceNetwork deviceLists: - 9281 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15068 @@ -113006,8 +113403,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15076 @@ -113016,8 +113411,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15080 @@ -113026,8 +113419,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15081 @@ -113036,8 +113427,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15082 @@ -113046,8 +113435,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15083 @@ -113056,8 +113443,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15084 @@ -113066,8 +113451,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15124 @@ -113076,8 +113459,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15125 @@ -113085,8 +113466,6 @@ entities: - type: Transform pos: 35.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15127 @@ -113094,8 +113473,6 @@ entities: - type: Transform pos: 23.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15128 @@ -113104,8 +113481,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15170 @@ -113114,8 +113489,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15171 @@ -113124,8 +113497,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15282 @@ -113134,8 +113505,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-37.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15300 @@ -113144,8 +113513,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15325 @@ -113154,8 +113521,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15350 @@ -113164,8 +113529,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15351 @@ -113173,8 +113536,6 @@ entities: - type: Transform pos: -2.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15352 @@ -113182,8 +113543,6 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15353 @@ -113192,8 +113551,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15373 @@ -113202,8 +113559,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15381 @@ -113212,8 +113567,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15436 @@ -113221,8 +113574,6 @@ entities: - type: Transform pos: 47.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15439 @@ -113231,8 +113582,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15472 @@ -113244,8 +113593,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15473 @@ -113256,8 +113603,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15480 @@ -113269,8 +113614,6 @@ entities: - type: DeviceNetwork deviceLists: - 2290 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15481 @@ -113279,8 +113622,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15482 @@ -113289,8 +113630,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15557 @@ -113298,8 +113637,6 @@ entities: - type: Transform pos: -10.5,47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15571 @@ -113308,8 +113645,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15605 @@ -113317,8 +113652,6 @@ entities: - type: Transform pos: 13.5,38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15606 @@ -113327,8 +113660,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15607 @@ -113336,8 +113667,6 @@ entities: - type: Transform pos: 18.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15608 @@ -113346,8 +113675,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15661 @@ -113355,8 +113682,6 @@ entities: - type: Transform pos: 35.5,47.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15693 @@ -113365,8 +113690,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15694 @@ -113374,8 +113697,6 @@ entities: - type: Transform pos: 19.5,50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15695 @@ -113384,8 +113705,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15708 @@ -113394,8 +113713,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15713 @@ -113403,8 +113720,6 @@ entities: - type: Transform pos: 8.5,49.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15720 @@ -113413,8 +113728,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15810 @@ -113423,8 +113736,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16111 @@ -113433,8 +113744,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16937 @@ -113443,8 +113752,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-33.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16938 @@ -113453,8 +113760,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17216 @@ -113463,8 +113768,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17284 @@ -113473,8 +113776,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17344 @@ -113482,8 +113783,6 @@ entities: - type: Transform pos: 23.5,-36.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17380 @@ -113492,8 +113791,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17468 @@ -113502,8 +113799,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18151 @@ -113512,8 +113807,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-35.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18191 @@ -113522,8 +113815,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-32.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18198 @@ -113531,8 +113822,6 @@ entities: - type: Transform pos: 32.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18238 @@ -113541,8 +113830,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-44.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19159 @@ -113551,8 +113838,6 @@ entities: rot: 3.141592653589793 rad pos: 57.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19160 @@ -113560,8 +113845,6 @@ entities: - type: Transform pos: 57.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19215 @@ -113570,8 +113853,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19227 @@ -113580,8 +113861,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19336 @@ -113589,8 +113871,9 @@ entities: - type: Transform pos: -4.5,18.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19337 @@ -113598,8 +113881,6 @@ entities: - type: Transform pos: -1.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19353 @@ -113607,8 +113888,6 @@ entities: - type: Transform pos: -0.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19369 @@ -113616,8 +113895,9 @@ entities: - type: Transform pos: 7.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24191 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19370 @@ -113626,8 +113906,9 @@ entities: rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 24189 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19613 @@ -113636,8 +113917,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19624 @@ -113646,8 +113925,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,20.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19983 @@ -113659,8 +113936,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19995 @@ -113672,8 +113947,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21395 @@ -113682,8 +113955,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21823 @@ -113695,8 +113966,6 @@ entities: - type: DeviceNetwork deviceLists: - 23931 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22098 @@ -113705,8 +113974,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22119 @@ -113715,8 +113982,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22163 @@ -113724,8 +113989,6 @@ entities: - type: Transform pos: 2.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22201 @@ -113734,8 +113997,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22276 @@ -113744,8 +114005,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22277 @@ -113754,8 +114013,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22278 @@ -113764,8 +114021,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22302 @@ -113773,8 +114028,6 @@ entities: - type: Transform pos: 18.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22303 @@ -113783,8 +114036,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,42.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22382 @@ -113796,8 +114047,6 @@ entities: - type: DeviceNetwork deviceLists: - 1258 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22384 @@ -113809,8 +114058,6 @@ entities: - type: DeviceNetwork deviceLists: - 1258 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22429 @@ -113819,8 +114066,6 @@ entities: rot: 3.141592653589793 rad pos: 95.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22430 @@ -113829,8 +114074,6 @@ entities: rot: 3.141592653589793 rad pos: 100.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23621 @@ -113839,8 +114082,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23641 @@ -113849,8 +114090,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,46.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23654 @@ -113858,8 +114097,6 @@ entities: - type: Transform pos: 51.5,40.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23701 @@ -113867,8 +114104,6 @@ entities: - type: Transform pos: 58.5,41.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23717 @@ -113876,8 +114111,6 @@ entities: - type: Transform pos: 35.5,-34.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23721 @@ -113885,8 +114118,6 @@ entities: - type: Transform pos: -23.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23731 @@ -113894,8 +114125,6 @@ entities: - type: Transform pos: -17.5,-16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23737 @@ -113904,8 +114133,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23762 @@ -113914,8 +114141,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,50.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23768 @@ -113923,8 +114148,6 @@ entities: - type: Transform pos: 20.5,55.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23842 @@ -113932,8 +114155,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23845 @@ -113942,8 +114163,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23846 @@ -113952,8 +114171,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23847 @@ -113962,8 +114179,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23848 @@ -113972,8 +114187,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23964 @@ -113982,8 +114195,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23972 @@ -113995,8 +114206,6 @@ entities: - type: DeviceNetwork deviceLists: - 9433 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25128 @@ -114004,8 +114213,6 @@ entities: - type: Transform pos: -39.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25187 @@ -114014,8 +114221,6 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25249 @@ -114023,16 +114228,12 @@ entities: - type: Transform pos: 109.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25335 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25336 @@ -114041,8 +114242,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25424 @@ -114050,8 +114249,6 @@ entities: - type: Transform pos: -49.5,-27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25425 @@ -114060,8 +114257,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25426 @@ -114069,8 +114264,6 @@ entities: - type: Transform pos: -51.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25427 @@ -114079,8 +114272,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,-30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25554 @@ -114088,8 +114279,6 @@ entities: - type: Transform pos: -49.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25632 @@ -114098,8 +114287,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-39.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25951 @@ -114110,8 +114297,6 @@ entities: - type: DeviceNetwork deviceLists: - 26205 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25954 @@ -114123,8 +114308,6 @@ entities: - type: DeviceNetwork deviceLists: - 26197 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25975 @@ -114136,8 +114319,6 @@ entities: - type: DeviceNetwork deviceLists: - 26203 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25977 @@ -114149,8 +114330,6 @@ entities: - type: DeviceNetwork deviceLists: - 8044 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25983 @@ -114161,8 +114340,6 @@ entities: - type: DeviceNetwork deviceLists: - 8044 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25986 @@ -114174,8 +114351,6 @@ entities: - type: DeviceNetwork deviceLists: - 26203 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25990 @@ -114187,8 +114362,6 @@ entities: - type: DeviceNetwork deviceLists: - 26202 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25991 @@ -114200,8 +114373,6 @@ entities: - type: DeviceNetwork deviceLists: - 26199 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25992 @@ -114213,8 +114384,6 @@ entities: - type: DeviceNetwork deviceLists: - 26199 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26032 @@ -114226,8 +114395,6 @@ entities: - type: DeviceNetwork deviceLists: - 26197 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26526 @@ -114239,8 +114406,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26541 @@ -114252,8 +114417,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26545 @@ -114264,8 +114427,6 @@ entities: - type: DeviceNetwork deviceLists: - 26311 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -114276,8 +114437,6 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#33FF33FF' - uid: 4679 @@ -114286,24 +114445,18 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,43.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4680 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,45.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6468 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,30.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#B266FFFF' - proto: Gauze @@ -122210,7 +122363,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -122227,7 +122379,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -122244,7 +122395,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -122268,7 +122418,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -122278,6 +122427,21 @@ entities: Quantity: 200 - type: Label currentLabel: Ammonia +- proto: Jukebox + entities: + - uid: 26873 + components: + - type: Transform + pos: 33.5,18.5 + parent: 1 +- proto: JukeboxCircuitBoard + entities: + - uid: 26874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.737656,37.5885 + parent: 1 - proto: KatanaDulled entities: - uid: 23784 @@ -122483,7 +122647,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 1500 name: null @@ -124911,7 +125074,6 @@ entities: solutions: bucket: temperature: 293.15 - canMix: False canReact: True maxVol: 600 name: null @@ -125110,71 +125272,51 @@ entities: - type: Transform pos: -51.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4333 components: - type: Transform pos: 16.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6786 components: - type: Transform pos: -66.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9116 components: - type: Transform pos: 16.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9139 components: - type: Transform pos: 61.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 12505 components: - type: Transform pos: 3.5,52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15849 components: - type: Transform pos: -34.5,24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15991 components: - type: Transform pos: -25.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 16286 components: - type: Transform pos: 87.5,-17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 23420 components: - type: Transform pos: -26.5,38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: NitrogenTankFilled entities: - uid: 2882 @@ -125228,7 +125370,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 3000 name: null @@ -125245,7 +125386,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 3000 name: null @@ -125379,78 +125519,56 @@ entities: - type: Transform pos: -53.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 4332 components: - type: Transform pos: 15.5,-15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 5756 components: - type: Transform pos: 76.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 6785 components: - type: Transform pos: -66.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9115 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9138 components: - type: Transform pos: 60.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 12319 components: - type: Transform pos: -14.5,-31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 16092 components: - type: Transform pos: 19.5,52.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 16731 components: - type: Transform pos: 91.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25244 components: - type: Transform pos: 105.5,28.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 25617 components: - type: Transform pos: -47.5,-24.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: PackPaperRollingFilters entities: - uid: 5388 @@ -126793,7 +126911,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126813,7 +126930,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126833,7 +126949,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126853,7 +126968,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126873,7 +126987,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126893,7 +127006,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126914,7 +127026,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126935,7 +127046,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126956,7 +127066,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -126984,7 +127093,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -127091,6 +127199,44 @@ entities: rot: 3.141592653589793 rad pos: 130.5,2.5 parent: 1 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 4778 + components: + - type: Transform + pos: 81.5,18.5 + parent: 1 + - uid: 4847 + components: + - type: Transform + pos: 80.5,18.5 + parent: 1 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 8389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + - uid: 9359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + - uid: 12304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-33.5 + parent: 1 + - uid: 15896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 - proto: PlasticFlapsAirtightClear entities: - uid: 6677 @@ -132079,7 +132225,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -132098,7 +132243,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -132117,7 +132261,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -144477,24 +144620,32 @@ entities: - type: Transform pos: 24.5,46.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 16592 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,27.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 19218 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,22.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 20142 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,21.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: SpaceVillainArcadeFilled entities: - uid: 1946 @@ -144503,18 +144654,24 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-16.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 6926 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-10.5 parent: 1 + - type: SpamEmitSound + enabled: False - uid: 13517 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,13.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: SpareIdCabinetFilled entities: - uid: 25840 @@ -146000,7 +146157,6 @@ entities: solutions: spray: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -146343,127 +146499,86 @@ entities: - type: Transform pos: -49.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1012 components: - type: Transform pos: -4.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 2502 components: - type: Transform pos: -45.5,31.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3683 components: - type: Transform pos: -58.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3685 components: - type: Transform pos: -59.5,27.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3691 components: - type: Transform pos: -35.5,22.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 3751 components: - type: Transform pos: -30.5,-29.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 7350 components: - type: Transform pos: -0.5,41.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 8389 - components: - - type: Transform - pos: 55.5,16.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 9526 components: - type: Transform pos: -7.5,-14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15731 components: - type: Transform pos: -41.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15732 components: - type: Transform pos: -40.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15769 components: - type: Transform pos: -16.5,-38.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15859 components: - type: Transform pos: -13.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 15992 components: - type: Transform pos: -19.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 16311 components: - type: Transform pos: 25.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22575 components: - type: Transform pos: -57.5,25.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 22814 components: - type: Transform pos: -57.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Stunbaton entities: - uid: 16713 @@ -148093,7 +148208,6 @@ entities: solutions: injector: temperature: 293.15 - canMix: False canReact: True maxVol: 15 name: null @@ -148112,7 +148226,6 @@ entities: solutions: injector: temperature: 293.15 - canMix: False canReact: True maxVol: 15 name: null @@ -151226,6 +151339,8 @@ entities: entities: - uid: 6415 components: + - type: MetaData + name: medical telecommunication server - type: Transform pos: -61.5,3.5 parent: 1 @@ -151244,8 +151359,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 6529 + - uid: 6530 components: + - type: MetaData + name: engineering telecommunication server - type: Transform pos: -59.5,5.5 parent: 1 @@ -151255,8 +151372,7 @@ entities: showEnts: False occludes: True ents: - - 6530 - - 6531 + - 21478 machine_board: !type:Container showEnts: False occludes: True @@ -151267,6 +151383,8 @@ entities: ents: [] - uid: 6532 components: + - type: MetaData + name: command telecommunication server - type: Transform pos: -60.5,5.5 parent: 1 @@ -151287,6 +151405,8 @@ entities: ents: [] - uid: 6534 components: + - type: MetaData + name: security telecommunication server - type: Transform pos: -61.5,5.5 parent: 1 @@ -151307,6 +151427,8 @@ entities: ents: [] - uid: 6536 components: + - type: MetaData + name: epistemics telecommunication server - type: Transform pos: -59.5,3.5 parent: 1 @@ -151317,6 +151439,7 @@ entities: occludes: True ents: - 6537 + - 6531 machine_board: !type:Container showEnts: False occludes: True @@ -151327,6 +151450,8 @@ entities: ents: [] - uid: 6538 components: + - type: MetaData + name: logistics/service telecommunication server - type: Transform pos: -61.5,2.5 parent: 1 @@ -151336,8 +151461,8 @@ entities: showEnts: False occludes: True ents: - - 6539 - 6540 + - 6539 machine_board: !type:Container showEnts: False occludes: True @@ -151348,6 +151473,8 @@ entities: ents: [] - uid: 6541 components: + - type: MetaData + name: common telecommunication server - type: Transform pos: -59.5,2.5 parent: 1 @@ -151504,7 +151631,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -151537,7 +151663,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -152121,12 +152246,14 @@ entities: - type: Transform pos: 38.5,24.5 parent: 1 - - uid: 12304 +- proto: VendingMachineBoozeUnlocked + entities: + - uid: 970 components: - type: Transform pos: -25.5,-37.5 parent: 1 - - uid: 15896 + - uid: 1489 components: - type: Transform pos: -27.5,43.5 @@ -171619,12 +171746,6 @@ entities: parent: 1 - proto: WeaponLauncherRocket entities: - - uid: 21478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 82.50444,10.569468 - parent: 1 - uid: 21481 components: - type: Transform @@ -172225,16 +172346,6 @@ entities: parent: 1 - proto: WindoorSecureArmoryLocked entities: - - uid: 4778 - components: - - type: Transform - pos: 80.5,18.5 - parent: 1 - - uid: 4847 - components: - - type: Transform - pos: 81.5,18.5 - parent: 1 - uid: 9863 components: - type: Transform @@ -172391,12 +172502,6 @@ entities: parent: 1 - proto: WindoorSecureSecurityLocked entities: - - uid: 839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 1 - uid: 893 components: - type: Transform @@ -172409,18 +172514,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-32.5 parent: 1 - - uid: 958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-33.5 - parent: 1 - - uid: 970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1 - uid: 1039 components: - type: Transform @@ -172433,12 +172526,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-33.5 parent: 1 - - uid: 1489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 1 - uid: 4080 components: - type: Transform diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index c7e2a5bc532..22aa1ea8aad 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -50,6 +50,7 @@ tilemap: 88: FloorShuttlePurple 90: FloorShuttleWhite 94: FloorSteel + 1: FloorSteelDiagonal 101: FloorSteelDirty 105: FloorSteelMono 106: FloorSteelOffset @@ -61,6 +62,7 @@ tilemap: 118: FloorWhiteMono 119: FloorWhiteOffset 123: FloorWood + 3: FloorWoodLarge 125: FloorWoodTile 126: Lattice 127: Plating @@ -85,15 +87,15 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: XgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAABwAAAAAAMAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAACMAAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACXgAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAIAAAAAAATwAAAAABIAAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAATwAAAAABXgAAAAAAIAAAAAABUAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAADIAAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADXgAAAAADIAAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAAAXgAAAAADUAAAAAAAIAAAAAABXgAAAAACIAAAAAACTwAAAAABIAAAAAABXgAAAAADIAAAAAADTwAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAXgAAAAACXgAAAAAAXgAAAAADTwAAAAABXgAAAAADIAAAAAADXgAAAAAATwAAAAABXgAAAAADIAAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAACXgAAAAADfwAAAAAAIAAAAAABXgAAAAACIAAAAAAATwAAAAAAIAAAAAACXgAAAAADIAAAAAACTwAAAAACIAAAAAACXgAAAAABIAAAAAABTwAAAAAAIAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAATwAAAAADXgAAAAABIAAAAAADXgAAAAABTwAAAAADXgAAAAADIAAAAAACXgAAAAABTwAAAAADXgAAAAAAIAAAAAAAXgAAAAAATwAAAAACXgAAAAAAUAAAAAAAIAAAAAAAXgAAAAABIAAAAAACTwAAAAABIAAAAAADXgAAAAABIAAAAAABTwAAAAAAIAAAAAAAXgAAAAAAIAAAAAACTwAAAAADIAAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAATwAAAAACXgAAAAACIAAAAAAAXgAAAAACTwAAAAABXgAAAAAAIAAAAAAAXgAAAAACTwAAAAADXgAAAAABIAAAAAAAXgAAAAADTwAAAAAA + tiles: XgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAABwAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACXgAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAIAAAAAAATwAAAAABIAAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfwAAAAAATwAAAAABXgAAAAAAIAAAAAABUAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAADIAAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADXgAAAAADIAAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAAAXgAAAAADUAAAAAAAIAAAAAABXgAAAAACIAAAAAACTwAAAAABIAAAAAABXgAAAAADIAAAAAADTwAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAXgAAAAACXgAAAAAAXgAAAAADTwAAAAABXgAAAAADIAAAAAADXgAAAAAATwAAAAABXgAAAAADIAAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAACXgAAAAADfwAAAAAAIAAAAAABXgAAAAACIAAAAAAATwAAAAAAIAAAAAACXgAAAAADIAAAAAACTwAAAAACIAAAAAACXgAAAAABIAAAAAABTwAAAAAAIAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAATwAAAAADXgAAAAABIAAAAAADXgAAAAABTwAAAAADXgAAAAADIAAAAAACXgAAAAABTwAAAAADXgAAAAAAIAAAAAAAXgAAAAAATwAAAAACXgAAAAAAUAAAAAAAIAAAAAAAXgAAAAABIAAAAAACTwAAAAABIAAAAAADXgAAAAABIAAAAAABTwAAAAAAIAAAAAAAXgAAAAAAIAAAAAACTwAAAAADIAAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAATwAAAAACXgAAAAACIAAAAAAAXgAAAAACTwAAAAABXgAAAAAAIAAAAAAAXgAAAAACTwAAAAADXgAAAAABIAAAAAAAXgAAAAADTwAAAAAA version: 6 0,0: ind: 0,0 - tiles: BwAAAAAABwAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAAAMAAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAAAMAAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAACDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAFwAAAAAAfwAAAAAAHAAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADDgAAAAADDgAAAAACfwAAAAAAewAAAAADewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAADgAAAAABDgAAAAABDgAAAAADewAAAAAAewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAADgAAAAADDgAAAAADfwAAAAAAewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAHAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADIAAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABIAAAAAAAXgAAAAAATwAAAAACXgAAAAABXgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAUAAAAAAAXgAAAAAAIAAAAAACTwAAAAABIAAAAAABXgAAAAACIAAAAAABUAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAUAAAAAAAXgAAAAABXgAAAAABIAAAAAAAXgAAAAAATwAAAAACXgAAAAABfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAB + tiles: BwAAAAAABwAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAABAQAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACAQAAAAAAXgAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAACDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAFwAAAAAAfwAAAAAAHAAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADDgAAAAADDgAAAAACfwAAAAAAewAAAAADewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAADgAAAAABDgAAAAABDgAAAAADewAAAAAAewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAAQAAAAAADgAAAAADDgAAAAADfwAAAAAAewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAHAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADIAAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABIAAAAAAAXgAAAAAATwAAAAACXgAAAAABXgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAUAAAAAAAXgAAAAAAIAAAAAACTwAAAAABIAAAAAABXgAAAAACIAAAAAABUAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAUAAAAAAAXgAAAAABXgAAAAABIAAAAAAAXgAAAAAATwAAAAACXgAAAAABfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAARQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAARwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAARwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACRwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAAARwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACfwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAAAfwAAAAAAcQAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAcQAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADUAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABfwAAAAAAXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAARQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAAQAAAAAAAQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAARwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAZQAAAAAAZQAAAAAAAQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAARwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACRwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAAARwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAACfwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAAAfwAAAAAAcQAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADAQAAAAAAXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAcQAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAAQAAAAAAXgAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAADUAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABAQAAAAAAXgAAAAACfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAABfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACAQAAAAAAXgAAAAADXgAAAAACXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAABfwAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -101,27 +103,27 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: BwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACfwAAAAAAUAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAABBwAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAACfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABwAAAAABCwAAAAAABwAAAAAABwAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMgAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAACwAAAAAABwAAAAAABwAAAAABfwAAAAAAXgAAAAADXgAAAAACXgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABewAAAAABewAAAAACewAAAAABewAAAAACewAAAAABfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAC + tiles: BwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACfwAAAAAAUAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAABBwAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAACfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAABfwAAAAAAXgAAAAABXgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABwAAAAABCwAAAAAABwAAAAAABwAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMgAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAACwAAAAAABwAAAAAABwAAAAABfwAAAAAAXgAAAAADXgAAAAACXgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABewAAAAABewAAAAACewAAAAABewAAAAACewAAAAABfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: MgAAAAAAMAAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAMgAAAAAAMAAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAABUAAAAAAAMgAAAAAAMAAAAAAAXgAAAAABXgAAAAABXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAACcQAAAAADcQAAAAAAcQAAAAACMgAAAAAAMAAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAABcQAAAAACNQAAAAADMAAAAAADMAAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAABNQAAAAAAXgAAAAAAXgAAAAABXgAAAAACUAAAAAAAXgAAAAADXgAAAAAAXgAAAAACUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADXgAAAAACXgAAAAADXgAAAAACfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADIAAAAAACIAAAAAACIAAAAAACMAAAAAACXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAABXgAAAAABMAAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADIAAAAAABIAAAAAABIAAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACXgAAAAACfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA + tiles: MgAAAAAAMAAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAMgAAAAAAMAAAAAACXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAABUAAAAAAAMgAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAXgAAAAAAXgAAAAACfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAACcQAAAAADcQAAAAAAcQAAAAACMgAAAAAAMAAAAAACXgAAAAAAXgAAAAAAXgAAAAACAQAAAAAAXgAAAAAAXgAAAAABfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAABcQAAAAACNQAAAAADMAAAAAADMAAAAAADXgAAAAACXgAAAAACXgAAAAABAQAAAAAAXgAAAAAAXgAAAAABfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAABNQAAAAAAAQAAAAAAXgAAAAABXgAAAAACUAAAAAAAXgAAAAADAQAAAAAAXgAAAAACUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADAQAAAAAAXgAAAAADXgAAAAACfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADIAAAAAACIAAAAAACIAAAAAACMAAAAAACXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADAQAAAAAAAQAAAAAAMAAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAADIAAAAAABIAAAAAABIAAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACAQAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACXgAAAAACfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAADfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: XgAAAAABXgAAAAABUAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAADXgAAAAADMAAAAAADXgAAAAACUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAXgAAAAADXgAAAAABXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACwAAAAAAMgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAA + tiles: AQAAAAAAXgAAAAABUAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAABewAAAAADfwAAAAAAfwAAAAAAAQAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAfwAAAAAAewAAAAACfwAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAADXgAAAAADMAAAAAADXgAAAAACUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAXgAAAAACXgAAAAABAQAAAAAAXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAXgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAXgAAAAADAQAAAAAAXgAAAAABUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACwAAAAAAMgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAXgAAAAABAQAAAAAAXgAAAAAAUAAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: MAAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAVQAAAAAAWAAAAAAAXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAXgAAAAABXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAMgAAAAAAXgAAAAABXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAWgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAUAAAAAAACwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABMgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADMAAAAAACMAAAAAABMAAAAAAAMAAAAAADMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMgAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAABXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAABewAAAAADewAAAAABewAAAAAA + tiles: MAAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAVQAAAAAAWAAAAAAAAQAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAMgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAWgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAUAAAAAAACwAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAADXgAAAAABMgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACMAAAAAABMAAAAAAAMAAAAAADMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMgAAAAAAAQAAAAAAXgAAAAABUAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADAQAAAAAAMAAAAAABXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABfwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAABewAAAAADewAAAAABewAAAAAA version: 6 -2,0: ind: -2,0 - tiles: XgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAADMAAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAADMAAAAAABXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMgAAAAAAMgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACMgAAAAAAMgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAMAAAAAACQAAAAAAAMAAAAAAAQAAAAAAAMAAAAAACfwAAAAAAXgAAAAAAXgAAAAADMgAAAAAAMgAAAAAAXgAAAAABXgAAAAACfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQAAAAAAAMAAAAAACQAAAAAAAMAAAAAABQAAAAAAAfwAAAAAAXgAAAAADMAAAAAABMgAAAAAAMgAAAAAAMAAAAAACXgAAAAABfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAMAAAAAABQAAAAAAAMAAAAAADQAAAAAAAMAAAAAAAQAAAAAAAXgAAAAAAMAAAAAAAMgAAAAAAMgAAAAAAMAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQAAAAAAAMAAAAAABQAAAAAAAMAAAAAADQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAADMgAAAAAAMgAAAAAAMAAAAAADXgAAAAABXgAAAAABfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAMAAAAAAAQAAAAAAAMAAAAAACfwAAAAAAXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAMAAAAAADQAAAAAAAMAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACXgAAAAACMgAAAAAAMgAAAAAAXgAAAAAC + tiles: XgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACAQAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACAQAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAfwAAAAAAAQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACAQAAAAAAMAAAAAABXgAAAAACfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAACAQAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAMAAAAAACQAAAAAAAMAAAAAAAQAAAAAAAMAAAAAACfwAAAAAAXgAAAAAAAQAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAACfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAQAAAAAAAMAAAAAACQAAAAAAAMAAAAAABQAAAAAAAfwAAAAAAXgAAAAADMAAAAAABMgAAAAAAMgAAAAAAMAAAAAACXgAAAAABfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAMAAAAAABQAAAAAAAMAAAAAADQAAAAAAAMAAAAAAAQAAAAAAAXgAAAAAAMAAAAAAAMgAAAAAAMgAAAAAAMAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAQAAAAAAAMAAAAAABQAAAAAAAMAAAAAADQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAADMgAAAAAAMgAAAAAAMAAAAAADXgAAAAABXgAAAAABfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAMAAAAAAAQAAAAAAAMAAAAAACfwAAAAAAXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAMAAAAAADQAAAAAAAMAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACXgAAAAACMgAAAAAAMgAAAAAAAQAAAAAA version: 6 1,0: ind: 1,0 - tiles: XgAAAAADXgAAAAACXgAAAAADXgAAAAADIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADewAAAAAAewAAAAAAIAAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAACUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADUAAAAAAAIAAAAAAAIAAAAAADewAAAAABewAAAAAAewAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADUAAAAAAAIAAAAAABIAAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAewAAAAADewAAAAACewAAAAACewAAAAACewAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAXgAAAAABIAAAAAACfwAAAAAAIAAAAAAAIAAAAAACewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAATwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAADXgAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADTwAAAAACTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAMAAAAAADXgAAAAAAfwAAAAAAXgAAAAAATwAAAAADTwAAAAABTwAAAAABTwAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAMAAAAAACXgAAAAADfwAAAAAAXgAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADTwAAAAADTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: XgAAAAADAQAAAAAAAQAAAAAAXgAAAAADIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAADAQAAAAAAXgAAAAADXgAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAACIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAIAAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADewAAAAAAewAAAAAAIAAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAACUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADUAAAAAAAIAAAAAAAIAAAAAADewAAAAABewAAAAAAewAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADUAAAAAAAIAAAAAABIAAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAewAAAAADewAAAAACewAAAAACewAAAAACewAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAXgAAAAABIAAAAAACfwAAAAAAIAAAAAAAIAAAAAACewAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAABXgAAAAAAXgAAAAAATwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAQAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADTwAAAAACTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAMAAAAAADXgAAAAAAfwAAAAAAXgAAAAAATwAAAAADTwAAAAABTwAAAAABTwAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMAAAAAAAMAAAAAACXgAAAAADfwAAAAAAXgAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAADXgAAAAADUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADTwAAAAADTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -133,23 +135,23 @@ entities: version: 6 0,1: ind: 0,1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACMAAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABMAAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAABIAAAAAACXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACUAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACfwAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACUAAAAAAAXgAAAAACXgAAAAAAXgAAAAACAQAAAAAAMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABXgAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAABIAAAAAACXgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACUAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACfwAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADfwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: XgAAAAADXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACfwAAAAAAXgAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADMAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABMAAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADUAAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAACXgAAAAAAXgAAAAABXgAAAAACUAAAAAAAXgAAAAADOgAAAAACXgAAAAACXgAAAAADUAAAAAAAXgAAAAAAMAAAAAABXgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAXgAAAAADMAAAAAADXgAAAAADUwAAAAAAUwAAAAAAOgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAACMwAAAAABMwAAAAADMwAAAAADMwAAAAABXgAAAAABXgAAAAAAXgAAAAAAUwAAAAAAUwAAAAAAOgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADMAAAAAACXgAAAAAAUAAAAAAAXgAAAAACOgAAAAABXgAAAAACXgAAAAABUAAAAAAAXgAAAAABXgAAAAABXgAAAAABMAAAAAAAXgAAAAABXgAAAAACMAAAAAABXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABOgAAAAACXgAAAAAAXgAAAAADUAAAAAAAXgAAAAACXgAAAAABXgAAAAACfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACfwAAAAAAXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABXgAAAAADXgAAAAADfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAA + tiles: XgAAAAADXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACfwAAAAAAXgAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACAQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAXgAAAAADUAAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAABAQAAAAAAXgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAACXgAAAAAAAQAAAAAAXgAAAAACUAAAAAAAXgAAAAADOgAAAAACXgAAAAACXgAAAAADUAAAAAAAXgAAAAAAMAAAAAABXgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAAXgAAAAADMAAAAAADXgAAAAADUwAAAAAAUwAAAAAAOgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAAAAQAAAAAAXgAAAAACMwAAAAABMwAAAAADMwAAAAADMwAAAAABXgAAAAABAQAAAAAAXgAAAAAAUwAAAAAAUwAAAAAAOgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADMAAAAAACXgAAAAAAUAAAAAAAXgAAAAACOgAAAAABXgAAAAACXgAAAAABUAAAAAAAXgAAAAABXgAAAAABXgAAAAABMAAAAAAAXgAAAAABXgAAAAACMAAAAAABXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABOgAAAAACXgAAAAAAXgAAAAADUAAAAAAAXgAAAAACXgAAAAABXgAAAAACfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACfwAAAAAAXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABXgAAAAADXgAAAAADfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: XgAAAAACXgAAAAABMAAAAAADXgAAAAACXgAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMgAAAAAAMgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABMAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADOgAAAAADOgAAAAABOgAAAAADOgAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACOgAAAAACOgAAAAAAOgAAAAADOgAAAAABPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAACOgAAAAABOgAAAAACOgAAAAABOgAAAAADPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAACOgAAAAACOgAAAAADOgAAAAABOgAAAAAAPQAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAA + tiles: XgAAAAACXgAAAAABMAAAAAADXgAAAAACXgAAAAAAfwAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAAAAQAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAADAQAAAAAAXgAAAAAAXgAAAAABMAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAPwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADOgAAAAADOgAAAAABOgAAAAADOgAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACOgAAAAACOgAAAAAAOgAAAAADOgAAAAABPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAACOgAAAAABOgAAAAACOgAAAAABOgAAAAADPwAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAACOgAAAAACOgAAAAADOgAAAAABOgAAAAAAPQAAAAAAPwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAA version: 6 1,1: ind: 1,1 - tiles: XgAAAAADXgAAAAAAXgAAAAACXgAAAAADTwAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAADIAAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA + tiles: AQAAAAAAXgAAAAAAXgAAAAACXgAAAAADTwAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAfwAAAAAAZQAAAAAAZQAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIAAAAAABIAAAAAADIAAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAADcQAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAADcQAAAAABcQAAAAABfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAADcQAAAAACcQAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAACcQAAAAABXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAUAAAAAAAcQAAAAACcQAAAAABcQAAAAADcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAACcQAAAAABXgAAAAACXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAXgAAAAABXgAAAAACXgAAAAACIAAAAAACfwAAAAAAcQAAAAADcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACUAAAAAAAcQAAAAADfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAIAAAAAACcQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADfwAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAACcQAAAAACfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUAAAAAAAXgAAAAAAMAAAAAAAXgAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAACXgAAAAADUAAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAUAAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAUAAAAAAAcQAAAAACcQAAAAABUAAAAAAAUAAAAAAAcQAAAAADcQAAAAADcQAAAAACcQAAAAADcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAA + tiles: fwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAADcQAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAACcQAAAAADcQAAAAABcQAAAAABfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAADcQAAAAADcQAAAAADcQAAAAADcQAAAAACcQAAAAAAUAAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAAAXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAACcQAAAAABXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAUAAAAAAAcQAAAAACcQAAAAABcQAAAAADcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAABcQAAAAACcQAAAAABXgAAAAACAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAXgAAAAABAQAAAAAAXgAAAAACIAAAAAACfwAAAAAAcQAAAAADcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACUAAAAAAAcQAAAAADfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAIAAAAAACcQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUAAAAAAAXgAAAAABAQAAAAAAXgAAAAADfwAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAACcQAAAAACfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUAAAAAAAXgAAAAAAMAAAAAAAXgAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAUAAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAcQAAAAACcQAAAAADcQAAAAAAcQAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAUAAAAAAAcQAAAAACcQAAAAABUAAAAAAAUAAAAAAAcQAAAAADcQAAAAADcQAAAAACcQAAAAADcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAXgAAAAABfwAAAAAA version: 6 0,2: ind: 0,2 @@ -161,15 +163,15 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAAAMAAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAADMAAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABXgAAAAADXgAAAAACGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAfwAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAACXgAAAAACbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAADAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAAQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADAQAAAAAAXgAAAAACXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAABAQAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAACAQAAAAAAXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAADMAAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACAQAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAABAQAAAAAAXgAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACAQAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACAQAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADAQAAAAAAXgAAAAAAXgAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABXgAAAAADXgAAAAACGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAfwAAAAAA version: 6 -3,1: ind: -3,1 - tiles: fwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAMAAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAAAXgAAAAAAMAAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAACfwAAAAAAcQAAAAADcQAAAAACcQAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAADPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAXgAAAAABMAAAAAAAXgAAAAABfwAAAAAAbQAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADfwAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADPQAAAAAA + tiles: fwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAACXgAAAAACGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAADAQAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAMAAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADAQAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAACAQAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAAAAQAAAAAAXgAAAAABUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACfwAAAAAAcQAAAAADcQAAAAACcQAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADAQAAAAAAXgAAAAABXgAAAAACcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAXgAAAAABAQAAAAAAXgAAAAADPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAXgAAAAABMAAAAAAAXgAAAAABfwAAAAAAbQAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAADPQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAABMgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADMAAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADAQAAAAAAMgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAABXgAAAAACUAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACAQAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADAQAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAACAQAAAAAAXgAAAAABfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACAQAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAQAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -177,15 +179,15 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: cQAAAAADcQAAAAAAcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAADXgAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADfwAAAAAAXgAAAAACXgAAAAADMAAAAAABXgAAAAADXgAAAAABfwAAAAAAcQAAAAABcQAAAAADcQAAAAACfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMAAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAACXgAAAAACXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAACXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAATwAAAAABXgAAAAABUAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAACXgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAATwAAAAADXgAAAAADUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAABUAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA + tiles: cQAAAAADcQAAAAAAcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAADfwAAAAAAXgAAAAABXgAAAAABAQAAAAAAXgAAAAADXgAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADfwAAAAAAXgAAAAACAQAAAAAAMAAAAAABXgAAAAADXgAAAAABfwAAAAAAcQAAAAABcQAAAAADcQAAAAACfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAQAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAATwAAAAABXgAAAAABUAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAACXgAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAADUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAABUAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAAQAAAAAAXgAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAABfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAA version: 6 -2,3: ind: -2,3 - tiles: XgAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAAAXgAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADXgAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADUAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAADIAAAAAACfwAAAAAATwAAAAAATwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADUAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAAAIAAAAAAATwAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADIAAAAAAAIAAAAAADTwAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACKQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAD + tiles: XgAAAAADfwAAAAAAcQAAAAABcQAAAAAAcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAAAXgAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADXgAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABIAAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADUAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAADIAAAAAACfwAAAAAATwAAAAAATwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADUAAAAAAANAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAIAAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADIAAAAAAAIAAAAAAATwAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADIAAAAAAAIAAAAAADTwAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXgAAAAACKQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAAD version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADNAAAAAAANAAAAAAANAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAXgAAAAADXgAAAAACNAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAewAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAACXgAAAAADcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAADMAAAAAABcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAACXgAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAADfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAABIAAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAADIAAAAAADfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAAATwAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAATwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACTwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADTwAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADTwAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADTwAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAKQAAAAACKQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAABKQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAAAAQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAewAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAACAQAAAAAAcQAAAAADfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfwAAAAAAXgAAAAADMAAAAAABcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAACXgAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAADfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAABIAAAAAABfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAewAAAAAAewAAAAAAfwAAAAAAJgAAAAAAIAAAAAADIAAAAAADfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAAATwAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAAATwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAACTwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADTwAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAADTwAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAADTwAAAAACIAAAAAACIAAAAAABfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAKQAAAAACKQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAADKQAAAAABKQAAAAABKQAAAAAC version: 6 0,3: ind: 0,3 @@ -201,7 +203,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAABBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACfwAAAAAAaQAAAAABaQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAACEwAAAAAAEwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAABfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAACEwAAAAABEwAAAAABUAAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAADEwAAAAACEwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADMAAAAAACMAAAAAACMAAAAAACMAAAAAADMAAAAAADXgAAAAAAXgAAAAACXgAAAAAAMAAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAABBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAABwAAAAAABwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACfwAAAAAAaQAAAAABaQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAACEwAAAAAAEwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAABfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAACEwAAAAABEwAAAAABUAAAAAAABwAAAAABfwAAAAAAfwAAAAAAfwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACfwAAAAAAagAAAAAAagAAAAAAagAAAAAAEwAAAAADEwAAAAACEwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABfwAAAAAAXgAAAAACXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACMAAAAAACMAAAAAACMAAAAAADMAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAABAQAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACAQAAAAAAXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVQAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAVwAAAAAAfwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAWgAAAAAAWgAAAAAA version: 6 2,-2: ind: 2,-2 @@ -209,7 +211,7 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: BwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAACXgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACAQAAAAAAXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAQAAAAAAXgAAAAABMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACAQAAAAAAXgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAQAAAAAAXgAAAAABXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAAXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -217,7 +219,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: fwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABMgAAAAAAMgAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACMAAAAAACMAAAAAACMAAAAAAAMAAAAAACfwAAAAAAMAAAAAABMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAXgAAAAADXgAAAAADBwAAAAABfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABMAAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: fwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABMgAAAAAAMgAAAAAAMgAAAAAACwAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACMAAAAAACMAAAAAACMAAAAAAAMAAAAAACfwAAAAAAMAAAAAABMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAAQAAAAAAXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADBwAAAAABfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAAQAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAABwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABMAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -2,-3: ind: -2,-3 @@ -237,11 +239,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAAfwAAAAAACwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAAUAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABUAAAAAAACwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAAUAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACUAAAAAAAXgAAAAADTwAAAAACXgAAAAACTwAAAAABfwAAAAAAfwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACfwAAAAAAXgAAAAADTwAAAAABXgAAAAADfwAAAAAAfwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABfwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAADMAAAAAADMAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADMAAAAAACMAAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACfwAAAAAAMAAAAAAAMAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAA + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAAfwAAAAAACwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAAUAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABUAAAAAAACwAAAAAAfwAAAAAAfwAAAAAACwAAAAAACwAAAAAAUAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACUAAAAAAAXgAAAAADTwAAAAACXgAAAAACTwAAAAABfwAAAAAAfwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACfwAAAAAAXgAAAAADTwAAAAABXgAAAAADfwAAAAAAfwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACXgAAAAACAQAAAAAAXgAAAAABAQAAAAAAXgAAAAABfwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACfwAAAAAAXgAAAAABAQAAAAAAXgAAAAADAQAAAAAAXgAAAAAAfwAAAAAAfwAAAAAABwAAAAABBwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADAQAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAACAQAAAAAAXgAAAAADAQAAAAAAAQAAAAAAMAAAAAADMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACMAAAAAAAAQAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACfwAAAAAAMAAAAAAAMAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAUAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABUAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABUAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABwAAAAACBwAAAAABUAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABTwAAAAAATwAAAAABXgAAAAAAXgAAAAADMAAAAAADMAAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAUAAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABUAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABUAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABfwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABwAAAAACBwAAAAABUAAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABTwAAAAAATwAAAAABAQAAAAAAAQAAAAAAMAAAAAADMAAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAB version: 6 -4,1: ind: -4,1 @@ -253,7 +255,7 @@ entities: version: 6 -1,4: ind: -1,4 - tiles: XgAAAAADXgAAAAADUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABXgAAAAABUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAACXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAATwAAAAABXgAAAAADXgAAAAACTwAAAAAAXgAAAAABTwAAAAABXgAAAAACTwAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAATwAAAAADTwAAAAAATwAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAATwAAAAADXgAAAAAATwAAAAAAXgAAAAADTwAAAAACfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAIAAAAAABIAAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAfgAAAAAAIAAAAAABIAAAAAACcQAAAAACcQAAAAACcQAAAAADcQAAAAADcQAAAAACcQAAAAABcQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAfgAAAAAAIAAAAAAAIAAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAADcQAAAAAAcQAAAAADcQAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAfgAAAAAAIAAAAAADIAAAAAABcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAIAAAAAADIAAAAAACcQAAAAABcQAAAAABcQAAAAADcQAAAAAAcQAAAAAAcQAAAAACcQAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAACUAAAAAAAfgAAAAAAIAAAAAADIAAAAAABIAAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADUAAAAAAAfgAAAAAA + tiles: AQAAAAAAXgAAAAADUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABXgAAAAABUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAQAAAAAAXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAATwAAAAABAQAAAAAAAQAAAAAATwAAAAAAXgAAAAABTwAAAAABXgAAAAACTwAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAACXgAAAAADfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAATwAAAAADTwAAAAAATwAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAABfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAATwAAAAADXgAAAAAATwAAAAAAXgAAAAADTwAAAAACfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAIAAAAAABIAAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADIAAAAAADfwAAAAAAfgAAAAAAIAAAAAABIAAAAAACcQAAAAACcgAAAAAAcgAAAAAAcQAAAAADcgAAAAAAcgAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAADfwAAAAAAfgAAAAAAIAAAAAAAIAAAAAACcQAAAAADcgAAAAAAcQAAAAADcQAAAAADcQAAAAAAcgAAAAAAcQAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAfgAAAAAAIAAAAAADIAAAAAABcQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAIAAAAAADIAAAAAACcQAAAAABcQAAAAABcgAAAAAAcQAAAAAAcgAAAAAAcQAAAAACcQAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAADIAAAAAACUAAAAAAAfgAAAAAAIAAAAAADIAAAAAABIAAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAUAAAAAAAfgAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADUAAAAAAAfgAAAAAA version: 6 -2,4: ind: -2,4 @@ -309,11 +311,11 @@ entities: version: 6 3,1: ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAACfgAAAAAAMAAAAAACfgAAAAAAMAAAAAABfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAABfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAACfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAMAAAAAADAAAAAAAAMAAAAAACfgAAAAAAMAAAAAABAAAAAAAAMAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAACfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAABAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAADfgAAAAAAMAAAAAADfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAACfgAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAABAAAAAAAAMAAAAAADfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAMAAAAAABAAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAACfgAAAAAAMAAAAAACfgAAAAAAMAAAAAABfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAABfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAACAAAAAAAAMAAAAAADfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAACAAAAAAAAMAAAAAACfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAMAAAAAADAAAAAAAAMAAAAAACfgAAAAAAMAAAAAABAAAAAAAAMAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAACfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAACAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAABfgAAAAAAMAAAAAABAAAAAAAAMAAAAAABfgAAAAAAMAAAAAADAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAADfgAAAAAAMAAAAAADfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAMAAAAAACfgAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAADfgAAAAAAMAAAAAACfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAADAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAABAAAAAAAAMAAAAAADfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAMAAAAAABAAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -409,7 +411,7 @@ entities: version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 @@ -511,6 +513,10 @@ entities: id: Arrows decals: 2490: -15.470485,-51.95348 + 2517: -15,-59 + 2518: -15,-57 + 2519: -15,-55 + 2520: -15,-53 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -6942,14 +6948,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: Parallax parallax: LighthouseStation - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 2179 @@ -7032,6 +7039,15 @@ entities: - 12411 - 12370 - 17291 + - uid: 15884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-59.5 + parent: 100 + - type: DeviceList + devices: + - 15881 - uid: 16764 components: - type: Transform @@ -9000,6 +9016,24 @@ entities: - type: Transform pos: -62.5,74.5 parent: 100 +- proto: AirlockCorpsmanGlassLocked + entities: + - uid: 1363 + components: + - type: MetaData + name: Brig Med + - type: Transform + pos: -0.5,45.5 + parent: 100 +- proto: AirlockCorpsmanLocked + entities: + - uid: 1272 + components: + - type: MetaData + name: Brig Med + - type: Transform + pos: 1.5,41.5 + parent: 100 - proto: AirlockDetectiveGlassLocked entities: - uid: 13859 @@ -10054,20 +10088,6 @@ entities: - type: Transform pos: -21.5,17.5 parent: 100 - - uid: 1266 - components: - - type: MetaData - name: Reporter's Office - - type: Transform - pos: -20.5,22.5 - parent: 100 - - uid: 1272 - components: - - type: MetaData - name: Reporter's Office - - type: Transform - pos: -21.5,20.5 - parent: 100 - uid: 1279 components: - type: MetaData @@ -10672,22 +10692,6 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-5.5 parent: 100 - - uid: 17224 - components: - - type: MetaData - name: Salvage Dock - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-19.5 - parent: 100 - - uid: 17225 - components: - - type: MetaData - name: Salvage Dock - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 100 - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 2334 @@ -11219,7 +11223,7 @@ entities: - uid: 106 components: - type: MetaData - name: Bar Maintenance + name: Service Closet - type: Transform pos: -0.5,6.5 parent: 100 @@ -11477,6 +11481,22 @@ entities: - type: Transform pos: -49.5,-8.5 parent: 100 +- proto: AirlockReporterGlassLocked + entities: + - uid: 1234 + components: + - type: MetaData + name: Reporter's Room + - type: Transform + pos: -21.5,20.5 + parent: 100 + - uid: 1266 + components: + - type: MetaData + name: Reporter's Room + - type: Transform + pos: -20.5,22.5 + parent: 100 - proto: AirlockResearchDirectorGlassLocked entities: - uid: 2981 @@ -11782,13 +11802,6 @@ entities: - type: Transform pos: 17.5,27.5 parent: 100 - - uid: 2116 - components: - - type: MetaData - name: Brig Med - - type: Transform - pos: -0.5,45.5 - parent: 100 - uid: 2190 components: - type: MetaData @@ -11945,13 +11958,6 @@ entities: - type: Transform pos: 4.5,29.5 parent: 100 - - uid: 11717 - components: - - type: MetaData - name: Brig Med - - type: Transform - pos: 1.5,41.5 - parent: 100 - uid: 13692 components: - type: MetaData @@ -12044,6 +12050,14 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,26.5 parent: 100 + - uid: 15881 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 15884 - uid: 17128 components: - type: Transform @@ -12371,7 +12385,7 @@ entities: - uid: 14681 components: - type: MetaData - name: Grav Gen APC + name: Gravity APC - type: Transform rot: 3.141592653589793 rad pos: -36.5,47.5 @@ -12421,6 +12435,20 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,30.5 parent: 100 + - uid: 15913 + components: + - type: MetaData + name: Engi Lockers APC + - type: Transform + pos: 9.5,-40.5 + parent: 100 + - uid: 16101 + components: + - type: MetaData + name: AME Room APC + - type: Transform + pos: -2.5,-44.5 + parent: 100 - uid: 16866 components: - type: MetaData @@ -12459,6 +12487,13 @@ entities: - type: Transform pos: -8.5,-7.5 parent: 100 + - uid: 19158 + components: + - type: MetaData + name: Theatre APC + - type: Transform + pos: -37.5,59.5 + parent: 100 - uid: 20077 components: - type: MetaData @@ -13627,7 +13662,7 @@ entities: parent: 100 - type: DeviceLinkSink links: - - 14551 + - 18872 - uid: 3199 components: - type: MetaData @@ -13675,7 +13710,7 @@ entities: parent: 100 - type: DeviceLinkSink links: - - 14551 + - 18872 - uid: 10750 components: - type: Transform @@ -13707,7 +13742,7 @@ entities: parent: 100 - type: DeviceLinkSink links: - - 14551 + - 18872 - uid: 14600 components: - type: Transform @@ -13768,7 +13803,7 @@ entities: - type: Transform pos: -25.703403,16.915356 parent: 100 -- proto: BodyBag_Container +- proto: BodyBag entities: - uid: 14380 components: @@ -14389,6 +14424,11 @@ entities: - type: Transform pos: -20.2501,-51.66512 parent: 100 + - uid: 20816 + components: + - type: Transform + pos: -26.408981,24.978746 + parent: 100 - proto: ButtonFrameCaution entities: - uid: 15853 @@ -14396,6 +14436,20 @@ entities: - type: Transform pos: 2.5,31.5 parent: 100 + - uid: 20812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 + parent: 100 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 15525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-58.5 + parent: 100 - proto: ButtonFrameExit entities: - uid: 11405 @@ -14853,6 +14907,26 @@ entities: - type: Transform pos: -11.5,-3.5 parent: 100 + - uid: 1918 + components: + - type: Transform + pos: -41.5,63.5 + parent: 100 + - uid: 1920 + components: + - type: Transform + pos: -40.5,63.5 + parent: 100 + - uid: 2023 + components: + - type: Transform + pos: -34.5,64.5 + parent: 100 + - uid: 2024 + components: + - type: Transform + pos: -35.5,64.5 + parent: 100 - uid: 2101 components: - type: Transform @@ -15018,6 +15092,11 @@ entities: - type: Transform pos: -0.5,44.5 parent: 100 + - uid: 3709 + components: + - type: Transform + pos: -36.5,64.5 + parent: 100 - uid: 3729 components: - type: Transform @@ -15118,6 +15197,11 @@ entities: - type: Transform pos: -41.5,-12.5 parent: 100 + - uid: 5710 + components: + - type: Transform + pos: -33.5,64.5 + parent: 100 - uid: 5715 components: - type: Transform @@ -20338,11 +20422,6 @@ entities: - type: Transform pos: -33.5,50.5 parent: 100 - - uid: 9698 - components: - - type: Transform - pos: -34.5,50.5 - parent: 100 - uid: 9699 components: - type: Transform @@ -23438,6 +23517,11 @@ entities: - type: Transform pos: -35.5,20.5 parent: 100 + - uid: 14615 + components: + - type: Transform + pos: -38.5,64.5 + parent: 100 - uid: 14695 components: - type: Transform @@ -23808,6 +23892,11 @@ entities: - type: Transform pos: -18.5,-47.5 parent: 100 + - uid: 14801 + components: + - type: Transform + pos: -37.5,64.5 + parent: 100 - uid: 14802 components: - type: Transform @@ -24058,11 +24147,6 @@ entities: - type: Transform pos: 38.5,-8.5 parent: 100 - - uid: 14933 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 100 - uid: 14934 components: - type: Transform @@ -24178,11 +24262,6 @@ entities: - type: Transform pos: 3.5,-38.5 parent: 100 - - uid: 14958 - components: - - type: Transform - pos: 3.5,-39.5 - parent: 100 - uid: 14959 components: - type: Transform @@ -24748,6 +24827,11 @@ entities: - type: Transform pos: -4.5,65.5 parent: 100 + - uid: 15467 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 100 - uid: 15512 components: - type: Transform @@ -24808,26 +24892,6 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 100 - - uid: 15525 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 100 - - uid: 15526 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 100 - - uid: 15527 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 100 - - uid: 15528 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 100 - uid: 15863 components: - type: Transform @@ -25773,6 +25837,21 @@ entities: - type: Transform pos: -19.5,72.5 parent: 100 + - uid: 18877 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 100 + - uid: 18878 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 100 + - uid: 18879 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 100 - uid: 18917 components: - type: Transform @@ -26086,7 +26165,7 @@ entities: - uid: 18990 components: - type: Transform - pos: -32.5,62.5 + pos: -20.5,-33.5 parent: 100 - uid: 18991 components: @@ -26166,7 +26245,7 @@ entities: - uid: 19006 components: - type: Transform - pos: -39.5,62.5 + pos: -21.5,-33.5 parent: 100 - uid: 19007 components: @@ -26728,6 +26807,11 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 100 + - uid: 19702 + components: + - type: Transform + pos: -37.5,58.5 + parent: 100 - uid: 19745 components: - type: Transform @@ -26878,6 +26962,11 @@ entities: - type: Transform pos: -51.5,83.5 parent: 100 + - uid: 19795 + components: + - type: Transform + pos: -37.5,59.5 + parent: 100 - uid: 19807 components: - type: Transform @@ -27458,6 +27547,46 @@ entities: - type: Transform pos: -61.5,-3.5 parent: 100 + - uid: 20844 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 100 + - uid: 20845 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 100 + - uid: 20846 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 100 + - uid: 20847 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 100 + - uid: 20848 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 100 + - uid: 20849 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 100 + - uid: 20850 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 100 + - uid: 20857 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 100 - proto: CableApcStack entities: - uid: 10832 @@ -33393,6 +33522,16 @@ entities: - type: Transform pos: -15.5,-13.5 parent: 100 + - uid: 1400 + components: + - type: Transform + pos: -50.5,60.5 + parent: 100 + - uid: 1401 + components: + - type: Transform + pos: -50.5,61.5 + parent: 100 - uid: 1410 components: - type: Transform @@ -33403,6 +33542,16 @@ entities: - type: Transform pos: -21.5,33.5 parent: 100 + - uid: 1905 + components: + - type: Transform + pos: -49.5,61.5 + parent: 100 + - uid: 1907 + components: + - type: Transform + pos: -48.5,61.5 + parent: 100 - uid: 2104 components: - type: Transform @@ -35073,6 +35222,11 @@ entities: - type: Transform pos: -6.5,-38.5 parent: 100 + - uid: 14958 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 100 - uid: 15086 components: - type: Transform @@ -35193,6 +35347,16 @@ entities: - type: Transform pos: -35.5,-2.5 parent: 100 + - uid: 16414 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 100 + - uid: 16431 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 100 - uid: 16566 components: - type: Transform @@ -35233,6 +35397,16 @@ entities: - type: Transform pos: 27.5,38.5 parent: 100 + - uid: 17224 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 100 + - uid: 17225 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 100 - uid: 17433 components: - type: Transform @@ -35373,6 +35547,56 @@ entities: - type: Transform pos: -14.5,-5.5 parent: 100 + - uid: 19028 + components: + - type: Transform + pos: -47.5,61.5 + parent: 100 + - uid: 19075 + components: + - type: Transform + pos: -46.5,61.5 + parent: 100 + - uid: 19077 + components: + - type: Transform + pos: -45.5,61.5 + parent: 100 + - uid: 19078 + components: + - type: Transform + pos: -44.5,61.5 + parent: 100 + - uid: 19079 + components: + - type: Transform + pos: -43.5,61.5 + parent: 100 + - uid: 19080 + components: + - type: Transform + pos: -42.5,61.5 + parent: 100 + - uid: 19148 + components: + - type: Transform + pos: -42.5,62.5 + parent: 100 + - uid: 19155 + components: + - type: Transform + pos: -42.5,63.5 + parent: 100 + - uid: 19156 + components: + - type: Transform + pos: -41.5,63.5 + parent: 100 + - uid: 19159 + components: + - type: Transform + pos: -41.5,61.5 + parent: 100 - uid: 19183 components: - type: Transform @@ -35383,6 +35607,11 @@ entities: - type: Transform pos: -16.5,-5.5 parent: 100 + - uid: 19242 + components: + - type: Transform + pos: -40.5,61.5 + parent: 100 - uid: 19252 components: - type: Transform @@ -35468,6 +35697,16 @@ entities: - type: Transform pos: -58.5,43.5 parent: 100 + - uid: 19544 + components: + - type: Transform + pos: -39.5,61.5 + parent: 100 + - uid: 19545 + components: + - type: Transform + pos: -38.5,61.5 + parent: 100 - uid: 19555 components: - type: Transform @@ -35483,16 +35722,36 @@ entities: - type: Transform pos: -18.5,-10.5 parent: 100 + - uid: 19647 + components: + - type: Transform + pos: -37.5,61.5 + parent: 100 - uid: 19648 components: - type: Transform pos: -18.5,-11.5 parent: 100 + - uid: 19649 + components: + - type: Transform + pos: -37.5,60.5 + parent: 100 - uid: 19700 components: - type: Transform pos: -18.5,-12.5 parent: 100 + - uid: 19701 + components: + - type: Transform + pos: -37.5,59.5 + parent: 100 + - uid: 19788 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 100 - uid: 19800 components: - type: Transform @@ -36438,6 +36697,136 @@ entities: - type: Transform pos: -24.5,29.5 parent: 100 + - uid: 20824 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 100 + - uid: 20825 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 100 + - uid: 20826 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 100 + - uid: 20827 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 100 + - uid: 20828 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 100 + - uid: 20829 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 100 + - uid: 20830 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 100 + - uid: 20831 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 100 + - uid: 20832 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 100 + - uid: 20833 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 100 + - uid: 20834 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 100 + - uid: 20835 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 100 + - uid: 20836 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 100 + - uid: 20837 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 100 + - uid: 20838 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 100 + - uid: 20839 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 100 + - uid: 20840 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 100 + - uid: 20841 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 100 + - uid: 20842 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 100 + - uid: 20843 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 100 + - uid: 20851 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 100 + - uid: 20852 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 100 + - uid: 20853 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 100 + - uid: 20854 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 100 + - uid: 20855 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 100 + - uid: 20856 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 100 - proto: CableTerminal entities: - uid: 10857 @@ -39772,11 +40161,6 @@ entities: - type: Transform pos: -17.5,-56.5 parent: 100 - - uid: 15897 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 100 - uid: 15898 components: - type: Transform @@ -40281,6 +40665,11 @@ entities: - type: Transform pos: -65.5,79.5 parent: 100 + - uid: 20813 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 100 - proto: Chair entities: - uid: 629 @@ -42139,6 +42528,20 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 100 +- proto: CleanerDispenser + entities: + - uid: 20809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,65.5 + parent: 100 + - uid: 20810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 100 - proto: ClosetBombFilled entities: - uid: 3390 @@ -42507,6 +42910,18 @@ entities: - type: Transform pos: -47.5,82.5 parent: 100 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 13499 + components: + - type: Transform + pos: -49.5,27.5 + parent: 100 + - uid: 20859 + components: + - type: Transform + pos: -49.5,55.5 + parent: 100 - proto: ClosetFireFilled entities: - uid: 10887 @@ -42647,25 +43062,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 13499 - components: - - type: Transform - pos: -49.5,27.5 - parent: 100 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 15244 components: - type: Transform @@ -43933,26 +44329,6 @@ entities: parent: 100 - proto: ClothingHeadHelmetEVA entities: - - uid: 1918 - components: - - type: Transform - pos: 21.288757,12.731072 - parent: 100 - - uid: 1920 - components: - - type: Transform - pos: 22.351257,12.652947 - parent: 100 - - uid: 1921 - components: - - type: Transform - pos: 22.351257,15.668572 - parent: 100 - - uid: 2025 - components: - - type: Transform - pos: 21.320007,15.684197 - parent: 100 - uid: 17518 components: - type: Transform @@ -44143,26 +44519,6 @@ entities: parent: 100 - proto: ClothingOuterHardsuitEVA entities: - - uid: 1905 - components: - - type: Transform - pos: 22.632507,12.590447 - parent: 100 - - uid: 1907 - components: - - type: Transform - pos: 21.601257,12.668572 - parent: 100 - - uid: 2023 - components: - - type: Transform - pos: 22.679382,15.590447 - parent: 100 - - uid: 2024 - components: - - type: Transform - pos: 21.570007,15.606072 - parent: 100 - uid: 17517 components: - type: Transform @@ -45719,13 +46075,6 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 100 -- proto: CrateNPCCow - entities: - - uid: 11180 - components: - - type: Transform - pos: -25.5,25.5 - parent: 100 - proto: CrateNPCHamlet entities: - uid: 2939 @@ -45946,6 +46295,40 @@ entities: - type: Transform pos: 23.5,20.5 parent: 100 +- proto: CurtainsBlackOpen + entities: + - uid: 1364 + components: + - type: Transform + pos: -40.5,53.5 + parent: 100 +- proto: CurtainsRedOpen + entities: + - uid: 15526 + components: + - type: Transform + pos: -39.5,56.5 + parent: 100 + - uid: 15527 + components: + - type: Transform + pos: -39.5,55.5 + parent: 100 + - uid: 15528 + components: + - type: Transform + pos: -39.5,58.5 + parent: 100 + - uid: 15897 + components: + - type: Transform + pos: -39.5,57.5 + parent: 100 + - uid: 16709 + components: + - type: Transform + pos: -39.5,54.5 + parent: 100 - proto: CyborgEndoskeleton entities: - uid: 13536 @@ -46531,12 +46914,6 @@ entities: parent: 100 - proto: DefibrillatorCabinetFilled entities: - - uid: 11303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 100 - uid: 11371 components: - type: Transform @@ -46548,6 +46925,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,42.5 parent: 100 + - uid: 11717 + components: + - type: Transform + pos: -8.5,47.5 + parent: 100 - uid: 12998 components: - type: Transform @@ -50896,7 +51278,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -50977,7 +51358,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -51036,7 +51416,7 @@ entities: - uid: 18882 components: - type: Transform - pos: 29.558083,49.894676 + pos: 28.718836,49.72606 parent: 100 - proto: DrinkShotGlass entities: @@ -51147,7 +51527,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -56058,6 +56437,14 @@ entities: - type: Transform pos: 35.65315,-2.2439122 parent: 100 +- proto: FuelDispenser + entities: + - uid: 20683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,40.5 + parent: 100 - proto: GasAnalyzer entities: - uid: 12143 @@ -68939,6 +69326,12 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 12104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-62.5 + parent: 100 - uid: 12119 components: - type: Transform @@ -78191,12 +78584,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - uid: 19980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-62.5 - parent: 100 - uid: 19981 components: - type: Transform @@ -78212,14 +78599,6 @@ entities: parent: 100 - type: GasPressurePump targetPressure: 4500 - - uid: 20005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-60.5 - parent: 100 - - type: GasPressurePump - targetPressure: 4500 - uid: 20046 components: - type: Transform @@ -81422,6 +81801,12 @@ entities: parent: 100 - type: GasVolumePump transferRate: 40 + - uid: 13723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 100 - uid: 19989 components: - type: Transform @@ -85088,26 +85473,6 @@ entities: - type: Transform pos: -20.5,-54.5 parent: 100 - - uid: 15881 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 100 - - uid: 15882 - components: - - type: Transform - pos: -23.5,-53.5 - parent: 100 - - uid: 15884 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 100 - - uid: 15885 - components: - - type: Transform - pos: -22.5,-53.5 - parent: 100 - uid: 15901 components: - type: Transform @@ -85123,31 +85488,11 @@ entities: - type: Transform pos: -20.5,-56.5 parent: 100 - - uid: 15904 - components: - - type: Transform - pos: -20.5,-59.5 - parent: 100 - uid: 15905 components: - type: Transform pos: -20.5,-58.5 parent: 100 - - uid: 15906 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 100 - - uid: 15907 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 100 - - uid: 15913 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 100 - uid: 15934 components: - type: Transform @@ -88637,7 +88982,7 @@ entities: parent: 100 - type: DeviceLinkSink links: - - 14801 + - 20811 - proto: InflatableDoor entities: - uid: 2499 @@ -88818,6 +89163,13 @@ entities: - type: Transform pos: -27.67767,33.634888 parent: 100 +- proto: Jukebox + entities: + - uid: 20858 + components: + - type: Transform + pos: -9.5,15.5 + parent: 100 - proto: KatanaDulled entities: - uid: 17782 @@ -88897,6 +89249,16 @@ entities: - type: Transform pos: 29.5,47.5 parent: 100 + - uid: 20822 + components: + - type: Transform + pos: 29.5,49.5 + parent: 100 + - uid: 20823 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 100 - proto: KitchenSpike entities: - uid: 6347 @@ -89232,6 +89594,36 @@ entities: 15854: - Pressed: DoorBolt - Pressed: Toggle +- proto: LockableButtonAtmospherics + entities: + - uid: 18872 + components: + - type: MetaData + name: blast doors button + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 + parent: 100 + - type: DeviceLinkSource + linkedPorts: + 3861: + - Pressed: Toggle + 2020: + - Pressed: Toggle + 14545: + - Pressed: Toggle + - uid: 20811 + components: + - type: MetaData + name: igniter button + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-58.5 + parent: 100 + - type: DeviceLinkSource + linkedPorts: + 14749: + - Pressed: Trigger - proto: LockerAtmosphericsFilled entities: - uid: 14840 @@ -90343,10 +90735,10 @@ entities: parent: 100 - proto: MedkitCombatFilled entities: - - uid: 12104 + - uid: 14551 components: - type: Transform - pos: 31.3018,-10.5771055 + pos: 2.1643336,45.352997 parent: 100 - proto: MedkitFilled entities: @@ -91003,6 +91395,13 @@ entities: - type: Transform pos: -11.344836,-12.266871 parent: 100 +- proto: NoticeBoard + entities: + - uid: 1921 + components: + - type: Transform + pos: -27.5,22.5 + parent: 100 - proto: NuclearBomb entities: - uid: 4024 @@ -91021,7 +91420,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -91717,6 +92115,16 @@ entities: - type: Transform pos: -21.647715,-11.539142 parent: 100 + - uid: 20814 + components: + - type: Transform + pos: -28.725134,23.293703 + parent: 100 + - uid: 20815 + components: + - type: Transform + pos: -28.506384,23.168703 + parent: 100 - proto: PaperBin10 entities: - uid: 12584 @@ -92225,6 +92633,13 @@ entities: - type: Transform pos: -72.53555,76.567604 parent: 100 +- proto: PlushieRGBee + entities: + - uid: 20818 + components: + - type: Transform + pos: 31.712395,-11.2003565 + parent: 100 - proto: PlushieRouny entities: - uid: 3580 @@ -92481,6 +92896,13 @@ entities: - type: Transform pos: -23.5,14.5 parent: 100 +- proto: PosterContrabandClown + entities: + - uid: 19796 + components: + - type: Transform + pos: -34.5,52.5 + parent: 100 - proto: PosterContrabandCommunistState entities: - uid: 12338 @@ -92578,6 +93000,11 @@ entities: - type: Transform pos: 12.5,-21.5 parent: 100 + - uid: 15882 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 100 - proto: PosterContrabandSpaceUp entities: - uid: 14314 @@ -92868,15 +93295,15 @@ entities: - type: Transform pos: 29.5,-22.5 parent: 100 - - uid: 17453 + - uid: 14933 components: - type: Transform - pos: 9.5,-65.5 + pos: 17.5,-38.5 parent: 100 - - uid: 19788 + - uid: 17453 components: - type: Transform - pos: 9.5,-40.5 + pos: 9.5,-65.5 parent: 100 - proto: PottedPlant20 entities: @@ -94803,6 +95230,12 @@ entities: parent: 100 - type: ApcPowerReceiver powerLoad: 0 + - uid: 2116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 100 - uid: 2196 components: - type: Transform @@ -96085,26 +96518,6 @@ entities: - type: Transform pos: 25.5,14.5 parent: 100 - - uid: 1363 - components: - - type: Transform - pos: 22.5,15.5 - parent: 100 - - uid: 1364 - components: - - type: Transform - pos: 21.5,15.5 - parent: 100 - - uid: 1400 - components: - - type: Transform - pos: 21.5,12.5 - parent: 100 - - uid: 1401 - components: - - type: Transform - pos: 22.5,12.5 - parent: 100 - uid: 1939 components: - type: Transform @@ -96541,6 +96954,24 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,53.5 parent: 100 + - uid: 19840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,49.5 + parent: 100 + - uid: 19980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,50.5 + parent: 100 + - uid: 20005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,51.5 + parent: 100 - uid: 20711 components: - type: Transform @@ -96631,6 +97062,17 @@ entities: rot: 3.141592653589793 rad pos: 30.5,50.5 parent: 100 + - uid: 20368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,52.5 + parent: 100 + - uid: 20421 + components: + - type: Transform + pos: -32.5,48.5 + parent: 100 - proto: RailingRound entities: - uid: 12770 @@ -101276,6 +101718,11 @@ entities: parent: 100 - proto: RandomVending entities: + - uid: 14975 + components: + - type: Transform + pos: -35.5,38.5 + parent: 100 - uid: 15185 components: - type: Transform @@ -101303,11 +101750,6 @@ entities: - type: Transform pos: -7.5,28.5 parent: 100 - - uid: 16709 - components: - - type: Transform - pos: -32.5,39.5 - parent: 100 - proto: RandomVendingSnacks entities: - uid: 16768 @@ -101797,31 +102239,11 @@ entities: - type: Transform pos: -23.5,-63.5 parent: 100 - - uid: 15467 - components: - - type: Transform - pos: -20.5,-53.5 - parent: 100 - - uid: 15946 - components: - - type: Transform - pos: -22.5,-53.5 - parent: 100 - uid: 15947 components: - type: Transform pos: -20.5,-56.5 parent: 100 - - uid: 15963 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 100 - - uid: 15965 - components: - - type: Transform - pos: -23.5,-53.5 - parent: 100 - uid: 16002 components: - type: Transform @@ -101832,16 +102254,6 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 100 - - uid: 16100 - components: - - type: Transform - pos: -20.5,-59.5 - parent: 100 - - uid: 16101 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 100 - uid: 16178 components: - type: Transform @@ -101907,16 +102319,6 @@ entities: - type: Transform pos: -20.5,-55.5 parent: 100 - - uid: 16414 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 100 - - uid: 16431 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 100 - uid: 19629 components: - type: Transform @@ -105265,17 +105667,6 @@ entities: parent: 100 - proto: RemoteSignaller entities: - - uid: 14801 - components: - - type: MetaData - name: igniter remote - - type: Transform - pos: -19.657108,-58.005615 - parent: 100 - - type: DeviceLinkSource - linkedPorts: - 14749: - - Pressed: Trigger - uid: 19342 components: - type: Transform @@ -105473,6 +105864,11 @@ entities: - type: Transform pos: -48.5,62.5 parent: 100 + - uid: 20670 + components: + - type: Transform + pos: -30.5,55.5 + parent: 100 - uid: 20695 components: - type: Transform @@ -106069,46 +106465,6 @@ entities: - type: DeviceLinkSink links: - 12197 - - uid: 13723 - components: - - type: Transform - pos: -39.5,56.5 - parent: 100 - - type: DeviceLinkSink - links: - - 5710 - - uid: 14602 - components: - - type: Transform - pos: -39.5,57.5 - parent: 100 - - type: DeviceLinkSink - links: - - 5710 - - uid: 14614 - components: - - type: Transform - pos: -39.5,54.5 - parent: 100 - - type: DeviceLinkSink - links: - - 5710 - - uid: 14615 - components: - - type: Transform - pos: -39.5,55.5 - parent: 100 - - type: DeviceLinkSink - links: - - 5710 - - uid: 14975 - components: - - type: Transform - pos: -39.5,58.5 - parent: 100 - - type: DeviceLinkSink - links: - - 5710 - uid: 16447 components: - type: Transform @@ -106384,25 +106740,6 @@ entities: - Pressed: Toggle 13448: - Pressed: Toggle - - uid: 5710 - components: - - type: MetaData - name: shutters button - - type: Transform - pos: -39.5,53.5 - parent: 100 - - type: DeviceLinkSource - linkedPorts: - 14614: - - Pressed: Toggle - 14615: - - Pressed: Toggle - 13723: - - Pressed: Toggle - 14602: - - Pressed: Toggle - 14975: - - Pressed: Toggle - uid: 8928 components: - type: MetaData @@ -106498,22 +106835,6 @@ entities: - Pressed: Toggle 3200: - Pressed: Toggle - - uid: 14551 - components: - - type: MetaData - name: space button - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 100 - - type: DeviceLinkSource - linkedPorts: - 3861: - - Pressed: Toggle - 2020: - - Pressed: Toggle - 14545: - - Pressed: Toggle - uid: 16450 components: - type: MetaData @@ -108742,6 +109063,13 @@ entities: - type: Transform pos: 19.5,7.5 parent: 100 +- proto: SpawnMobCow + entities: + - uid: 11303 + components: + - type: Transform + pos: -25.5,25.5 + parent: 100 - proto: SpawnMobCrabAtmos entities: - uid: 20499 @@ -109786,6 +110114,19 @@ entities: - type: Transform pos: 35.253117,42.681236 parent: 100 +- proto: Stairs + entities: + - uid: 19837 + components: + - type: Transform + pos: -33.5,49.5 + parent: 100 + - uid: 19838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,51.5 + parent: 100 - proto: StairStage entities: - uid: 14858 @@ -110137,6 +110478,8 @@ entities: parent: 100 - uid: 14673 components: + - type: MetaData + name: gravity substation - type: Transform pos: -40.5,45.5 parent: 100 @@ -110254,6 +110597,28 @@ entities: - type: Transform pos: 26.5,29.5 parent: 100 +- proto: SuitStorageEVA + entities: + - uid: 2025 + components: + - type: Transform + pos: 22.5,15.5 + parent: 100 + - uid: 9698 + components: + - type: Transform + pos: 22.5,12.5 + parent: 100 + - uid: 14602 + components: + - type: Transform + pos: 21.5,15.5 + parent: 100 + - uid: 14614 + components: + - type: Transform + pos: 21.5,12.5 + parent: 100 - proto: SuitStorageEVAPrisoner entities: - uid: 4971 @@ -113824,6 +114189,31 @@ entities: - type: Transform pos: 14.5,16.5 parent: 100 + - uid: 18871 + components: + - type: Transform + pos: -39.5,54.5 + parent: 100 + - uid: 20679 + components: + - type: Transform + pos: -39.5,55.5 + parent: 100 + - uid: 20680 + components: + - type: Transform + pos: -39.5,56.5 + parent: 100 + - uid: 20681 + components: + - type: Transform + pos: -39.5,57.5 + parent: 100 + - uid: 20682 + components: + - type: Transform + pos: -39.5,58.5 + parent: 100 - proto: TegCenter entities: - uid: 19974 @@ -115033,6 +115423,11 @@ entities: rot: 3.141592653589793 rad pos: 2.5,41.5 parent: 100 + - uid: 11180 + components: + - type: Transform + pos: -6.5,47.5 + parent: 100 - uid: 11258 components: - type: Transform @@ -122106,6 +122501,26 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 100 + - uid: 15885 + components: + - type: Transform + pos: -20.5,-59.5 + parent: 100 + - uid: 15904 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 100 + - uid: 15906 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 100 + - uid: 15907 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 100 - uid: 15909 components: - type: Transform @@ -122116,6 +122531,11 @@ entities: - type: Transform pos: -15.5,-7.5 parent: 100 + - uid: 15946 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 100 - uid: 15951 components: - type: Transform @@ -122126,6 +122546,21 @@ entities: - type: Transform pos: -14.5,-63.5 parent: 100 + - uid: 15963 + components: + - type: Transform + pos: -22.5,-59.5 + parent: 100 + - uid: 15965 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 100 + - uid: 16100 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 100 - uid: 16107 components: - type: Transform @@ -123247,6 +123682,12 @@ entities: - type: Transform pos: 31.5,25.5 parent: 100 + - uid: 18873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 100 - uid: 19271 components: - type: Transform @@ -124155,12 +124596,6 @@ entities: parent: 100 - proto: WallReinforcedDiagonal entities: - - uid: 3709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 100 - uid: 5573 components: - type: Transform @@ -125987,11 +126422,6 @@ entities: - type: Transform pos: -26.5,33.5 parent: 100 - - uid: 1234 - components: - - type: Transform - pos: -32.5,38.5 - parent: 100 - uid: 1237 components: - type: Transform @@ -129463,6 +129893,11 @@ entities: rot: 3.141592653589793 rad pos: -12.5,3.5 parent: 100 + - uid: 18876 + components: + - type: Transform + pos: -32.5,38.5 + parent: 100 - proto: WallSolidRust entities: - uid: 1623 @@ -130051,6 +130486,13 @@ entities: parent: 100 - type: WarpPoint location: laser tag arena + - uid: 20817 + components: + - type: Transform + pos: -44.5,61.5 + parent: 100 + - type: WarpPoint + location: Broadway - proto: WarpPointArrivals entities: - uid: 20806 @@ -131934,6 +132376,21 @@ entities: - type: Transform pos: 14.5,17.5 parent: 100 + - uid: 20819 + components: + - type: Transform + pos: 6.5,53.5 + parent: 100 + - uid: 20820 + components: + - type: Transform + pos: 7.5,53.5 + parent: 100 + - uid: 20821 + components: + - type: Transform + pos: 8.5,53.5 + parent: 100 - proto: WindowTintedDirectional entities: - uid: 1428 diff --git a/Resources/Maps/pebble.yml b/Resources/Maps/pebble.yml index 6f38df6c0e1..a4127408e6b 100644 --- a/Resources/Maps/pebble.yml +++ b/Resources/Maps/pebble.yml @@ -68,14 +68,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - type: Parallax parallax: PebbleStation - - type: MovedGrids - uid: 2 components: - type: MetaData @@ -5012,8 +5013,6 @@ entities: - 263 - 6857 - 6954 - - type: AtmosDevice - joinedGrid: 2 - uid: 5 components: - type: Transform @@ -5029,8 +5028,6 @@ entities: - 5373 - 6934 - 6838 - - type: AtmosDevice - joinedGrid: 2 - uid: 6 components: - type: Transform @@ -5043,8 +5040,6 @@ entities: - 5274 - 6967 - 6878 - - type: AtmosDevice - joinedGrid: 2 - uid: 7 components: - type: Transform @@ -5058,8 +5053,6 @@ entities: - 5333 - 6860 - 6948 - - type: AtmosDevice - joinedGrid: 2 - uid: 9 components: - type: Transform @@ -5073,8 +5066,6 @@ entities: - 5333 - 6849 - 6939 - - type: AtmosDevice - joinedGrid: 2 - uid: 10 components: - type: Transform @@ -5087,8 +5078,6 @@ entities: - 5332 - 6945 - 6855 - - type: AtmosDevice - joinedGrid: 2 - uid: 11 components: - type: Transform @@ -5101,8 +5090,6 @@ entities: - 5383 - 6938 - 6847 - - type: AtmosDevice - joinedGrid: 2 - uid: 12 components: - type: Transform @@ -5116,8 +5103,6 @@ entities: - 276 - 6854 - 6942 - - type: AtmosDevice - joinedGrid: 2 - uid: 13 components: - type: Transform @@ -5133,8 +5118,6 @@ entities: - 6881 - 5287 - 6988 - - type: AtmosDevice - joinedGrid: 2 - uid: 14 components: - type: Transform @@ -5148,8 +5131,6 @@ entities: - 5381 - 6832 - 6923 - - type: AtmosDevice - joinedGrid: 2 - uid: 15 components: - type: Transform @@ -5161,8 +5142,6 @@ entities: - 259 - 6952 - 6864 - - type: AtmosDevice - joinedGrid: 2 - uid: 16 components: - type: Transform @@ -5175,8 +5154,6 @@ entities: - 260 - 6951 - 6863 - - type: AtmosDevice - joinedGrid: 2 - uid: 17 components: - type: Transform @@ -5189,8 +5166,6 @@ entities: - 5350 - 282 - 6851 - - type: AtmosDevice - joinedGrid: 2 - uid: 18 components: - type: Transform @@ -5203,8 +5178,6 @@ entities: - 5270 - 6850 - 6943 - - type: AtmosDevice - joinedGrid: 2 - uid: 19 components: - type: Transform @@ -5220,8 +5193,6 @@ entities: - 6882 - 6966 - 5359 - - type: AtmosDevice - joinedGrid: 2 - uid: 20 components: - type: Transform @@ -5238,8 +5209,6 @@ entities: - 5288 - 5292 - 5293 - - type: AtmosDevice - joinedGrid: 2 - uid: 21 components: - type: Transform @@ -5260,8 +5229,6 @@ entities: - 6953 - 6989 - 5421 - - type: AtmosDevice - joinedGrid: 2 - uid: 22 components: - type: Transform @@ -5279,8 +5246,6 @@ entities: - 5324 - 6947 - 6859 - - type: AtmosDevice - joinedGrid: 2 - uid: 23 components: - type: Transform @@ -5291,8 +5256,6 @@ entities: devices: - 5283 - 266 - - type: AtmosDevice - joinedGrid: 2 - uid: 24 components: - type: Transform @@ -5302,8 +5265,6 @@ entities: devices: - 268 - 5313 - - type: AtmosDevice - joinedGrid: 2 - uid: 25 components: - type: Transform @@ -5318,8 +5279,6 @@ entities: - 268 - 6308 - 10551 - - type: AtmosDevice - joinedGrid: 2 - uid: 26 components: - type: Transform @@ -5333,8 +5292,6 @@ entities: - 1671 - 10662 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 27 components: - type: Transform @@ -5346,8 +5303,6 @@ entities: - 10576 - 289 - 10734 - - type: AtmosDevice - joinedGrid: 2 - uid: 30 components: - type: Transform @@ -5362,8 +5317,6 @@ entities: - 5331 - 6853 - 6941 - - type: AtmosDevice - joinedGrid: 2 - uid: 31 components: - type: Transform @@ -5384,8 +5337,6 @@ entities: - 6922 - 6879 - 5410 - - type: AtmosDevice - joinedGrid: 2 - uid: 32 components: - type: Transform @@ -5408,8 +5359,6 @@ entities: - 6944 - 6852 - 295 - - type: AtmosDevice - joinedGrid: 2 - uid: 33 components: - type: Transform @@ -5427,8 +5376,6 @@ entities: - 293 - 6960 - 6869 - - type: AtmosDevice - joinedGrid: 2 - uid: 34 components: - type: Transform @@ -5455,8 +5402,6 @@ entities: - 265 - 6833 - 6927 - - type: AtmosDevice - joinedGrid: 2 - uid: 35 components: - type: Transform @@ -5466,8 +5411,6 @@ entities: - type: DeviceList devices: - 6842 - - type: AtmosDevice - joinedGrid: 2 - uid: 36 components: - type: Transform @@ -5484,8 +5427,6 @@ entities: - 6959 - 6958 - 6870 - - type: AtmosDevice - joinedGrid: 2 - uid: 37 components: - type: Transform @@ -5502,8 +5443,6 @@ entities: - 6964 - 6876 - 5406 - - type: AtmosDevice - joinedGrid: 2 - uid: 38 components: - type: Transform @@ -5521,8 +5460,6 @@ entities: - 6856 - 6946 - 6858 - - type: AtmosDevice - joinedGrid: 2 - uid: 41 components: - type: Transform @@ -5541,8 +5478,6 @@ entities: - 5395 - 5396 - 10977 - - type: AtmosDevice - joinedGrid: 2 - uid: 42 components: - type: Transform @@ -5557,8 +5492,6 @@ entities: - 6937 - 5280 - 5404 - - type: AtmosDevice - joinedGrid: 2 - uid: 43 components: - type: Transform @@ -5572,8 +5505,6 @@ entities: - 300 - 6889 - 6972 - - type: AtmosDevice - joinedGrid: 2 - uid: 44 components: - type: Transform @@ -5588,8 +5519,6 @@ entities: - 5400 - 5420 - 5401 - - type: AtmosDevice - joinedGrid: 2 - uid: 45 components: - type: Transform @@ -5604,8 +5533,6 @@ entities: - 6978 - 5364 - 5291 - - type: AtmosDevice - joinedGrid: 2 - uid: 46 components: - type: Transform @@ -5620,8 +5547,6 @@ entities: - 5383 - 6938 - 6847 - - type: AtmosDevice - joinedGrid: 2 - uid: 47 components: - type: Transform @@ -5634,8 +5559,6 @@ entities: - 5319 - 6880 - 6968 - - type: AtmosDevice - joinedGrid: 2 - uid: 48 components: - type: Transform @@ -5651,8 +5574,6 @@ entities: - 303 - 6898 - 6984 - - type: AtmosDevice - joinedGrid: 2 - uid: 49 components: - type: Transform @@ -5670,8 +5591,6 @@ entities: - 5366 - 6837 - 6935 - - type: AtmosDevice - joinedGrid: 2 - uid: 50 components: - type: Transform @@ -5694,8 +5613,6 @@ entities: - 256 - 6926 - 6834 - - type: AtmosDevice - joinedGrid: 2 - uid: 51 components: - type: Transform @@ -5710,8 +5627,6 @@ entities: - 6829 - 6919 - 5283 - - type: AtmosDevice - joinedGrid: 2 - uid: 52 components: - type: Transform @@ -5721,8 +5636,6 @@ entities: - type: DeviceList devices: - 306 - - type: AtmosDevice - joinedGrid: 2 - uid: 53 components: - type: Transform @@ -5735,8 +5648,6 @@ entities: - 5416 - 6874 - 6920 - - type: AtmosDevice - joinedGrid: 2 - uid: 54 components: - type: Transform @@ -5753,8 +5664,6 @@ entities: - 5289 - 5416 - 255 - - type: AtmosDevice - joinedGrid: 2 - uid: 55 components: - type: Transform @@ -5767,8 +5676,6 @@ entities: - 5285 - 5315 - 5316 - - type: AtmosDevice - joinedGrid: 2 - uid: 56 components: - type: Transform @@ -5780,8 +5687,6 @@ entities: - 6973 - 5315 - 5316 - - type: AtmosDevice - joinedGrid: 2 - uid: 57 components: - type: Transform @@ -5790,8 +5695,6 @@ entities: - type: DeviceList devices: - 311 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform @@ -5800,8 +5703,6 @@ entities: - type: DeviceList devices: - 308 - - type: AtmosDevice - joinedGrid: 2 - uid: 59 components: - type: Transform @@ -5817,8 +5718,6 @@ entities: - 6910 - 310 - 5423 - - type: AtmosDevice - joinedGrid: 2 - uid: 60 components: - type: Transform @@ -5835,8 +5734,6 @@ entities: - 5427 - 5259 - 5269 - - type: AtmosDevice - joinedGrid: 2 - uid: 61 components: - type: Transform @@ -5860,8 +5757,6 @@ entities: - 5432 - 314 - 315 - - type: AtmosDevice - joinedGrid: 2 - uid: 88 components: - type: Transform @@ -5884,8 +5779,6 @@ entities: - 5307 - 9094 - 10733 - - type: AtmosDevice - joinedGrid: 2 - uid: 5233 components: - type: Transform @@ -5899,8 +5792,6 @@ entities: - 5312 - 252 - 29 - - type: AtmosDevice - joinedGrid: 2 - uid: 5246 components: - type: Transform @@ -5915,8 +5806,6 @@ entities: - 291 - 6340 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 6929 components: - type: Transform @@ -5930,8 +5819,6 @@ entities: - 5245 - 28 - 223 - - type: AtmosDevice - joinedGrid: 2 - uid: 10578 components: - type: Transform @@ -5951,8 +5838,6 @@ entities: - 269 - 9591 - 9590 - - type: AtmosDevice - joinedGrid: 2 - uid: 10622 components: - type: Transform @@ -5967,8 +5852,6 @@ entities: - 270 - 10577 - 10573 - - type: AtmosDevice - joinedGrid: 2 - uid: 10944 components: - type: Transform @@ -5981,8 +5864,6 @@ entities: - 10948 - 10947 - 10945 - - type: AtmosDevice - joinedGrid: 2 - proto: AirCanister entities: - uid: 62 @@ -5990,8 +5871,6 @@ entities: - type: Transform pos: -37.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Airlock entities: - uid: 63 @@ -13720,8 +13599,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Bed entities: - uid: 1485 @@ -14147,6 +14024,8 @@ entities: - type: Transform pos: 1.5,-1.5 parent: 2 + - type: SpamEmitSound + enabled: False - proto: BookBartendersManual entities: - uid: 1555 @@ -28487,11 +28366,6 @@ entities: - type: Transform pos: 18.5,8.5 parent: 2 - - uid: 4397 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - uid: 4398 components: - type: Transform @@ -28502,11 +28376,6 @@ entities: - type: Transform pos: -17.5,33.5 parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - uid: 4401 components: - type: Transform @@ -28517,6 +28386,18 @@ entities: - type: Transform pos: 16.5,-9.5 parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 4397 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 4403 @@ -28958,13 +28839,6 @@ entities: - type: Transform pos: -29.695724,-18.194086 parent: 2 -- proto: ClothingHeadHatHairflower - entities: - - uid: 4477 - components: - - type: Transform - pos: -14.827011,-19.222872 - parent: 2 - proto: ClothingHeadHatPirate entities: - uid: 4478 @@ -30405,8 +30279,6 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCERoom entities: - uid: 10882 @@ -30421,8 +30293,6 @@ entities: - type: Transform pos: -7.5,21.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconChemistry entities: - uid: 10888 @@ -30444,8 +30314,6 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconCourtroom entities: - uid: 10890 @@ -30481,8 +30349,6 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconEngineering entities: - uid: 10894 @@ -30576,8 +30442,6 @@ entities: - type: Transform pos: 9.5,-18.5 parent: 2 - missingComponents: - - WarpPoint - proto: DefaultStationBeaconSecurityCheckpoint entities: - uid: 10905 @@ -33818,8 +33682,6 @@ entities: - 5273 - 5272 - 293 - - type: AtmosDevice - joinedGrid: 2 - uid: 5207 components: - type: Transform @@ -33837,8 +33699,6 @@ entities: - 5394 - 5395 - 5396 - - type: AtmosDevice - joinedGrid: 2 - uid: 5208 components: - type: Transform @@ -33849,8 +33709,6 @@ entities: - 5290 - 5274 - 263 - - type: AtmosDevice - joinedGrid: 2 - uid: 5209 components: - type: Transform @@ -33866,8 +33724,6 @@ entities: - 5433 - 5435 - 5317 - - type: AtmosDevice - joinedGrid: 2 - uid: 5210 components: - type: Transform @@ -33879,8 +33735,6 @@ entities: - 5286 - 5318 - 254 - - type: AtmosDevice - joinedGrid: 2 - uid: 5211 components: - type: Transform @@ -33893,8 +33747,6 @@ entities: - 5312 - 5310 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 5212 components: - type: Transform @@ -33906,8 +33758,6 @@ entities: - 5348 - 274 - 5333 - - type: AtmosDevice - joinedGrid: 2 - uid: 5213 components: - type: Transform @@ -33919,8 +33769,6 @@ entities: - 5332 - 275 - 5333 - - type: AtmosDevice - joinedGrid: 2 - uid: 5214 components: - type: Transform @@ -33931,8 +33779,6 @@ entities: devices: - 257 - 5332 - - type: AtmosDevice - joinedGrid: 2 - uid: 5215 components: - type: Transform @@ -33944,8 +33790,6 @@ entities: - 5330 - 5331 - 276 - - type: AtmosDevice - joinedGrid: 2 - uid: 5216 components: - type: Transform @@ -33962,8 +33806,6 @@ entities: - 5288 - 5292 - 5293 - - type: AtmosDevice - joinedGrid: 2 - uid: 5217 components: - type: Transform @@ -33975,8 +33817,6 @@ entities: - 258 - 5287 - 5319 - - type: AtmosDevice - joinedGrid: 2 - uid: 5218 components: - type: Transform @@ -33989,8 +33829,6 @@ entities: - 5342 - 5381 - 5343 - - type: AtmosDevice - joinedGrid: 2 - uid: 5219 components: - type: Transform @@ -34002,8 +33840,6 @@ entities: - 280 - 5342 - 5381 - - type: AtmosDevice - joinedGrid: 2 - uid: 5220 components: - type: Transform @@ -34013,8 +33849,6 @@ entities: devices: - 5352 - 259 - - type: AtmosDevice - joinedGrid: 2 - uid: 5221 components: - type: Transform @@ -34026,8 +33860,6 @@ entities: - 5351 - 5352 - 260 - - type: AtmosDevice - joinedGrid: 2 - uid: 5222 components: - type: Transform @@ -34038,8 +33870,6 @@ entities: - 283 - 5350 - 5270 - - type: AtmosDevice - joinedGrid: 2 - uid: 5223 components: - type: Transform @@ -34051,8 +33881,6 @@ entities: - 5353 - 5350 - 282 - - type: AtmosDevice - joinedGrid: 2 - uid: 5224 components: - type: Transform @@ -34066,8 +33894,6 @@ entities: - 5361 - 262 - 5359 - - type: AtmosDevice - joinedGrid: 2 - uid: 5225 components: - type: Transform @@ -34081,8 +33907,6 @@ entities: - 5371 - 5372 - 5373 - - type: AtmosDevice - joinedGrid: 2 - uid: 5226 components: - type: Transform @@ -34101,8 +33925,6 @@ entities: - 5397 - 5417 - 5421 - - type: AtmosDevice - joinedGrid: 2 - uid: 5227 components: - type: Transform @@ -34118,8 +33940,6 @@ entities: - 5304 - 5305 - 284 - - type: AtmosDevice - joinedGrid: 2 - uid: 5228 components: - type: Transform @@ -34129,8 +33949,6 @@ entities: devices: - 268 - 5313 - - type: AtmosDevice - joinedGrid: 2 - uid: 5229 components: - type: Transform @@ -34143,8 +33961,6 @@ entities: - 268 - 5313 - 297 - - type: AtmosDevice - joinedGrid: 2 - uid: 5230 components: - type: Transform @@ -34160,8 +33976,6 @@ entities: - 292 - 5323 - 5324 - - type: AtmosDevice - joinedGrid: 2 - uid: 5231 components: - type: Transform @@ -34173,8 +33987,6 @@ entities: - 1671 - 10662 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 5232 components: - type: Transform @@ -34183,8 +33995,6 @@ entities: - type: DeviceList devices: - 270 - - type: AtmosDevice - joinedGrid: 2 - uid: 5234 components: - type: Transform @@ -34195,8 +34005,6 @@ entities: - 296 - 5378 - 5274 - - type: AtmosDevice - joinedGrid: 2 - uid: 5235 components: - type: Transform @@ -34207,8 +34015,6 @@ entities: - 272 - 5384 - 5383 - - type: AtmosDevice - joinedGrid: 2 - uid: 5236 components: - type: Transform @@ -34221,8 +34027,6 @@ entities: - 5349 - 5330 - 5331 - - type: AtmosDevice - joinedGrid: 2 - uid: 5237 components: - type: Transform @@ -34241,8 +34045,6 @@ entities: - 5337 - 5362 - 5410 - - type: AtmosDevice - joinedGrid: 2 - uid: 5238 components: - type: Transform @@ -34260,8 +34062,6 @@ entities: - 5354 - 5319 - 304 - - type: AtmosDevice - joinedGrid: 2 - uid: 5239 components: - type: Transform @@ -34275,8 +34075,6 @@ entities: - 5338 - 278 - 5287 - - type: AtmosDevice - joinedGrid: 2 - uid: 5240 components: - type: Transform @@ -34300,8 +34098,6 @@ entities: - 5298 - 5297 - 265 - - type: AtmosDevice - joinedGrid: 2 - uid: 5241 components: - type: Transform @@ -34316,8 +34112,6 @@ entities: - 5326 - 5327 - 5406 - - type: AtmosDevice - joinedGrid: 2 - uid: 5243 components: - type: Transform @@ -34331,8 +34125,6 @@ entities: - 271 - 5347 - 5385 - - type: AtmosDevice - joinedGrid: 2 - uid: 5247 components: - type: Transform @@ -34345,8 +34137,6 @@ entities: - 298 - 5280 - 5404 - - type: AtmosDevice - joinedGrid: 2 - uid: 5248 components: - type: Transform @@ -34358,8 +34148,6 @@ entities: - 5273 - 5272 - 300 - - type: AtmosDevice - joinedGrid: 2 - uid: 5249 components: - type: Transform @@ -34372,8 +34160,6 @@ entities: - 302 - 5364 - 5291 - - type: AtmosDevice - joinedGrid: 2 - uid: 5250 components: - type: Transform @@ -34386,8 +34172,6 @@ entities: - 272 - 5384 - 5383 - - type: AtmosDevice - joinedGrid: 2 - uid: 5251 components: - type: Transform @@ -34400,8 +34184,6 @@ entities: - 5265 - 5413 - 303 - - type: AtmosDevice - joinedGrid: 2 - uid: 5252 components: - type: Transform @@ -34410,8 +34192,6 @@ entities: - type: DeviceList devices: - 305 - - type: AtmosDevice - joinedGrid: 2 - uid: 5253 components: - type: Transform @@ -34432,8 +34212,6 @@ entities: - 5295 - 5294 - 256 - - type: AtmosDevice - joinedGrid: 2 - uid: 5254 components: - type: Transform @@ -34445,8 +34223,6 @@ entities: - 5398 - 5399 - 266 - - type: AtmosDevice - joinedGrid: 2 - uid: 5255 components: - type: Transform @@ -34457,8 +34233,6 @@ entities: devices: - 307 - 5416 - - type: AtmosDevice - joinedGrid: 2 - uid: 5256 components: - type: Transform @@ -34475,8 +34249,6 @@ entities: - 6957 - 5293 - 255 - - type: AtmosDevice - joinedGrid: 2 - uid: 5258 components: - type: Transform @@ -34488,8 +34260,6 @@ entities: - 5267 - 5423 - 59 - - type: AtmosDevice - joinedGrid: 2 - uid: 5259 components: - type: Transform @@ -34504,8 +34274,6 @@ entities: - 5427 - 5269 - 60 - - type: AtmosDevice - joinedGrid: 2 - uid: 5260 components: - type: Transform @@ -34517,8 +34285,6 @@ entities: - 61 - 5434 - 5433 - - type: AtmosDevice - joinedGrid: 2 - uid: 5261 components: - type: Transform @@ -34531,8 +34297,6 @@ entities: - 5428 - 5363 - 5317 - - type: AtmosDevice - joinedGrid: 2 - uid: 5369 components: - type: Transform @@ -34544,8 +34308,6 @@ entities: - 5177 - 5307 - 290 - - type: AtmosDevice - joinedGrid: 2 - uid: 5663 components: - type: Transform @@ -34558,8 +34320,6 @@ entities: - 6340 - 5310 - 8413 - - type: AtmosDevice - joinedGrid: 2 - uid: 7031 components: - type: Transform @@ -34580,16 +34340,12 @@ entities: - 9094 - 10733 - 281 - - type: AtmosDevice - joinedGrid: 2 - uid: 10479 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 10579 components: - type: Transform @@ -34607,8 +34363,6 @@ entities: - 8413 - 289 - 269 - - type: AtmosDevice - joinedGrid: 2 - uid: 10592 components: - type: Transform @@ -34621,8 +34375,6 @@ entities: - 10734 - 10662 - 270 - - type: AtmosDevice - joinedGrid: 2 - proto: FireAxeCabinetFilled entities: - uid: 5262 @@ -36285,6 +36037,13 @@ entities: - type: Transform pos: -1.9840181,-0.5107192 parent: 2 +- proto: FoodPoppy + entities: + - uid: 4477 + components: + - type: Transform + pos: -14.827011,-19.222872 + parent: 2 - proto: FoodTartCoco entities: - uid: 5551 @@ -36314,8 +36073,6 @@ entities: - type: Transform pos: 23.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerOxygen entities: - uid: 5554 @@ -36323,8 +36080,6 @@ entities: - type: Transform pos: 21.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMinerPlasma entities: - uid: 5555 @@ -36332,8 +36087,6 @@ entities: - type: Transform pos: 25.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasMixerFlipped entities: - uid: 5556 @@ -36342,8 +36095,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 5557 @@ -36352,8 +36103,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasOutletInjector entities: - uid: 5558 @@ -36361,8 +36110,6 @@ entities: - type: Transform pos: 7.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 5559 @@ -36370,8 +36117,6 @@ entities: - type: Transform pos: 25.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5560 @@ -36379,8 +36124,6 @@ entities: - type: Transform pos: 21.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5561 @@ -36388,8 +36131,6 @@ entities: - type: Transform pos: 23.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5562 @@ -36397,8 +36138,6 @@ entities: - type: Transform pos: 15.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5563 @@ -36406,8 +36145,6 @@ entities: - type: Transform pos: 27.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 5564 @@ -36415,15 +36152,11 @@ entities: - type: Transform pos: -14.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5565 components: - type: Transform pos: 10.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - proto: GasPassiveGate @@ -36434,8 +36167,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5400FF' - proto: GasPassiveVent @@ -36446,16 +36177,12 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5568 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 5569 @@ -36464,8 +36191,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 5570 @@ -36473,8 +36198,6 @@ entities: - type: Transform pos: 19.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#B600FFFF' - uid: 5571 @@ -36483,23 +36206,17 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5572 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 5573 components: - type: Transform pos: 28.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5574 @@ -36508,8 +36225,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#947507FF' - uid: 5575 @@ -36518,8 +36233,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 5576 @@ -36528,8 +36241,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 5577 @@ -36537,8 +36248,6 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 5578 @@ -36546,8 +36255,6 @@ entities: - type: Transform pos: -12.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPipeBend entities: - uid: 92 @@ -45956,32 +45663,24 @@ entities: - type: Transform pos: 9.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6777 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6778 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6779 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6780 @@ -45990,8 +45689,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6781 @@ -46000,24 +45697,18 @@ entities: rot: 3.141592653589793 rad pos: 8.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6782 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6783 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6784 @@ -46026,8 +45717,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6785 @@ -46036,24 +45725,18 @@ entities: rot: 3.141592653589793 rad pos: -12.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6786 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6787 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - uid: 10852 @@ -46062,8 +45745,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasPressurePump entities: - uid: 6788 @@ -46072,24 +45753,18 @@ entities: rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6789 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6790 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6791 @@ -46098,8 +45773,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6792 @@ -46108,37 +45781,27 @@ entities: rot: 3.141592653589793 rad pos: 25.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6793 components: - type: Transform pos: 26.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6794 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6795 components: - type: Transform pos: 28.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6796 components: - type: Transform pos: 14.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6797 @@ -46147,8 +45810,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6798 @@ -46157,8 +45818,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6799 @@ -46166,8 +45825,6 @@ entities: - type: Transform pos: 22.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 6800 @@ -46175,8 +45832,6 @@ entities: - type: Transform pos: 20.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#02FFD0FF' - uid: 6801 @@ -46185,8 +45840,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6802 @@ -46195,23 +45848,17 @@ entities: rot: 3.141592653589793 rad pos: -13.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6803 components: - type: Transform pos: -12.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6804 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - proto: GasThermoMachineFreezer @@ -46221,8 +45868,6 @@ entities: - type: Transform pos: -4.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6806 components: - type: Transform @@ -46230,23 +45875,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6807 components: - type: Transform pos: 17.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6808 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasThermoMachineHeater entities: - uid: 6809 @@ -46256,8 +45895,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6810 components: - type: Transform @@ -46265,16 +45902,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 2 - uid: 6811 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: GasValve entities: - uid: 6812 @@ -46285,8 +45918,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6813 @@ -46297,8 +45928,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#826003FF' - uid: 6814 @@ -46309,8 +45938,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6815 @@ -46321,8 +45948,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#7A5D04FF' - uid: 6816 @@ -46332,8 +45957,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6817 @@ -46341,8 +45964,6 @@ entities: - type: Transform pos: 19.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#B600FFFF' - uid: 6818 @@ -46353,8 +45974,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6819 @@ -46364,8 +45983,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6820 @@ -46374,8 +45991,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6821 components: - type: Transform @@ -46383,8 +45998,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6822 @@ -46394,8 +46007,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6823 @@ -46404,8 +46015,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 6824 components: - type: Transform @@ -46414,8 +46023,6 @@ entities: parent: 2 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: GasVentPump @@ -46429,8 +46036,6 @@ entities: - type: DeviceNetwork deviceLists: - 5233 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 223 @@ -46442,8 +46047,6 @@ entities: - type: DeviceNetwork deviceLists: - 6929 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6010 @@ -46455,8 +46058,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6358 @@ -46465,8 +46066,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6825 @@ -46475,8 +46074,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6826 @@ -46485,8 +46082,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6827 @@ -46495,8 +46090,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6828 @@ -46505,8 +46098,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6829 @@ -46515,8 +46106,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6830 @@ -46525,8 +46114,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6831 @@ -46535,8 +46122,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6832 @@ -46545,8 +46130,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6833 @@ -46555,8 +46138,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6834 @@ -46565,8 +46146,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6835 @@ -46575,8 +46154,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6836 @@ -46585,8 +46162,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6837 @@ -46594,8 +46169,6 @@ entities: - type: Transform pos: -2.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6838 @@ -46604,8 +46177,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6839 @@ -46614,8 +46185,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6840 @@ -46624,8 +46193,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6842 @@ -46637,8 +46204,6 @@ entities: - type: DeviceNetwork deviceLists: - 5246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6847 @@ -46646,8 +46211,6 @@ entities: - type: Transform pos: -15.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6848 @@ -46655,8 +46218,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6849 @@ -46665,8 +46226,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6850 @@ -46675,8 +46234,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6851 @@ -46685,8 +46242,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6852 @@ -46695,8 +46250,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6853 @@ -46705,8 +46258,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6854 @@ -46715,8 +46266,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6855 @@ -46725,8 +46274,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6856 @@ -46735,8 +46282,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6857 @@ -46745,8 +46290,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6858 @@ -46755,8 +46298,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6859 @@ -46765,8 +46306,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6860 @@ -46774,8 +46313,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6861 @@ -46783,8 +46320,6 @@ entities: - type: Transform pos: -9.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6862 @@ -46793,8 +46328,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6863 @@ -46803,8 +46336,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6864 @@ -46813,8 +46344,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6866 @@ -46823,8 +46352,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6867 @@ -46832,8 +46359,6 @@ entities: - type: Transform pos: -2.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6868 @@ -46842,8 +46367,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6869 @@ -46852,8 +46375,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6870 @@ -46861,8 +46382,6 @@ entities: - type: Transform pos: -9.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6872 @@ -46870,8 +46389,6 @@ entities: - type: Transform pos: -24.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6874 @@ -46880,8 +46397,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6875 @@ -46890,8 +46405,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6876 @@ -46900,8 +46413,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6877 @@ -46909,8 +46420,6 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6878 @@ -46919,8 +46428,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6879 @@ -46929,8 +46436,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6880 @@ -46939,8 +46444,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6881 @@ -46949,8 +46452,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6882 @@ -46959,8 +46460,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6883 @@ -46969,8 +46468,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6885 @@ -46979,8 +46476,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6886 @@ -46989,8 +46484,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6887 @@ -46999,8 +46492,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6888 @@ -47008,8 +46499,6 @@ entities: - type: Transform pos: 24.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6889 @@ -47018,8 +46507,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6890 @@ -47028,8 +46515,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6891 @@ -47038,8 +46523,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6892 @@ -47048,8 +46531,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6893 @@ -47058,8 +46539,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6894 @@ -47068,8 +46547,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6895 @@ -47078,8 +46555,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6896 @@ -47088,8 +46563,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6897 @@ -47098,8 +46571,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6898 @@ -47107,8 +46578,6 @@ entities: - type: Transform pos: 7.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6899 @@ -47117,8 +46586,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6900 @@ -47127,8 +46594,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6901 @@ -47136,8 +46601,6 @@ entities: - type: Transform pos: -14.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6902 @@ -47146,8 +46609,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6903 @@ -47155,8 +46616,6 @@ entities: - type: Transform pos: -0.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6904 @@ -47165,8 +46624,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6906 @@ -47175,8 +46632,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6907 @@ -47185,8 +46640,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6908 @@ -47195,8 +46648,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6909 @@ -47205,8 +46656,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6910 @@ -47215,8 +46664,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 6911 @@ -47225,8 +46672,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9590 @@ -47237,8 +46682,6 @@ entities: - type: DeviceNetwork deviceLists: - 10578 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10486 @@ -47246,8 +46689,6 @@ entities: - type: Transform pos: -18.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10551 @@ -47258,8 +46699,6 @@ entities: - type: DeviceNetwork deviceLists: - 25 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10574 @@ -47271,8 +46710,6 @@ entities: - type: DeviceNetwork deviceLists: - 26 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10576 @@ -47283,8 +46720,6 @@ entities: - type: DeviceNetwork deviceLists: - 27 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10577 @@ -47296,8 +46731,6 @@ entities: - type: DeviceNetwork deviceLists: - 10622 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10946 @@ -47308,8 +46741,6 @@ entities: - type: DeviceNetwork deviceLists: - 10944 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -47323,8 +46754,6 @@ entities: - type: DeviceNetwork deviceLists: - 6929 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 218 @@ -47336,8 +46765,6 @@ entities: - type: DeviceNetwork deviceLists: - 5246 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 252 @@ -47349,8 +46776,6 @@ entities: - type: DeviceNetwork deviceLists: - 5233 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 3600 @@ -47359,8 +46784,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6011 @@ -47372,8 +46795,6 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6308 @@ -47385,8 +46806,6 @@ entities: - type: DeviceNetwork deviceLists: - 25 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6360 @@ -47394,8 +46813,6 @@ entities: - type: Transform pos: -25.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6582 @@ -47404,8 +46821,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6912 @@ -47414,8 +46829,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6913 @@ -47424,8 +46837,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6914 @@ -47434,8 +46845,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6915 @@ -47444,8 +46853,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6916 @@ -47454,8 +46861,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6917 @@ -47464,8 +46869,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6919 @@ -47474,8 +46877,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6920 @@ -47483,8 +46884,6 @@ entities: - type: Transform pos: 4.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6921 @@ -47493,8 +46892,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6922 @@ -47503,8 +46900,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6923 @@ -47513,8 +46908,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6924 @@ -47522,8 +46915,6 @@ entities: - type: Transform pos: -2.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6925 @@ -47532,8 +46923,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6926 @@ -47542,8 +46931,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6927 @@ -47551,8 +46938,6 @@ entities: - type: Transform pos: -3.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6934 @@ -47561,8 +46946,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6935 @@ -47570,8 +46953,6 @@ entities: - type: Transform pos: -1.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6936 @@ -47580,8 +46961,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6937 @@ -47590,8 +46969,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6938 @@ -47600,8 +46977,6 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6939 @@ -47610,8 +46985,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6940 @@ -47619,8 +46992,6 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6941 @@ -47629,8 +47000,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6942 @@ -47639,8 +47008,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6943 @@ -47649,8 +47016,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6944 @@ -47659,8 +47024,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6945 @@ -47669,8 +47032,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6946 @@ -47679,8 +47040,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6947 @@ -47688,8 +47047,6 @@ entities: - type: Transform pos: -7.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6948 @@ -47697,8 +47054,6 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6949 @@ -47707,8 +47062,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6950 @@ -47717,8 +47070,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6951 @@ -47727,8 +47078,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6952 @@ -47737,8 +47086,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6953 @@ -47747,8 +47094,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,20.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6954 @@ -47757,8 +47102,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6955 @@ -47767,8 +47110,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6956 @@ -47777,8 +47118,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 6957 @@ -47786,8 +47125,6 @@ entities: - type: Transform pos: -1.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6958 @@ -47795,8 +47132,6 @@ entities: - type: Transform pos: -10.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6959 @@ -47805,8 +47140,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6960 @@ -47814,8 +47147,6 @@ entities: - type: Transform pos: 4.5,13.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6964 @@ -47824,8 +47155,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,7.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6965 @@ -47833,8 +47162,6 @@ entities: - type: Transform pos: 6.5,6.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6966 @@ -47843,8 +47170,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6967 @@ -47853,8 +47178,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6968 @@ -47863,8 +47186,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6971 @@ -47872,8 +47193,6 @@ entities: - type: Transform pos: -18.5,-3.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6972 @@ -47882,8 +47201,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6973 @@ -47891,8 +47208,6 @@ entities: - type: Transform pos: -5.5,46.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6974 @@ -47901,8 +47216,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-27.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6975 @@ -47911,8 +47224,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6976 @@ -47921,8 +47232,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6977 @@ -47931,8 +47240,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6978 @@ -47941,8 +47248,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6979 @@ -47951,8 +47256,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6980 @@ -47961,8 +47264,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-16.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6981 @@ -47971,8 +47272,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-23.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6982 @@ -47981,8 +47280,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,31.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6983 @@ -47991,8 +47288,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6984 @@ -48001,8 +47296,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6985 @@ -48011,8 +47304,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6986 @@ -48021,8 +47312,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6987 @@ -48031,8 +47320,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6988 @@ -48041,8 +47328,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6989 @@ -48051,8 +47336,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,18.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6990 @@ -48061,8 +47344,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6991 @@ -48070,8 +47351,6 @@ entities: - type: Transform pos: 0.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6992 @@ -48079,8 +47358,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6994 @@ -48089,8 +47366,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6995 @@ -48099,8 +47374,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9591 @@ -48112,8 +47385,6 @@ entities: - type: DeviceNetwork deviceLists: - 10578 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10442 @@ -48125,8 +47396,6 @@ entities: - type: DeviceNetwork deviceLists: - 26 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10473 @@ -48134,8 +47403,6 @@ entities: - type: Transform pos: -19.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10573 @@ -48147,8 +47414,6 @@ entities: - type: DeviceNetwork deviceLists: - 10622 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10575 @@ -48159,8 +47424,6 @@ entities: - type: DeviceNetwork deviceLists: - 27 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10947 @@ -48172,8 +47435,6 @@ entities: - type: DeviceNetwork deviceLists: - 10944 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -48184,8 +47445,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6997 @@ -48193,8 +47452,6 @@ entities: - type: Transform pos: 3.5,35.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 6998 @@ -48202,8 +47459,6 @@ entities: - type: Transform pos: 8.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5900FF' - uid: 6999 @@ -48212,8 +47467,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: GeneratorBasic @@ -50906,8 +50159,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 7537 @@ -50916,8 +50167,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - uid: 7538 @@ -50925,8 +50174,6 @@ entities: - type: Transform pos: 9.5,38.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF5400FF' - uid: 7539 @@ -50935,8 +50182,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,37.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#00B3B7FF' - proto: HighSecCommandLocked @@ -51195,6 +50440,13 @@ entities: - type: Transform pos: 0.5,-9.5 parent: 2 +- proto: Jukebox + entities: + - uid: 10134 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 - proto: KitchenDeepFryer entities: - uid: 7576 @@ -52249,15 +51501,11 @@ entities: - type: Transform pos: 11.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7728 components: - type: Transform pos: 11.5,32.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: NuclearBomb entities: - uid: 7729 @@ -52326,50 +51574,36 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7736 components: - type: Transform pos: 5.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7737 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7738 components: - type: Transform pos: 21.5,39.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7740 components: - type: Transform pos: -16.5,22.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7741 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7742 components: - type: Transform pos: 33.5,17.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Paper entities: - uid: 7743 @@ -52816,15 +52050,19 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 7810 components: - type: Transform pos: 5.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 9755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 7811 @@ -60632,50 +59870,36 @@ entities: - type: Transform pos: 27.5,29.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9032 components: - type: Transform pos: 27.5,30.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9033 components: - type: Transform pos: 20.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9034 components: - type: Transform pos: 21.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9035 components: - type: Transform pos: 22.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9036 components: - type: Transform pos: 10.5,28.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 9037 components: - type: Transform pos: 17.5,2.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: Stunbaton entities: - uid: 9038 @@ -62689,8 +61913,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,33.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - proto: TegCirculator entities: - uid: 9348 @@ -69943,12 +69165,6 @@ entities: - type: Transform pos: 21.5,-14.5 parent: 2 - - uid: 10702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 2 - uid: 10703 components: - type: Transform diff --git a/Resources/Maps/shoukou.yml b/Resources/Maps/shoukou.yml index 8929313a710..aae6d1c316e 100644 --- a/Resources/Maps/shoukou.yml +++ b/Resources/Maps/shoukou.yml @@ -7122,7 +7122,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml index 05634215965..3f70bc93d27 100644 --- a/Resources/Maps/submarine.yml +++ b/Resources/Maps/submarine.yml @@ -195,7 +195,7 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: bgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAADIAAAAAACTwAAAAACIAAAAAADVAAAAAABfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAMgAAAAAAVAAAAAADIAAAAAACTwAAAAADIAAAAAACVAAAAAADfwAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAABIAAAAAADTwAAAAADIAAAAAACVAAAAAAAUAAAAAAADgAAAAABbwAAAAADbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAACIAAAAAADIAAAAAAAVAAAAAADUAAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAABIAAAAAAAIAAAAAACIAAAAAACVAAAAAADfwAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADUAAAAAAATwAAAAADUAAAAAAAVAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAfwAAAAAAVAAAAAACIQAAAAACIQAAAAACIQAAAAAAJQAAAAABIQAAAAACIQAAAAACfwAAAAAAIQAAAAABIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAADIQAAAAABTwAAAAABVAAAAAACIQAAAAACIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACfwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAADTwAAAAABVAAAAAAAIQAAAAACJQAAAAADJQAAAAAAIQAAAAACfwAAAAAAIQAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAVAAAAAACIQAAAAABJQAAAAABJQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAABfwAAAAAAJQAAAAADIQAAAAADJQAAAAADJQAAAAADIQAAAAAATwAAAAAAJQAAAAABfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAADTwAAAAACIQAAAAADIQAAAAACIQAAAAACIQAAAAADIQAAAAACTwAAAAADJQAAAAADfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAABTwAAAAABIQAAAAADIQAAAAADIQAAAAABIQAAAAACIQAAAAACTwAAAAADIAAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACTwAAAAACIQAAAAABIQAAAAADJQAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADfwAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAADfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACDAAAAAACDAAAAAABDAAAAAADDAAAAAABXgAAAAACXgAAAAADXgAAAAADfwAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAACfwAAAAAAXgAAAAAA + tiles: bgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAADIAAAAAACTwAAAAACIAAAAAADVAAAAAABfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAMgAAAAAAVAAAAAADIAAAAAACTwAAAAADIAAAAAACVAAAAAADfwAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAABIAAAAAADTwAAAAADIAAAAAACVAAAAAAAUAAAAAAADgAAAAABbwAAAAADbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAAAIAAAAAACIAAAAAADIAAAAAAAVAAAAAADUAAAAAAADgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAVAAAAAABIAAAAAAAIAAAAAACIAAAAAACVAAAAAADfwAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADUAAAAAAATwAAAAADUAAAAAAAVAAAAAAAfwAAAAAAUAAAAAAATwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAfwAAAAAAVAAAAAACIQAAAAACIQAAAAACIQAAAAAAJQAAAAABIQAAAAACIQAAAAACfwAAAAAAIQAAAAABIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAADIQAAAAABTwAAAAABVAAAAAACIQAAAAACIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACfwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAABIQAAAAABIQAAAAACIQAAAAADTwAAAAABVAAAAAAAIQAAAAACJQAAAAADJQAAAAAAIQAAAAACfwAAAAAAIQAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAVAAAAAACIQAAAAABJQAAAAABJQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAABfwAAAAAAJQAAAAADIQAAAAADJQAAAAADJQAAAAADIQAAAAAATwAAAAAAJQAAAAABfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAADTwAAAAACIQAAAAADIQAAAAACIQAAAAACIQAAAAADIQAAAAACTwAAAAADJQAAAAADfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAABTwAAAAABIQAAAAADIQAAAAADIQAAAAABIQAAAAACIQAAAAACTwAAAAADIAAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACTwAAAAACIQAAAAABIQAAAAADJQAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADfwAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAADfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAACDAAAAAACDAAAAAABDAAAAAADDAAAAAABXgAAAAACXgAAAAADXgAAAAADfwAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAACfwAAAAAAXgAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -215,11 +215,11 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: NAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAADfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAABbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAADAAAAAADDAAAAAABawAAAAACawAAAAABawAAAAAADAAAAAACMgAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAawAAAAADawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAABawAAAAABDAAAAAACDAAAAAABDAAAAAAAfwAAAAAAfwAAAAAADAAAAAABAQAAAAAAawAAAAADawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAAAawAAAAACawAAAAAADAAAAAADDAAAAAADfwAAAAAADAAAAAABawAAAAAAawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAABDAAAAAADTwAAAAAAawAAAAABawAAAAACawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPgAAAAAAawAAAAACawAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAADAAAAAABawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAMgAAAAAAawAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAawAAAAABawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAACawAAAAACawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA + tiles: NAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAADfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAABbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAADAAAAAADDAAAAAABawAAAAACawAAAAABawAAAAAADAAAAAACMgAAAAAADAAAAAADMgAAAAAADAAAAAAAfwAAAAAAfwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAawAAAAADawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAABawAAAAABDAAAAAACDAAAAAABDAAAAAAAfwAAAAAAfwAAAAAADAAAAAABAQAAAAAAawAAAAADawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAAAawAAAAACawAAAAAADAAAAAADDAAAAAADfwAAAAAADAAAAAABawAAAAAAawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAABDAAAAAADTwAAAAAAawAAAAABawAAAAACawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPgAAAAAAawAAAAACawAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAADawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAADAAAAAABawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAMgAAAAAAawAAAAADawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAawAAAAABawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAACawAAAAACawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA version: 6 0,2: ind: 0,2 - tiles: XgAAAAADawAAAAACXgAAAAABfwAAAAAAbwAAAAAAbwAAAAABbgAAAAAAbwAAAAADbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAXgAAAAADawAAAAABXgAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAADAAAAAAAawAAAAAAXgAAAAACUAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABUAAAAAAADAAAAAAADAAAAAACDAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAADAAAAAACawAAAAABXgAAAAABUAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADUAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAADAAAAAACawAAAAAAXgAAAAABfwAAAAAAIAAAAAABTwAAAAAATwAAAAACIAAAAAADfwAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAABfwAAAAAAXgAAAAACawAAAAABXgAAAAADTwAAAAABIAAAAAAATwAAAAADTwAAAAAAIAAAAAADTwAAAAABTwAAAAACTwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAAAXgAAAAADawAAAAACXgAAAAACTwAAAAACIAAAAAACTwAAAAADTwAAAAABIAAAAAADTwAAAAACTwAAAAADTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAACTwAAAAACaQAAAAAAaQAAAAADaQAAAAADfwAAAAAAIAAAAAADTwAAAAADTwAAAAACIAAAAAABfwAAAAAATwAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABfwAAAAAAVAAAAAACVAAAAAAAVAAAAAABUAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAAATwAAAAACTwAAAAADTwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAADTwAAAAACTwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAADVAAAAAACfwAAAAAANAAAAAAAfwAAAAAANAAAAAAANAAAAAAATwAAAAACewAAAAACewAAAAADewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAADaQAAAAACaQAAAAAAaQAAAAACfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAXgAAAAADawAAAAABXgAAAAACXgAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAB + tiles: XgAAAAADawAAAAACXgAAAAABfwAAAAAAbwAAAAAAbwAAAAABbgAAAAAAbwAAAAADbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAXgAAAAADawAAAAABXgAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAADAAAAAAAawAAAAAAXgAAAAACUAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABUAAAAAAADAAAAAAADAAAAAACDAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAADAAAAAACawAAAAABXgAAAAABUAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAADUAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAADAAAAAACawAAAAAAXgAAAAABfwAAAAAAIAAAAAABTwAAAAAATwAAAAACIAAAAAADfwAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAABfwAAAAAAXgAAAAACawAAAAABXgAAAAADTwAAAAABIAAAAAAATwAAAAADTwAAAAAAIAAAAAADTwAAAAABTwAAAAACTwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAAAXgAAAAADawAAAAACXgAAAAACTwAAAAACIAAAAAACTwAAAAADTwAAAAABIAAAAAADTwAAAAACTwAAAAADTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAACTwAAAAACaQAAAAAAaQAAAAADaQAAAAADfwAAAAAAIAAAAAADTwAAAAADTwAAAAACIAAAAAABfwAAAAAATwAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABfwAAAAAAVAAAAAACVAAAAAAAVAAAAAABUAAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAAATwAAAAACTwAAAAADTwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAADTwAAAAACTwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAADVAAAAAACTwAAAAAANAAAAAAAfwAAAAAANAAAAAAANAAAAAAATwAAAAACewAAAAACewAAAAADewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAADaQAAAAACaQAAAAAAaQAAAAACfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAAAXgAAAAADawAAAAABXgAAAAACXgAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAB version: 6 0,-3: ind: 0,-3 @@ -279,7 +279,7 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAADIAAAAAACIAAAAAACIAAAAAADTwAAAAADIQAAAAAAIQAAAAABIQAAAAABIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAADIAAAAAADIAAAAAAATwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAADbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAAAIAAAAAACIAAAAAAAIAAAAAADTwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAABIAAAAAABIAAAAAABTwAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAABIAAAAAACIAAAAAABTwAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAABfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAVAAAAAAAVAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAABTwAAAAACOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAAATwAAAAACTwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAA + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAADIAAAAAACIAAAAAACIAAAAAADTwAAAAADIQAAAAAAIQAAAAABIQAAAAABIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAADIAAAAAADIAAAAAAATwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAADbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAAAIAAAAAACIAAAAAAAIAAAAAADTwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAABIAAAAAABIAAAAAABTwAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAABbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAABIAAAAAABIAAAAAACIAAAAAABTwAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAABfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAVAAAAAAAVAAAAAACfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAABTwAAAAACOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAAATwAAAAACTwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAA version: 6 4,2: ind: 4,2 @@ -299,7 +299,7 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAADAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIQAAAAABfwAAAAAAAAAAAAAADAAAAAABMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAABfwAAAAAAAAAAAAAAawAAAAADawAAAAADMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAawAAAAADawAAAAADMgAAAAAADAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAAAfwAAAAAAfwAAAAAAVAAAAAACDQAAAAAAawAAAAACawAAAAADMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAADMgAAAAAADAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABUAAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADfwAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAABawAAAAADIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAADTwAAAAABfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAABIQAAAAACIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADUAAAAAAAfwAAAAAA + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAADAAAAAAAMgAAAAAAMgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIQAAAAABfwAAAAAAAAAAAAAADAAAAAABMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAACfwAAAAAAIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAABfwAAAAAAAAAAAAAAawAAAAADawAAAAADMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAawAAAAADawAAAAADMgAAAAAADAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAAAfwAAAAAAfwAAAAAAVAAAAAACDQAAAAAAawAAAAACawAAAAADMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAADMgAAAAAADAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABUAAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAADfwAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAACawAAAAADawAAAAABawAAAAADIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAADTwAAAAABfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAAAawAAAAABawAAAAABIQAAAAACIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAIQAAAAADUAAAAAAAfwAAAAAA version: 6 -5,2: ind: -5,2 @@ -311,15 +311,15 @@ entities: version: 6 -5,0: ind: -5,0 - tiles: RAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAAAfwAAAAAADgAAAAABDgAAAAABDgAAAAAAfwAAAAAAbwAAAAABfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAACFgAAAAACDgAAAAABDgAAAAAADgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAADgAAAAABDgAAAAADDgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAATwAAAAADewAAAAACewAAAAABewAAAAABfwAAAAAADgAAAAACDgAAAAADDgAAAAACfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAUAAAAAAATwAAAAADUAAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAAATwAAAAACTwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABXgAAAAACXgAAAAABXgAAAAABTwAAAAABTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAACawAAAAABawAAAAACawAAAAAATwAAAAABTwAAAAABXgAAAAABXgAAAAAAVwAAAAABXgAAAAADXgAAAAABTwAAAAAATwAAAAACXgAAAAAAXgAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAACawAAAAACTwAAAAADTwAAAAADXgAAAAADVwAAAAACVwAAAAADVwAAAAABXgAAAAACTwAAAAADTwAAAAAAawAAAAABawAAAAACawAAAAABawAAAAACawAAAAACawAAAAABawAAAAAATwAAAAABTwAAAAADXgAAAAABXgAAAAABVwAAAAABXgAAAAADXgAAAAABTwAAAAAATwAAAAACXgAAAAAAXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAACTwAAAAACXgAAAAAAXgAAAAABXgAAAAABTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAVAAAAAACVAAAAAABVAAAAAADUAAAAAAAfwAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAADTwAAAAADTwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAVAAAAAACVAAAAAADVAAAAAABUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAVAAAAAACVAAAAAABVAAAAAACUAAAAAAAfwAAAAAADgAAAAACDgAAAAACDgAAAAACfwAAAAAAewAAAAACewAAAAADewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAVAAAAAABVAAAAAABVAAAAAADUAAAAAAAUAAAAAAADgAAAAACDgAAAAACDgAAAAADTwAAAAABewAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAAbwAAAAABawAAAAABUAAAAAAAEgAAAAAAUAAAAAAAawAAAAABUAAAAAAADgAAAAACDgAAAAACfwAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAACfwAAAAAAfwAAAAAAbgAAAAAA + tiles: RAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAAAfwAAAAAADgAAAAABDgAAAAABDgAAAAAAfwAAAAAAbwAAAAABfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAACFgAAAAACDgAAAAABDgAAAAAADgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAADfwAAAAAADgAAAAABDgAAAAADDgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAATwAAAAADewAAAAACewAAAAABewAAAAABfwAAAAAADgAAAAACDgAAAAADDgAAAAACfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAAATwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAAATwAAAAACTwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAABTwAAAAABXgAAAAACXgAAAAABXgAAAAABTwAAAAABTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAACawAAAAABawAAAAACawAAAAAATwAAAAABTwAAAAABXgAAAAABXgAAAAAAVwAAAAABXgAAAAADXgAAAAABTwAAAAAATwAAAAACXgAAAAAAXgAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAACawAAAAACTwAAAAADTwAAAAADXgAAAAADVwAAAAACVwAAAAADVwAAAAABXgAAAAACTwAAAAADTwAAAAAAawAAAAABawAAAAACawAAAAABawAAAAACawAAAAACawAAAAABawAAAAAATwAAAAABTwAAAAADXgAAAAABXgAAAAABVwAAAAABXgAAAAADXgAAAAABTwAAAAAATwAAAAACXgAAAAAAXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAACTwAAAAACXgAAAAAAXgAAAAABXgAAAAABTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAVAAAAAACVAAAAAABVAAAAAADUAAAAAAAfwAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAADTwAAAAADTwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAVAAAAAACVAAAAAADVAAAAAABUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAUAAAAAAAVAAAAAACVAAAAAABVAAAAAACUAAAAAAAfwAAAAAADgAAAAACDgAAAAACDgAAAAACfwAAAAAAewAAAAACewAAAAADewAAAAADfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAVAAAAAABVAAAAAABVAAAAAADUAAAAAAAUAAAAAAADgAAAAACDgAAAAACDgAAAAADTwAAAAABewAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAAbwAAAAABawAAAAABUAAAAAAAEgAAAAAAUAAAAAAAawAAAAABUAAAAAAADgAAAAACDgAAAAACfwAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAACfwAAAAAAfwAAAAAAbgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAXAAAAAAGUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXAAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXAAAAAAAXAAAAAAMUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAADfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAADwAAAAAAbgAAAAAAfwAAAAAAXgAAAAACfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAANAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAADDgAAAAAADgAAAAADTwAAAAAAbwAAAAADfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAXAAAAAAGUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXAAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXAAAAAAAXAAAAAAMUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAADfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAADwAAAAAAbgAAAAAAfwAAAAAAXgAAAAACfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAANAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAADDgAAAAAADgAAAAADTwAAAAAAbwAAAAADfwAAAAAA version: 6 -6,0: ind: -6,0 - tiles: bgAAAAAATwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAADXgAAAAABfwAAAAAARAAAAAAARAAAAAAATwAAAAACTwAAAAACTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABfwAAAAAARAAAAAAARAAAAAAAbgAAAAAATwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAACXgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAABfwAAAAAAfwAAAAAAFwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAXgAAAAABTwAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAACawAAAAADTwAAAAADawAAAAADawAAAAACTwAAAAADawAAAAABawAAAAACTwAAAAADawAAAAAAXgAAAAACTwAAAAAAawAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAABawAAAAABTwAAAAAAawAAAAABTwAAAAADTwAAAAAATwAAAAAAawAAAAABTwAAAAAAawAAAAABXgAAAAADTwAAAAACawAAAAACawAAAAAAawAAAAABawAAAAABawAAAAACawAAAAAATwAAAAACawAAAAAAawAAAAAATwAAAAACawAAAAAAawAAAAABTwAAAAADawAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAATwAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAAAXgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAATwAAAAADTwAAAAACTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAABXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAA + tiles: bgAAAAAATwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAADXgAAAAABfwAAAAAARAAAAAAARAAAAAAATwAAAAACTwAAAAACTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABfwAAAAAARAAAAAAARAAAAAAAbgAAAAAATwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAACXgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAATwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAABfwAAAAAAfwAAAAAAFwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAXgAAAAABTwAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAACawAAAAADTwAAAAADawAAAAADawAAAAACTwAAAAADawAAAAABawAAAAACTwAAAAADawAAAAAAXgAAAAACTwAAAAAAawAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAABawAAAAABTwAAAAAAawAAAAABTwAAAAADTwAAAAAATwAAAAAAawAAAAABTwAAAAAAawAAAAABXgAAAAADTwAAAAACawAAAAACawAAAAAAawAAAAABawAAAAABawAAAAACawAAAAAATwAAAAACawAAAAAAawAAAAAATwAAAAACawAAAAAAawAAAAABTwAAAAADawAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAATwAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAABUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAAAXgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAATwAAAAADTwAAAAACTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAABXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAA version: 6 -6,1: ind: -6,1 @@ -367,7 +367,7 @@ entities: version: 6 5,-1: ind: 5,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAACVAAAAAACVAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAVAAAAAACVAAAAAADVAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADVAAAAAAAVAAAAAADTwAAAAABfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABVAAAAAADVAAAAAADTwAAAAABfwAAAAAABAAAAAAABAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABAAAAAAABAAAAAAAbgAAAAAAbgAAAAAAawAAAAACawAAAAABawAAAAADawAAAAAAawAAAAADbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAawAAAAAAawAAAAAAawAAAAABawAAAAABawAAAAADbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAawAAAAABawAAAAADawAAAAABawAAAAABawAAAAABbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAawAAAAACawAAAAAAawAAAAABawAAAAACawAAAAACbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAbgAAAAAATwAAAAACawAAAAABawAAAAAAawAAAAADawAAAAABawAAAAADbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAAATwAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAACVAAAAAACVAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAVAAAAAACVAAAAAADVAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADVAAAAAAAVAAAAAADTwAAAAABfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABVAAAAAADVAAAAAADTwAAAAABfwAAAAAABAAAAAAABAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAABAAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABAAAAAAABAAAAAAAbgAAAAAAbgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAbgAAAAAATwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAAATwAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 @@ -447,11 +447,11 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: PAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAACPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAABTwAAAAACPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAACVAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAADKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAACcgAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAAATwAAAAACKwAAAAADKwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAADcgAAAAAATwAAAAABewAAAAAAewAAAAADewAAAAABewAAAAADewAAAAAATwAAAAABKwAAAAAAKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAABfwAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAABewAAAAAAfwAAAAAAKwAAAAAAKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAAAUAAAAAAAKwAAAAABKwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAADUAAAAAAAKwAAAAADKwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAACewAAAAAAewAAAAABewAAAAABfwAAAAAAUAAAAAAAUAAAAAAA + tiles: PAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAACPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAACVAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAVAAAAAAAVAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAADKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAACcgAAAAADfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAAATwAAAAACKwAAAAADKwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAADcgAAAAAATwAAAAABewAAAAAAewAAAAADewAAAAABewAAAAADewAAAAAATwAAAAABKwAAAAAAKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAABfwAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAABewAAAAAAfwAAAAAAKwAAAAAAKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAAAUAAAAAAAKwAAAAABKwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAADUAAAAAAAKwAAAAADKwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAACewAAAAAAewAAAAABewAAAAABfwAAAAAAUAAAAAAAUAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: TwAAAAADTwAAAAAATwAAAAAATwAAAAABVAAAAAADIAAAAAABIAAAAAACUAAAAAAAQwAAAAAAQwAAAAAATwAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAABIQAAAAAATwAAAAAATwAAAAACTwAAAAAATwAAAAAAVAAAAAACIAAAAAADIAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAIAAAAAADIQAAAAACIQAAAAABIQAAAAACIQAAAAACIQAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAACVAAAAAACIAAAAAADIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAATwAAAAAAIQAAAAABIQAAAAACIQAAAAAAIQAAAAADIQAAAAABVAAAAAAAVAAAAAABVAAAAAABTwAAAAADVAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAATwAAAAADIQAAAAADIQAAAAABIQAAAAABIQAAAAADIQAAAAABVAAAAAADVAAAAAADVAAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAABeAAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAADcgAAAAABcgAAAAABcgAAAAABfwAAAAAAMgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAeAAAAAAAeAAAAAABeAAAAAABfwAAAAAAcgAAAAADcgAAAAAAcgAAAAABcgAAAAACcgAAAAADcgAAAAACTwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAACeAAAAAADeAAAAAADTwAAAAADcgAAAAABcgAAAAADTwAAAAACTwAAAAACcgAAAAABcgAAAAAATwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAACeAAAAAADfwAAAAAAcgAAAAADcgAAAAABTwAAAAACTwAAAAADcgAAAAABcgAAAAADTwAAAAADMgAAAAAAcQAAAAAAcQAAAAAAcQAAAAABUAAAAAAAeAAAAAACeAAAAAACeAAAAAABUAAAAAAAcgAAAAABcgAAAAAAcgAAAAACcgAAAAAAcgAAAAAAcgAAAAABTwAAAAACMgAAAAAAcQAAAAAAcQAAAAACcQAAAAADUAAAAAAAeAAAAAACeAAAAAADeAAAAAACUAAAAAAAcgAAAAACcgAAAAACcgAAAAAAcgAAAAACcgAAAAAAcgAAAAAATwAAAAADMgAAAAAAcQAAAAAAcQAAAAACcQAAAAABTwAAAAACeAAAAAAAeAAAAAAAeAAAAAAATwAAAAACTwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAACTwAAAAADfwAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAcQAAAAABTwAAAAADeAAAAAAAeAAAAAAAeAAAAAADTwAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADTwAAAAACfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAABUAAAAAAAeAAAAAAAeAAAAAAAeAAAAAACTwAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABTwAAAAABeAAAAAACeAAAAAABcQAAAAAAcQAAAAACcQAAAAAAUAAAAAAAeAAAAAABTwAAAAACeAAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAACTwAAAAAAeAAAAAADeAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADTwAAAAABeAAAAAACeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAAB + tiles: TwAAAAADTwAAAAAATwAAAAAATwAAAAABVAAAAAADIAAAAAABIAAAAAACUAAAAAAAQwAAAAAAQwAAAAAATwAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAABIQAAAAAATwAAAAAATwAAAAACTwAAAAAATwAAAAAAVAAAAAACIAAAAAADIAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAIAAAAAADIQAAAAACIQAAAAABIQAAAAACIQAAAAACIQAAAAABVAAAAAAAVAAAAAAAVAAAAAAATwAAAAACVAAAAAACIAAAAAADIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAATwAAAAAAIQAAAAABIQAAAAACIQAAAAAAIQAAAAADIQAAAAABVAAAAAAAVAAAAAABVAAAAAABTwAAAAADVAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAATwAAAAADIQAAAAADIQAAAAABIQAAAAABIQAAAAADIQAAAAABVAAAAAADVAAAAAADVAAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAABeAAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAADcgAAAAABcgAAAAABcgAAAAABfwAAAAAAMgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAeAAAAAAAeAAAAAABeAAAAAABfwAAAAAAcgAAAAADcgAAAAAAcgAAAAABcgAAAAACcgAAAAADcgAAAAACTwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAACeAAAAAADeAAAAAADTwAAAAADcgAAAAABcgAAAAADTwAAAAACTwAAAAACcgAAAAABcgAAAAAATwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAACeAAAAAADfwAAAAAAcgAAAAADcgAAAAABTwAAAAACTwAAAAADcgAAAAABcgAAAAADTwAAAAADMgAAAAAAcQAAAAAAcQAAAAAAcQAAAAABUAAAAAAAeAAAAAACeAAAAAACeAAAAAABUAAAAAAAcgAAAAABcgAAAAAAcgAAAAACcgAAAAAAcgAAAAAAcgAAAAABTwAAAAACMgAAAAAAcQAAAAAAcQAAAAACcQAAAAADUAAAAAAAeAAAAAACeAAAAAADeAAAAAACUAAAAAAAcgAAAAACcgAAAAACcgAAAAAAcgAAAAACcgAAAAAAcgAAAAAATwAAAAADMgAAAAAAcQAAAAAAcQAAAAACcQAAAAABTwAAAAACeAAAAAAAeAAAAAAAeAAAAAAATwAAAAACTwAAAAACTwAAAAAATwAAAAABTwAAAAADTwAAAAACTwAAAAADfwAAAAAAMgAAAAAAcQAAAAAAcQAAAAAAcQAAAAABTwAAAAADeAAAAAAAeAAAAAAAeAAAAAADTwAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADTwAAAAACfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAABUAAAAAAAeAAAAAAAeAAAAAAAeAAAAAACTwAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABTwAAAAABeAAAAAACeAAAAAABcQAAAAAAcQAAAAACcQAAAAAAUAAAAAAAeAAAAAABTwAAAAACeAAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAACTwAAAAAAeAAAAAADeAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADTwAAAAABeAAAAAACeAAAAAACeAAAAAADeAAAAAABeAAAAAABeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAAB version: 6 -5,3: ind: -5,3 @@ -475,7 +475,7 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAAATwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 @@ -1210,6 +1210,8 @@ entities: 7362: -42,9 7363: -42,8 7364: -37,12 + 7365: 83,-6 + 7366: 85,-6 - node: color: '#B02E26FF' id: BoxGreyscale @@ -10349,877 +10351,1150 @@ entities: tiles: 0,0: 0: 65535 + 0,-1: + 0: 65527 + -1,0: + 0: 65535 0,1: + 0: 32759 + -1,1: 0: 65535 0,2: + 0: 65527 + -1,2: + 0: 48048 + 0,3: 0: 65535 - 1,0: + -1,3: + 0: 48059 + 0,4: 0: 65535 + 1,0: + 0: 63479 1,1: - 0: 65535 + 0: 32627 + 1,-1: + 0: 30576 1,2: - 0: 65535 + 0: 61152 + 1,3: + 0: 61166 + 1,4: + 0: 64782 2,0: - 0: 65535 + 0: 30583 2,1: - 0: 65535 + 0: 32631 2,2: + 0: 65522 + 2,3: 0: 65535 + 2,-1: + 0: 32626 + 2,4: + 0: 28799 3,0: - 0: 65535 + 0: 65519 3,1: - 0: 65535 + 0: 65527 3,2: 0: 65535 + 3,3: + 0: 65535 + 3,-1: + 0: 65528 + 3,4: + 0: 4095 + 4,0: + 0: 48057 + 4,1: + 0: 57297 + 4,2: + 0: 65529 + 4,3: + 0: 65535 0,-4: 0: 65535 + 0,-5: + 0: 65527 + -1,-4: + 0: 56831 0,-3: 0: 65535 + -1,-3: + 0: 48057 0,-2: 0: 65535 - 0,-1: - 0: 65535 + -1,-2: + 0: 49151 + -1,-1: + 0: 65520 1,-4: - 0: 65535 + 0: 53759 1,-3: - 0: 65535 + 0: 4092 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 61438 + 1,-5: + 0: 61776 2,-4: - 0: 65535 + 0: 11007 2,-3: - 0: 65535 + 0: 59238 2,-2: - 0: 65535 - 2,-1: - 0: 65535 + 0: 61286 + 2,-5: + 0: 65532 3,-4: - 0: 65535 + 0: 15295 3,-3: - 0: 65535 + 0: 48059 3,-2: + 0: 48011 + 3,-5: 0: 65535 - 3,-1: + 4,-4: + 0: 49151 + 4,-3: 0: 65535 + 4,-2: + 0: 65471 + 4,-1: + 0: 16383 + -4,-4: + 0: 16383 + -4,-5: + 0: 63743 + -5,-4: + 0: 36863 + -4,-3: + 0: 30583 + -5,-3: + 0: 56797 + -4,-2: + 0: 63255 + -5,-2: + 0: 65293 + -4,-1: + 0: 30576 + -5,-1: + 0: 56784 + -4,0: + 0: 65527 -3,-4: - 0: 65535 + 0: 4095 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 48047 -3,-1: - 0: 65535 + 0: 48059 + -3,-5: + 0: 62463 + -3,0: + 0: 65523 -2,-4: - 0: 65535 - -2,-3: - 0: 65535 + 0: 61439 -2,-2: - 0: 65535 + 0: 65518 -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 + 0: 30577 + -2,-5: + 0: 63675 + -2,-3: + 0: 61166 -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - 0,3: - 0: 65535 - 1,3: - 0: 65535 - 2,3: - 0: 65535 - 3,3: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -4,0: - 0: 65535 + 0: 63475 + -1,-5: + 0: 64721 + -5,0: + 0: 65521 -4,1: - 0: 65535 + 0: 30581 + -5,1: + 0: 65525 -4,2: - 0: 65535 + 0: 9824 + -5,2: + 0: 19920 -4,3: - 0: 65535 + 0: 61183 + -5,3: + 0: 54527 + -4,4: + 0: 65166 + -3,1: + 0: 48051 + -3,2: + 0: 48051 -3,3: - 0: 65535 + 0: 49151 + -3,4: + 0: 64267 + -2,1: + 0: 30579 + -2,2: + 0: 65520 -2,3: - 0: 65535 - -1,3: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 + 0: 49151 + -2,4: + 0: 65291 + -1,4: + 0: 64969 + 4,4: + 0: 49631 5,0: - 0: 65535 + 0: 32759 5,1: - 0: 65535 + 0: 65521 5,2: - 0: 65535 + 0: 65520 5,3: 0: 65535 + 5,4: + 0: 64543 6,0: 0: 65535 6,1: - 0: 65535 + 0: 65520 6,2: - 0: 65535 + 0: 61160 6,3: - 0: 65535 + 0: 61166 + 6,4: + 0: 65422 7,0: - 0: 65535 + 0: 57341 7,1: - 0: 65535 + 0: 65532 7,2: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 + 0: 65520 + 7,3: + 0: 46079 + 7,4: + 0: 65291 + 7,-1: + 0: 53212 + 8,1: + 0: 61420 + 8,2: + 0: 30576 + 8,3: + 0: 29567 + 4,-5: + 0: 62190 5,-4: - 0: 65535 + 0: 7103 5,-3: - 0: 65535 + 0: 46011 5,-2: - 0: 65535 + 0: 47899 5,-1: - 0: 65535 + 0: 4083 + 5,-5: + 0: 61695 6,-4: - 0: 65535 + 0: 3071 6,-3: - 0: 65535 + 0: 64767 6,-2: - 0: 65535 + 0: 65487 6,-1: - 0: 65535 + 0: 4092 + 6,-5: + 0: 62122 7,-4: - 0: 65535 + 0: 16383 7,-3: 0: 65535 7,-2: 0: 65535 - 7,-1: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 + 7,-5: + 0: 61695 8,-4: - 0: 65535 + 0: 4095 8,-3: - 0: 65535 + 0: 28791 8,-2: - 0: 65535 + 0: 30471 8,-1: - 0: 65535 - -4,4: - 0: 65535 - -3,4: - 0: 65535 - -2,4: - 0: 65535 - -1,4: - 0: 65535 - 0,4: - 0: 65535 - 1,4: - 0: 65535 - 2,4: - 0: 65535 - 3,4: - 0: 65535 - 4,4: - 0: 65535 - 5,4: - 0: 65535 - 6,4: - 0: 65535 - -5,4: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - 7,3: - 0: 65535 - 8,3: - 0: 65535 + 0: 61408 + 8,0: + 0: 61152 + 8,4: + 0: 65335 9,0: - 0: 65535 + 0: 56796 9,1: - 0: 65535 + 0: 57308 9,2: - 0: 65535 + 0: 65532 9,3: - 0: 65535 - 10,0: - 0: 39923 - 10,1: - 0: 29459 + 0: 49075 + 9,-1: + 0: 57308 + 9,4: + 0: 65323 10,2: - 0: 65527 + 0: 57906 + 1: 128 10,3: - 0: 65535 + 0: 61182 + 10,0: + 1: 35554 + 10,1: + 1: 25090 11,0: - 0: 61420 - 11,1: - 0: 52974 + 1: 8992 + 0: 17612 11,2: - 0: 65516 + 0: 28740 + 1: 32 11,3: - 0: 65535 + 0: 30583 + 11,1: + 1: 546 + 0: 17476 + 11,-1: + 0: 17476 + 1: 12560 + 12,0: + 0: 65262 + 12,1: + 0: 30591 + 12,2: + 0: 30583 + 12,3: + 0: 30583 + 8,-5: + 0: 64750 9,-4: - 0: 65535 + 0: 20479 9,-3: - 0: 65535 + 0: 56797 9,-2: - 0: 65535 - 9,-1: + 0: 56797 + 9,-5: + 0: 64733 + 10,-5: 0: 65535 10,-4: - 0: 65535 + 0: 61152 10,-3: - 0: 32767 + 0: 3822 + 1: 24576 10,-2: - 0: 4883 + 1: 514 10,-1: - 0: 7985 - 11,-4: - 0: 65535 + 1: 3616 11,-3: - 0: 65535 + 0: 53006 + 1: 12288 + 11,-5: + 0: 65525 + 11,-4: + 0: 61166 11,-2: - 0: 52428 - 11,-1: - 0: 64988 + 0: 17484 + 12,-4: + 0: 65393 + 12,-3: + 0: 61167 + 12,-2: + 0: 65518 + 12,-1: + 0: 61439 + -5,4: + 0: 65501 -4,5: - 0: 65535 + 0: 16383 + -5,5: + 0: 36863 -4,6: - 0: 65535 + 0: 14199 + -5,6: + 0: 40959 -4,7: - 0: 65535 + 0: 53247 + -5,7: + 0: 20477 + -4,8: + 0: 61166 -3,5: - 0: 65535 + 0: 10239 -3,6: - 0: 65535 + 0: 4095 -3,7: - 0: 65535 + 0: 16383 + -3,8: + 0: 48059 -2,5: 0: 65535 -2,6: - 0: 65535 + 0: 61439 -2,7: + 0: 20222 + -2,8: 0: 65535 -1,5: - 0: 65535 - -1,6: - 0: 65535 + 0: 52447 -1,7: - 0: 65535 + 0: 28274 + -1,6: + 0: 28256 + -1,8: + 0: 43558 0,5: 0: 65535 0,6: - 0: 65535 + 0: 30583 0,7: - 0: 65535 + 0: 30583 + 0,8: + 0: 30711 1,5: - 0: 65535 + 0: 55775 1,6: - 0: 65535 + 0: 63740 1,7: - 0: 65535 + 0: 4095 + 1,8: + 0: 63743 2,5: 0: 65535 2,6: - 0: 65535 + 0: 45311 2,7: - 0: 65535 + 0: 7163 + 2,8: + 0: 57599 3,5: - 0: 65535 + 0: 13567 3,6: - 0: 65535 + 0: 29047 3,7: - 0: 65535 + 0: 2039 + 3,8: + 0: 29439 4,5: - 0: 65535 + 0: 62207 4,6: 0: 65535 4,7: - 0: 65535 + 0: 4095 + 4,8: + 0: 62719 5,5: - 0: 65535 + 0: 45311 5,6: - 0: 65535 + 0: 48059 5,7: - 0: 65535 + 0: 35835 + 5,8: + 0: 53503 6,5: - 0: 65535 + 0: 53759 6,6: - 0: 65535 + 0: 64925 6,7: - 0: 65535 - 7,4: - 0: 65535 + 0: 7645 + 6,8: + 0: 61695 7,5: - 0: 65535 + 0: 63743 7,6: - 0: 65535 + 0: 65471 7,7: - 0: 65535 + 0: 4095 + 7,8: + 0: 28927 + 8,5: + 0: 55551 + 8,6: + 0: 40397 + 8,7: + 0: 7677 -8,4: - 0: 65535 + 0: 65229 + -8,3: + 0: 54749 + -9,4: + 0: 65423 -8,5: - 0: 65535 + 0: 3839 + -9,5: + 0: 3839 -8,6: - 0: 65535 + 0: 17646 + -9,6: + 0: 17646 -8,7: - 0: 65535 + 0: 20479 + -9,7: + 0: 8191 + -8,8: + 0: 3822 -7,4: - 0: 65535 + 0: 65382 -7,5: - 0: 65535 - -7,6: - 0: 65535 + 0: 3839 -7,7: - 0: 65535 + 0: 20479 + -7,6: + 0: 17646 + -7,8: + 0: 3839 + -7,3: + 0: 25343 -6,4: - 0: 65535 + 0: 65467 -6,5: - 0: 65535 - -6,6: - 0: 65535 + 0: 4095 -6,7: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 + 0: 20222 + -6,3: + 0: 47615 + -6,6: + 0: 52974 + -6,8: + 0: 3822 + -5,8: + 0: 3822 -8,0: 0: 65535 -8,1: - 0: 65535 + 0: 65295 + -9,1: + 0: 36615 -8,2: - 0: 65535 - -8,3: - 0: 65535 + 0: 24017 + -9,2: + 0: 64443 + -9,3: + 0: 65419 -7,0: - 0: 65535 + 0: 61414 -7,1: - 0: 65535 + 0: 65518 -7,2: - 0: 65535 - -7,3: - 0: 65535 + 0: 9824 + -7,-1: + 0: 26480 -6,0: - 0: 65535 - -6,1: - 0: 65535 + 0: 61420 -6,2: - 0: 65535 - -6,3: - 0: 65535 + 0: 39856 + -6,-1: + 0: 65520 + -6,1: + 0: 61156 -8,-4: - 0: 65535 + 0: 36863 + -8,-5: + 0: 64750 + -9,-4: + 0: 36351 -8,-3: - 0: 65535 + 0: 56797 + -9,-3: + 0: 61439 -8,-2: - 0: 65535 + 0: 65293 + -9,-2: + 0: 61038 -8,-1: - 0: 65535 + 0: 4080 + -9,-1: + 0: 3814 -7,-4: - 0: 65535 + 0: 16383 -7,-3: - 0: 65535 + 0: 30583 -7,-2: - 0: 65535 - -7,-1: - 0: 65535 + 0: 65319 + -7,-5: + 0: 62975 -6,-4: - 0: 65535 + 0: 20479 -6,-3: 0: 65535 -6,-2: - 0: 65535 - -6,-1: - 0: 65535 + 0: 65359 + -6,-5: + 0: 57599 + -5,-5: + 0: 45311 -12,4: + 0: 48059 + -13,4: 0: 65535 -12,5: - 0: 65535 + 0: 49080 + -13,5: + 0: 65520 -12,6: + 0: 7097 + -13,6: 0: 65535 -12,7: - 0: 65535 + 0: 3828 + -13,7: + 0: 61680 + -12,8: + 0: 65534 + -12,3: + 0: 35775 -11,4: - 0: 65535 + 0: 57471 -11,5: - 0: 65535 + 0: 61679 -11,6: 0: 65535 -11,7: - 0: 65535 + 0: 8188 + -11,3: + 0: 63291 + -11,8: + 0: 56797 -10,4: - 0: 65535 + 0: 63335 -10,5: - 0: 65535 - -10,6: - 0: 65535 + 0: 3839 -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: + 0: 12030 + -10,3: + 0: 30079 + -10,6: + 0: 17646 + -10,8: + 0: 30583 + -9,8: 0: 65535 -12,0: - 0: 65535 + 0: 30583 + -12,-1: + 0: 30583 + -13,0: + 0: 65407 -12,1: 0: 65535 -12,2: - 0: 65535 - -12,3: - 0: 65535 + 0: 47359 + -13,1: + 0: 61559 + -13,2: + 0: 61695 + -13,3: + 0: 53247 -11,0: - 0: 65535 + 0: 61439 -11,1: - 0: 65535 + 0: 3838 -11,2: + 0: 40413 + -10,0: 0: 65535 - -11,3: + -10,1: + 0: 8063 + -10,2: 0: 65535 -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 + 0: 30583 -12,-4: + 0: 52735 + -12,-5: 0: 65535 + -13,-4: + 0: 3823 -12,-3: - 0: 65535 + 0: 32767 + -13,-3: + 0: 24823 -12,-2: - 0: 65535 - -12,-1: - 0: 65535 + 0: 30583 -11,-4: - 0: 65535 + 0: 32767 -11,-3: - 0: 65535 + 0: 16895 -11,-2: - 0: 4543 + 0: 4406 + 1: 128 -11,-1: - 0: 45873 - -10,-4: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: + 0: 273 + 1: 1568 + -11,-5: 0: 65535 - -9,-1: + -10,-4: + 0: 4095 + -10,-3: + 0: 30071 + -10,-2: + 0: 5 + 1: 1264 + -10,-5: + 0: 61678 + -10,-1: + 1: 3304 + -9,-5: + 0: 54493 + -17,4: + 0: 64735 + -16,4: + 0: 61160 + -16,5: + 0: 64778 + -17,5: + 0: 56607 + -16,6: + 0: 36319 + -17,6: + 0: 65309 + -16,7: + 0: 36590 + -17,7: + 0: 4095 + -16,8: 0: 65535 + -16,3: + 0: 61182 + -15,4: + 0: 32625 + -15,5: + 0: 62725 + -15,6: + 0: 1919 + -15,7: + 0: 3003 + -15,3: + 0: 32767 + -15,8: + 0: 32631 -14,4: - 0: 65535 + 0: 30711 -14,5: - 0: 65535 + 0: 63349 -14,6: - 0: 65535 + 0: 29567 -14,7: + 0: 30711 + -14,3: + 0: 22527 + -14,8: + 0: 32627 + -13,8: 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: + -16,0: + 0: 65262 + -17,0: + 0: 56797 + -16,1: + 0: 61678 + -17,1: + 0: 63964 + -16,2: + 0: 61183 + -17,2: + 0: 55807 + -17,3: + 0: 56796 + -16,-1: + 0: 36590 + -15,0: 0: 65535 + -15,1: + 0: 61695 + -15,2: + 0: 29439 + -15,-1: + 0: 6135 + -14,0: + 0: 65518 + -14,1: + 0: 61695 + -14,2: + 0: 30207 + -16,-5: + 0: 30310 + -16,-4: + 0: 30318 + -17,-4: + 0: 49356 + 1: 4096 + -16,-3: + 0: 15 + 2: 60928 + -17,-3: + 0: 57308 + -16,-2: + 2: 238 + 0: 58368 + -17,-2: + 0: 53244 + -17,-1: + 0: 64735 + -15,-4: + 0: 62463 + -15,-3: + 0: 31 + 2: 30464 + -15,-2: + 2: 119 + 0: 28672 + -15,-5: + 0: 65523 + -14,-4: + 0: 61695 + -14,-3: + 0: 63231 + -14,-2: + 0: 28671 + -14,-1: + 0: 4095 + -14,-5: + 0: 65520 -13,-2: - 0: 65535 + 0: 1655 -13,-1: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 + 0: 1911 + -13,-5: + 0: 65518 + 8,8: + 0: 64767 9,5: 0: 65535 9,6: - 0: 65535 + 0: 4095 9,7: - 0: 65535 + 0: 36863 + 9,8: + 0: 61182 10,4: - 0: 65535 + 0: 65504 10,5: - 0: 65535 + 0: 55535 10,6: - 0: 65535 + 0: 3549 10,7: - 0: 65535 + 0: 4095 + 10,8: + 0: 8191 11,4: - 0: 65535 + 0: 65456 11,5: - 0: 65535 + 0: 65279 11,6: - 0: 65535 + 0: 61439 11,7: - 0: 65535 + 0: 1919 + 11,8: + 0: 3551 + 12,4: + 0: 32767 + 12,5: + 0: 29047 + 12,6: + 0: 40759 + 12,7: + 0: 3003 8,-8: 0: 65535 - 8,-7: + 8,-9: + 0: 65520 + 7,-8: 0: 65535 - 8,-6: + 8,-7: 0: 65535 - 8,-5: + 7,-7: 0: 65535 + 8,-6: + 0: 61167 + 7,-6: + 0: 65295 9,-8: 0: 65535 9,-7: 0: 65535 9,-6: - 0: 65535 - 9,-5: - 0: 65535 - 10,-8: - 0: 65535 + 0: 7647 + 9,-9: + 0: 65520 10,-7: - 0: 65535 + 0: 57592 10,-6: - 0: 65535 - 10,-5: - 0: 65535 + 0: 3839 + 10,-8: + 0: 43690 + 10,-9: + 0: 36576 11,-8: - 0: 65535 + 0: 57309 11,-7: - 0: 65535 + 0: 56561 11,-6: - 0: 65535 - 11,-5: - 0: 65535 + 0: 52701 + 12,-8: + 0: 32631 + 12,-6: + 0: 61167 4,-8: 0: 65535 + 4,-9: + 0: 61695 + 3,-8: + 0: 61166 4,-7: - 0: 65535 + 0: 12018 + 3,-7: + 0: 57584 4,-6: - 0: 65535 - 4,-5: - 0: 65535 + 0: 61166 + 3,-6: + 0: 3838 5,-8: - 0: 65535 + 0: 48059 5,-7: - 0: 65535 + 0: 4080 5,-6: 0: 65535 - 5,-5: - 0: 65535 + 5,-9: + 0: 45175 6,-8: - 0: 65535 + 0: 30591 6,-7: - 0: 65535 + 0: 26487 + 6,-9: + 0: 30069 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 + 0: 44582 + 7,-9: + 0: 65520 0,-8: + 0: 63359 + 0,-9: 0: 65535 + -1,-8: + 0: 63247 0,-7: - 0: 65535 + 0: 63351 0,-6: - 0: 65535 - 0,-5: - 0: 65535 + 0: 30711 1,-8: - 0: 65535 + 0: 65295 1,-7: - 0: 65535 + 0: 56590 1,-6: - 0: 65535 - 1,-5: + 0: 52735 + 1,-9: 0: 65535 2,-8: - 0: 65535 + 0: 65518 2,-7: - 0: 65535 + 0: 53710 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 + 0: 56831 + 2,-9: + 0: 61166 + 3,-9: + 0: 57582 -4,-8: - 0: 65535 + 0: 65520 + -4,-9: + 0: 57341 + -5,-8: + 0: 48051 -4,-7: - 0: 65535 + 0: 65359 + -5,-7: + 0: 65291 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 65407 + -5,-6: + 0: 47931 -3,-8: - 0: 65535 + 0: 65521 -3,-7: - 0: 65535 + 0: 60975 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 65486 + -3,-9: + 0: 30583 -2,-8: - 0: 65535 + 0: 61114 -2,-7: - 0: 65535 + 0: 65294 -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 + 0: 45999 + -2,-9: + 0: 48059 -1,-7: - 0: 65535 + 0: 30023 -1,-6: - 0: 65535 - -1,-5: - 0: 65535 + 0: 29781 + -1,-9: + 0: 65471 -8,-8: + 0: 64767 + -8,-9: 0: 65535 + -9,-8: + 0: 53709 -8,-7: - 0: 65535 + 0: 61199 + -9,-7: + 0: 52703 -8,-6: - 0: 65535 - -8,-5: - 0: 65535 + 0: 61006 + -9,-6: + 0: 56829 -7,-8: - 0: 65535 + 0: 24695 -7,-7: - 0: 65535 + 0: 65287 -7,-6: - 0: 65535 - -7,-5: - 0: 65535 + 0: 65391 + -7,-9: + 0: 30591 -6,-8: 0: 65535 -6,-7: - 0: 65535 + 0: 65167 -6,-6: + 0: 65263 + -6,-9: 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 + -5,-9: + 0: 48059 -12,-8: 0: 65535 - -12,-7: + -12,-9: 0: 65535 + -13,-8: + 0: 65486 + -12,-7: + 0: 36863 + -13,-7: + 0: 52972 -12,-6: 0: 65535 - -12,-5: - 0: 65535 + -13,-6: + 0: 65519 -11,-8: 0: 65535 -11,-7: - 0: 65535 + 0: 32767 -11,-6: 0: 65535 - -11,-5: + -11,-9: 0: 65535 -10,-8: - 0: 65535 + 0: 52815 -10,-7: - 0: 65535 + 0: 3549 -10,-6: + 0: 61438 + -10,-9: 0: 65535 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - 12,4: - 0: 65535 - 12,5: - 0: 65535 - 12,6: - 0: 65535 - 12,7: - 0: 65535 + -9,-9: + 0: 56797 + 12,8: + 0: 3007 13,4: 0: 65535 13,5: 0: 65535 13,6: - 0: 65535 + 0: 65327 13,7: + 0: 4095 + 13,3: 0: 65535 + 13,8: + 0: 30719 14,4: 0: 65535 14,5: 0: 65535 14,6: - 0: 65535 + 0: 65295 14,7: + 0: 4095 + 14,3: 0: 65535 + 14,8: + 0: 255 + 1: 61440 15,4: 0: 65535 15,5: 0: 65535 15,6: - 0: 65535 + 0: 65295 15,7: + 0: 20479 + 15,3: 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 12,2: - 0: 65535 - 12,3: + 15,8: + 0: 255 + 1: 4096 + 16,4: 0: 65535 - 13,0: + 16,5: 0: 65535 + 16,6: + 0: 61007 13,1: - 0: 65535 + 0: 13094 + 1: 34944 13,2: - 0: 65535 - 13,3: - 0: 65535 + 0: 65323 + 13,-1: + 0: 65534 + 13,0: + 0: 26190 14,0: - 0: 14335 + 0: 15 + 1: 14080 14,1: - 0: 36865 + 1: 36865 14,2: - 0: 65535 - 14,3: + 0: 65295 + 14,-1: 0: 65535 15,0: - 0: 767 - 15,1: - 0: 51200 + 0: 15 + 1: 512 15,2: + 0: 65295 + 15,-1: 0: 65535 - 15,3: + 15,1: + 1: 51200 + 16,0: + 0: 15 + 1: 3584 + 16,1: + 1: 6144 + 16,2: + 0: 65357 + 16,3: 0: 65535 - 12,-4: + 12,-5: + 0: 52974 + 13,-4: + 0: 52975 + 13,-3: + 0: 52445 + 13,-2: + 0: 65534 + 13,-5: 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: + 14,-4: 0: 65535 14,-3: 0: 65535 14,-2: 0: 65535 - 14,-1: + 14,-5: 0: 65535 15,-4: 0: 65535 @@ -11227,3220 +11502,3116 @@ entities: 0: 65535 15,-2: 0: 65535 - 15,-1: + 15,-5: 0: 65535 - 12,-8: + 16,-4: 0: 65535 - 12,-7: + 16,-3: 0: 65535 - 12,-6: + 16,-2: 0: 65535 - 12,-5: + 16,-1: 0: 65535 + 12,-7: + 0: 61152 13,-8: - 0: 65535 + 0: 4095 13,-7: 0: 65535 13,-6: 0: 65535 - 13,-5: - 0: 65535 + 13,-9: + 0: 40344 + 1: 3 14,-8: - 0: 65535 + 0: 4095 14,-7: 0: 65535 14,-6: 0: 65535 - 14,-5: - 0: 65535 + 14,-9: + 0: 10035 15,-8: - 0: 65535 + 0: 8191 15,-7: - 0: 65535 + 0: 65399 15,-6: 0: 65535 - 15,-5: + 16,-8: 0: 65535 - 0,8: + 16,-7: + 0: 30479 + 16,-6: 0: 65535 - 0,9: + 16,-5: 0: 65535 + 0,9: + 0: 65399 + -1,9: + 0: 63018 0,10: - 0: 65535 + 0: 30583 + -1,10: + 0: 28262 0,11: - 0: 65535 - 1,8: + 0: 30583 + -1,11: + 0: 110 + 0,12: 0: 65535 1,9: 0: 65535 1,10: - 0: 65535 + 0: 8191 1,11: - 0: 65535 - 2,8: - 0: 65535 + 0: 36863 + 1,12: + 0: 65262 2,9: - 0: 65535 - 2,10: - 0: 65535 + 0: 65518 2,11: - 0: 65535 - 3,8: - 0: 65535 + 0: 61168 + 2,10: + 0: 60974 + 2,12: + 0: 3838 3,9: - 0: 65535 + 0: 65399 3,10: - 0: 65535 + 0: 65335 3,11: + 0: 65520 + 3,12: + 0: 4095 + 4,9: 0: 65535 + 4,10: + 0: 65263 + 4,11: + 0: 65262 0,-12: 0: 65535 + 0,-13: + 0: 65535 + -1,-12: + 0: 35754 + 1: 17 0,-11: 0: 65535 + -1,-11: + 0: 65535 0,-10: 0: 65535 - 0,-9: + -1,-10: 0: 65535 - 1,-12: - 0: 65335 1,-11: 0: 65535 1,-10: 0: 65535 - 1,-9: - 0: 65535 + 1,-12: + 0: 3618 + 1: 4 + 1,-13: + 0: 8447 + 1: 49152 2,-12: - 0: 64256 - 2,-11: - 0: 65535 + 0: 768 + 1: 2048 2,-10: - 0: 65535 - 2,-9: - 0: 65535 + 0: 59236 + 2,-11: + 0: 61166 3,-12: - 0: 12544 - 3,-11: - 0: 14131 + 1: 8448 3,-10: - 0: 65535 - 3,-9: - 0: 65535 + 1: 30 + 0: 57568 + 3,-11: + 1: 9762 + 4,-10: + 0: 61680 -12,-11: - 0: 4096 + 1: 4096 -12,-10: - 0: 65527 - -12,-9: - 0: 65535 + 1: 247 + 0: 3840 + -13,-11: + 1: 45056 + -13,-9: + 0: 65163 -11,-10: - 0: 65528 - -11,-9: - 0: 65535 - -10,-11: - 0: 32768 + 1: 248 + 0: 3840 -10,-10: - 0: 65534 - -10,-9: - 0: 65535 + 1: 50 + 0: 35712 + -10,-12: + 1: 8738 + 0: 52428 + -10,-13: + 1: 8738 + 0: 52428 + -10,-11: + 1: 8738 + 0: 52428 -9,-12: - 0: 65535 + 0: 63351 -9,-11: - 0: 65535 + 0: 30711 -9,-10: - 0: 65535 - -9,-9: - 0: 65535 + 0: 53200 + -9,-13: + 0: 30583 + 1: 34952 -8,-12: - 0: 65535 + 0: 65520 -8,-11: 0: 65535 -8,-10: - 0: 65535 - -8,-9: - 0: 65535 + 0: 65520 -7,-12: - 0: 65535 + 0: 64976 -7,-11: - 0: 65535 + 0: 56829 -7,-10: - 0: 65535 - -7,-9: - 0: 65535 + 0: 30576 -6,-12: - 0: 65535 + 0: 65524 -6,-11: - 0: 65535 + 0: 20479 -6,-10: - 0: 65535 - -6,-9: - 0: 65535 + 0: 65534 + -6,-13: + 0: 58368 -5,-12: - 0: 65535 + 0: 65521 -5,-11: - 0: 65535 + 0: 40959 -5,-10: - 0: 65535 - -5,-9: - 0: 65535 + 0: 15291 + -5,-13: + 0: 12544 -4,-12: - 0: 65523 + 0: 56592 -4,-11: - 0: 65535 + 0: 7645 -4,-10: - 0: 65535 - -4,-9: - 0: 65535 + 0: 3551 -3,-12: - 0: 65520 + 0: 65280 -3,-11: 0: 65535 -3,-10: - 0: 65535 - -3,-9: - 0: 65535 + 0: 1911 -2,-12: - 0: 65393 + 0: 15104 + 1: 1 -2,-11: - 0: 65535 + 0: 48057 -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 4,-10: - 0: 65520 - 4,-9: - 0: 65535 + 0: 49081 + -2,-13: + 1: 12288 + 0: 255 + -1,-13: + 1: 4096 + 0: 43263 + 5,-10: + 0: 28784 + 1: 138 5,-12: - 0: 43690 + 1: 43690 + 5,-13: + 1: 61986 5,-11: - 0: 43690 - 5,-10: - 0: 65530 - 5,-9: - 0: 65535 + 1: 43690 6,-12: - 0: 12288 + 1: 12288 6,-11: - 0: 1 + 1: 1 6,-10: - 0: 37120 - 6,-9: - 0: 65535 - 7,-12: - 0: 7 + 1: 37120 7,-10: - 0: 64640 - 7,-9: - 0: 65535 - 8,-12: - 0: 2 + 0: 61440 + 1: 3200 + 7,-12: + 1: 7 + 7,-13: + 1: 61713 8,-10: - 0: 61696 - 8,-9: - 0: 65535 + 1: 256 + 0: 61440 + 8,-12: + 1: 2 + 8,-13: + 1: 61455 + 9,-10: + 0: 61440 + 1: 3720 9,-12: - 0: 52362 + 1: 52362 + 9,-13: + 1: 62464 9,-11: - 0: 136 - 9,-10: - 0: 65160 - 9,-9: - 0: 65535 + 1: 136 10,-11: - 0: 29968 + 1: 25872 + 0: 4096 10,-10: - 0: 30549 - 10,-9: - 0: 65535 + 0: 17 + 1: 30532 11,-9: - 0: 65535 + 0: 4084 + 12,-9: + 0: 4080 12,-12: - 0: 35008 + 0: 32960 + 1: 2048 12,-11: - 0: 35968 + 1: 33920 + 0: 2048 12,-10: - 0: 52288 - 12,-9: - 0: 65535 + 1: 52288 13,-12: - 0: 49080 + 0: 48944 + 1: 136 13,-11: - 0: 56776 + 1: 4416 + 0: 52360 13,-10: - 0: 65535 - 13,-9: - 0: 65535 + 0: 36317 + 1: 12834 + 13,-13: + 1: 34952 + 0: 883 + 14,-12: + 0: 44707 + 1: 4368 + 14,-11: + 0: 29201 + 1: 1314 14,-10: - 0: 30583 - 14,-9: - 0: 65527 + 0: 10103 + 14,-13: + 0: 15354 + 1: 1 + 15,-12: + 0: 28912 + 1: 36608 15,-9: - 0: 63264 - 12,8: - 0: 65535 + 1: 1824 + 16,-12: + 0: 528 + 1: 5376 12,9: + 0: 30711 + 11,9: 0: 65535 12,10: - 0: 65535 + 0: 64263 + 11,10: + 0: 65519 12,11: - 0: 65535 - 13,8: - 0: 65535 + 0: 30475 + 11,11: + 0: 65519 + 12,12: + 0: 26231 13,9: - 0: 65535 + 0: 30583 13,10: - 0: 65535 + 0: 32631 13,11: - 0: 65535 - 14,8: - 0: 65535 - 14,9: - 0: 17604 + 0: 30471 + 13,12: + 0: 47990 14,10: - 0: 65525 + 1: 1 + 0: 3844 14,11: - 0: 54340 - 15,8: - 0: 8191 + 1: 4096 + 0: 49220 + 14,12: + 1: 1 + 0: 65280 + 14,9: + 1: 4 + 0: 17600 15,9: - 0: 61680 + 0: 208 15,10: - 0: 65535 - 8,8: - 0: 65535 + 0: 61422 + 15,11: + 0: 61454 + 16,8: + 0: 49407 + 1: 8192 + 16,9: + 0: 33008 + 16,10: + 0: 31743 + 16,11: + 0: 61443 8,9: 0: 65535 8,10: 0: 65535 8,11: - 0: 65535 - 9,8: - 0: 65535 + 0: 56607 + 8,12: + 0: 56829 + 9,11: + 0: 65422 9,9: - 0: 65535 + 0: 61166 9,10: - 0: 65535 - 9,11: - 0: 65535 - 10,8: - 0: 65535 + 0: 61166 + 9,12: + 0: 43775 10,9: - 0: 65535 + 0: 56829 10,10: - 0: 65535 + 0: 64989 10,11: + 0: 65293 + 10,12: 0: 65535 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 + 11,12: + 0: 48127 + 4,12: + 0: 44783 5,9: - 0: 65535 + 0: 21845 5,10: - 0: 65535 + 0: 26117 5,11: - 0: 65535 - 6,8: - 0: 65535 + 0: 3846 + 5,12: + 0: 3838 6,9: - 0: 65535 + 0: 65520 6,10: 0: 65535 6,11: - 0: 65535 - 7,8: - 0: 65535 + 0: 3855 + 6,12: + 0: 61182 7,9: - 0: 65535 + 0: 21844 7,10: - 0: 65535 + 0: 21845 7,11: - 0: 65535 - -4,8: - 0: 65535 + 0: 1861 + 7,12: + 0: 48123 -4,9: - 0: 65535 + 0: 61166 + -5,9: + 0: 61152 -4,10: - 0: 65535 + 0: 52974 + -5,10: + 0: 20206 -4,11: - 0: 65535 - -3,8: - 0: 65535 + 0: 53247 + -5,11: + 0: 20479 + -4,12: + 0: 61166 -3,9: - 0: 65535 + 0: 59571 -3,10: + 0: 36607 + -3,12: 0: 65535 -3,11: - 0: 65535 - -2,8: - 0: 65535 + 0: 52416 -2,9: - 0: 65535 + 0: 65520 -2,10: 0: 65535 -2,11: + 0: 65520 + -2,12: 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - -8,8: - 0: 65535 + -1,12: + 0: 64443 -8,9: - 0: 65535 + 0: 65526 -8,10: - 0: 65535 + 0: 28678 -8,11: - 0: 65535 - -7,8: - 0: 65535 + 0: 30591 + -9,10: + 0: 49152 + 1: 68 + -9,11: + 0: 52428 + -8,12: + 0: 30583 -7,9: - 0: 65535 + 0: 65531 -7,10: - 0: 65535 + 0: 1904 -7,11: - 0: 65535 - -6,8: - 0: 65535 + 0: 12287 + -7,12: + 0: 30583 -6,9: - 0: 65535 + 0: 65533 -6,10: - 0: 65535 + 0: 61424 -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 - -12,8: + 0: 4095 + -6,12: + 0: 48059 + -5,12: 0: 65535 -12,9: - 0: 65535 + 0: 61162 + -13,9: + 0: 61695 -12,10: 0: 65535 - -11,8: + -13,10: 0: 65535 + -12,11: + 0: 4095 + -13,11: + 0: 8191 + -12,12: + 3: 4369 + 4: 17476 -11,9: - 0: 65535 + 0: 65308 -11,10: 0: 65535 -11,11: - 0: 65535 - -10,8: - 0: 65535 + 0: 4095 + -11,12: + 4: 4369 + 5: 17476 -10,9: - 0: 65535 + 0: 65287 -10,10: 0: 65535 -10,11: - 0: 65535 - -9,8: - 0: 65535 + 0: 4095 + -10,12: + 4: 4369 + 1: 17476 -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 + 0: 7 + 1: 17472 + -9,12: + 1: 4369 + 0: 52428 + -16,-8: + 0: 57966 + -17,-8: + 0: 17635 + 1: 784 + -16,-7: + 0: 17510 + -17,-7: + 0: 12672 + -16,-6: + 0: 28518 + -17,-6: + 0: 52224 + -17,-5: + 0: 60608 -15,-8: - 0: 65535 + 0: 65295 -15,-7: - 0: 65535 + 0: 65295 -15,-6: 0: 65535 -14,-8: - 0: 65535 + 0: 65295 -14,-7: - 0: 65535 + 0: 65295 -14,-6: 0: 65535 - -13,-8: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: + -14,-9: 0: 65535 - -13,-5: + -17,8: + 0: 32631 + -16,9: + 0: 65295 + -17,9: + 0: 65287 + -16,10: + 0: 57599 + -17,10: + 0: 28399 + 1: 37136 + -16,11: + 0: 61166 + -17,11: + 1: 4104 + 0: 26182 + -16,12: + 0: 61166 + -15,9: + 0: 62983 + -15,10: + 0: 61686 + -15,11: 0: 65535 - -14,8: + -15,12: 0: 65535 -14,9: - 0: 65535 + 0: 29303 -14,10: - 0: 65535 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -13,10: - 0: 65535 - 16,8: - 0: 61439 - 16,9: - 0: 64764 - 16,10: - 0: 65535 + 0: 62071 + -14,11: + 0: 48123 + -14,12: + 0: 48059 + -13,12: + 0: 4369 + 6: 17476 17,8: - 0: 65535 + 0: 4607 17,9: - 0: 65535 + 0: 65216 17,10: - 0: 65535 + 0: 63487 + 17,11: + 0: 4236 18,8: - 0: 65535 + 0: 45943 18,9: - 0: 65535 + 0: 65467 18,10: 0: 65535 + 18,11: + 0: 1791 + 17,12: + 0: 61128 + 18,12: + 0: 57855 + 18,7: + 0: 26214 19,8: - 0: 65535 + 0: 32750 19,9: - 0: 65535 + 0: 14199 19,10: - 0: 65535 - 16,4: - 0: 65535 - 16,5: - 0: 65535 - 16,6: - 0: 65535 + 0: 30579 + 19,11: + 0: 49155 + 19,7: + 0: 64640 + 19,12: + 0: 16367 + 20,11: + 0: 61440 16,7: - 0: 65535 + 0: 1636 17,4: - 0: 65535 + 0: 48059 17,5: - 0: 65535 + 0: 13243 + 1: 34816 17,6: - 0: 65527 + 0: 64769 17,7: - 0: 65535 + 0: 4081 + 17,3: + 0: 48051 + 1: 8 18,6: - 0: 65532 - 18,7: - 0: 65535 + 0: 65280 + 1: 12 19,6: - 0: 65520 - 19,7: - 0: 65535 - 16,0: - 0: 3839 - 16,1: - 0: 63488 - 16,2: - 0: 65535 - 16,3: - 0: 65535 + 0: 65280 + 20,6: + 0: 65280 + 1: 6 + 20,7: + 0: 16368 17,0: - 0: 255 + 0: 15 17,1: - 0: 12544 + 1: 256 17,2: - 0: 32631 - 17,3: + 0: 12561 + 1: 2052 + 17,-1: 0: 65535 18,0: - 0: 20223 + 0: 15 + 1: 19968 + 18,-1: + 0: 65535 18,1: - 0: 52460 - 18,2: - 0: 136 + 1: 17508 + 0: 32896 19,0: - 0: 65535 + 0: 52429 + 1: 4352 19,1: - 0: 65535 + 0: 63472 + 18,2: + 1: 128 + 19,-1: + 0: 56799 19,2: - 0: 111 - 16,-4: - 0: 65535 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 16,-1: - 0: 65535 + 1: 96 + 20,0: + 0: 56799 + 20,1: + 0: 65521 17,-4: - 0: 65535 + 0: 35771 17,-3: - 0: 65535 + 0: 65534 17,-2: - 0: 65535 - 17,-1: - 0: 65535 + 0: 61679 + 17,-5: + 0: 65459 18,-4: - 0: 65535 + 0: 7647 18,-3: 0: 65535 18,-2: - 0: 65535 - 18,-1: - 0: 65535 + 0: 61695 + 18,-5: + 0: 65392 19,-4: - 0: 65535 - 19,-3: - 0: 65535 + 0: 43967 19,-2: + 0: 56558 + 19,-5: + 0: 49051 + 19,-3: + 0: 58026 + 20,-4: 0: 65535 - 19,-1: - 0: 65535 - 16,-8: - 0: 65393 - 16,-7: - 0: 65535 - 16,-6: - 0: 65535 - 16,-5: - 0: 65535 + 20,-3: + 0: 53471 + 20,-2: + 0: 64989 + 20,-1: + 0: 56785 17,-8: - 0: 29440 + 0: 57343 17,-7: - 0: 65535 + 0: 61389 17,-6: - 0: 65535 - 17,-5: - 0: 65535 - 18,-7: - 0: 4352 + 0: 40398 18,-6: - 0: 65521 - 18,-5: - 0: 65535 + 0: 65358 + 18,-7: + 0: 60928 + 19,-7: + 0: 13056 19,-6: - 0: 65534 - 19,-5: - 0: 65535 - 20,8: - 0: 65535 - 20,9: + 0: 48019 + 20,-6: + 0: 65488 + 20,-5: 0: 65535 - 20,10: + -19,8: + 1: 128 + -18,8: + 1: 4368 + 0: 52428 + -18,9: + 0: 12 + 1: 19968 + -17,12: + 1: 16401 + 0: 13926 + -21,4: + 0: 47581 + -20,4: + 0: 61156 + -20,5: + 0: 36336 + -21,5: + 0: 4095 + -20,6: + 0: 13119 + 1: 2048 + -21,6: 0: 65535 - 20,4: - 0: 136 - 20,5: - 0: 35976 - 20,6: - 0: 65534 - 20,7: + -20,7: + 0: 17 + -21,7: + 0: 16383 + -20,3: + 0: 20479 + -19,5: + 0: 56828 + -19,6: + 0: 52301 + 1: 4096 + -19,7: + 1: 1249 + 0: 4 + -19,4: + 0: 51404 + -19,3: + 0: 52697 + -18,4: + 0: 61661 + -18,5: 0: 65535 - 20,0: + -18,6: + 0: 56799 + -18,7: + 0: 3277 + -18,3: + 0: 53212 + -20,0: + 0: 63709 + -20,-1: + 0: 55532 + -21,0: + 0: 55773 + -20,1: + 0: 63231 + -21,1: + 0: 62365 + -20,2: + 0: 61695 + -21,2: + 0: 5119 + -19,0: + 0: 64733 + -19,1: + 0: 64721 + -19,2: + 0: 56575 + -19,-1: + 0: 4351 + -18,0: + 0: 56797 + -18,1: + 0: 65528 + -18,2: 0: 65535 - 20,1: + -18,-1: + 0: 49356 + -20,-4: + 0: 4096 + -21,-4: + 0: 65328 + -20,-3: + 0: 13105 + -21,-3: 0: 65535 - 20,2: - 0: 36063 - 20,3: + -20,-2: + 0: 56707 + -21,-2: + 0: 65295 + -21,-1: + 0: 55743 + -19,-2: + 0: 65520 + -19,-4: + 1: 32768 + -18,-4: + 1: 61440 + -18,-2: + 0: 3536 + -18,-3: + 0: 52416 + -24,0: + 0: 112 + -25,0: + 0: 25327 + -25,1: + 0: 61166 + -24,1: + 0: 61696 + -24,2: + 0: 511 + -25,2: + 0: 61166 + -25,3: + 0: 57966 + -24,3: + 0: 28672 + -23,1: + 0: 61576 + -23,2: + 0: 33023 + -23,0: 0: 34952 - 20,-4: - 0: 65535 - 20,-3: - 0: 65535 - 20,-2: - 0: 13111 - 20,-1: - 0: 65535 - 20,-6: + -23,-1: + 0: 34824 + -22,0: + 0: 56797 + -22,1: + 0: 65229 + -22,2: + 0: 52991 + -23,3: + 0: 34952 + -22,3: + 0: 56797 + -23,4: + 0: 2184 + -22,-1: + 0: 56559 + -22,4: + 0: 60637 + -21,3: + 0: 21845 + -25,4: + 0: 56719 + -24,4: + 0: 4096 + -24,5: + 0: 49137 + -25,5: + 0: 56797 + -24,6: + 0: 4923 + -25,6: + 0: 56797 + -24,7: + 0: 1 + -25,7: + 0: 477 + 1: 16384 + -23,5: + 0: 4088 + -23,6: + 0: 61167 + -23,7: + 0: 2252 + -22,5: + 0: 4095 + -22,6: 0: 65535 - 20,-5: + -22,7: + 0: 61439 + 11,13: + 0: 65528 + 12,13: + 0: 8736 + 1: 128 + 12,14: + 0: 34 + 11,14: + 0: 255 + 1: 28672 + 13,13: + 1: 816 + 0: 2184 + 14,13: + 0: 61439 + 13,14: + 1: 8 + 14,14: + 0: 61646 + 14,15: 0: 65535 - 16,-9: - 0: 4096 - 17,-10: - 0: 35908 - 18,-10: - 0: 29292 - 18,-9: - 0: 12 - 19,-10: - 0: 15 - 19,-9: - 0: 63 - -6,-13: - 0: 65280 - -5,-13: - 0: 30464 - -10,-13: - 0: 8 - -9,-13: - 0: 30591 + 14,16: + 0: 17647 + 15,12: + 0: 7936 + 15,13: + 0: 14199 + 15,14: + 0: 4147 + 15,15: + 0: 30515 + 15,16: + 0: 29491 + 16,12: + 1: 4944 + 16,13: + 0: 65224 + 16,14: + 0: 26223 + -16,-10: + 1: 3087 + -17,-10: + 1: 5368 + 0: 57344 + -16,-9: + 0: 4079 + -17,-9: + 0: 28671 + 1: 4096 + -16,-11: + 1: 57344 -15,-10: - 0: 65295 + 1: 783 + 0: 32768 -15,-9: - 0: 65535 + 0: 4031 -14,-10: - 0: 65468 - -14,-9: - 0: 65535 - -13,-11: - 0: 45056 + 0: 28672 + 1: 52 -13,-10: + 0: 10096 + 20,12: + 0: 255 + 20,8: + 0: 1024 + 20,9: + 0: 32768 + 20,10: + 0: 136 + 21,9: + 0: 65534 + 21,10: 0: 65535 - -13,-9: - 0: 65535 - 0,-13: - 0: 65535 - 1,-13: - 0: 65535 - -1,-13: - 0: 65535 - 0,12: + 21,11: + 0: 61454 + 21,8: + 0: 36352 + 21,12: + 0: 2303 + 21,7: + 0: 53232 + 22,8: + 0: 36736 + 22,9: + 0: 63347 + 22,10: + 0: 30719 + 22,11: + 0: 61443 + 22,7: + 0: 4983 + 22,12: + 0: 61439 + 23,8: + 0: 4915 + 23,11: + 0: 4236 + 23,7: + 0: 32492 + 23,9: + 0: 60544 + 23,10: + 0: 52974 + 23,12: + 0: 63889 + 24,9: 0: 65535 + 24,10: + 0: 55500 + 24,11: + 0: 36095 + 0,-15: + 0: 20480 + 0,-14: + 0: 62805 + -1,-14: + 0: 61440 + 1: 113 + 1,-14: + 0: 61440 + 1: 32 + 2,-15: + 0: 20480 + 2,-14: + 0: 62805 + 2,-13: + 0: 255 + 3,-14: + 1: 49168 + 0: 8704 + 3,-13: + 0: 546 + 4,-14: + 1: 62976 + -3,-14: + 0: 41472 + 1: 64 + -3,-13: + 0: 682 + 1: 32768 + -2,-15: + 0: 20480 + -2,-14: + 0: 62805 0,13: 0: 65535 - 1,12: - 0: 65535 + -1,13: + 0: 48063 + 0,14: + 0: 65407 + -1,14: + 0: 65304 + 0,15: + 0: 32767 + -1,15: + 0: 28927 + 0,16: + 0: 30711 + 1,14: + 0: 65038 + 1,15: + 0: 3838 1,13: - 0: 65535 - 2,12: - 0: 65535 + 0: 61166 + 1,16: + 0: 35835 2,13: 0: 65535 - 3,12: + 2,14: + 0: 30479 + 2,15: + 0: 1911 + 1: 2176 + 2,16: 0: 65535 3,13: + 0: 61129 + 3,14: + 1: 4096 + 0: 36078 + 3,15: + 1: 3043 + 3,16: + 0: 1654 + 4,13: 0: 65535 - -4,12: + 4,14: 0: 65535 -4,13: + 0: 65534 + -5,13: + 0: 48048 + -4,14: 0: 65535 - -3,12: - 0: 65535 + -5,14: + 0: 35771 + -4,15: + 0: 64976 + -5,15: + 0: 64721 + -4,16: + 0: 30511 -3,13: 0: 65535 - -2,12: - 0: 65535 + -3,14: + 0: 49075 + -3,15: + 0: 62392 + -3,16: + 0: 65311 -2,13: 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - 8,12: - 0: 65535 + -2,14: + 0: 65520 + -2,15: + 0: 61695 + -2,16: + 0: 56591 + -1,16: + 0: 30495 8,13: - 0: 65535 - 9,12: - 0: 65535 + 0: 65521 + 7,13: + 0: 48003 + 8,14: + 0: 255 + 1: 61440 + 7,14: + 0: 4507 9,13: - 0: 65535 - 10,12: - 0: 65535 + 0: 61154 + 9,14: + 0: 238 + 1: 57344 + 9,15: + 1: 4 10,13: - 0: 65535 - 11,12: - 0: 65535 - 11,13: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 5,12: - 0: 65535 + 0: 48048 + 10,14: + 0: 187 + 1: 36864 + 11,15: + 1: 35 5,13: - 0: 65535 - 6,12: - 0: 65535 + 0: 65395 + 5,14: + 0: 14335 + 5,15: + 1: 8 6,13: + 0: 61198 + 6,14: + 0: 52303 + 1: 4096 + 6,15: + 0: 76 + 7,15: + 0: 17 + 16,15: + 0: 35908 + 17,13: + 0: 51511 + 16,16: + 0: 36584 + 17,15: + 0: 36876 + 17,16: + 0: 8185 + 17,14: + 0: 17476 + 18,13: + 0: 318 + 18,14: + 0: 6272 + 18,15: + 0: 38913 + 19,14: 0: 65535 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - -10,0: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -10,-3: - 0: 65535 - -10,-1: - 0: 64744 - -10,-2: - 0: 1279 - -16,4: - 0: 65535 - -16,5: - 0: 65535 - -16,6: - 0: 65535 - -16,7: - 0: 65535 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -15,6: - 0: 65535 - -15,7: - 0: 65535 - -16,0: - 0: 65535 - -16,1: - 0: 65535 - -16,2: - 0: 65535 - -16,3: - 0: 65535 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 65535 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -14,2: - 0: 65535 - -14,3: - 0: 65535 - -16,-4: - 0: 65535 - -16,-3: - 0: 4607 - 1: 60928 - -16,-2: - 0: 65297 - 1: 238 - -16,-1: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 35071 - 1: 30464 - -15,-2: - 1: 119 - 0: 65416 - -15,-1: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - 15,11: - 0: 61695 - -12,11: - 0: 65535 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65535 - -15,-5: - 0: 65535 - -14,-5: - 0: 65535 - -16,8: - 0: 65535 - -16,9: - 0: 65535 - -15,8: - 0: 65535 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -14,11: - 0: 65535 - -13,11: - 0: 65535 - 16,11: - 0: 61695 - 17,11: - 0: 65535 - 18,11: - 0: 65535 - -17,8: - 0: 65535 - -17,9: - 0: 65535 - -19,4: - 0: 65535 - -18,4: - 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 65535 - -17,7: - 0: 65535 - -19,0: - 0: 65535 - -19,1: - 0: 65535 - -19,2: - 0: 65535 - -19,3: - 0: 65535 - -18,0: - 0: 65535 - -18,1: - 0: 65535 - -18,2: - 0: 65535 - -18,3: - 0: 65535 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -20,-4: - 0: 13072 - -20,-3: - 0: 63351 - -20,-2: - 0: 65535 - -19,-4: - 0: 32768 - -19,-3: - 0: 61440 - -19,-2: - 0: 65535 - -19,-1: - 0: 65535 - -18,-4: - 0: 61440 - -18,-3: - 0: 65535 - -18,-2: + 19,15: + 0: 13056 + 18,16: + 0: 36856 + 19,13: + 0: 61056 + 20,13: + 0: 65248 + 20,14: + 0: 4919 + 21,-4: 0: 65535 - -18,-1: + 21,-3: + 0: 28895 + 21,-2: + 0: 30583 + 21,-1: + 0: 4368 + 21,-5: 0: 65535 - -17,-4: + 21,0: + 0: 4371 + 22,-4: + 0: 61713 + 22,-3: + 0: 16399 + 1: 12288 + 22,-2: + 1: 62259 + 0: 3140 + 22,-1: + 1: 13 + 22,-5: + 0: 4369 + 23,-4: 0: 65262 - -17,-3: - 0: 65535 - -17,-2: - 0: 65535 - -17,-1: - 0: 65535 - -19,-8: - 0: 14 - -18,-8: - 0: 32768 - -18,-7: - 0: 61132 - -18,-6: - 0: 35980 - -17,-8: - 0: 65535 - -17,-7: - 0: 65535 - -17,-6: - 0: 65535 - -17,-5: + 23,-3: + 0: 61167 + 23,-2: + 0: 3840 + 1: 61440 + 23,-5: 0: 61166 - -17,-9: - 0: 65535 - 12,12: + 23,-1: + 1: 12 + 24,-4: + 0: 62259 + 24,-3: 0: 65535 - 12,13: - 0: 13247 - 12,14: - 0: 307 - 13,12: + 24,-2: + 0: 3840 + 1: 61440 + 24,-1: + 1: 3 + 20,2: + 1: 1040 + 0: 8 + 21,1: + 0: 12624 + 1: 134 + 21,2: + 0: 16371 + 21,3: + 0: 26483 + 20,4: + 1: 136 + 21,4: + 0: 26342 + 22,1: + 0: 17 + 1: 200 + 22,2: + 0: 61428 + 22,3: + 0: 61550 + 22,4: 0: 65535 - 13,13: - 0: 53247 - 13,14: - 0: 60552 - 13,15: + 23,1: + 1: 2097 + 23,2: + 0: 8183 + 23,3: + 0: 59392 + 23,4: 0: 61166 - 14,12: - 0: 65521 - 14,13: - 0: 65535 - 14,14: - 0: 65535 - 14,15: - 0: 65535 - 15,12: - 0: 65520 - -16,-9: - 0: 65535 - -16,-10: - 0: 64527 - 8,14: - 0: 65535 - 9,14: - 0: 61439 - 9,15: - 0: 4 - 10,14: - 0: 40959 - 11,14: - 0: 32767 - 11,15: - 0: 35 - 19,11: - 0: 65535 - 15,13: - 0: 65535 - 20,11: - 0: 65535 - 21,8: - 0: 65535 - 21,9: - 0: 65535 - 21,10: - 0: 65535 - 21,11: - 0: 65535 - 22,8: - 0: 65535 - 22,9: - 0: 65535 - 22,10: - 0: 65535 - 22,11: - 0: 65535 - 16,12: - 0: 65488 - 16,13: - 0: 65535 - 17,12: - 0: 65535 - 17,13: - 0: 65535 - 18,12: - 0: 65535 - 18,13: - 0: 65535 - 19,12: - 0: 65535 - 19,13: - 0: 65535 - 20,12: - 0: 65535 - 20,13: - 0: 65535 - 21,12: - 0: 65535 - 22,12: - 0: 65535 - 21,7: - 0: 65535 - 15,14: - 0: 65535 - 0,-15: - 0: 61440 - 0,-14: - 0: 65535 - 1,-14: - 0: 65448 - 1,-15: - 0: 32768 - 2,-15: - 0: 61440 - 2,-14: + 24,2: + 0: 65534 + 24,3: + 0: 63232 + 20,15: + 0: 52352 + 20,16: + 0: 61132 + 21,13: + 0: 65392 + 21,15: 0: 65535 - 2,-13: - 0: 4095 - 3,-14: - 0: 62224 - 3,-13: - 0: 819 - -3,-14: + 21,14: + 0: 14 + 21,16: + 0: 33043 + 22,13: + 0: 29452 + 22,14: + 0: 239 + 22,15: + 0: 65523 + 22,16: + 0: 35022 + 23,13: + 0: 52991 + 23,14: + 0: 3824 + 23,15: + 0: 65328 + 23,16: + 0: 30719 + 24,12: + 0: 65328 + 24,13: + 0: 65526 + 24,14: + 0: 53243 + 24,15: + 0: 12680 + 20,5: + 1: 1160 + 21,5: + 0: 65254 + 21,6: + 0: 30567 + 22,5: + 0: 4976 + 22,6: 0: 61128 - -3,-13: - 0: 36590 - -3,-15: - 0: 32768 - -2,-15: - 0: 61440 - -2,-14: - 0: 65535 - -2,-13: - 0: 16383 - -1,-14: - 0: 65529 - -1,-15: - 0: 32768 - 21,-1: - 0: 13119 - 21,0: - 0: 13107 - -20,5: - 0: 65535 - -20,6: - 0: 32767 - -20,7: - 0: 4919 - -20,1: - 0: 65535 - -20,2: - 0: 65535 - -20,-1: - 0: 65535 - -24,1: - 0: 65329 - -24,2: - 0: 16383 - -24,3: - 0: 30481 - -23,1: - 0: 65416 - -23,2: - 0: 36863 - -22,1: - 0: 65535 - -22,2: - 0: 65535 - -22,0: - 0: 65535 - -22,3: - 0: 65535 - -21,0: - 0: 65535 - -21,1: - 0: 65535 - -21,2: - 0: 65535 - -21,3: - 0: 65535 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -23,7: - 0: 52975 - -23,4: - 0: 51336 - -22,4: - 0: 65535 - -22,5: - 0: 65535 - -22,6: - 0: 65535 - -22,7: - 0: 65535 - -21,4: - 0: 65535 - -21,5: - 0: 65535 - -21,6: - 0: 65535 - -21,7: + 23,5: + 0: 32460 + 23,6: + 0: 35091 + 24,4: 0: 65535 - -23,-3: + 24,5: + 0: 51223 + 24,6: + 0: 62334 + 24,7: + 0: 52443 + 20,-7: + 1: 4972 + 20,-8: + 1: 17476 + 20,-9: + 1: 61045 + 21,-7: + 1: 7 + 21,-6: + 0: 65488 + 21,-8: + 1: 52420 + 21,-9: + 1: 51340 + 22,-8: + 1: 61688 + 22,-6: + 0: 65280 + 22,-7: + 1: 9010 + 0: 17484 + 23,-8: + 1: 63735 + 23,-7: + 0: 57359 + 23,-6: + 0: 65518 + 24,-8: + 1: 65526 + 24,-7: + 0: 61455 + 24,-6: 0: 65535 + 24,-5: + 0: 45875 + 1: 16384 + -11,-14: + 1: 2184 + -10,-14: + 1: 13072 + 0: 52428 + -10,-15: + 0: 49152 + -9,-15: + 0: 28672 + -9,-14: + 0: 30583 + 1: 34816 + -8,-14: + 1: 4914 + -24,-3: + 0: 13073 + -25,-4: + 0: 53504 + -25,-3: + 0: 56797 + -24,-2: + 0: 65467 + -25,-2: + 0: 56797 + -24,-1: + 0: 17 + -25,-1: + 0: 19933 -23,-2: - 0: 65535 + 0: 65295 + -23,-3: + 0: 61164 -23,-4: - 0: 61120 - -23,-1: - 0: 35023 + 0: 51200 -22,-4: - 0: 65535 + 0: 65504 -22,-3: 0: 65535 -22,-2: - 0: 65535 - -22,-1: - 0: 65535 - -21,-4: - 0: 65527 - -21,-3: - 0: 65535 - -21,-2: - 0: 65535 - -21,-1: - 0: 65535 - -28,1: - 0: 34944 - -28,2: - 0: 34952 + 0: 65295 -27,1: - 0: 65535 + 0: 65518 -27,2: - 0: 65535 + 0: 61439 -27,3: - 0: 36607 + 0: 206 -27,0: - 0: 65160 + 0: 49160 -26,0: - 0: 65535 + 0: 65423 -26,1: 0: 65535 -26,2: 0: 65535 -26,3: + 0: 36863 + -26,-1: + 0: 36607 + -26,4: + 0: 65160 + -19,-16: + 1: 13102 + -19,-15: + 1: 11827 + -19,-17: + 1: 8806 + -19,-14: + 1: 59938 + -19,-13: + 1: 26210 + -19,-12: + 1: 25571 + -18,-16: + 1: 8739 + -18,-15: + 1: 8992 + -18,-17: + 1: 25188 + -18,-13: + 1: 8192 + -18,-12: + 1: 306 + -24,9: + 0: 17443 + -25,9: + 0: 8 + -24,12: + 0: 887 + -24,11: + 0: 8192 + -24,10: + 0: 132 + -23,10: + 0: 4352 + -23,11: + 0: 16930 + -23,12: + 0: 17476 + 1: 32768 + -27,-3: + 0: 61132 + -27,-2: + 0: 52974 + -27,-1: + 0: 140 + -27,-4: + 0: 32768 + -26,-4: + 0: 65024 + -26,-3: 0: 65535 - -25,0: - 0: 65535 - -25,1: - 0: 65535 - -25,2: - 0: 65535 - -25,3: + -26,-2: 0: 65535 - -31,1: - 0: 34952 + -31,0: + 1: 52428 + -31,-1: + 1: 52428 -31,2: - 0: 52360 + 1: 52360 + -31,3: + 1: 34956 + -30,0: + 1: 35983 + -31,1: + 1: 34952 -30,1: - 0: 35064 + 1: 35064 -30,2: - 0: 39321 - -30,0: - 0: 35983 + 1: 39321 -30,3: - 0: 39321 + 1: 39321 + -31,4: + 1: 34952 + -30,4: + 1: 34953 + -30,-1: + 1: 34952 -29,1: - 0: 16 + 1: 16 -29,2: - 0: 1 - -24,9: - 0: 30515 - -22,8: - 0: 15 - -21,8: - 0: 7 + 1: 1 + -20,-19: + 1: 48960 + -21,-19: + 1: 61312 + -20,-18: + 1: 32648 + -21,-18: + 1: 3908 + -20,-17: + 1: 2 + -19,-19: + 1: 3952 + -19,-18: + 1: 8960 + -18,-19: + 1: 25344 + -18,-18: + 1: 68 + -31,-2: + 1: 52360 + -31,-4: + 1: 34952 + -31,-5: + 1: 35020 + -30,-4: + 1: 63896 + -31,-3: + 1: 34952 + -30,-3: + 1: 51609 + -30,-2: + 1: 35000 + -30,-5: + 1: 34952 -29,-4: - 0: 1 + 1: 1 -29,-3: - 0: 16 + 1: 16 -29,-1: - 0: 4096 - -29,-6: - 0: 16 + 1: 4096 -29,-5: - 0: 4353 - -28,8: - 0: 65152 - -28,9: + 1: 4353 + -26,-8: + 1: 68 + -26,-9: + 1: 17478 + 25,-8: + 1: 61936 + 25,-7: + 0: 61455 + 25,-6: + 0: 65535 + 25,-5: + 0: 29472 + 1: 33794 + 25,-4: + 1: 35 + 0: 61956 + 26,-8: + 1: 63476 + 26,-7: + 0: 61455 + 26,-6: 0: 65535 + 26,-5: + 1: 4096 + 0: 61166 + 26,-4: + 0: 65262 + 27,-8: + 1: 61692 + 27,-7: + 0: 12303 + 27,-6: + 0: 13107 + 27,-5: + 0: 13107 + 27,-4: + 0: 13107 + 28,-8: + 1: 47359 + 28,-7: + 0: 4369 + 1: 43758 + 28,-6: + 0: 4369 + 1: 60138 + 28,-5: + 0: 4369 + 1: 43694 + -27,5: + 0: 61132 + -27,6: + 0: 52974 + -27,7: + 1: 41473 + 0: 140 -27,8: - 0: 63347 - -27,9: + 1: 115 + 0: 34560 + -27,4: + 0: 32768 + -26,5: 0: 65535 - -26,8: - 0: 30276 - -26,9: + -26,6: 0: 65535 + -26,7: + 0: 3839 + -26,8: + 1: 17988 + 0: 12288 -25,8: - 0: 61713 - -25,9: - 0: 65535 - -30,4: - 0: 34953 - -30,5: - 0: 39048 - -29,4: - 0: 16 - -29,5: - 0: 4368 - -29,6: - 0: 4369 - -29,7: - 0: 4097 + 1: 33041 + 0: 28672 + -27,-18: + 1: 17508 + -27,-19: + 1: 19456 + -27,-17: + 1: 19524 + -27,-16: + 1: 26214 + -26,-19: + 1: 12272 + -26,-17: + 1: 59238 + -26,-16: + 1: 19662 + -26,-18: + 1: 19456 + -25,-19: + 1: 3904 + -25,-18: + 1: 61312 + -24,-19: + 1: 44800 + -24,-18: + 1: 8186 + -32,11: + 0: 34952 + -31,11: + 0: 1 + 1: 16388 + -32,12: + 0: 50120 + 1: 32 + -31,10: + 0: 4915 + 1: 17408 + -31,9: + 0: 9920 + 1: 8 + -31,8: + 1: 35020 + -31,7: + 1: 52424 + -30,9: + 1: 8753 + 0: 14 + -30,10: + 1: 2 + -30,8: + 1: 59592 + -30,11: + 0: 52352 + -30,12: + 0: 16396 + -30,7: + 1: 34952 -29,8: - 0: 62721 + 1: 4353 + 0: 58368 -29,9: - 0: 65535 - -16,10: - 0: 65535 - -15,11: - 0: 65535 - -19,8: - 0: 128 - -18,8: - 0: 65535 - -18,9: - 0: 20206 - -18,11: - 0: 36040 - -17,10: - 0: 65535 - -17,11: - 0: 30591 - -19,5: - 0: 65535 - -19,6: - 0: 65279 - -19,7: - 0: 36079 - -18,5: - 0: 65535 - -18,6: - 0: 65535 - -18,7: - 0: 65535 - -23,10: + 0: 1 + 1: 70 + -29,11: 0: 4352 - -15,12: - 0: 65535 + -29,7: + 1: 4097 + -29,12: + 0: 1 + -29,10: + 0: 32768 + -28,8: + 0: 7680 + 1: 128 + -28,10: + 0: 63264 + -28,11: + 0: 39 + -16,13: + 0: 238 + 1: 61440 + -17,13: + 1: 65513 + 0: 6 + -16,14: + 1: 65535 + -17,14: + 1: 65535 + -16,15: + 1: 4623 + 0: 60912 + -17,15: + 1: 12367 + 0: 53168 + -16,16: + 1: 15 -15,13: - 0: 16383 - 2: 49152 + 0: 255 + 1: 4096 + 4: 49152 -15,14: - 0: 13107 - 2: 52428 - -14,12: - 0: 65535 + 1: 4369 + 4: 52428 + -15,15: + 1: 241 + 0: 65280 + -15,16: + 1: 143 -14,13: - 0: 53247 - 2: 12288 + 0: 35003 + 4: 12288 -14,14: - 2: 13107 - 0: 52428 - -13,12: - 0: 48059 - 3: 17476 + 4: 13107 + 0: 34952 + -14,15: + 1: 112 + 0: 65416 + -14,16: + 1: 32911 -13,13: - 0: 63487 + 0: 4369 + 1: 50368 -13,14: - 0: 48063 - -12,12: - 4: 4369 - 2: 17476 - 0: 43690 + 0: 4369 + 1: 43660 + -13,15: + 0: 40209 + 1: 25134 + -13,16: + 1: 24023 + 0: 32776 -12,13: - 0: 65439 + 1: 3984 -12,14: - 0: 65535 - -11,12: - 2: 4369 - 5: 17476 + 0: 43566 + -12,15: + 0: 43562 + -12,16: 0: 43690 -11,13: - 0: 65487 + 1: 4032 -11,14: + 0: 63247 + -11,15: + 0: 65287 + -11,16: 0: 65535 - -10,12: - 2: 4369 - 0: 61166 -10,13: - 0: 65535 + 1: 1908 -10,14: + 0: 65295 + -10,15: 0: 65535 - -9,12: + -10,16: 0: 65535 -9,13: - 0: 65535 + 1: 1 + 0: 64524 -9,14: - 0: 65535 - -8,12: - 0: 65535 + 0: 56769 + -9,15: + 0: 7645 + -9,16: + 0: 21855 -8,13: - 0: 65535 + 0: 63255 -8,14: - 0: 65535 - -7,12: - 0: 65535 + 0: 63344 + -8,15: + 0: 1919 + -8,16: + 0: 21855 -7,13: - 0: 65535 + 0: 63346 -7,14: - 0: 65535 + 0: 30583 + -7,15: + 0: 63479 + -7,16: + 0: 30511 + -6,13: + 0: 65520 + -6,14: + 0: 4095 + -6,15: + 0: 64767 + -6,16: + 0: 30511 + -5,16: + 0: 30511 -20,12: - 0: 65280 + 1: 3840 + 0: 61440 + -21,12: + 1: 2048 + 0: 49152 -20,13: - 0: 64799 + 0: 23581 + 1: 41218 + -21,13: + 0: 2252 + 1: 62464 -20,14: - 0: 53533 + 0: 20765 + 1: 32768 + -21,14: + 1: 52428 + 0: 4097 -20,15: - 0: 4575 + 0: 4563 + 1: 12 + -21,15: + 1: 34824 + 0: 17623 + -20,16: + 0: 7677 -19,12: - 0: 65280 + 0: 16128 + 1: 49152 -19,13: - 0: 65295 + 0: 52495 + 1: 12800 -19,14: - 0: 61455 + 0: 49167 + 1: 12288 + -19,15: + 0: 255 -18,12: - 0: 65280 + 0: 63744 + 1: 1536 -18,13: - 0: 56399 - -18,14: - 0: 61164 + 0: 4103 + 1: 52296 -18,15: - 0: 52429 - -17,12: - 0: 30583 - -17,13: - 0: 65519 + 0: 32897 + 1: 19532 + -18,14: + 1: 61164 + -18,16: + 1: 12 + 0: 16 + -17,16: + 1: 63 + -25,12: + 0: 2049 + -24,16: + 1: 40947 + -24,13: + 0: 52352 + -24,14: + 0: 2180 + 1: 8 + -23,13: + 0: 60278 + 1: 4232 + -23,14: + 0: 32767 + 1: 32768 + -23,15: + 1: 2 + 0: 2284 -22,13: - 0: 65296 + 1: 35856 + 0: 29440 -22,14: - 0: 63295 - -21,12: - 0: 65504 - -21,13: - 0: 64718 - -21,14: - 0: 56525 + 0: 53535 + 1: 9760 + -22,15: + 0: 255 + 1: 256 + -21,16: + 0: 17781 + 1: 34952 -20,-8: - 0: 3 + 1: 3 -20,-9: - 0: 28659 + 1: 26080 + 0: 531 + -18,-7: + 0: 32768 + -18,-8: + 1: 32768 + -21,-9: + 0: 238 + 1: 3857 -20,-10: - 0: 34944 + 1: 34816 -19,-10: - 0: 37120 + 1: 36864 -19,-9: - 0: 65533 + 0: 2160 + 1: 1165 -19,-11: - 0: 50722 - -18,-10: - 0: 26352 + 1: 50722 -18,-9: - 0: 24575 - -17,-10: - 0: 62712 + 0: 2957 + 1: 17504 + -18,-10: + 1: 18160 + -24,-12: + 1: 12544 + 0: 52736 + -25,-12: + 0: 60416 + -24,-11: + 0: 61455 + -25,-11: + 0: 49164 + -24,-10: + 1: 79 + 0: 176 + -25,-10: + 1: 9 + 0: 198 + -24,-9: + 1: 193 + 0: 3902 + -25,-9: + 1: 136 + 0: 3172 + -23,-12: + 0: 38442 + 1: 26820 + -23,-10: + 0: 61089 + 1: 78 + -23,-9: + 0: 3798 + 1: 40 + -23,-13: + 1: 9796 + 0: 51626 + -23,-11: + 0: 43690 + 1: 17476 + -22,-12: + 0: 15872 + 1: 49152 -22,-10: - 0: 239 + 1: 41 + 0: 198 -22,-9: - 0: 4095 + 0: 2035 + 1: 2060 -22,-11: 0: 57350 - -21,-9: - 0: 4095 + -21,-12: + 0: 50432 + 1: 12800 -21,-11: 0: 28672 -21,-10: - 0: 127 - -20,4: - 0: 65535 - -24,0: - 0: 6007 - -24,4: - 0: 13079 - -24,5: - 0: 65535 - -24,6: - 0: 30719 - -24,7: - 0: 307 - -24,-4: - 0: 12544 - -24,-3: - 0: 63347 - -24,-2: - 0: 65535 - -24,-1: - 0: 4927 - -27,-3: - 0: 65534 - -27,-2: - 0: 65535 - -27,-4: - 0: 60416 - -27,-1: - 0: 36078 - -26,-4: - 0: 65520 - -26,-3: - 0: 65535 - -26,-2: - 0: 65535 - -26,-1: - 0: 65535 - -25,-4: - 0: 65392 - -25,-3: - 0: 65535 - -25,-2: - 0: 65535 - -25,-1: - 0: 65535 - -27,5: - 0: 65534 - -27,6: - 0: 65535 - -27,4: - 0: 60416 - -27,7: - 0: 44783 - -26,4: - 0: 65532 - -26,5: - 0: 65535 - -26,6: - 0: 65535 - -26,7: - 0: 65535 - -25,4: - 0: 65535 - -25,5: - 0: 65535 - -25,6: - 0: 65535 - -25,7: - 0: 32767 - 14,-11: - 0: 30515 - -23,0: - 0: 34952 - -23,3: - 0: 34952 - 16,-12: - 0: 5904 + 0: 79 + 1: 48 17,-12: - 0: 13090 + 1: 13090 17,-11: - 0: 25187 + 1: 25187 + 17,-13: + 1: 61986 + 17,-10: + 1: 35908 + 18,-10: + 1: 29292 18,-12: - 0: 9830 + 1: 9830 + 18,-13: + 1: 30446 18,-11: - 0: 52322 + 1: 52322 + 18,-9: + 1: 12 19,-11: - 0: 4096 - 16,-13: - 0: 241 - 17,-13: - 0: 61986 - 18,-13: - 0: 30446 + 1: 4096 + 19,-10: + 1: 15 + 19,-9: + 1: 63 20,-10: - 0: 22007 - 20,-9: - 0: 61045 - 21,-10: - 0: 51440 - 21,-3: - 0: 4095 - 22,-2: - 0: 65278 - 22,-1: - 0: 13 - 21,1: - 0: 65527 - 21,2: - 0: 65535 - 21,3: - 0: 65535 - 22,1: - 0: 65497 - 22,2: - 0: 65535 - 22,3: - 0: 65535 - 21,6: - 0: 65535 - 21,4: - 0: 65535 - 21,5: - 0: 65535 - 22,4: - 0: 65535 - 22,6: - 0: 65535 - 22,5: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 65535 - 2,14: - 0: 65535 - 3,14: - 0: 65535 - 3,15: - 0: 64495 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 15 - 5,14: - 0: 65535 - 5,15: - 0: 15 - 6,14: - 0: 65535 - 6,15: - 0: 238 - 7,14: - 0: 16383 - -8,15: - 0: 65535 - -7,15: - 0: 65535 - -6,12: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - 0,16: - 0: 65535 - 1,16: - 0: 65535 - -4,16: - 0: 65535 - -3,16: - 0: 65535 - -2,16: - 0: 65535 - -1,16: - 0: 65535 - -10,1: - 0: 65535 - -9,15: - 0: 65535 - 0,17: - 0: 65535 - 0,18: - 0: 65535 - 0,19: - 0: 65535 - 1,18: - 0: 65535 - 1,19: - 0: 65535 - 2,18: - 0: 65535 - 2,19: - 0: 65535 - -4,17: - 0: 64751 - -4,18: - 0: 64764 - -4,19: - 0: 65484 - -3,17: - 0: 65535 - -3,18: - 0: 65535 - -3,19: - 0: 65535 - -2,17: - 0: 65535 - -2,18: - 0: 65535 - -2,19: - 0: 65535 - -1,17: - 0: 65535 - -1,18: - 0: 65535 - -1,19: - 0: 65535 - -8,16: - 0: 65535 - -8,17: - 0: 191 - -7,16: - 0: 65535 - -7,17: - 0: 143 - -6,16: - 0: 65535 - -6,17: - 0: 207 - -5,16: - 0: 65535 - -5,17: - 0: 2287 - -9,16: - 0: 65535 - -9,17: - 0: 29695 - -20,3: - 0: 65535 - -24,10: - 0: 65527 - -24,11: - 0: 65535 - -28,10: - 0: 65535 - -28,11: - 0: 65535 - -27,10: - 0: 65535 - -27,11: - 0: 65535 - -26,10: - 0: 65535 - -26,11: - 0: 65535 - -25,10: - 0: 65535 - -25,11: - 0: 65535 - -30,7: - 0: 34952 - -30,6: - 0: 63647 - -32,11: - 0: 34952 - -31,8: - 0: 35020 - -31,9: - 0: 61128 - -31,10: - 0: 65535 - -31,11: - 0: 65535 - -30,8: - 0: 59592 - -30,9: - 0: 65535 - -30,10: - 0: 65535 - -30,11: - 0: 65535 - -29,10: - 0: 65535 - -29,11: - 0: 65535 - -10,15: - 0: 65535 - -24,12: - 0: 65535 - -24,13: - 0: 65535 - -24,14: - 0: 65535 - -23,12: - 0: 63351 - -23,13: - 0: 65535 - -10,16: - 0: 65535 - -28,12: - 0: 65535 - -28,13: - 0: 65535 - -28,14: - 0: 65535 - -28,15: - 0: 65535 - -27,12: - 0: 65535 - -27,14: - 0: 65535 - -27,15: - 0: 65535 - -27,13: - 0: 65535 - -26,12: - 0: 65535 - -26,13: - 0: 65535 - -26,14: - 0: 65535 - -26,15: - 0: 65535 - -25,12: - 0: 65535 - -25,13: - 0: 65535 - -25,14: - 0: 65535 - -25,15: - 0: 65535 - -32,13: - 0: 36863 - -32,12: - 0: 53224 - -32,14: - 0: 8 - -32,15: - 0: 60480 - -31,13: - 0: 65535 - -31,14: - 0: 61183 - -31,12: - 0: 65535 - -31,15: - 0: 58892 - -30,12: - 0: 65535 - -30,13: - 0: 65535 - -30,14: - 0: 65535 - -30,15: - 0: 36079 - -29,12: - 0: 65535 - -29,13: - 0: 65535 - -29,14: - 0: 65535 - -29,15: - 0: 65535 - -32,16: - 0: 12 - -32,17: - 0: 79 - -31,16: - 0: 28703 - -31,17: - 0: 25135 - -30,16: - 0: 35071 - -30,17: - 0: 15 - -29,16: - 0: 4607 - -29,17: - 0: 143 - -28,16: - 0: 2271 - -28,17: - 0: 275 - -27,16: - 0: 33023 - -27,17: - 0: 36591 - -26,16: - 0: 65535 - -26,17: - 0: 65535 - -25,16: - 0: 4351 - -25,17: - 0: 4539 - -33,12: - 0: 2048 - -33,13: - 0: 192 - -33,16: - 0: 49152 - -16,11: - 0: 65535 - -16,12: - 0: 65535 - -16,13: - 0: 65535 - -16,14: - 0: 65535 - -16,15: - 0: 65535 - -15,15: - 0: 65523 - 2: 12 - -14,15: - 2: 3 - 0: 65532 - -13,15: - 0: 65535 - -12,15: - 0: 65535 - -11,15: - 0: 65535 - -20,0: - 0: 65535 - 15,15: - 0: 65535 - 2,15: - 0: 65535 - 7,15: - 0: 51 - 16,15: - 0: 65535 - 16,14: - 0: 65535 - -31,0: - 0: 52428 - -31,3: - 0: 34956 - -31,-1: - 0: 52428 - -30,-1: - 0: 34952 - -31,4: - 0: 34952 - 1,17: - 0: 65535 - 2,16: - 0: 65535 - 2,17: - 0: 65535 - 3,16: - 0: 65535 - 3,17: - 0: 65535 - 3,18: - 0: 65535 - 3,19: - 0: 65535 - -8,18: - 0: 1584 - -7,18: - 0: 59520 - -7,19: - 0: 32768 - -6,18: - 0: 61968 - -6,19: - 0: 29192 - -5,19: - 0: 59392 - -5,18: - 0: 62064 - -3,20: - 0: 2254 - -2,20: - 0: 4095 - -1,20: - 0: 2189 - 0,20: - 0: 4095 - 1,20: - 0: 2201 - 2,20: - 0: 4095 - 3,20: - 0: 11 - 4,18: - 0: 4369 - 4,19: - 0: 4593 - -9,18: - 0: 1907 - -8,20: - 0: 15 - -7,20: - 0: 255 - -6,20: - 0: 31 - 23,9: - 0: 65535 - 23,10: - 0: 65535 - 19,14: - 0: 65535 - 20,14: - 0: 65535 - 20,15: - 0: 65535 - 21,13: - 0: 65535 - 21,14: - 0: 65535 - 21,15: - 0: 65535 - 22,13: - 0: 65535 - 22,14: - 0: 65535 - 23,13: - 0: 65535 - 23,8: - 0: 65535 - 23,11: - 0: 65535 - 17,15: - 0: 65535 - 23,3: - 0: 65535 - 23,12: - 0: 65535 - 22,7: - 0: 65535 - 23,4: - 0: 65535 - 23,5: - 0: 65535 - 23,6: - 0: 65535 - 23,7: - 0: 65535 - 24,8: - 0: 65535 - 24,9: - 0: 65535 - 24,10: - 0: 65535 - 25,11: - 0: 65535 - 25,8: - 0: 65535 - 25,9: - 0: 65535 - 25,10: - 0: 65535 - 24,12: - 0: 65535 - 24,13: - 0: 65535 - 24,14: - 0: 65535 - 24,15: - 0: 65535 - 25,12: - 0: 65535 - 24,6: - 0: 65535 - 24,7: - 0: 65535 - 25,7: - 0: 65535 - 24,16: - 0: 65535 - 24,17: - 0: 65535 - 20,16: - 0: 65535 - 20,17: - 0: 65535 - 21,16: - 0: 65535 - 22,16: - 0: 65535 - 23,16: - 0: 65535 - 17,16: - 0: 65535 - 18,16: - 0: 65535 - 18,17: - 0: 65535 - 19,16: - 0: 65535 - 19,17: - 0: 65535 - -12,16: - 0: 65535 - -12,17: - 0: 65535 - -12,18: - 0: 1535 - -11,16: - 0: 65535 - -11,17: - 0: 65535 - -11,18: - 0: 3324 - -10,17: - 0: 65535 - -10,18: - 0: 4095 - -13,17: - 0: 57309 - -13,16: - 0: 56799 - -13,18: - 0: 19705 - 17,14: - 0: 65535 - 18,14: - 0: 65535 - 18,15: - 0: 65535 - 19,15: - 0: 65535 - 22,15: - 0: 65535 - 23,15: - 0: 65535 - 23,14: - 0: 65535 - -17,14: - 0: 65535 - -17,15: - 0: 65535 - 13,16: - 0: 36044 - 13,17: - 0: 2184 - 14,16: - 0: 65535 - 14,17: - 0: 61183 - 15,16: - 0: 65535 - 15,17: - 0: 65535 - 24,11: - 0: 65535 - 24,5: - 0: 65535 - 25,6: - 0: 65535 - 20,18: - 0: 65535 - 21,17: - 0: 65535 - 21,18: - 0: 65535 - 22,17: - 0: 65535 - 16,16: - 0: 65535 - 16,17: - 0: 65535 - 17,17: - 0: 65535 - -16,16: - 0: 15 - -15,16: - 0: 143 - -14,16: - 0: 32911 - -14,17: - 0: 34952 - -14,18: - 0: 15 - -24,16: - 0: 40959 - -23,16: - 0: 2504 - -23,17: - 0: 128 - -22,17: - 0: 61424 - -21,17: - 0: 57308 - -21,18: - 0: 64972 - -20,17: - 0: 57297 - -19,17: - 0: 65520 - -19,16: - 0: 1791 - -18,16: - 0: 28 - -18,17: - 0: 256 - -17,16: - 0: 63 - 14,-12: - 0: 49075 - 15,-12: - 0: 65520 - -19,15: - 0: 255 - -23,15: - 0: 16383 - -23,14: - 0: 65535 - -22,15: - 0: 511 - -21,15: - 0: 52447 - -24,-12: - 0: 65280 - -24,-11: - 0: 61455 - -24,-10: - 0: 255 - -24,-9: - 0: 4095 - -23,-12: - 0: 65262 - -23,-10: - 0: 61167 - -23,-9: - 0: 3838 - -23,-11: - 0: 61166 - -22,-12: - 0: 65024 - -21,-12: - 0: 63232 + 1: 22007 12,-16: - 0: 65280 + 0: 52992 + 1: 12288 12,-15: - 0: 57359 + 0: 57345 + 1: 14 + 11,-16: + 0: 32768 12,-14: 0: 254 12,-13: - 0: 4095 + 1: 1 + 0: 4094 + 11,-13: + 0: 128 13,-16: - 0: 64392 + 0: 2816 + 1: 61576 13,-15: - 0: 47243 + 1: 3 + 0: 47240 13,-14: 0: 35007 - 13,-13: - 0: 35835 + 13,-17: + 0: 46888 + 1: 2176 14,-16: - 0: 64307 + 1: 4369 + 0: 59938 14,-15: - 0: 45883 + 0: 41531 + 1: 4352 14,-14: - 0: 13247 - 14,-13: - 0: 15355 + 1: 17 + 0: 13230 + 14,-17: + 0: 49075 15,-16: - 0: 65280 + 0: 5888 + 1: 59392 15,-15: 0: 61441 15,-14: - 0: 255 + 0: 117 + 1: 138 15,-13: 0: 4095 + 16,-16: + 1: 36608 + 16,-15: + 0: 4096 + 16,-14: + 1: 19 + 16,-13: + 0: 49 + 1: 192 12,-18: - 0: 2751 + 0: 2585 + 1: 166 + 11,-18: + 0: 128 12,-17: 0: 64512 12,-20: - 0: 14 + 1: 6 + 0: 8 + 12,-21: + 1: 49152 13,-20: - 0: 34847 + 1: 34829 + 0: 18 13,-18: - 0: 35835 - 13,-17: - 0: 49064 + 0: 2931 + 1: 32904 + 13,-21: + 0: 24576 + 1: 32768 13,-19: - 0: 34958 + 1: 34958 14,-20: - 0: 62262 + 0: 4352 + 1: 57910 14,-19: - 0: 4881 + 0: 513 + 1: 4368 14,-18: - 0: 15355 - 14,-17: - 0: 49075 + 1: 4115 + 0: 11240 + 14,-21: + 1: 12360 + 0: 19584 15,-20: - 0: 62208 - 15,-19: - 0: 3 + 0: 12288 + 1: 49920 15,-18: 0: 3869 15,-17: 0: 12544 - -23,18: - 0: 63761 - -23,19: - 0: 32795 - -22,16: - 0: 4095 - -22,18: - 0: 65280 - -22,19: - 0: 61455 - -21,16: - 0: 52733 - -21,19: - 0: 56525 - -20,16: - 0: 7677 - -20,18: - 0: 64785 - -20,19: - 0: 53533 - -19,18: - 0: 65280 - -19,19: - 0: 61455 - -18,18: - 0: 4096 - -24,-15: - 0: 252 - -24,-14: - 0: 4095 - -24,-13: - 0: 63616 - -24,-16: - 0: 32768 - -23,-15: - 0: 61167 - -23,-14: - 0: 61182 - -23,-13: - 0: 61422 - -23,-16: - 0: 52940 - -22,-15: - 0: 239 - -22,-14: - 0: 3838 - -22,-13: - 0: 61408 - -22,-16: - 0: 8198 - -21,-16: - 0: 4096 - -21,-15: - 0: 127 - -21,-14: - 0: 1840 - -21,-13: - 0: 32512 - -25,-13: - 0: 52800 - -25,-14: - 0: 3968 - -25,-12: - 0: 60416 - -25,-10: - 0: 207 - -25,-9: - 0: 3308 - -25,-11: - 0: 49164 - -23,20: - 0: 140 - -23,21: - 0: 8 - -22,20: - 0: 143 - -22,21: - 0: 1279 - -22,23: - 0: 52992 - -22,22: - 0: 3200 - -21,20: - 0: 52447 - -21,21: - 0: 52477 - -21,22: - 0: 57308 - -21,23: - 0: 64972 - -20,20: - 0: 4575 - -20,21: - 0: 7677 - -20,22: - 0: 57169 - -20,23: - 0: 63761 - -19,20: - 0: 255 - -19,21: - 0: 2559 - -19,22: - 0: 64640 - -19,23: - 0: 65280 - -18,20: - 0: 143 - -18,21: - 0: 16 - -18,22: - 0: 256 - -21,24: - 0: 34953 - -21,25: - 0: 27848 - -21,26: - 0: 68 - -20,24: - 0: 4109 - -19,24: - 0: 3 - 11,-16: - 0: 32768 - 11,-13: - 0: 128 - 16,-16: - 0: 36608 - 16,-15: - 0: 4096 - 16,-14: - 0: 19 - 11,-18: - 0: 128 + 15,-19: + 1: 3 16,-20: - 0: 28928 + 1: 20736 + 0: 8192 16,-18: 0: 305 - 16,-19: - 0: 2 - -23,-17: - 0: 50244 - -22,-17: - 0: 15872 - -21,-17: - 0: 768 - 12,-21: - 0: 49152 - 13,-21: - 0: 57344 - 14,-21: - 0: 31944 - 15,-21: - 0: 15 - 15,-22: - 0: 51328 - 16,-22: - 0: 52982 - 16,-21: - 0: 9 - 17,-22: - 0: 12544 - 17,-21: - 0: 36471 - -26,-8: - 0: 68 - -16,-11: - 0: 57344 - 22,-3: - 0: 65535 - 23,-3: - 0: 65535 - 23,-2: + 0,17: + 0: 30719 + -1,17: + 0: 65287 + 0,18: + 0: 65527 + -1,18: + 0: 65520 + 0,19: + 0: 24575 + -1,19: + 0: 4095 + 0,20: + 0: 1365 + 1,17: + 0: 65339 + 1,18: + 0: 65520 + 1,19: + 0: 4095 + 1,20: + 1: 17 + 2,17: + 0: 65295 + 2,18: + 0: 65520 + 2,19: + 0: 24575 + 2,20: + 0: 1365 + 3,17: + 0: 30566 + 3,18: + 0: 30576 + 3,19: + 0: 1911 + 3,20: + 1: 11 + 4,18: + 1: 1 + 0: 4368 + 4,19: + 0: 273 + 1: 4320 + -4,17: + 1: 12320 + 0: 17472 + -4,18: + 1: 12336 + 0: 17472 + -5,18: + 1: 62064 + -4,19: + 1: 29440 + 0: 1092 + -5,19: + 1: 59392 + -3,17: + 0: 65520 + -3,18: + 0: 65520 + -3,19: + 0: 4095 + -3,20: + 1: 70 + -2,17: + 0: 65308 + -2,18: + 0: 65520 + -2,19: + 0: 24575 + -2,20: + 0: 1365 + -1,20: + 1: 5 + -8,17: + 0: 30576 + -9,17: + 0: 64976 + -8,18: + 0: 119 + -9,18: + 0: 221 + -7,18: + 1: 60288 + -7,17: + 1: 128 + -6,18: + 1: 61968 + -7,19: + 1: 32768 + -7,20: + 1: 255 + -6,19: + 1: 29192 + -6,20: + 1: 31 + -6,17: + 1: 192 + -5,17: + 1: 2272 + -5,20: + 1: 23 + -12,17: + 0: 4066 + -13,17: + 0: 2188 + 1: 4881 + -12,18: + 1: 1535 + -13,18: + 1: 17657 + -11,17: + 0: 2032 + -11,18: + 1: 1140 + -10,17: + 0: 65524 + -10,18: + 0: 255 + -28,12: + 0: 65262 + -28,13: + 0: 61183 + -28,14: + 0: 30478 + -29,14: + 0: 36467 + -29,15: + 1: 20224 + -28,16: + 1: 15 + -27,12: 0: 65535 - 23,-1: - 0: 12 - 23,1: - 0: 65329 - 20,-7: - 0: 4972 - 20,-8: - 0: 17476 - 21,-7: - 0: 7 - 21,-6: + -27,13: 0: 65535 - 21,-8: - 0: 52420 - -19,-16: - 0: 13102 - -19,-15: - 0: 11827 - -19,-14: - 0: 59938 - -19,-13: - 0: 26210 - -18,-16: - 0: 8739 - -18,-15: - 0: 8992 - -18,-13: + -27,14: + 0: 16415 + -27,16: + 1: 231 + -27,11: + 0: 24576 + -27,15: + 1: 32768 + -26,12: + 0: 29458 + -26,13: + 0: 375 + -26,14: + 0: 137 + -26,15: + 1: 61696 + -26,16: + 1: 1019 + -26,11: + 0: 36552 + -25,13: + 0: 4096 + -25,14: + 0: 627 + -25,15: + 1: 4864 0: 8192 - -31,-7: - 0: 8704 - -30,-8: - 0: 8704 - -30,-7: - 0: 17510 - -30,-6: - 0: 36044 - -30,-5: - 0: 34952 - -20,-19: - 0: 48960 - -20,-18: - 0: 32648 - -20,-17: - 0: 2 - -19,-19: - 0: 3952 - -19,-18: - 0: 8960 - -19,-17: - 0: 8806 - -18,-19: - 0: 25344 - -18,-17: - 0: 25188 - -18,-18: - 0: 68 - -31,-4: - 0: 34952 - -30,-4: - 0: 63896 - -30,-3: - 0: 51609 - -30,-2: - 0: 35000 - -27,-18: - 0: 17508 - -27,-19: - 0: 19456 - -27,-17: - 0: 19524 - -26,-19: - 0: 12272 - -26,-17: - 0: 59238 - -26,-18: - 0: 19456 - -25,-19: - 0: 3904 - -25,-18: - 0: 61312 - -19,-12: - 0: 25571 - -18,-12: - 0: 306 - -26,18: - 0: 15 - -33,17: + -25,11: + 0: 12593 + -25,16: + 1: 191 + -33,12: + 1: 2048 + -32,13: + 1: 263 + 0: 35064 + -33,13: + 0: 128 + 1: 64 + -32,15: + 1: 60416 + 0: 64 + -32,16: + 1: 12 + -31,12: + 0: 12288 + -31,13: + 0: 19 + -32,14: + 0: 8 + -31,14: + 0: 8721 + 1: 17476 + -31,15: + 1: 58884 0: 8 + -31,16: + 1: 28703 + -30,14: + 1: 4096 + -30,13: + 0: 36078 + -30,15: + 0: 33824 + -29,13: + 0: 12304 + -30,16: + 1: 35070 + -29,16: + 1: 4607 + -32,17: + 1: 79 + -33,17: + 1: 8 + -31,17: + 1: 24609 + 0: 12 + -30,17: + 0: 15 + -29,17: + 0: 1 + -28,17: + 0: 1 + -27,17: + 1: 1 + -25,17: + 1: 138 + -24,17: + 1: 137 + -26,10: + 0: 103 + -26,9: + 0: 8204 + -33,16: + 1: 49152 + 4,20: + 1: 15 5,19: - 0: 37244 + 1: 37244 + 5,20: + 1: 253 6,19: - 0: 4975 + 1: 4975 + 6,20: + 1: 241 + 7,19: + 1: 16527 + 7,20: + 1: 254 + 8,19: + 1: 31 12,19: - 0: 49392 - 13,18: - 0: 34944 + 1: 49392 + 11,19: + 1: 50416 + 12,20: + 1: 159 13,19: - 0: 56568 + 1: 4144 + 13,20: + 1: 3 + 0: 49152 + 13,17: + 1: 2184 + 13,18: + 1: 34944 14,18: - 0: 65518 + 1: 806 14,19: - 0: 65535 - 15,18: - 0: 65535 + 0: 65376 + 14,17: + 1: 8192 + 14,20: + 0: 63350 + 15,17: + 0: 52983 15,19: + 0: 62232 + 15,18: + 0: 52940 + 15,20: + 0: 4102 + 1: 32768 + 16,18: + 0: 29469 + 16,19: 0: 65535 - 26,9: + 24,8: + 0: 61164 + 25,8: + 0: 4096 + 25,9: 0: 13073 - 26,10: - 0: 65399 - 26,11: + 25,10: + 0: 63351 + 25,11: 0: 65535 - 25,13: + 25,7: + 0: 4403 + 25,12: 0: 65535 + 26,11: + 0: 4913 + 26,12: + 0: 1 + 24,16: + 0: 19 + 25,13: + 0: 63473 25,14: - 0: 65535 + 0: 65296 25,15: - 0: 65535 - 26,12: - 0: 30719 - 24,4: - 0: 65535 - 25,4: - 0: 65535 + 0: 255 + 26,13: + 0: 63472 + 26,14: + 1: 32 + 27,13: + 1: 12560 25,5: - 0: 65535 + 0: 65516 + 25,6: + 0: 14207 + 25,4: + 0: 36044 + 25,3: + 0: 36047 26,4: - 0: 65535 + 0: 30583 26,5: - 0: 65535 - 26,6: - 0: 13183 - 26,7: - 0: 273 - 27,5: - 0: 275 + 0: 4371 + 26,3: + 0: 29457 + 24,17: + 0: 816 + 23,17: + 0: 36863 24,18: - 0: 65535 + 0: 53247 + 23,18: + 0: 40413 24,19: - 0: 49151 - 25,17: - 0: 62224 + 0: 4573 + 23,19: + 0: 57340 25,18: - 0: 65535 - 25,16: - 0: 23 + 0: 4095 + 20,17: + 0: 26350 + 20,18: + 0: 32759 + 19,18: + 0: 3985 + 20,20: + 0: 12270 20,19: - 0: 65535 + 0: 16384 21,19: - 0: 65535 + 0: 1262 + 21,17: + 0: 52428 + 21,18: + 0: 51404 + 22,17: + 0: 40955 + 22,18: + 0: 56541 22,19: - 0: 65535 - 23,19: - 0: 65535 - 23,18: - 0: 65535 - 23,17: - 0: 65535 - 16,19: - 0: 65535 + 0: 52697 + 16,20: + 0: 255 + 16,17: + 0: 49356 + 17,17: + 0: 65328 17,18: - 0: 65535 + 0: 127 17,19: - 0: 65535 + 0: 65528 + 17,20: + 0: 10111 + 18,17: + 0: 4194 18,18: - 0: 65535 + 0: 60553 18,19: 0: 65535 + 18,20: + 0: 10111 + 19,16: + 0: 13072 + 19,17: + 0: 12595 19,19: - 0: 65535 + 0: 4352 + 19,20: + 0: 30579 -16,17: - 0: 62720 + 1: 62720 + -17,17: + 1: 63488 -16,18: - 0: 12834 + 1: 12834 + -17,18: + 1: 62242 -16,19: - 0: 8950 + 1: 8950 + -17,19: + 1: 8930 + -16,20: + 1: 13158 -15,17: - 0: 62464 + 1: 62464 -15,19: - 0: 248 + 1: 248 -15,18: - 0: 52360 + 1: 52360 + -14,18: + 1: 15 -14,19: - 0: 3312 + 1: 3312 + -14,17: + 1: 2176 -13,19: - 0: 57207 - -24,17: - 0: 36057 + 1: 57207 + -13,20: + 1: 8 -24,19: - 0: 52428 + 1: 50176 + -24,20: + 1: 53198 + -23,16: + 1: 256 + 0: 200 -24,18: - 0: 34952 - -17,17: - 0: 63488 - -17,18: - 0: 62242 - -17,19: - 0: 8930 - -27,-16: - 0: 26214 + 1: 2184 + -23,18: + 1: 8209 + 0: 51200 + -22,16: + 0: 4095 + -23,17: + 0: 128 + -22,17: + 1: 32784 + 0: 28640 + -22,18: + 0: 7936 + 1: 57344 + -23,19: + 0: 32776 + -22,19: + 0: 61455 + -23,20: + 0: 140 + -22,20: + 1: 3 + 0: 140 + -21,17: + 0: 55260 + 1: 2048 + -21,18: + 0: 30156 + 1: 34816 + -21,19: + 0: 36933 + 1: 19592 + -21,20: + 0: 18587 + 1: 33860 + -20,17: + 0: 51921 + 1: 5376 + -20,18: + 0: 31761 + 1: 33024 + -20,19: + 0: 53533 + -20,20: + 0: 207 + 1: 4368 + -19,16: + 0: 1791 + -19,17: + 0: 65520 + -19,18: + 0: 39168 + 1: 26112 + -19,19: + 0: 40975 + 1: 20480 + -19,20: + 0: 131 + 1: 124 + -18,17: + 0: 256 + -18,18: + 0: 4096 + -17,20: + 1: 8754 + -24,-15: + 0: 176 + 1: 76 + -24,-14: + 0: 3727 + 1: 368 + -25,-14: + 1: 896 + 0: 3072 + -24,-13: + 1: 28672 + 0: 34944 + -25,-13: + 1: 35840 + 0: 16960 + -24,-16: + 0: 32768 + -23,-15: + 0: 61101 + 1: 66 + -23,-14: + 1: 17970 + 0: 43212 + -23,-16: + 1: 516 + 0: 52424 + -23,-17: + 1: 50244 + -22,-15: + 0: 231 + 1: 8 + -22,-14: + 0: 3838 + -22,-13: + 0: 57824 + 1: 3584 + -22,-16: + 1: 6 + 0: 8192 + -22,-17: + 1: 15872 + -21,-15: + 1: 19 + 0: 108 + -21,-14: + 0: 1840 + -21,-13: + 1: 8448 + 0: 24064 + -21,-16: + 0: 4096 -27,-15: - 0: 28262 + 1: 28262 -27,-14: - 0: 17476 + 1: 17476 -27,-13: - 0: 17484 + 1: 17484 + -27,-12: + 1: 25676 -26,-15: - 0: 17734 + 1: 17734 -26,-13: - 0: 18021 - -26,-16: - 0: 19662 + 1: 18021 -26,-14: - 0: 19660 + 1: 19660 + -26,-12: + 1: 17988 -25,-16: - 0: 16 - -27,-12: - 0: 25676 + 1: 16 + -28,-11: + 1: 3936 + -29,-11: + 1: 3312 -27,-11: - 0: 4070 + 1: 4070 -26,-11: - 0: 26436 - -26,-9: - 0: 17478 - -26,-12: - 0: 17988 + 1: 26436 -26,-10: - 0: 17484 - -24,20: - 0: 53214 + 1: 17484 -24,21: - 0: 40840 + 1: 40840 + -25,21: + 1: 34952 -24,23: - 0: 35976 + 1: 35976 -24,22: - 0: 34952 + 1: 34952 -23,22: - 0: 31744 - -17,20: - 0: 8754 + 1: 31744 + -24,24: + 1: 34959 + -23,21: + 1: 8 + -22,21: + 0: 1139 + 1: 140 + -22,23: + 0: 52992 + -22,22: + 0: 1152 + 1: 2048 + -21,21: + 0: 17653 + 1: 34824 + -21,22: + 0: 22612 + 1: 34696 + -21,23: + 0: 12740 + 1: 52232 + -21,24: + 0: 34817 + 1: 136 + -20,21: + 0: 7445 + 1: 232 + -20,22: + 0: 55105 + 1: 2064 + -20,23: + 0: 30993 + 1: 32768 + -20,24: + 1: 1 + 0: 4108 + -19,21: + 1: 55 + 0: 2504 + -19,22: + 1: 13312 + 0: 51328 + -19,23: + 0: 14080 + 1: 51200 + -19,24: + 1: 3 + -18,20: + 1: 143 + -18,21: + 0: 16 + -18,22: + 0: 256 -17,21: - 0: 12834 + 1: 12834 -17,22: - 0: 8767 + 1: 8767 -17,23: - 0: 9186 - -24,24: - 0: 34959 + 1: 9186 + -17,24: + 1: 8738 + -16,22: + 1: 8739 + -25,24: + 1: 34952 -24,26: - 0: 36744 - -24,25: - 0: 34952 - -24,27: - 0: 34952 + 1: 36744 + -25,26: + 1: 52428 -23,24: - 0: 4368 + 1: 4368 + -24,25: + 1: 34952 -23,25: - 0: 273 + 1: 273 -23,26: - 0: 16 + 1: 16 + -24,27: + 1: 34952 -23,27: - 0: 61440 + 1: 61440 + -23,28: + 1: 62532 -22,27: - 0: 61440 + 1: 61440 + -22,28: + 1: 61713 -21,27: - 0: 62528 + 1: 62528 + -21,25: + 1: 25664 + 0: 2184 + -21,26: + 1: 68 -20,27: - 0: 64512 + 1: 64512 -19,27: - 0: 61440 + 1: 61440 + -19,28: + 1: 61986 -18,27: - 0: 61440 + 1: 61440 -18,25: - 0: 32768 + 1: 32768 -17,25: - 0: 13106 - -17,26: - 0: 8755 + 1: 13106 -17,27: - 0: 62062 - -17,24: - 0: 8738 + 1: 62062 + -17,26: + 1: 8755 + -16,27: + 1: 30439 8,-14: - 0: 61952 - 8,-13: - 0: 61455 + 1: 61952 + 7,-14: + 1: 61440 9,-14: - 0: 4096 - 9,-13: - 0: 62464 + 1: 4096 17,-16: - 0: 58146 + 1: 58146 + 17,-17: + 1: 8742 17,-15: - 0: 8930 + 1: 8930 17,-14: - 0: 8738 + 1: 8738 18,-16: - 0: 13858 + 1: 13858 18,-15: - 0: 25138 + 1: 25138 + 18,-17: + 1: 8812 18,-14: - 0: 26342 - 17,-17: - 0: 8742 + 1: 26342 + 16,-19: + 1: 2 17,-18: - 0: 17608 + 1: 17608 18,-18: - 0: 35951 - 18,-17: - 0: 8812 + 1: 35951 18,-20: - 0: 8 - 18,-19: - 0: 34952 + 1: 8 19,-20: - 0: 4371 + 1: 4371 + 18,-19: + 1: 34952 19,-19: - 0: 3841 + 1: 3841 19,-18: - 0: 59535 + 1: 59535 19,-17: - 0: 3 - -24,-19: - 0: 44800 - -24,-18: - 0: 8186 + 1: 3 + 19,-21: + 1: 13075 + 20,-19: + 1: 4371 + 20,-18: + 1: 1 -23,-19: - 0: 3840 + 1: 3840 -23,-18: - 0: 20224 + 1: 20224 -22,-19: - 0: 4080 + 1: 4080 -22,-18: - 0: 3840 - -21,-19: - 0: 61312 - -21,-18: - 0: 3908 + 1: 3840 + -21,-17: + 1: 768 12,-24: - 0: 3760 + 1: 3760 + 11,-24: + 1: 1984 12,-23: - 0: 3968 + 1: 3968 + 11,-23: + 1: 63488 13,-24: - 0: 43768 + 1: 43768 13,-23: - 0: 61434 + 1: 61434 13,-22: - 0: 4 + 1: 4 14,-24: - 0: 249 + 1: 249 14,-23: - 0: 40848 + 1: 40848 15,-24: - 0: 20016 + 1: 20016 15,-23: - 0: 8052 + 1: 8052 + 15,-21: + 0: 3 + 1: 12 + 15,-22: + 1: 51328 16,-24: - 0: 3952 + 1: 3952 16,-23: - 0: 52992 + 1: 52992 + 16,-22: + 1: 3826 + 0: 49156 + 16,-21: + 1: 1 + 0: 8 17,-24: - 0: 3840 + 1: 3840 17,-23: - 0: 8048 + 1: 8048 + 17,-22: + 1: 12544 + 17,-21: + 0: 2083 + 1: 34388 18,-24: - 0: 52992 + 1: 52992 18,-23: - 0: 58112 + 1: 58112 + 19,-24: + 1: 12288 18,-22: - 0: 34952 + 1: 34952 18,-21: - 0: 8 - 19,-24: - 0: 12288 + 1: 8 19,-22: - 0: 4096 - 19,-21: - 0: 13075 + 1: 4096 19,-23: - 0: 34958 + 1: 34958 + 20,-23: + 1: 12544 + -31,-6: + 1: 26215 + -31,-7: + 1: 8704 + -30,-8: + 1: 8704 + -30,-7: + 1: 17510 + -30,-6: + 1: 36044 + -29,-6: + 1: 16 + -31,5: + 1: 35976 -31,6: - 0: 35016 - -31,7: - 0: 52424 + 1: 35016 + -30,5: + 1: 39048 + -30,6: + 1: 63647 + -29,4: + 1: 16 + -29,5: + 1: 4368 + -29,6: + 1: 4369 -25,22: - 0: 51400 + 1: 51400 -25,23: - 0: 51340 + 1: 51340 -25,20: - 0: 34816 - -25,21: - 0: 34952 + 1: 32768 -26,27: - 0: 140 + 1: 140 -26,26: - 0: 32768 + 1: 32768 -25,27: - 0: 36047 + 1: 36047 -25,25: - 0: 60620 - -25,26: - 0: 52428 - -25,24: - 0: 34952 + 1: 60620 + -25,28: + 1: 34952 -16,24: - 0: 12898 + 1: 12898 -16,25: - 0: 13107 - -16,27: - 0: 30439 - -16,26: - 0: 26214 - -16,20: - 0: 13158 - -16,21: - 0: 28279 - -16,22: - 0: 8739 + 1: 13107 -16,23: - 0: 12834 + 1: 12834 + -16,26: + 1: 26214 -16,28: - 0: 13926 + 1: 13926 + -16,21: + 1: 28279 + -12,20: + 1: 15 + -17,28: + 1: 63232 -20,28: - 0: 61440 + 1: 61440 -20,29: - 0: 1 - -19,28: - 0: 61986 + 1: 1 + -21,28: + 1: 61440 -18,28: - 0: 65024 - -17,28: - 0: 63232 + 1: 65024 -17,29: - 0: 7 + 1: 7 -24,28: - 0: 61440 + 1: 61440 -24,29: - 0: 9 - -23,28: - 0: 62532 + 1: 9 -23,29: - 0: 207 - -22,28: - 0: 61713 + 1: 207 -22,29: - 0: 19 - -21,28: - 0: 61440 + 1: 19 -21,29: - 0: 3 - -25,28: - 0: 34952 - 4,-14: - 0: 62976 + 1: 3 4,-13: - 0: 35939 + 1: 35939 5,-14: - 0: 61984 - 5,-13: - 0: 61986 + 1: 61984 6,-14: - 0: 65024 + 1: 65024 6,-13: - 0: 64520 - 7,-14: - 0: 61440 - 7,-13: - 0: 61713 - 9,-22: - 0: 8 + 1: 64520 9,-23: - 0: 52360 + 1: 52360 10,-23: - 0: 32771 + 1: 32771 + 9,-22: + 1: 8 10,-24: - 0: 11776 + 1: 11776 10,-22: - 0: 8 - 11,-24: - 0: 1984 - 11,-23: - 0: 63488 - 21,-9: - 0: 51340 + 1: 8 + 21,-10: + 1: 51440 22,-10: - 0: 4096 + 1: 4096 22,-9: - 0: 17 + 1: 17 24,1: - 0: 65520 - 24,2: - 0: 65535 - 24,3: - 0: 65535 - 25,1: - 0: 65296 - 25,3: - 0: 65535 + 1: 16 25,2: - 0: 65535 - 11,19: - 0: 50416 - 4,20: - 0: 15 - 5,20: - 0: 253 - 6,20: - 0: 241 + 0: 65392 + 9,19: + 1: 35503 + 10,19: + 1: 231 + 9,20: + 1: 250 11,20: - 0: 249 - 12,20: - 0: 159 - 13,20: - 0: 61135 - 14,20: - 0: 65535 - 15,20: - 0: 65535 - 16,20: - 0: 65535 - 17,20: - 0: 65535 - 18,20: - 0: 65535 - 19,20: - 0: 65535 - 20,20: - 0: 65535 - 21,20: - 0: 65535 - 22,20: - 0: 4095 - 23,20: - 0: 60575 - 24,20: - 0: 65331 - 24,-3: - 0: 65520 - 24,-2: - 0: 65535 - 24,-1: - 0: 3 - 20,-20: - 0: 4369 - 20,-19: - 0: 4371 - 20,-18: - 0: 1 - 20,-23: - 0: 12544 - 20,-22: - 0: 13075 - 20,-21: - 0: 4919 - 23,2: - 0: 65535 - 26,13: - 0: 65535 - 26,14: - 0: 13119 - 27,13: - 0: 12560 - 25,19: - 0: 65395 - 22,18: - 0: 65535 - 16,18: - 0: 65535 - 19,18: - 0: 65535 - 26,2: - 0: 65399 - 26,3: - 0: 65535 - 27,11: - 0: 4369 - 27,4: - 0: 13107 - 26,1: - 0: 12288 - 27,3: - 0: 13072 - 24,21: - 0: 127 - 25,20: - 0: 4207 - 23,21: - 0: 142 + 1: 249 + 8,20: + 1: 240 + 10,20: + 1: 240 13,21: - 0: 65534 - 13,22: - 0: 52975 + 0: 2252 14,21: - 0: 65535 - 14,22: - 0: 8191 + 0: 30719 15,21: - 0: 65527 + 0: 1 + 1: 32896 16,21: - 0: 40860 - 26,15: - 0: 307 - 15,22: - 0: 55 + 1: 5136 17,21: - 0: 65535 - 17,22: - 0: 36607 + 0: 119 18,21: - 0: 65535 - 18,22: - 0: 65399 - 18,23: - 0: 6 + 0: 119 19,21: - 0: 61439 - 19,22: - 0: 206 + 0: 119 20,21: - 0: 40959 - 21,21: - 0: 4983 - -13,20: - 0: 8 - -12,20: - 0: 15 + 0: 119 + 21,20: + 0: 16 + 20,-20: + 1: 4369 + 20,-21: + 1: 4919 + 20,-22: + 1: 13075 + -8,20: + 1: 15 + -9,20: + 1: 15 -11,20: - 0: 15 + 1: 15 -10,20: - 0: 15 - -9,20: - 0: 15 - -31,-11: - 0: 128 - 24,-4: - 0: 57906 - 25,-1: - 0: 1 - 26,-2: - 0: 65535 - 26,-1: - 0: 14 - 24,-5: - 0: 62002 - 7,19: - 0: 16527 - 8,19: - 0: 31 - 9,19: - 0: 35503 - 10,19: - 0: 231 - 7,20: - 0: 254 - 8,20: - 0: 240 - 9,20: - 0: 250 - 10,20: - 0: 240 - -5,20: - 0: 23 - 21,-4: - 0: 65535 - 22,-4: - 0: 65331 - 23,-4: - 0: 65535 - 21,-5: - 0: 65535 - 22,-8: - 0: 61688 - 22,-6: - 0: 65535 - 22,-5: - 0: 13119 - 22,-7: - 0: 61438 - 23,-8: - 0: 63735 - 23,-7: - 0: 65535 - 23,-6: - 0: 65535 - 23,-5: - 0: 65535 - 24,-8: - 0: 65526 - 24,-7: - 0: 65535 - 24,-6: - 0: 59647 - 25,-8: - 0: 61936 - 25,-7: - 0: 65535 - 25,-6: - 0: 62207 - 25,-5: - 0: 63266 - 26,-8: - 0: 63476 - 26,-7: - 0: 65535 - 26,-6: - 0: 63743 - 26,-5: - 0: 64174 - 27,-8: - 0: 61692 - 27,-7: - 0: 65535 - 27,-6: - 0: 65535 - 27,-5: - 0: 65535 - 25,-4: - 0: 61991 + 1: 15 25,-3: - 0: 65531 - 25,-2: 0: 65535 - 26,-4: - 0: 64170 + 25,-2: + 0: 3840 + 1: 61440 + 25,-1: + 1: 1 26,-3: - 0: 65528 - 27,-4: 0: 65535 + 26,-2: + 0: 3840 + 1: 61440 + 26,-1: + 1: 14 27,-3: - 0: 65535 + 0: 13107 27,-2: - 0: 65535 + 0: 3840 + 1: 61440 + 27,-1: + 1: 3 28,-4: - 0: 64443 + 0: 4369 + 1: 60074 28,-3: - 0: 65535 + 0: 4369 + 1: 61166 28,-2: - 0: 48123 + 0: 273 + 1: 47850 28,-1: - 0: 34953 + 1: 34953 29,-2: - 0: 4096 + 1: 4096 29,-1: - 0: 273 - 28,-8: - 0: 47359 - 28,-7: - 0: 48127 - 28,-6: - 0: 64507 - 28,-5: - 0: 48063 + 1: 273 + 28,0: + 1: 34952 29,-8: - 0: 256 + 1: 256 29,-7: - 0: 4352 + 1: 4352 29,-6: - 0: 4097 + 1: 4097 29,-5: - 0: 4368 - 28,0: - 0: 34952 + 1: 4368 28,1: - 0: 136 + 1: 136 29,1: - 0: 12561 + 1: 12561 29,2: - 0: 35 - 27,-1: - 0: 3 - -23,11: - 0: 29491 - -31,-2: - 0: 52360 - -31,-3: - 0: 34952 - -24,15: - 0: 65535 - -31,-6: - 0: 26215 - -31,-5: - 0: 35020 - -31,5: - 0: 35976 - -28,-11: - 0: 3936 + 1: 35 + -31,-11: + 1: 128 -30,-11: - 0: 2288 - -29,-11: - 0: 3312 - -10,-14: - 0: 52800 - -9,-14: - 0: 65399 - -8,-14: - 0: 4914 + 1: 2288 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -14457,6 +14628,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -14472,6 +14658,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -14491,20 +14692,8 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - 6666.982 - 0 - 0 @@ -14514,16 +14703,13 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: - 0 + - 6666.982 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -14543,6 +14729,7 @@ entities: name: map 100 - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -17561,17 +17748,19 @@ entities: - type: Transform pos: -8.5,-6.5 parent: 2 -- proto: AirlockClownLocked +- proto: AirlockClownGlassLocked entities: - - uid: 3685 + - uid: 35 components: - type: Transform - pos: -76.5,-1.5 + pos: -76.5,2.5 parent: 2 - - uid: 3772 +- proto: AirlockClownLocked + entities: + - uid: 3685 components: - type: Transform - pos: -76.5,2.5 + pos: -76.5,-1.5 parent: 2 - proto: AirlockCommand entities: @@ -17800,6 +17989,16 @@ entities: - type: Transform pos: -53.5,15.5 parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 - uid: 14498 components: - type: Transform @@ -17821,11 +18020,6 @@ entities: - type: Transform pos: 78.5,-15.5 parent: 2 - - uid: 22722 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - uid: 29138 components: - type: Transform @@ -19253,12 +19447,36 @@ entities: rot: 3.141592653589793 rad pos: 1.5,57.5 parent: 2 + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-12.5 + parent: 2 - uid: 2281 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,38.5 parent: 2 + - uid: 2803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-12.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,6.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,6.5 + parent: 2 - uid: 3205 components: - type: Transform @@ -19897,11 +20115,6 @@ entities: parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 22865 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - uid: 23285 components: - type: Transform @@ -19990,6 +20203,14 @@ entities: - type: Transform pos: 8.5,31.5 parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 - proto: AirlockMaintJanitorLocked entities: - uid: 647 @@ -20241,6 +20462,14 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-32.5 parent: 2 +- proto: AirlockMaintMailLocked + entities: + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 178 @@ -20259,6 +20488,13 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 +- proto: AirlockMaintMimeLocked + entities: + - uid: 23540 + components: + - type: Transform + pos: -80.5,-2.5 + parent: 2 - proto: AirlockMaintPsychologistLocked entities: - uid: 20640 @@ -20267,6 +20503,14 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-6.5 parent: 2 +- proto: AirlockMaintQuartermasterLocked + entities: + - uid: 23584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 2 - proto: AirlockMaintReporterLocked entities: - uid: 559 @@ -20517,6 +20761,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 - uid: 1488 components: - type: Transform @@ -20599,6 +20848,11 @@ entities: rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 + - uid: 27402 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 - uid: 27417 components: - type: Transform @@ -20673,9 +20927,9 @@ entities: rot: 3.141592653589793 rad pos: 27.5,17.5 parent: 2 -- proto: AirlockMimeLocked +- proto: AirlockMimeGlassLocked entities: - - uid: 3693 + - uid: 2893 components: - type: Transform pos: -80.5,2.5 @@ -20697,12 +20951,11 @@ entities: - type: Transform pos: 69.5,83.5 parent: 2 -- proto: AirlockMusicianLocked +- proto: AirlockMusicianGlassLocked entities: - - uid: 35 + - uid: 2898 components: - type: Transform - rot: -1.5707963267948966 rad pos: -74.5,3.5 parent: 2 - proto: AirlockParamedicLocked @@ -21286,13 +21539,6 @@ entities: - type: Transform pos: -48.5,-10.5 parent: 2 -- proto: AirlockServiceLocked - entities: - - uid: 28516 - components: - - type: Transform - pos: -63.5,3.5 - parent: 2 - proto: AirlockShuttleSyndicate entities: - uid: 4910 @@ -21313,30 +21559,6 @@ entities: rot: 1.5707963267948966 rad pos: 103.5,73.5 parent: 2 -- proto: AirlockTheatreGlassLocked - entities: - - uid: 10269 - components: - - type: Transform - pos: 72.5,-12.5 - parent: 2 - - uid: 11207 - components: - - type: Transform - pos: 71.5,-12.5 - parent: 2 -- proto: AirlockTheatreLocked - entities: - - uid: 22774 - components: - - type: Transform - pos: -78.5,6.5 - parent: 2 - - uid: 22775 - components: - - type: Transform - pos: -77.5,6.5 - parent: 2 - proto: AirlockVirologyGlassLocked entities: - uid: 7220 @@ -34581,6 +34803,7 @@ entities: - type: DeviceLinkSink links: - 9223 + - 40522 - uid: 9257 components: - type: Transform @@ -34589,6 +34812,7 @@ entities: - type: DeviceLinkSink links: - 2512 + - 40523 - uid: 9351 components: - type: Transform @@ -36099,6 +36323,30 @@ entities: - type: DeviceLinkSink links: - 25189 + - uid: 40496 + components: + - type: Transform + pos: 30.5,56.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4746 + - uid: 40497 + components: + - type: Transform + pos: 30.5,55.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4746 + - uid: 40498 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 4746 - proto: Bloodpack entities: - uid: 7811 @@ -36176,7 +36424,7 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 2 -- proto: BodyBag_Folded +- proto: BodyBagFolded entities: - uid: 1410 components: @@ -36215,7 +36463,7 @@ entities: parent: 2 - proto: Bonfire entities: - - uid: 7032 + - uid: 3130 components: - type: Transform pos: -28.5,-35.5 @@ -36974,13 +37222,17 @@ entities: - uid: 9690 components: - type: Transform - pos: -33.704086,43.897106 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17014 components: - type: Transform - pos: -33.683586,43.79884 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxSyringe entities: - uid: 1571 @@ -37537,6 +37789,18 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-13.5 parent: 2 + - uid: 40524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,53.5 + parent: 2 + - uid: 40525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,53.5 + parent: 2 - proto: ButtonFrameCautionSecurity entities: - uid: 28381 @@ -44359,71 +44623,6 @@ entities: - type: Transform pos: 70.5,-24.5 parent: 2 - - uid: 12610 - components: - - type: Transform - pos: 69.5,-24.5 - parent: 2 - - uid: 12611 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 12612 - components: - - type: Transform - pos: 69.5,-26.5 - parent: 2 - - uid: 12613 - components: - - type: Transform - pos: 68.5,-26.5 - parent: 2 - - uid: 12614 - components: - - type: Transform - pos: 68.5,-27.5 - parent: 2 - - uid: 12615 - components: - - type: Transform - pos: 67.5,-27.5 - parent: 2 - - uid: 12616 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - - uid: 12617 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - uid: 12618 - components: - - type: Transform - pos: 65.5,-28.5 - parent: 2 - - uid: 12619 - components: - - type: Transform - pos: 64.5,-28.5 - parent: 2 - - uid: 12620 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 12621 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 12622 - components: - - type: Transform - pos: 62.5,-29.5 - parent: 2 - uid: 12623 components: - type: Transform @@ -44654,6 +44853,11 @@ entities: - type: Transform pos: 72.5,-10.5 parent: 2 + - uid: 12869 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 - uid: 12990 components: - type: Transform @@ -55469,6 +55673,11 @@ entities: - type: Transform pos: 58.5,41.5 parent: 2 + - uid: 28461 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 2 - uid: 28467 components: - type: Transform @@ -56014,11 +56223,6 @@ entities: - type: Transform pos: -80.5,-0.5 parent: 2 - - uid: 29562 - components: - - type: Transform - pos: -80.5,-2.5 - parent: 2 - uid: 29564 components: - type: Transform @@ -57104,6 +57308,26 @@ entities: - type: Transform pos: -23.5,39.5 parent: 2 + - uid: 31529 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 31532 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 31540 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 31541 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 - uid: 31549 components: - type: Transform @@ -59184,6 +59408,11 @@ entities: - type: Transform pos: 102.5,15.5 parent: 2 + - uid: 33677 + components: + - type: Transform + pos: 78.5,-3.5 + parent: 2 - uid: 33692 components: - type: Transform @@ -64519,6 +64748,51 @@ entities: - type: Transform pos: -44.5,40.5 parent: 2 + - uid: 40460 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 2 + - uid: 40461 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 2 + - uid: 40462 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 40463 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 2 + - uid: 40464 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 40465 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - uid: 40466 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 40467 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 40512 + components: + - type: Transform + pos: 77.5,-3.5 + parent: 2 - proto: CableApcStack entities: - uid: 37500 @@ -64526,6 +64800,11 @@ entities: - type: Transform pos: -58.407085,43.545338 parent: 2 + - uid: 40527 + components: + - type: Transform + pos: 20.484457,-18.316412 + parent: 2 - proto: CableApcStack1 entities: - uid: 12431 @@ -64991,6 +65270,16 @@ entities: - type: Transform pos: -29.5,6.5 parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 - uid: 3928 components: - type: Transform @@ -65141,6 +65430,11 @@ entities: - type: Transform pos: -28.5,44.5 parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 - uid: 5187 components: - type: Transform @@ -69396,6 +69690,21 @@ entities: - type: Transform pos: 80.5,-9.5 parent: 2 + - uid: 12612 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 67.5,-27.5 + parent: 2 - uid: 12625 components: - type: Transform @@ -69411,6 +69720,11 @@ entities: - type: Transform pos: 36.5,33.5 parent: 2 + - uid: 12729 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 - uid: 12788 components: - type: Transform @@ -69747,69 +70061,14 @@ entities: pos: 70.5,-24.5 parent: 2 - uid: 12864 - components: - - type: Transform - pos: 69.5,-24.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - pos: 69.5,-26.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: 68.5,-26.5 - parent: 2 - - uid: 12868 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 12869 - components: - - type: Transform - pos: 67.5,-27.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - pos: 65.5,-28.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - pos: 64.5,-28.5 - parent: 2 - - uid: 12874 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 12876 + - uid: 12867 components: - type: Transform - pos: 62.5,-29.5 + pos: 66.5,-29.5 parent: 2 - uid: 12877 components: @@ -75876,6 +76135,16 @@ entities: - type: Transform pos: -54.5,44.5 parent: 2 + - uid: 31533 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 2 + - uid: 31534 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 2 - uid: 31564 components: - type: Transform @@ -80146,6 +80415,71 @@ entities: - type: Transform pos: -25.5,47.5 parent: 2 + - uid: 40481 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 + - uid: 40482 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 40483 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 40484 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 40485 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 40486 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 2 + - uid: 40487 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 2 + - uid: 40488 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 40489 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 2 + - uid: 40490 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 40491 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - uid: 40492 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 40493 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 - proto: CableHVStack entities: - uid: 37216 @@ -80153,6 +80487,11 @@ entities: - type: Transform pos: -59.164898,43.537525 parent: 2 + - uid: 40526 + components: + - type: Transform + pos: 20.375082,-18.417974 + parent: 2 - proto: CableHVStack1 entities: - uid: 9835 @@ -83135,6 +83474,11 @@ entities: - type: Transform pos: -0.5,26.5 parent: 2 + - uid: 24778 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 - uid: 25262 components: - type: Transform @@ -84320,71 +84664,6 @@ entities: - type: Transform pos: 62.5,-30.5 parent: 2 - - uid: 31529 - components: - - type: Transform - pos: 62.5,-29.5 - parent: 2 - - uid: 31530 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 2 - - uid: 31531 - components: - - type: Transform - pos: 63.5,-28.5 - parent: 2 - - uid: 31532 - components: - - type: Transform - pos: 64.5,-28.5 - parent: 2 - - uid: 31533 - components: - - type: Transform - pos: 65.5,-28.5 - parent: 2 - - uid: 31534 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 2 - - uid: 31535 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - - uid: 31536 - components: - - type: Transform - pos: 67.5,-27.5 - parent: 2 - - uid: 31537 - components: - - type: Transform - pos: 68.5,-27.5 - parent: 2 - - uid: 31538 - components: - - type: Transform - pos: 68.5,-26.5 - parent: 2 - - uid: 31539 - components: - - type: Transform - pos: 69.5,-26.5 - parent: 2 - - uid: 31540 - components: - - type: Transform - pos: 69.5,-25.5 - parent: 2 - - uid: 31541 - components: - - type: Transform - pos: 69.5,-24.5 - parent: 2 - uid: 31542 components: - type: Transform @@ -86280,6 +86559,81 @@ entities: - type: Transform pos: -62.5,54.5 parent: 2 + - uid: 40468 + components: + - type: Transform + pos: 63.5,-30.5 + parent: 2 + - uid: 40469 + components: + - type: Transform + pos: 64.5,-30.5 + parent: 2 + - uid: 40470 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 2 + - uid: 40471 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 2 + - uid: 40472 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 2 + - uid: 40473 + components: + - type: Transform + pos: 68.5,-30.5 + parent: 2 + - uid: 40474 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 2 + - uid: 40475 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 2 + - uid: 40476 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 2 + - uid: 40477 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 2 + - uid: 40478 + components: + - type: Transform + pos: 70.5,-27.5 + parent: 2 + - uid: 40479 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 2 + - uid: 40480 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 2 + - uid: 40549 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 40550 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 - proto: CableMVStack entities: - uid: 37375 @@ -86287,6 +86641,11 @@ entities: - type: Transform pos: -58.782085,43.529713 parent: 2 + - uid: 40528 + components: + - type: Transform + pos: 20.726645,-18.4961 + parent: 2 - proto: CableTerminal entities: - uid: 1439 @@ -90723,6 +91082,78 @@ entities: rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 2 +- proto: CartridgeAntiMateriel + entities: + - uid: 14194 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15225 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17751 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18097 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19937 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21004 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21108 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22401 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22563 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22722 + components: + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CartridgeRocket entities: - uid: 15714 @@ -91140,6 +91571,12 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,56.5 parent: 2 + - uid: 3882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-28.5 + parent: 2 - uid: 3933 components: - type: Transform @@ -91607,6 +92044,11 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-30.5 parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 - uid: 7656 components: - type: Transform @@ -91953,11 +92395,6 @@ entities: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 10027 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - uid: 10033 components: - type: Transform @@ -93057,6 +93494,38 @@ entities: rot: -1.5707963267948966 rad pos: 87.5,-15.5 parent: 2 + - uid: 12610 + components: + - type: Transform + pos: 67.5,-27.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-30.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-28.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 2 - uid: 12681 components: - type: Transform @@ -93299,79 +93768,23 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-29.5 + pos: 67.5,-28.5 parent: 2 - uid: 12728 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-29.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-28.5 - parent: 2 - - uid: 12733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-28.5 + pos: 66.5,-30.5 parent: 2 - uid: 12734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-28.5 - parent: 2 - - uid: 12735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-28.5 - parent: 2 - - uid: 12736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-27.5 - parent: 2 - - uid: 12737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-27.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: 68.5,-27.5 parent: 2 - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-26.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-26.5 - parent: 2 - uid: 12741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-25.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-24.5 + pos: 66.5,-29.5 parent: 2 - uid: 12743 components: @@ -93559,6 +93972,40 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,9.5 parent: 2 + - uid: 12865 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-28.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-27.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-29.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-28.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 2 - uid: 12888 components: - type: Transform @@ -93574,6 +94021,12 @@ entities: - type: Transform pos: 49.5,-30.5 parent: 2 + - uid: 12942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-30.5 + parent: 2 - uid: 12998 components: - type: Transform @@ -95597,6 +96050,12 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-53.5 parent: 2 + - uid: 28629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-30.5 + parent: 2 - uid: 28689 components: - type: Transform @@ -95861,6 +96320,36 @@ entities: - type: Transform pos: 33.5,33.5 parent: 2 + - uid: 31531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-25.5 + parent: 2 + - uid: 31536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-30.5 + parent: 2 + - uid: 31537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-30.5 + parent: 2 + - uid: 31538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-30.5 + parent: 2 + - uid: 31539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-30.5 + parent: 2 - uid: 31748 components: - type: Transform @@ -96751,6 +97240,12 @@ entities: - type: Transform pos: 93.5,-22.5 parent: 2 + - uid: 38152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-26.5 + parent: 2 - uid: 38898 components: - type: Transform @@ -96784,6 +97279,11 @@ entities: - type: Transform pos: 93.5,-11.5 parent: 2 + - uid: 39769 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 - uid: 39782 components: - type: Transform @@ -97164,6 +97664,11 @@ entities: - type: Transform pos: -34.5,2.5 parent: 2 + - uid: 40442 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 2 - proto: Chair entities: - uid: 1105 @@ -99460,13 +99965,6 @@ entities: - type: Transform pos: 17.5,-1.5 parent: 2 -- proto: ChemicalPayload - entities: - - uid: 36047 - components: - - type: Transform - pos: 31.597778,16.540527 - parent: 2 - proto: ChemistryEmptyBottle01 entities: - uid: 26714 @@ -100193,6 +100691,33 @@ entities: - type: Transform pos: -54.5,-18.5 parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 26000 + components: + - type: Transform + pos: -11.5,73.5 + parent: 2 + - uid: 40560 + components: + - type: Transform + pos: 13.5,73.5 + parent: 2 + - uid: 40561 + components: + - type: Transform + pos: 82.5,3.5 + parent: 2 + - uid: 40562 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 2 + - uid: 40564 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 2313 @@ -100301,13 +100826,6 @@ entities: - type: Transform pos: 86.5,-10.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 33677 - components: - - type: Transform - pos: -35.5,63.5 - parent: 2 - proto: ClosetToolFilled entities: - uid: 26253 @@ -100416,6 +100934,11 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 62.5,-28.5 + parent: 2 - uid: 14977 components: - type: Transform @@ -100468,11 +100991,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-18.5 parent: 2 - - uid: 19937 - components: - - type: Transform - pos: 66.5,-26.5 - parent: 2 - uid: 19943 components: - type: Transform @@ -100549,6 +101067,11 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,41.5 parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 - uid: 4082 components: - type: Transform @@ -100627,11 +101150,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-21.5 parent: 2 - - uid: 7626 - components: - - type: Transform - pos: 65.5,-26.5 - parent: 2 - uid: 8301 components: - type: Transform @@ -100787,11 +101305,6 @@ entities: - type: Transform pos: 6.5,34.5 parent: 2 - - uid: 7628 - components: - - type: Transform - pos: 64.5,-26.5 - parent: 2 - uid: 8769 components: - type: Transform @@ -100883,6 +101396,12 @@ entities: - type: Transform pos: -52.5,-30.5 parent: 2 + - uid: 40494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-26.5 + parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 5327 @@ -101062,6 +101581,12 @@ entities: parent: 2 - proto: ClothingHandsGlovesCombat entities: + - uid: 3791 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False - uid: 23187 components: - type: Transform @@ -101633,6 +102158,18 @@ entities: rot: -1.5707963267948966 rad pos: 69.595215,-14.92691 parent: 2 +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 40445 + components: + - type: Transform + pos: -79.5151,-0.17867303 + parent: 2 + - uid: 40446 + components: + - type: Transform + pos: -79.30343,-0.25680208 + parent: 2 - proto: ClothingNeckSciencemedal entities: - uid: 34635 @@ -101883,6 +102420,13 @@ entities: - type: Transform pos: 21.679422,23.510605 parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 40447 + components: + - type: Transform + pos: -4.661104,35.08742 + parent: 2 - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 19819 @@ -102011,11 +102555,6 @@ entities: parent: 2 - proto: CombatKnife entities: - - uid: 36046 - components: - - type: Transform - pos: 31.519653,16.720215 - parent: 2 - uid: 40436 components: - type: Transform @@ -102439,15 +102978,14 @@ entities: parent: 2 - proto: ComputerCloningConsole entities: - - uid: 27402 + - uid: 27418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,3.5 + pos: 26.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28451: + 27419: - MedicalScannerSender: MedicalScannerReceiver - CloningPodSender: MedicalScannerReceiver 28435: @@ -102468,6 +103006,12 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 - uid: 4006 components: - type: Transform @@ -102678,6 +103222,18 @@ entities: rot: 3.141592653589793 rad pos: 15.5,52.5 parent: 2 + - uid: 17013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-56.5 + parent: 2 + - uid: 40521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-56.5 + parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 4157 @@ -102842,11 +103398,6 @@ entities: - type: Transform pos: -96.5,29.5 parent: 2 - - uid: 9049 - components: - - type: Transform - pos: -80.5,-1.5 - parent: 2 - uid: 9138 components: - type: Transform @@ -103215,6 +103766,15 @@ entities: - type: DeviceLinkSink links: - 28204 + - uid: 9505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 - uid: 9598 components: - type: Transform @@ -103549,6 +104109,33 @@ entities: - type: DeviceLinkSink links: - 28204 + - uid: 36047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 36048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 36049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 - uid: 39813 components: - type: Transform @@ -103639,6 +104226,59 @@ entities: - type: DeviceLinkSink links: - 39827 + - uid: 40407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 40499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 40500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 40501 + components: + - type: Transform + pos: -29.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 40511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 + - uid: 40513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 10478 - proto: CourierBag entities: - uid: 22394 @@ -103721,11 +104361,6 @@ entities: - type: Transform pos: 36.5,13.5 parent: 2 - - uid: 21108 - components: - - type: Transform - pos: 68.5,-28.5 - parent: 2 - uid: 21112 components: - type: Transform @@ -103741,6 +104376,11 @@ entities: - type: Transform pos: -65.5,1.5 parent: 2 + - uid: 22774 + components: + - type: Transform + pos: 65.5,-31.5 + parent: 2 - uid: 33826 components: - type: Transform @@ -103889,6 +104529,11 @@ entities: - type: Transform pos: -7.5,-35.5 parent: 2 + - uid: 23621 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 - uid: 25260 components: - type: Transform @@ -103953,6 +104598,11 @@ entities: - type: Transform pos: -49.5,-11.5 parent: 2 + - uid: 40507 + components: + - type: Transform + pos: -22.5,58.5 + parent: 2 - proto: CrateFreezer entities: - uid: 23538 @@ -103967,6 +104617,11 @@ entities: - type: Transform pos: 74.5,-11.5 parent: 2 + - uid: 40510 + components: + - type: Transform + pos: -35.5,58.5 + parent: 2 - proto: CrateFunPlushie entities: - uid: 34039 @@ -106100,12 +106755,6 @@ entities: - type: Transform pos: -20.5,55.5 parent: 2 - - uid: 18238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,55.5 - parent: 2 - uid: 18713 components: - type: Transform @@ -106234,6 +106883,18 @@ entities: rot: 3.141592653589793 rad pos: 57.5,60.5 parent: 2 + - uid: 40541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,44.5 + parent: 2 + - uid: 40542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2908 @@ -106465,6 +107126,12 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 + - uid: 25990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,55.5 + parent: 2 - uid: 36000 components: - type: Transform @@ -111130,6 +111797,12 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-27.5 parent: 2 + - uid: 18238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,54.5 + parent: 2 - uid: 18243 components: - type: Transform @@ -112238,6 +112911,72 @@ entities: rot: 3.141592653589793 rad pos: -33.5,66.5 parent: 2 + - uid: 40529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,53.5 + parent: 2 + - uid: 40531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,52.5 + parent: 2 + - uid: 40532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,51.5 + parent: 2 + - uid: 40533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,50.5 + parent: 2 + - uid: 40534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,49.5 + parent: 2 + - uid: 40535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,48.5 + parent: 2 + - uid: 40536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,47.5 + parent: 2 + - uid: 40537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,46.5 + parent: 2 + - uid: 40538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,45.5 + parent: 2 + - uid: 40539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,44.5 + parent: 2 + - uid: 40540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,44.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 2523 @@ -112837,6 +113576,12 @@ entities: - type: Transform pos: -29.5,67.5 parent: 2 + - uid: 40518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,43.5 + parent: 2 - proto: DisposalUnit entities: - uid: 712 @@ -113179,6 +113924,11 @@ entities: - type: Transform pos: -35.5,65.5 parent: 2 + - uid: 40509 + components: + - type: Transform + pos: -29.5,43.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 16695 @@ -115132,6 +115882,12 @@ entities: rot: 3.141592653589793 rad pos: -96.5,4.5 parent: 2 + - uid: 7928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,1.5 + parent: 2 - uid: 9152 components: - type: Transform @@ -115294,12 +116050,6 @@ entities: - type: Transform pos: -81.5,1.5 parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,3.5 - parent: 2 - uid: 15639 components: - type: Transform @@ -116539,6 +117289,11 @@ entities: - type: Transform pos: 33.44304,2.7124748 parent: 2 + - uid: 31530 + components: + - type: Transform + pos: 62.672287,-33.375114 + parent: 2 - uid: 34677 components: - type: Transform @@ -116568,12 +117323,6 @@ entities: rot: 3.141592653589793 rad pos: 50.964844,-36.44968 parent: 2 - - uid: 39769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.40946,-32.354702 - parent: 2 - uid: 39770 components: - type: Transform @@ -117629,12 +118378,6 @@ entities: - 28421 - 28433 - 28434 - - uid: 28629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-31.5 - parent: 2 - uid: 28632 components: - type: Transform @@ -118937,6 +119680,11 @@ entities: - type: DeviceNetwork deviceLists: - 2971 + - uid: 2887 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 - uid: 2904 components: - type: Transform @@ -120537,6 +121285,16 @@ entities: - type: Transform pos: 51.5,-9.5 parent: 2 + - uid: 25283 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 25284 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 - uid: 25323 components: - type: Transform @@ -145563,6 +146321,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 25964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25986 components: - type: Transform @@ -155647,14 +156413,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 39632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 39634 components: - type: Transform @@ -167580,6 +168338,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,59.5 parent: 2 + - uid: 7584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 - uid: 7590 components: - type: Transform @@ -169040,11 +169804,6 @@ entities: - type: Transform pos: -98.5,-6.5 parent: 2 - - uid: 9353 - components: - - type: Transform - pos: -54.5,42.5 - parent: 2 - uid: 9377 components: - type: Transform @@ -169385,6 +170144,11 @@ entities: - type: Transform pos: 91.5,-30.5 parent: 2 + - uid: 11207 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 - uid: 11231 components: - type: Transform @@ -170167,6 +170931,12 @@ entities: - type: Transform pos: -105.5,-50.5 parent: 2 + - uid: 13207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 - uid: 13212 components: - type: Transform @@ -173696,6 +174466,11 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,12.5 parent: 2 + - uid: 25146 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 - uid: 25170 components: - type: Transform @@ -175870,6 +176645,48 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 + - uid: 40448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-29.5 + parent: 2 + - uid: 40449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-32.5 + parent: 2 + - uid: 40450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-30.5 + parent: 2 + - uid: 40451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-32.5 + parent: 2 + - uid: 40452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-32.5 + parent: 2 + - uid: 40453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-28.5 + parent: 2 + - uid: 40545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1098 @@ -176365,17 +177182,58 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,60.5 parent: 2 -- proto: GunSafeAdjutantShotgun +- proto: GunSafe entities: - - uid: 26009 + - uid: 13323 components: - type: Transform - pos: -31.5,39.5 + pos: -6.5,35.5 parent: 2 - - uid: 27634 + - type: 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: + - 22722 + - 22563 + - 22401 + - 21108 + - 21004 + - 19937 + - 18097 + - 17751 + - 15225 + - 14194 + - 13324 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeAdjutantShotgun + entities: + - uid: 26009 components: - type: Transform - pos: -31.5,37.5 + pos: -31.5,39.5 parent: 2 - proto: GunSafeEnergyGunMini entities: @@ -176405,10 +177263,17 @@ entities: parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 17751 + - uid: 2852 components: - type: Transform - pos: -6.5,35.5 + pos: -30.5,36.5 + parent: 2 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 2853 + components: + - type: Transform + pos: -31.5,37.5 parent: 2 - proto: GunSafeSubMachineGunDrozd entities: @@ -176424,11 +177289,6 @@ entities: parent: 2 - proto: GunSafeVulcanRifle entities: - - uid: 30404 - components: - - type: Transform - pos: -30.5,36.5 - parent: 2 - uid: 30809 components: - type: Transform @@ -176444,8 +177304,10 @@ entities: - uid: 12055 components: - type: Transform - pos: 6.5493526,-20.872643 - parent: 2 + parent: 28451 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15379 components: - type: Transform @@ -176499,6 +177361,14 @@ entities: - type: Transform pos: -44.588486,60.89263 parent: 2 +- proto: HandHeldMassScanner + entities: + - uid: 40506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.739797,-45.467434 + parent: 2 - proto: HandLabeler entities: - uid: 1084 @@ -176572,6 +177442,11 @@ entities: - type: Transform pos: 70.5,-6.5 parent: 2 + - uid: 26498 + components: + - type: Transform + pos: -35.5,62.5 + parent: 2 - proto: HatSpawner entities: - uid: 21090 @@ -178156,6 +179031,28 @@ entities: - type: Transform pos: 13.553389,12.699148 parent: 2 +- proto: Jukebox + entities: + - uid: 9053 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 40556 + components: + - type: Transform + pos: 8.5,52.5 + parent: 2 + - uid: 40557 + components: + - type: Transform + pos: 1.5,78.5 + parent: 2 + - uid: 40559 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 - proto: KitchenDeepFryer entities: - uid: 27019 @@ -178940,6 +179837,12 @@ entities: - Pressed: Toggle 25638: - Pressed: Toggle + 40496: + - Pressed: Toggle + 40497: + - Pressed: Toggle + 40498: + - Pressed: Toggle - uid: 13999 components: - type: Transform @@ -179617,6 +180520,36 @@ entities: - type: Transform pos: -40.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 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26511 + - 26513 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerElectricalSuppliesFilled entities: - uid: 50 @@ -179993,6 +180926,62 @@ entities: - type: Transform pos: 39.5,26.5 parent: 2 +- proto: LockerSecurity + entities: + - uid: 40544 + components: + - type: Transform + pos: -33.5,43.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: + - 39530 + - 39531 + - 10347 + - 39534 + - 39523 + - 21843 + - 10566 + - 39527 + - 39522 + - 9690 + - 39537 + - 17014 + - 39535 + - 39525 + - 39528 + - 39529 + - 39536 + - 39521 + - 39526 + - 39533 + - 39524 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSecurityFilled entities: - uid: 3737 @@ -180025,6 +181014,44 @@ entities: - type: Transform pos: -6.5,42.5 parent: 2 + - uid: 28451 + components: + - type: Transform + pos: 7.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: + - 12055 + - 4676 + - 17385 + - 17723 + - 12057 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedicalFilled entities: - uid: 3509 @@ -180048,11 +181075,11 @@ entities: - type: Transform pos: 13.5,44.5 parent: 2 - - uid: 20601 + - uid: 40530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,31.5 + rot: 1.5707963267948966 rad + pos: -36.5,35.5 parent: 2 - proto: LockerWardenFilled entities: @@ -180337,22 +181364,28 @@ entities: - uid: 39533 components: - type: Transform - pos: -30.032213,46.53773 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineBoxMagnumPractice entities: - uid: 39535 components: - type: Transform - pos: -29.704088,46.858044 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineBoxPistolPractice entities: - uid: 39536 components: - type: Transform - pos: -30.266588,46.71742 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineBoxPistolRubber entities: - uid: 13387 @@ -180365,44 +181398,73 @@ entities: - uid: 39537 components: - type: Transform - pos: -29.477526,46.522106 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineBoxSpecialPractice entities: - uid: 39534 components: - type: Transform - pos: -30.602526,46.72523 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineLightRiflePractice entities: - uid: 39530 components: - type: Transform - pos: -33.43846,43.47523 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39531 components: - type: Transform - pos: -33.24315,43.522106 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolPractice entities: - uid: 10347 components: - type: Transform - pos: -33.547836,46.63148 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15703 + components: + - type: Transform + pos: -32.8151,46.561256 parent: 2 - uid: 21843 components: - type: Transform - pos: -33.59471,46.66273 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28462 + components: + - type: Transform + pos: -32.549477,46.47532 parent: 2 - uid: 39522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.50096,46.56898 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.190104,46.592506 parent: 2 - proto: MagazinePistolRubber entities: @@ -180421,30 +181483,40 @@ entities: - uid: 10566 components: - type: Transform - pos: -29.665026,43.490856 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39521 components: - type: Transform - pos: -29.563463,43.545544 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39525 components: - type: Transform - pos: -29.383776,43.63148 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineRiflePractice entities: - uid: 39528 components: - type: Transform - pos: -32.9619,46.50648 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39529 components: - type: Transform - pos: -33.15721,46.576794 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MailBag entities: - uid: 6695 @@ -180483,6 +181555,12 @@ entities: parent: 2 - proto: MaintenanceFluffSpawner entities: + - uid: 3772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-31.5 + parent: 2 - uid: 4839 components: - type: Transform @@ -180595,11 +181673,6 @@ entities: - type: Transform pos: 71.5,-20.5 parent: 2 - - uid: 21004 - components: - - type: Transform - pos: 65.5,-29.5 - parent: 2 - uid: 21005 components: - type: Transform @@ -181108,6 +182181,11 @@ entities: - type: Transform pos: 39.5,6.5 parent: 2 + - uid: 20601 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 - uid: 20963 components: - type: Transform @@ -181194,6 +182272,16 @@ entities: - type: Transform pos: -45.5,70.5 parent: 2 + - uid: 40502 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 40504 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 - proto: Matchbox entities: - uid: 30063 @@ -181466,14 +182554,14 @@ entities: parent: 2 - proto: MedicalScanner entities: - - uid: 28451 + - uid: 27419 components: - type: Transform - pos: 23.5,2.5 + pos: 25.5,2.5 parent: 2 - type: DeviceLinkSink links: - - 27402 + - 27418 - proto: MedicalTechFab entities: - uid: 10938 @@ -181628,11 +182716,11 @@ entities: - uid: 28435 components: - type: Transform - pos: 23.5,1.5 + pos: 27.5,2.5 parent: 2 - type: DeviceLinkSink links: - - 27402 + - 27418 - proto: MicrowaveMachineCircuitboard entities: - uid: 1573 @@ -181761,13 +182849,6 @@ entities: - type: Transform pos: 24.5,-0.5 parent: 2 -- proto: ModularGrenade - entities: - - uid: 36048 - components: - - type: Transform - pos: 31.316528,16.04834 - parent: 2 - proto: MopBucketFull entities: - uid: 10261 @@ -186096,6 +187177,10 @@ entities: pos: 19.546442,1.4174473 parent: 2 - type: Paper + stampState: paper_stamp-cmo + stampedBy: + - stampedColor: '#33CCFFFF' + stampedName: stamp-component-stamped-name-cmo content: >- Remember, Doctors, cloning should be your LAST RESORT. @@ -186983,6 +188068,12 @@ entities: - type: Transform pos: 38.5,21.5 parent: 2 + - uid: 34153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,46.5 + parent: 2 - uid: 39320 components: - type: Transform @@ -187018,6 +188109,51 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 + - uid: 39602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,46.5 + parent: 2 + - uid: 39632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,46.5 + parent: 2 + - uid: 39644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,46.5 + parent: 2 +- proto: PlasmaWindoorSecureEngineeringLocked + entities: + - uid: 7032 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: 65.5,-28.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 244 @@ -187417,10 +188553,10 @@ entities: - type: Transform pos: 85.5,-7.5 parent: 2 - - uid: 39644 + - uid: 40563 components: - type: Transform - pos: 86.5,-6.5 + pos: 85.5,-5.5 parent: 2 - proto: PosterBroken entities: @@ -188022,12 +189158,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-39.5 parent: 2 - - uid: 10478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,45.5 - parent: 2 - uid: 23429 components: - type: Transform @@ -188049,6 +189179,12 @@ entities: - type: Transform pos: -35.5,7.5 parent: 2 + - uid: 40516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,43.5 + parent: 2 - proto: PosterContrabandSpaceCola entities: - uid: 7627 @@ -189358,6 +190494,22 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 2 + - uid: 3430 + components: + - type: Transform + pos: -27.5,46.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 3791 + - uid: 7445 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 - uid: 23175 components: - type: Transform @@ -189788,11 +190940,6 @@ entities: - type: Transform pos: -19.5,53.5 parent: 2 - - uid: 2803 - components: - - type: Transform - pos: -27.5,46.5 - parent: 2 - uid: 2926 components: - type: Transform @@ -190568,11 +191715,6 @@ entities: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 25964 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - uid: 26020 components: - type: Transform @@ -190743,11 +191885,6 @@ entities: - type: Transform pos: -0.5,50.5 parent: 2 - - uid: 40407 - components: - - type: Transform - pos: -22.5,58.5 - parent: 2 - proto: PottedPlantRD entities: - uid: 28745 @@ -193006,11 +194143,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-44.5 parent: 2 - - uid: 34153 - components: - - type: Transform - pos: 6.5,42.5 - parent: 2 - uid: 34165 components: - type: Transform @@ -193250,6 +194382,12 @@ entities: rot: 3.141592653589793 rad pos: -36.5,0.5 parent: 2 + - uid: 40548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,42.5 + parent: 2 - proto: PoweredLightBlueInterior entities: - uid: 6724 @@ -194420,6 +195558,18 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-19.5 parent: 2 + - uid: 12619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-28.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-28.5 + parent: 2 - uid: 13815 components: - type: Transform @@ -194538,11 +195688,6 @@ entities: rot: 1.5707963267948966 rad pos: 85.5,16.5 parent: 2 - - uid: 22563 - components: - - type: Transform - pos: 65.5,-27.5 - parent: 2 - uid: 22564 components: - type: Transform @@ -194620,6 +195765,12 @@ entities: - type: Transform pos: -77.5,19.5 parent: 2 + - uid: 40495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-25.5 + parent: 2 - proto: Protolathe entities: - uid: 4127 @@ -194645,7 +195796,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -194666,7 +195816,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -194685,7 +195834,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -194704,7 +195852,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -195271,12 +196418,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,42.5 parent: 2 - - uid: 25990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,43.5 - parent: 2 - uid: 25992 components: - type: Transform @@ -195289,12 +196430,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,43.5 parent: 2 - - uid: 26498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,43.5 - parent: 2 - uid: 26598 components: - type: Transform @@ -199974,12 +201109,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,62.5 parent: 2 - - uid: 23584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,62.5 - parent: 2 - uid: 27164 components: - type: Transform @@ -200299,6 +201428,16 @@ entities: - type: Transform pos: -71.5,2.5 parent: 2 + - uid: 40515 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - uid: 40519 + components: + - type: Transform + pos: -36.5,59.5 + parent: 2 - proto: RandomMedicCorpseSpawner entities: - uid: 5338 @@ -200415,16 +201554,6 @@ entities: - type: Transform pos: -96.5,13.5 parent: 2 - - uid: 23620 - components: - - type: Transform - pos: -81.5,-2.5 - parent: 2 - - uid: 23621 - components: - - type: Transform - pos: -80.5,-2.5 - parent: 2 - uid: 23622 components: - type: Transform @@ -201627,6 +202756,26 @@ entities: - type: Transform pos: -57.568783,-21.519592 parent: 2 +- proto: ReagentSlimeSpawner + entities: + - uid: 40553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,85.5 + parent: 2 + - uid: 40554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,84.5 + parent: 2 + - uid: 40555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,85.5 + parent: 2 - proto: Recycler entities: - uid: 19134 @@ -204431,6 +205580,12 @@ entities: - type: Transform pos: 8.5,-40.5 parent: 2 + - uid: 3334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-32.5 + parent: 2 - uid: 3353 components: - type: Transform @@ -204519,6 +205674,12 @@ entities: - type: Transform pos: -52.5,22.5 parent: 2 + - uid: 3693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-28.5 + parent: 2 - uid: 3703 components: - type: Transform @@ -205575,6 +206736,12 @@ entities: - type: Transform pos: -54.5,15.5 parent: 2 + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-29.5 + parent: 2 - uid: 9088 components: - type: Transform @@ -205684,6 +206851,12 @@ entities: - type: Transform pos: -98.5,27.5 parent: 2 + - uid: 9353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-32.5 + parent: 2 - uid: 9513 components: - type: Transform @@ -205855,6 +207028,18 @@ entities: - type: Transform pos: -66.5,31.5 parent: 2 + - uid: 12737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-32.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-30.5 + parent: 2 - uid: 12921 components: - type: Transform @@ -206591,11 +207776,6 @@ entities: - type: Transform pos: -47.5,67.5 parent: 2 - - uid: 18097 - components: - - type: Transform - pos: -54.5,42.5 - parent: 2 - uid: 18344 components: - type: Transform @@ -207283,6 +208463,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 + - uid: 23500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 - uid: 23600 components: - type: Transform @@ -208267,6 +209453,28 @@ entities: - type: Transform pos: -14.5,31.5 parent: 2 + - uid: 40546 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 40547 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 40551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 2 + - uid: 40552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 - proto: ReinforcedWindowDiagonal entities: - uid: 11280 @@ -208314,11 +209522,6 @@ entities: - Pressed: Toggle 4830: - Pressed: Toggle - - uid: 31177 - components: - - type: Transform - pos: -69.39074,1.2561102 - parent: 2 - uid: 34517 components: - type: Transform @@ -208789,9 +209992,10 @@ entities: - uid: 17385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.927308,-20.399904 - parent: 2 + parent: 28451 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 22670 components: - type: Transform @@ -209266,7 +210470,7 @@ entities: - uid: 2722 components: - type: Transform - pos: 21.019302,-18.386 + pos: 21.726645,-18.40235 parent: 2 - uid: 4951 components: @@ -209439,7 +210643,7 @@ entities: - uid: 12315 components: - type: Transform - pos: 20.54274,-18.35475 + pos: 21.30477,-18.386724 parent: 2 - uid: 16504 components: @@ -210151,6 +211355,26 @@ entities: - Pressed: Open 30311: - Pressed: Open + - uid: 40522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9253: + - Pressed: Toggle + - uid: 40523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9257: + - Pressed: Toggle - proto: SignalSwitchDirectional entities: - uid: 3283 @@ -210188,6 +211412,44 @@ entities: 28201: - On: Forward - Off: Off + - uid: 10478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 40513: + - On: Forward + - Off: Off + 40407: + - On: Forward + - Off: Off + 36049: + - On: Forward + - Off: Off + 36048: + - On: Forward + - Off: Off + 40500: + - On: Forward + - Off: Off + 9505: + - On: Forward + - Off: Off + 36047: + - On: Forward + - Off: Off + 40511: + - On: Forward + - Off: Off + 40499: + - On: Forward + - Off: Off + 40501: + - On: Forward + - Off: Off - uid: 11344 components: - type: Transform @@ -211471,12 +212733,6 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: - - uid: 9563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-30.5 - parent: 2 - uid: 23824 components: - type: Transform @@ -211506,6 +212762,12 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,42.5 parent: 2 + - uid: 31535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-32.5 + parent: 2 - proto: SignDirectionalSupply entities: - uid: 34972 @@ -211584,6 +212846,12 @@ entities: - type: Transform pos: 76.5,55.5 parent: 2 + - uid: 3864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-28.5 + parent: 2 - uid: 4673 components: - type: Transform @@ -211594,6 +212862,12 @@ entities: - type: Transform pos: 18.5,-27.5 parent: 2 + - uid: 12740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-28.5 + parent: 2 - uid: 14197 components: - type: Transform @@ -213123,6 +214397,13 @@ entities: parent: 2 - proto: SMESBasic entities: + - uid: 9563 + components: + - type: MetaData + name: Backup SMES 5 + - type: Transform + pos: 68.5,-27.5 + parent: 2 - uid: 9623 components: - type: MetaData @@ -213158,6 +214439,13 @@ entities: - type: Transform pos: -61.5,-35.5 parent: 2 + - uid: 12735 + components: + - type: MetaData + name: Backup SMES 3 + - type: Transform + pos: 66.5,-27.5 + parent: 2 - uid: 13398 components: - type: MetaData @@ -213214,6 +214502,13 @@ entities: - type: Transform pos: 83.5,-13.5 parent: 2 + - uid: 22775 + components: + - type: MetaData + name: Backup SMES 1 + - type: Transform + pos: 64.5,-27.5 + parent: 2 - uid: 23407 components: - type: MetaData @@ -213228,6 +214523,20 @@ entities: - type: Transform pos: -61.5,48.5 parent: 2 + - uid: 23620 + components: + - type: MetaData + name: Backup SMES 4 + - type: Transform + pos: 67.5,-27.5 + parent: 2 + - uid: 29562 + components: + - type: MetaData + name: Backup SMES 2 + - type: Transform + pos: 65.5,-27.5 + parent: 2 - uid: 31292 components: - type: MetaData @@ -215266,6 +216575,18 @@ entities: rot: 1.5707963267948966 rad pos: 75.5,32.5 parent: 2 + - uid: 9525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,6.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,4.5 + parent: 2 - uid: 12424 components: - type: Transform @@ -215366,12 +216687,6 @@ entities: - type: Transform pos: 68.5,31.5 parent: 2 - - uid: 23500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,6.5 - parent: 2 - uid: 23507 components: - type: Transform @@ -215390,12 +216705,24 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-38.5 parent: 2 + - uid: 26001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 - uid: 26548 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-5.5 parent: 2 + - uid: 27634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 - uid: 27884 components: - type: Transform @@ -215416,8 +216743,26 @@ entities: - uid: 28122 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,4.5 + rot: -1.5707963267948966 rad + pos: -66.5,14.5 + parent: 2 + - uid: 28516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,0.5 + parent: 2 + - uid: 30404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,0.5 + parent: 2 + - uid: 33705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,4.5 parent: 2 - uid: 36164 components: @@ -215443,6 +216788,12 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 + - uid: 40558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 - proto: SophicScribe entities: - uid: 2905 @@ -216302,6 +217653,11 @@ entities: - type: Transform pos: 69.5,71.5 parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 - uid: 15928 components: - type: Transform @@ -216337,11 +217693,6 @@ entities: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 38152 - components: - - type: Transform - pos: 64.5,-27.5 - parent: 2 - uid: 38153 components: - type: Transform @@ -216866,25 +218217,49 @@ entities: - uid: 39523 components: - type: Transform - pos: -32.7119,46.522106 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39524 components: - type: Transform - pos: -32.415024,46.428356 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpeedLoaderMagnumRubber + entities: + - uid: 26511 + components: + - type: Transform + parent: 22421 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26513 + components: + - type: Transform + parent: 22421 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SpeedLoaderSpecialPractice entities: - uid: 39526 components: - type: Transform - pos: -32.3994,46.69398 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 39527 components: - type: Transform - pos: -32.61815,46.81898 - parent: 2 + parent: 40544 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SprayBottle entities: - uid: 37373 @@ -218066,13 +219441,17 @@ entities: - uid: 4676 components: - type: Transform - pos: 8.432165,-20.89608 - parent: 2 + parent: 28451 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 12057 components: - type: Transform - pos: 8.619665,-21.05233 - parent: 2 + parent: 28451 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 13368 components: - type: Transform @@ -223916,25 +225295,27 @@ entities: parent: 2 - proto: TargetSyndicate entities: - - uid: 26511 + - uid: 26528 components: - type: Transform - pos: -30.5,52.5 + pos: -33.5,52.5 parent: 2 - - uid: 26513 + - uid: 26529 components: - type: Transform - pos: -32.5,52.5 + pos: -29.5,52.5 parent: 2 - - uid: 26528 + - uid: 36046 components: - type: Transform - pos: -33.5,52.5 + rot: 1.5707963267948966 rad + pos: -32.5,51.5 parent: 2 - - uid: 26529 + - uid: 40517 components: - type: Transform - pos: -29.5,52.5 + rot: 1.5707963267948966 rad + pos: -30.5,51.5 parent: 2 - proto: tatamimat entities: @@ -224192,13 +225573,6 @@ entities: showEnts: False occludes: True ents: [] -- proto: TimerTrigger - entities: - - uid: 36049 - components: - - type: Transform - pos: 31.629028,15.79834 - parent: 2 - proto: ToiletDirtyWater entities: - uid: 19706 @@ -224850,6 +226224,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.744827,10.731756 parent: 2 + - uid: 40543 + components: + - type: Transform + pos: -29.875687,43.410027 + parent: 2 - proto: TrashBananaPeel entities: - uid: 943 @@ -226190,11 +227569,6 @@ entities: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 22401 - components: - - type: Transform - pos: -79.5,-2.5 - parent: 2 - uid: 22630 components: - type: Transform @@ -226849,12 +228223,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,28.5 parent: 2 - - uid: 1847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,44.5 - parent: 2 - uid: 1886 components: - type: Transform @@ -227519,16 +228887,6 @@ entities: - type: Transform pos: 12.5,54.5 parent: 2 - - uid: 2852 - components: - - type: Transform - pos: 3.5,45.5 - parent: 2 - - uid: 2853 - components: - - type: Transform - pos: 3.5,46.5 - parent: 2 - uid: 2868 components: - type: Transform @@ -227559,32 +228917,12 @@ entities: - type: Transform pos: 33.5,34.5 parent: 2 - - uid: 2887 - components: - - type: Transform - pos: 70.5,-27.5 - parent: 2 - - uid: 2893 - components: - - type: Transform - pos: 68.5,-29.5 - parent: 2 - - uid: 2898 - components: - - type: Transform - pos: 71.5,-26.5 - parent: 2 - uid: 2903 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-3.5 parent: 2 - - uid: 2912 - components: - - type: Transform - pos: 69.5,-28.5 - parent: 2 - uid: 3003 components: - type: Transform @@ -227625,11 +228963,6 @@ entities: - type: Transform pos: 10.5,34.5 parent: 2 - - uid: 3029 - components: - - type: Transform - pos: 65.5,-30.5 - parent: 2 - uid: 3031 components: - type: Transform @@ -227655,11 +228988,6 @@ entities: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 3047 - components: - - type: Transform - pos: 6.5,43.5 - parent: 2 - uid: 3097 components: - type: Transform @@ -227701,11 +229029,6 @@ entities: - type: Transform pos: 9.5,-21.5 parent: 2 - - uid: 3130 - components: - - type: Transform - pos: 66.5,-30.5 - parent: 2 - uid: 3136 components: - type: Transform @@ -227825,11 +229148,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 - - uid: 3334 - components: - - type: Transform - pos: 64.5,-30.5 - parent: 2 - uid: 3336 components: - type: Transform @@ -228279,11 +229597,6 @@ entities: - type: Transform pos: -30.5,-22.5 parent: 2 - - uid: 3791 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - uid: 3793 components: - type: Transform @@ -228339,11 +229652,6 @@ entities: - type: Transform pos: -23.5,-26.5 parent: 2 - - uid: 3818 - components: - - type: Transform - pos: 63.5,-31.5 - parent: 2 - uid: 3819 components: - type: Transform @@ -228365,6 +229673,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,20.5 parent: 2 + - uid: 3865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-27.5 + parent: 2 - uid: 3875 components: - type: Transform @@ -229030,11 +230344,6 @@ entities: - type: Transform pos: -98.5,17.5 parent: 2 - - uid: 5090 - components: - - type: Transform - pos: 67.5,-29.5 - parent: 2 - uid: 5094 components: - type: Transform @@ -229752,11 +231061,6 @@ entities: - type: Transform pos: -75.5,20.5 parent: 2 - - uid: 7584 - components: - - type: Transform - pos: 5.5,43.5 - parent: 2 - uid: 7598 components: - type: Transform @@ -229956,11 +231260,6 @@ entities: - type: Transform pos: -98.5,-1.5 parent: 2 - - uid: 7928 - components: - - type: Transform - pos: 66.5,-29.5 - parent: 2 - uid: 7936 components: - type: Transform @@ -230967,6 +232266,12 @@ entities: - type: Transform pos: -52.5,30.5 parent: 2 + - uid: 10027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-26.5 + parent: 2 - uid: 10028 components: - type: Transform @@ -231354,6 +232659,12 @@ entities: - type: Transform pos: -65.5,31.5 parent: 2 + - uid: 12611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-26.5 + parent: 2 - uid: 12747 components: - type: Transform @@ -231364,6 +232675,24 @@ entities: - type: Transform pos: 46.5,-32.5 parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-28.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-26.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-28.5 + parent: 2 - uid: 12926 components: - type: Transform @@ -231377,7 +232706,7 @@ entities: - uid: 12937 components: - type: Transform - pos: 64.5,-31.5 + pos: 65.5,-32.5 parent: 2 - uid: 12939 components: @@ -231387,17 +232716,7 @@ entities: - uid: 12941 components: - type: Transform - pos: 69.5,-29.5 - parent: 2 - - uid: 12942 - components: - - type: Transform - pos: 70.5,-28.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: 71.5,-27.5 + pos: 64.5,-32.5 parent: 2 - uid: 12944 components: @@ -232297,12 +233616,6 @@ entities: - type: Transform pos: -19.5,41.5 parent: 2 - - uid: 15703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,42.5 - parent: 2 - uid: 15704 components: - type: Transform @@ -234253,6 +235566,11 @@ entities: rot: 3.141592653589793 rad pos: -57.5,21.5 parent: 2 + - uid: 22865 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 - uid: 22949 components: - type: Transform @@ -236410,11 +237728,6 @@ entities: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 33705 - components: - - type: Transform - pos: 5.5,47.5 - parent: 2 - uid: 33808 components: - type: Transform @@ -236770,6 +238083,72 @@ entities: - type: Transform pos: -42.5,31.5 parent: 2 + - uid: 40439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-26.5 + parent: 2 + - uid: 40440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-26.5 + parent: 2 + - uid: 40441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 + - uid: 40443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-26.5 + parent: 2 + - uid: 40444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-27.5 + parent: 2 + - uid: 40454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-32.5 + parent: 2 + - uid: 40455 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 2 + - uid: 40456 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 2 + - uid: 40457 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 2 + - uid: 40458 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 2 + - uid: 40459 + components: + - type: Transform + pos: 72.5,-27.5 + parent: 2 + - uid: 40514 + components: + - type: Transform + pos: -29.5,42.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 22062 @@ -236806,6 +238185,12 @@ entities: - type: Transform pos: 76.5,55.5 parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 87.5,-6.5 + parent: 2 - uid: 3154 components: - type: Transform @@ -239674,12 +241059,6 @@ entities: rot: -1.5707963267948966 rad pos: 87.5,-7.5 parent: 2 - - uid: 39602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,-6.5 - parent: 2 - uid: 39606 components: - type: Transform @@ -239851,11 +241230,6 @@ entities: - type: Transform pos: -1.5,8.5 parent: 2 - - uid: 89 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - uid: 97 components: - type: Transform @@ -240422,12 +241796,6 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 - - uid: 373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 2 - uid: 375 components: - type: Transform @@ -242571,11 +243939,6 @@ entities: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 3430 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - uid: 3432 components: - type: Transform @@ -242773,36 +244136,11 @@ entities: - type: Transform pos: 61.5,-28.5 parent: 2 - - uid: 3864 - components: - - type: Transform - pos: 62.5,-27.5 - parent: 2 - - uid: 3865 - components: - - type: Transform - pos: 63.5,-26.5 - parent: 2 - - uid: 3866 - components: - - type: Transform - pos: 64.5,-26.5 - parent: 2 - - uid: 3867 - components: - - type: Transform - pos: 65.5,-26.5 - parent: 2 - uid: 3871 components: - type: Transform pos: 51.5,19.5 parent: 2 - - uid: 3882 - components: - - type: Transform - pos: 66.5,-25.5 - parent: 2 - uid: 3883 components: - type: Transform @@ -243976,11 +245314,6 @@ entities: - type: Transform pos: -66.5,11.5 parent: 2 - - uid: 7445 - components: - - type: Transform - pos: -66.5,14.5 - parent: 2 - uid: 7446 components: - type: Transform @@ -244221,11 +245554,6 @@ entities: - type: Transform pos: -78.5,-0.5 parent: 2 - - uid: 9053 - components: - - type: Transform - pos: -82.5,0.5 - parent: 2 - uid: 9054 components: - type: Transform @@ -244283,11 +245611,6 @@ entities: - type: Transform pos: -2.5,56.5 parent: 2 - - uid: 9525 - components: - - type: Transform - pos: -74.5,0.5 - parent: 2 - uid: 9646 components: - type: Transform @@ -244553,11 +245876,6 @@ entities: - type: Transform pos: -81.5,6.5 parent: 2 - - uid: 13207 - components: - - type: Transform - pos: -82.5,4.5 - parent: 2 - uid: 13242 components: - type: Transform @@ -244598,16 +245916,6 @@ entities: - type: Transform pos: 52.5,5.5 parent: 2 - - uid: 13323 - components: - - type: Transform - pos: 66.5,-26.5 - parent: 2 - - uid: 13324 - components: - - type: Transform - pos: -80.5,-2.5 - parent: 2 - uid: 13328 components: - type: Transform @@ -244693,11 +246001,6 @@ entities: - type: Transform pos: -96.5,14.5 parent: 2 - - uid: 14194 - components: - - type: Transform - pos: 63.5,-27.5 - parent: 2 - uid: 14200 components: - type: Transform @@ -245527,11 +246830,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-6.5 parent: 2 - - uid: 23540 - components: - - type: Transform - pos: -75.5,-0.5 - parent: 2 - uid: 23654 components: - type: Transform @@ -245949,6 +247247,12 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 + - uid: 31177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-2.5 + parent: 2 - uid: 31277 components: - type: Transform @@ -247141,19 +248445,23 @@ entities: - uid: 17723 components: - type: Transform - pos: 6.3726206,-20.212404 - parent: 2 + parent: 28451 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - - uid: 9505 + - uid: 40508 components: - type: Transform - pos: -32.3164,43.572277 + rot: -1.5707963267948966 rad + pos: -32.656937,43.57409 parent: 2 - - uid: 17013 + - uid: 40520 components: - type: Transform - pos: -32.582024,43.751965 + rot: -1.5707963267948966 rad + pos: -32.2585,43.60534 parent: 2 - proto: WeaponFlareGun entities: @@ -247184,6 +248492,14 @@ entities: - type: Transform pos: -22.514536,51.356438 parent: 2 +- proto: WeaponPistolMk58Nonlethal + entities: + - uid: 40505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.331062,46.564983 + parent: 2 - proto: WeaponShotgunKammererNonLethal entities: - uid: 37918 @@ -247192,6 +248508,18 @@ entities: rot: -1.5707963267948966 rad pos: -22.435013,43.58711 parent: 2 +- proto: WeaponSniperHristov + entities: + - uid: 13324 + components: + - type: MetaData + desc: Found on a grassy knoll in Texas. It is inscribed with the initials 'LHO'. A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo. + name: HoS' Trophy Hristov + - type: Transform + parent: 13323 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponTurretHostile entities: - uid: 9161 @@ -248100,40 +249428,6 @@ entities: - type: Transform pos: -106.5,51.5 parent: 2 - - uid: 25283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 28462 - - 27418 - - type: DeviceLinkSource - linkedPorts: - 28462: - - DoorStatus: Close - 27418: - - DoorStatus: Close - - uid: 25284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 28462 - - 27418 - - type: DeviceLinkSource - linkedPorts: - 28462: - - DoorStatus: Close - 27418: - - DoorStatus: Close - uid: 38024 components: - type: Transform @@ -248443,46 +249737,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,15.5 parent: 2 - - uid: 27418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 25283 - - 25284 - - type: DeviceLinkSource - linkedPorts: - 25283: - - DoorStatus: Close - 25284: - - DoorStatus: Close - uid: 28174 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,16.5 parent: 2 - - uid: 28462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - links: - - 25283 - - 25284 - - type: DeviceLinkSource - linkedPorts: - 25283: - - DoorStatus: Close - 25284: - - DoorStatus: Close - uid: 28904 components: - type: Transform @@ -251703,18 +252963,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,16.5 parent: 2 - - uid: 1397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 2 - - uid: 1399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - uid: 1450 components: - type: Transform @@ -252244,36 +253492,12 @@ entities: - type: Transform pos: 16.5,12.5 parent: 2 - - uid: 24778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 2 - - uid: 25146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,46.5 - parent: 2 - uid: 25287 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,9.5 parent: 2 - - uid: 26000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 2 - - uid: 26001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,46.5 - parent: 2 - uid: 26704 components: - type: Transform @@ -252298,12 +253522,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,11.5 parent: 2 - - uid: 27419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 2 - uid: 28202 components: - type: Transform @@ -252327,12 +253545,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,17.5 parent: 2 - - uid: 28461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 2 - uid: 28464 components: - type: Transform diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index 7975f9d2d04..a0c83a9f1fc 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -343,7 +343,7 @@ entities: version: 6 0,4: ind: 0,4 - tiles: ewAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAABXAAAAAAAYwAAAAAAXAAAAAADXAAAAAACfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAACXAAAAAACYwAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAACXAAAAAABYwAAAAAAXAAAAAAAYwAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAYwAAAAAAXAAAAAACXAAAAAABYwAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAABYwAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAACYwAAAAAAYwAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAXAAAAAABawAAAAAAewAAAAAAfAAAAAAAQQAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAAAAAAAAAfAAAAAAAQQAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAADawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: ewAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAABXAAAAAAAYwAAAAAAXAAAAAADXAAAAAACfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAACXAAAAAACYwAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAACXAAAAAABYwAAAAAAXAAAAAAAYwAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAYwAAAAAAXAAAAAACXAAAAAABYwAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAABYwAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAXAAAAAAAYwAAAAAAXAAAAAACYwAAAAAAYwAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAATgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAQQAAAAAAQQAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAXAAAAAABawAAAAAAewAAAAAAfAAAAAAAQQAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAAAAAAAAAfAAAAAAAQQAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfAAAAAAAfAAAAAAAQQAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAADawAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAQQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -9362,812 +9362,1332 @@ entities: version: 2 data: tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 62259 - -1,0: - 0: 65535 -4,-4: - 0: 65535 + 0: 63351 + -4,-5: + 0: 32767 + -5,-4: + 0: 64989 -4,-3: - 0: 65535 + 0: 32639 + -5,-3: + 0: 52428 -4,-2: - 0: 65535 + 0: 65399 + -5,-2: + 0: 56796 -4,-1: + 0: 4095 + -5,-1: + 0: 3549 + -4,0: 0: 65535 -3,-4: - 0: 65280 + 0: 61440 -3,-3: 0: 65535 -3,-2: - 0: 65535 + 0: 65295 -3,-1: + 0: 53247 + -3,0: 0: 65535 -2,-4: - 0: 65280 + 0: 28672 -2,-3: - 0: 65535 + 0: 63351 -2,-2: - 0: 65535 + 0: 56599 -2,-1: + 0: 52701 + -2,0: 0: 65535 - 1,-1: + -1,-3: + 1: 15 + 0: 30464 + -1,-2: + 0: 63351 + -1,-1: + 0: 61135 + -1,0: + 0: 65535 + 0,-3: + 1: 4368 + 0,-2: + 1: 17 + 0: 4096 + 0,-1: + 0: 4353 + 0,0: 0: 65535 - 1,-4: - 0: 61167 1,-3: - 0: 65518 + 1: 256 + 0: 52428 1,-2: + 0: 61166 + 1,-1: + 0: 61166 + 1,0: 0: 65535 + 1,-5: + 0: 61164 + 1,-4: + 0: 52424 2,-4: - 0: 65535 + 0: 64511 2,-3: - 0: 65535 + 0: 49151 2,-2: - 0: 65535 + 0: 48115 2,-1: - 0: 65535 + 0: 56785 + 2,-5: + 0: 65338 + 2,0: + 0: 60941 3,-4: - 0: 65535 + 0: 63479 3,-3: - 0: 65535 + 0: 30711 3,-2: - 0: 65535 + 0: 65520 3,-1: + 0: 56784 + 3,-5: + 0: 65295 + 3,0: + 0: 65373 + 4,-4: 0: 65535 - -4,0: + 4,-3: 0: 65535 - -4,1: + 4,-2: + 0: 63344 + 4,-1: + 0: 56796 + -5,0: 0: 65535 + -4,1: + 0: 65392 -4,2: - 0: 65535 + 0: 61559 + -5,2: + 0: 30705 -4,3: - 0: 65535 - -3,0: - 0: 65535 + 0: 28799 + -5,3: + 0: 63359 + -4,4: + 0: 32759 -3,1: - 0: 65535 + 0: 65534 -3,2: 0: 65535 -3,3: 0: 65535 - -2,0: + -3,4: 0: 65535 -2,1: - 0: 65535 + 0: 65533 -2,2: 0: 65535 -2,3: - 0: 65535 + 0: 30719 + -2,4: + 0: 22399 -1,1: 0: 65535 -1,2: 0: 65535 -1,3: 0: 65535 - 1,-5: - 0: 65535 - 2,-5: + -1,4: 0: 65535 - 2,-6: + 0,1: 0: 65535 - 3,-6: + 0,2: 0: 65535 - 3,-5: + 0,3: + 0: 48127 + 0,-8: + 0: 4368 + 0,-9: + 1: 14464 + -1,-8: + 0: 65520 + 0,-7: + 0: 4369 + -1,-7: 0: 65535 + 0,-6: + 0: 1 + -1,-6: + 0: 15 + 1,-6: + 0: 61166 + 1,-7: + 1: 3784 + 1,-8: + 1: 52424 + 1,-9: + 1: 52976 + 2,-8: + 1: 4368 + 2,-7: + 1: 784 + 2,-6: + 0: 65459 + 3,-6: + 0: 65520 4,-6: - 0: 65535 + 0: 32624 4,-5: - 0: 65535 - 4,-8: - 0: 34952 - 4,-7: - 0: 65528 - 5,-8: - 0: 65535 + 0: 65303 5,-7: 0: 65535 5,-6: 0: 65535 5,-5: - 0: 65535 - 6,-8: + 0: 63271 + 5,-8: + 1: 273 + 5,-9: + 1: 14320 + 5,-4: 0: 65535 6,-7: - 0: 65535 + 0: 62448 6,-6: - 0: 65535 + 0: 65523 6,-5: - 0: 65535 - 7,-8: + 0: 65520 + 6,-4: 0: 65535 7,-7: - 0: 65535 + 0: 4112 + 1: 58914 7,-6: - 0: 65535 + 0: 61168 7,-5: - 0: 65535 - 4,-10: - 0: 34944 - 4,-9: - 0: 36088 - 5,-10: - 0: 65520 - 5,-9: - 0: 65535 - 6,-10: - 0: 65520 - 6,-9: - 0: 65535 - 7,-10: 0: 65520 - 7,-9: + 7,-4: 0: 65535 - 8,-10: - 0: 4368 - 8,-9: - 0: 14833 - 8,-8: - 0: 6615 8,-7: - 0: 65535 + 0: 3808 8,-6: - 0: 65535 + 0: 61166 8,-5: - 0: 65535 + 0: 61166 + 8,-4: + 0: 28415 + 8,-8: + 1: 2246 + 8,-9: + 1: 14832 + 9,-8: + 1: 12546 + 9,-7: + 0: 272 9,-6: - 0: 30583 + 0: 12593 9,-5: - 0: 30583 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 + 0: 4369 + 9,-4: + 0: 273 + 9,-9: + 1: 12592 + 4,0: + 0: 65229 5,-3: 0: 65535 5,-2: - 0: 65535 + 0: 57599 5,-1: - 0: 65535 - 6,-4: - 0: 65535 + 0: 61166 6,-3: - 0: 65535 + 0: 29183 6,-2: - 0: 65535 + 0: 61567 6,-1: 0: 65535 - 7,-4: - 0: 65535 + 6,0: + 0: 12274 7,-3: - 0: 65535 + 0: 61695 7,-2: - 0: 65535 + 0: 61183 7,-1: - 0: 65535 - 8,-4: - 0: 65535 + 0: 61166 8,-3: - 0: 65535 + 0: 65262 8,-2: 0: 65535 8,-1: - 0: 65535 - 9,-4: - 0: 63351 + 0: 63359 + 8,0: + 0: 30578 9,-3: 0: 65535 9,-2: 0: 65535 - 4,0: - 0: 65535 + 9,-1: + 0: 65295 + 10,-3: + 0: 4094 + 10,-2: + 0: 239 + 1: 57344 + 10,-1: + 0: 65280 + 1: 14 + 10,0: + 0: 30577 + 11,-3: + 0: 53237 + 1: 8 + 11,-2: + 0: 223 + 1: 64512 + 11,-1: + 1: 15 + 0: 65280 + 11,0: + 0: 255 + 11,-4: + 1: 49152 + 12,-4: + 1: 61440 + 12,-3: + 1: 61031 + 0: 4368 + 12,-2: + 0: 1 + 1: 30590 + 12,-1: + 1: 15 4,1: - 0: 65535 + 0: 53230 + 3,1: + 0: 35647 4,2: - 0: 65535 + 0: 21981 + 3,2: + 0: 53247 4,3: - 0: 65535 + 0: 21829 + 3,3: + 0: 65309 + 4,4: + 0: 29783 5,0: - 0: 65535 + 0: 4080 5,1: + 0: 26215 + 5,2: + 0: 61558 + 5,3: 0: 65535 - 6,0: + 5,4: 0: 65535 6,1: 0: 65535 + 6,2: + 0: 60671 + 6,3: + 0: 61167 + 6,4: + 0: 56796 7,0: - 0: 65535 + 0: 35760 7,1: - 0: 65535 - 8,0: - 0: 65535 + 0: 15291 + 7,2: + 0: 53439 + 7,3: + 0: 64989 + 7,4: + 0: 57329 8,1: - 0: 65535 + 0: 1639 + 8,2: + 0: 56575 + 8,3: + 0: 56799 + 9,0: + 0: 65520 + 9,1: + 0: 12287 + 9,2: + 0: 61046 + 9,3: + 0: 61160 + 10,1: + 0: 1911 + 10,2: + 0: 57227 10,3: + 0: 49072 + 11,2: 0: 65535 11,3: - 0: 65535 - 4,4: - 0: 65535 + 0: 65522 + 12,2: + 0: 65256 + 3,4: + 0: 53759 4,5: - 0: 65535 + 0: 65527 + 3,5: + 0: 65532 4,6: + 0: 65439 + 3,6: + 0: 61070 + 4,7: 0: 65535 - 5,4: + 3,7: + 0: 61182 + 4,8: 0: 65535 5,5: - 0: 65535 - 6,4: - 0: 65535 + 0: 65522 + 5,6: + 0: 65311 + 5,7: + 0: 56799 + 5,8: + 0: 64989 6,5: - 0: 65535 - 7,4: - 0: 65535 + 0: 65532 + 6,6: + 0: 56773 + 6,7: + 0: 56797 + 6,8: + 0: 64973 7,5: - 0: 65535 - 7,6: - 0: 65535 + 0: 52733 7,7: - 0: 65535 + 0: 61168 + 7,6: + 0: 61166 + 7,8: + 0: 61902 + 8,4: + 0: 30576 + 8,5: + 0: 63351 + 8,6: + 0: 30591 -4,-6: 0: 65535 - -4,-5: - 0: 65535 - -4,-8: - 0: 52478 - -4,-7: - 0: 65484 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 + -5,-6: + 0: 61439 + -5,-5: + 0: 53247 -3,-6: - 0: 65535 + 0: 52701 -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 + 0: 4095 + -3,-8: + 0: 52460 + -3,-7: + 0: 3276 + -3,-9: + 0: 52428 -2,-6: 0: 65535 -2,-5: + 0: 4095 + -2,-8: + 0: 61160 + -2,-7: + 0: 61166 + -2,-9: + 0: 34816 + -8,-8: + 0: 65520 + -8,-9: + 1: 4096 + -8,-7: 0: 65535 + -8,-6: + 0: 65295 + -8,-5: + 0: 12543 + -9,-5: + 0: 58991 + -8,-4: + 0: 62259 -7,-8: - 0: 65535 + 0: 65522 -7,-7: 0: 65535 -7,-6: - 0: 65535 + 0: 61167 -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 + 0: 3823 + -7,-9: + 0: 8704 -6,-6: - 0: 65535 + 0: 30583 -6,-5: + 0: 53247 + -6,-8: + 0: 26342 + -6,-7: + 0: 1638 + -6,-9: + 0: 26214 + -6,-4: + 0: 65262 + -9,-4: + 0: 61166 + -8,-3: + 0: 65295 + -9,-3: + 0: 60942 + -8,-2: 0: 65535 - -5,-8: - 0: 30719 - -5,-7: - 0: 65399 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 + -9,-2: + 0: 61166 -8,-1: + 0: 4095 + -9,-1: + 0: 3822 + -8,0: 0: 65535 + -7,-4: + 0: 61440 + -7,-3: + 0: 48015 + -7,-2: + 0: 48059 -7,-1: + 0: 3003 + -7,0: 0: 65535 + -6,-3: + 0: 4368 + -6,-2: + 0: 56785 -6,-1: + 0: 40445 + -6,0: 0: 65535 - -5,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 61167 - -5,-2: - 0: 65535 + -12,-4: + 0: 57454 + -13,-4: + 0: 8191 -12,-3: - 0: 65535 + 0: 26127 + -13,-3: + 0: 65533 -12,-2: - 0: 65535 + 0: 61542 + -13,-2: + 0: 62975 -12,-1: - 0: 65535 + 0: 61695 + -13,-1: + 0: 33791 + -12,0: + 0: 30583 + -12,-5: + 0: 59630 + -11,-4: + 0: 65351 -11,-3: 0: 65535 -11,-2: - 0: 65535 + 0: 61695 -11,-1: + 0: 28927 + -11,-5: + 0: 62062 + -11,0: + 0: 62071 + -10,-4: + 0: 61919 + -10,-3: 0: 65535 + -10,-2: + 0: 61695 -10,-1: 0: 65535 - -9,-1: + -10,-5: + 0: 65295 + -10,0: 0: 65535 - -12,0: + -9,0: 0: 65535 + -13,0: + 0: 64443 -12,1: - 0: 65535 + 0: 30576 + -13,1: + 0: 49075 -12,2: - 0: 65535 + 0: 65399 + -13,2: + 0: 64440 -12,3: - 0: 65535 - -11,0: - 0: 65535 + 0: 64399 + -13,3: + 0: 65339 + -12,4: + 0: 46011 -11,1: 0: 65535 -11,2: - 0: 65535 + 0: 65391 -11,3: 0: 65535 - -10,0: - 0: 65535 + -11,4: + 0: 62207 -10,1: 0: 65535 -10,2: - 0: 65535 + 0: 26183 -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 + 0: 28262 + -10,4: + 0: 26214 -9,2: - 0: 65535 + 0: 65520 -9,3: 0: 65535 + -9,1: + 0: 61152 + -9,4: + 0: 65327 + -8,1: + 0: 48048 + -8,2: + 0: 65393 + -8,3: + 0: 47927 -16,-4: - 0: 65535 + 0: 57309 + -16,-5: + 0: 7372 + 1: 1 + -17,-4: + 0: 65518 -16,-3: - 0: 65535 + 0: 61661 + -17,-3: + 0: 63743 -16,-2: - 0: 65535 + 0: 36863 + -17,-2: + 0: 20479 -16,-1: - 0: 65535 + 0: 4095 + -17,-1: + 0: 4095 + -16,0: + 0: 32631 + -15,-4: + 0: 30711 -15,-3: - 0: 65535 + 0: 28799 -15,-2: - 0: 65535 + 0: 1911 -15,-1: + 0: 4095 + -15,-5: + 0: 6007 + -15,0: 0: 65535 + -14,-4: + 0: 36863 -14,-3: - 0: 65535 + 0: 35763 -14,-2: - 0: 65535 + 0: 2047 -14,-1: + 0: 4095 + -14,-5: 0: 65535 - -13,-3: - 0: 65535 - -13,-2: + -14,0: 0: 65535 - -13,-1: + -13,-5: 0: 65535 - -16,0: + -17,0: 0: 65535 -16,1: - 0: 65535 + 0: 56785 + -17,1: + 0: 45311 -16,2: - 0: 65535 + 0: 65439 + -17,2: + 0: 64399 -16,3: - 0: 65535 - -15,0: - 0: 65535 + 0: 56735 + -17,3: + 0: 65291 + -16,4: + 0: 61901 -15,1: - 0: 65535 + 0: 32624 -15,2: - 0: 65535 + 0: 32519 -15,3: - 0: 65535 + 0: 3808 + -15,4: + 0: 28893 -14,1: 0: 65535 -14,2: - 0: 65535 + 0: 65521 -14,3: - 0: 65535 - -14,0: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 + 0: 57343 + -14,4: + 0: 56541 + -13,4: + 0: 26223 -20,-4: 0: 65535 + -21,-4: + 0: 32631 -20,-3: 0: 65535 -20,-2: - 0: 65535 + 0: 36863 + -21,-2: + 0: 1919 -20,-1: + 0: 61167 + -21,-1: 0: 65535 - -19,-4: - 0: 65535 + -20,-5: + 0: 12287 -19,-3: - 0: 65535 - -19,-2: - 0: 65535 + 0: 61182 -19,-1: - 0: 65535 + 0: 56797 + -19,-4: + 0: 61166 + -19,-2: + 0: 52974 + -19,-5: + 0: 61166 + -19,0: + 0: 65020 -18,-4: - 0: 65535 + 0: 64797 -18,-3: - 0: 65535 + 0: 53727 -18,-2: - 0: 65535 + 0: 7645 -18,-1: - 0: 65535 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65535 - -17,-1: + 0: 8191 + -18,-5: + 0: 53521 + 1: 68 + -18,0: + 0: 56797 + -17,-5: + 0: 57344 + -16,-8: + 0: 4368 + 1: 50368 + -16,-9: + 0: 48063 + -17,-8: + 0: 65520 + -16,-7: + 0: 4369 + 1: 52428 + -17,-7: 0: 65535 -16,-6: + 0: 52689 + -17,-6: + 0: 4095 + -15,-8: + 1: 29808 + -15,-7: + 0: 30582 + -15,-6: + 0: 30578 + -15,-9: 0: 65535 - -16,-5: - 0: 65535 - -20,-5: - 0: 65535 + -14,-8: + 0: 48059 + -14,-7: + 0: 32755 + -14,-6: + 0: 10096 + -14,-9: + 0: 45875 + 1: 128 + -13,-8: + 0: 24575 + -13,-7: + 0: 8188 + -13,-6: + 0: 20479 + -13,-9: + 0: 64170 + -12,-8: + 0: 20479 + -12,-7: + 0: 36863 + -20,-8: + 0: 57599 + -20,-9: + 0: 62463 + -21,-8: + 0: 4095 + -20,-7: + 0: 58606 + -21,-7: + 1: 241 -20,-6: - 0: 65535 + 0: 65294 + -21,-6: + 0: 47872 + -21,-5: + 0: 8123 + -19,-8: + 0: 26359 + -19,-7: + 0: 63078 + -19,-9: + 0: 28927 -19,-6: - 0: 65535 - -19,-5: - 0: 65535 + 0: 61166 + -18,-8: + 0: 65521 + -18,-7: + 0: 64767 -18,-6: + 0: 7647 + -18,-9: + 0: 56797 + -17,-9: 0: 65535 - -18,-5: - 0: 65535 - -17,-6: + -24,-8: + 1: 4375 + -24,-9: + 1: 4096 + -25,-8: + 0: 32626 + -24,-7: + 1: 13107 + 0: 34944 + -25,-7: + 1: 3840 + 0: 7 + -24,-5: 0: 65535 - -17,-5: + -25,-5: + 0: 61166 + -24,-4: + 0: 4095 + -24,-6: + 1: 2 + 0: 2184 + -23,-8: + 0: 48063 + -23,-7: + 0: 39864 + -23,-6: + 0: 3007 + -23,-5: + 0: 63351 + -23,-4: + 0: 1911 + -22,-8: + 0: 7163 + -22,-7: + 0: 13107 + 1: 128 + -22,-6: + 0: 47891 + -22,-5: + 0: 15291 + -22,-4: + 0: 48059 + -22,-9: + 0: 34959 + 1: 512 + -21,-9: 0: 65535 - -21,-5: + -25,-4: + 0: 3822 + -24,-3: + 1: 2255 + 0: 4096 + -25,-3: + 1: 31 + 0: 57344 + -24,-2: + 0: 16145 + -25,-2: + 0: 61166 + -24,-1: + 0: 65528 + -24,0: + 0: 13107 + -23,-2: + 0: 61326 + -23,-1: 0: 65535 + -23,-3: + 0: 1766 -22,-3: - 0: 65535 + 0: 47931 -22,-2: - 0: 65535 + 0: 8123 -22,-1: - 0: 65535 - -21,-4: - 0: 65535 + 0: 56797 + -22,0: + 0: 24780 -21,-3: - 0: 65535 - -21,-2: - 0: 65535 - -21,-1: - 0: 65535 + 0: 30471 + -21,0: + 0: 62719 + -25,0: + 0: 60928 + 1: 1 + -24,1: + 0: 13107 + -25,1: + 0: 61422 + -24,2: + 0: 13107 + -25,2: + 0: 3822 + -24,3: + 0: 4083 + -24,4: + 0: 2039 + -23,3: + 0: 12272 -23,0: - 0: 65535 + 0: 57344 -23,1: - 0: 65535 + 0: 60974 -23,2: - 0: 65535 - -22,0: - 0: 65535 + 0: 238 + -23,4: + 0: 15355 -22,1: - 0: 65535 + 0: 63334 -22,2: - 0: 65535 - -21,0: - 0: 65535 + 0: 119 + -22,3: + 0: 36848 + -22,4: + 0: 35771 -21,1: - 0: 65535 + 0: 62719 -21,2: - 0: 65535 + 0: 4095 -21,3: - 0: 65535 - -20,0: - 0: 65535 + 0: 56829 + -21,4: + 0: 65309 -20,1: - 0: 65535 + 0: 61678 -20,2: - 0: 65535 + 0: 61007 -20,3: 0: 65535 - -19,0: - 0: 65535 + -20,0: + 0: 61152 + -20,4: + 0: 65295 -19,1: - 0: 65535 + 0: 55519 -19,2: - 0: 65535 + 0: 61071 -19,3: - 0: 65535 - -18,0: - 0: 65535 + 0: 61166 + -19,4: + 0: 65422 -18,1: - 0: 65535 + 0: 61661 -18,2: - 0: 65535 + 0: 64911 -18,3: - 0: 65535 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -20,4: - 0: 65535 + 0: 56605 + -18,4: + 0: 65293 + -17,4: + 0: 65295 -20,5: - 0: 36863 - -19,4: - 0: 65535 + 0: 119 + -21,5: + 0: 1849 + -20,7: + 1: 256 + -21,7: + 1: 7936 -19,5: - 0: 65535 + 1: 8992 + 0: 34944 -19,6: - 0: 61166 + 1: 8738 + 0: 34952 -19,7: + 0: 2176 + -19,8: 0: 52428 - -18,4: - 0: 65535 -18,5: - 0: 65535 + 0: 65524 -18,6: 0: 65535 -18,7: - 0: 65535 - -17,4: - 0: 65535 + 0: 4080 + -18,8: + 0: 56797 -17,5: - 0: 65535 + 0: 47928 -17,6: - 0: 65535 + 0: 65467 -17,7: - 0: 65535 - -16,4: + 0: 53020 + -17,8: 0: 65535 -16,5: - 0: 65535 + 0: 65295 -16,6: - 0: 65535 + 0: 65167 -16,7: - 0: 65535 - -15,4: - 0: 65535 + 0: 61152 + -16,8: + 0: 60942 -15,5: - 0: 65535 + 0: 61039 -15,6: - 0: 65535 + 0: 65295 -15,7: - 0: 65535 - -14,4: - 0: 65535 + 0: 56785 + -15,8: + 0: 64797 -14,5: - 0: 65535 + 0: 65473 -14,6: - 0: 65535 + 0: 57103 -14,7: - 0: 65535 - -13,4: - 0: 65535 + 0: 56796 + -14,8: + 0: 56781 -13,5: - 0: 65535 + 0: 65520 -13,6: - 0: 65535 + 0: 65295 -13,7: 0: 65535 - -12,4: + -13,8: 0: 65535 -12,5: - 0: 65535 + 0: 62392 -12,6: - 0: 65535 + 0: 30479 -12,7: 0: 65535 - -11,4: + -12,8: 0: 65535 -11,5: - 0: 65535 + 0: 61695 -11,6: - 0: 65535 + 0: 4095 -11,7: - 0: 65535 - -10,4: - 0: 65535 + 0: 30711 + -11,8: + 0: 32631 -10,5: - 0: 65535 + 0: 26215 -10,6: - 0: 65535 + 0: 1791 -10,7: - 0: 65535 - -9,4: - 0: 65535 + 0: 20479 + -10,8: + 0: 32631 -9,5: - 0: 65535 + 0: 47871 -9,6: - 0: 65535 + 0: 35771 -9,7: + 0: 43967 + -9,8: 0: 65535 - -16,8: - 0: 65535 + -8,4: + 0: 65291 + -8,5: + 0: 13311 + 1: 32768 + -8,6: + 0: 48947 + 1: 8 + -8,7: + 0: 49083 -16,9: - 0: 17487 - -15,8: - 0: 65535 + 1: 17472 + -16,10: + 1: 3140 + -16,11: + 0: 49288 + -15,10: + 1: 3362 + -15,11: + 0: 64767 + -16,12: + 0: 200 + -15,12: + 0: 31 + 1: 5120 -15,9: - 0: 8943 - -14,8: - 0: 65535 + 1: 8928 -14,9: - 0: 61183 + 1: 16 + 0: 52364 -14,10: - 0: 65518 + 1: 256 + 0: 52428 -14,11: - 0: 65535 - -13,8: - 0: 65535 + 0: 40927 + -14,12: + 0: 52429 -13,9: - 0: 65535 + 0: 13071 + 1: 34816 -13,10: - 0: 65535 + 0: 13107 + 1: 2184 -13,11: - 0: 65535 - -12,8: + 0: 3003 + -13,12: 0: 65535 -12,9: - 0: 53247 + 0: 34831 + 1: 768 -12,10: - 0: 65292 + 1: 3840 -12,11: - 0: 65535 - -11,8: - 0: 65535 + 0: 16383 + -12,12: + 0: 63351 -11,9: - 0: 65535 + 0: 30503 -11,10: - 0: 65295 + 1: 3840 -11,11: 0: 65535 - -10,8: - 0: 65535 + -11,12: + 0: 65359 -10,9: - 0: 4095 + 0: 7 + 1: 3840 -10,10: - 0: 65280 + 1: 3840 -10,11: 0: 65535 - -9,8: - 0: 65535 + -10,12: + 0: 65327 -9,9: - 0: 61439 + 0: 34959 + 1: 8960 -9,10: - 0: 65518 + 1: 802 + 0: 34952 -9,11: - 0: 65535 - -14,12: - 0: 65535 + 0: 49087 + -9,12: + 0: 48027 + -8,8: + 0: 62395 + -8,9: + 0: 64507 + -8,10: + 0: 30719 + -8,11: + 0: 30591 + -16,13: + 0: 49152 + -16,14: + 0: 200 + 1: 16384 + -16,15: + 1: 12 + -15,13: + 0: 64716 + -15,14: + 0: 253 + 1: 8192 + -15,15: + 1: 15 -14,13: - 0: 65535 + 0: 57311 -14,14: - 0: 10047 - -13,12: - 0: 65535 + 0: 17 + 1: 8192 + -14,15: + 1: 15 -13,13: 0: 65535 - -13,14: - 0: 15 + -13,15: + 1: 3072 + -12,13: + 0: 63351 + -12,15: + 1: 1792 + -13,16: + 0: 32904 + 1: 12800 + -15,17: + 1: 5983 + -15,18: + 1: 4369 + -15,19: + 1: 62833 -14,17: - 0: 63631 - -14,18: - 0: 65535 + 1: 4103 -14,19: - 0: 63631 + 1: 28673 + -14,18: + 1: 4369 + 0: 52428 -13,17: - 0: 65535 + 0: 65528 -13,18: 0: 65535 -13,19: + 0: 36863 + -14,20: + 1: 34952 + -12,16: + 0: 29815 + -12,17: + 0: 65527 + -12,18: 0: 65535 - -13,16: - 0: 65228 + -12,19: + 0: 32767 -13,20: - 0: 3276 + 0: 8 + 1: 3072 + -14,21: + 1: 2184 + -13,21: + 1: 3875 -12,20: - 0: 4095 + 0: 7 + 1: 3840 + -12,21: + 1: 3840 + -11,21: + 1: 3840 + -11,23: + 0: 34944 + -10,21: + 1: 256 + 0: 52428 + -10,23: + 0: 24060 + -10,19: + 0: 61160 + -10,20: + 0: 52428 + -10,22: + 0: 52428 + -10,24: + 0: 24028 -9,20: - 0: 65535 + 0: 4369 -9,21: - 0: 65535 + 0: 4369 -9,22: - 0: 13119 - -12,16: - 0: 65535 - -12,17: - 0: 65535 - -12,18: - 0: 65535 - -12,19: + 0: 4369 + -9,23: + 0: 57105 + -9,19: + 0: 48048 + -9,24: + 0: 56785 + -11,16: 0: 65535 -11,17: - 0: 65535 + 0: 48048 -11,18: - 0: 65535 + 0: 49075 -11,19: - 0: 30591 - -10,17: - 0: 65535 - -10,18: - 0: 65535 - -10,19: + 0: 819 + -11,15: 0: 65535 -10,16: - 0: 65535 + 0: 64989 + -10,17: + 0: 65532 + -10,18: + 0: 65528 + -10,15: + 0: 56797 -9,16: - 0: 65535 + 0: 53725 -9,17: - 0: 65535 + 0: 56797 -9,18: + 0: 65520 + -9,15: + 0: 53725 + -8,16: + 0: 64799 + -8,17: 0: 65535 - -9,19: - 0: 65535 - -12,12: - 0: 65535 - -12,13: - 0: 65535 - -12,14: - 0: 34959 - -11,12: - 0: 65535 + -8,18: + 0: 65520 + -8,19: + 0: 15280 -11,13: - 0: 65535 - -10,12: + 0: 65295 + -11,14: 0: 65535 -10,13: - 0: 65535 + 0: 64911 -10,14: - 0: 65535 - -10,15: - 0: 65535 - -9,12: - 0: 65535 + 0: 56797 -9,13: - 0: 13311 + 0: 4363 -9,14: - 0: 65535 - -9,15: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 + 0: 64977 + -8,12: + 0: 65527 + -8,13: + 0: 15 + 1: 52224 + -8,14: + 0: 65520 + -8,15: + 0: 61695 -7,8: - 0: 65535 + 0: 47359 -7,9: - 0: 65535 + 0: 61883 -7,10: - 0: 65535 + 0: 61695 -7,11: 0: 65535 - -6,8: + -7,7: 0: 65535 + -7,12: + 0: 65524 + -6,8: + 0: 30583 -6,9: - 0: 65535 + 0: 29303 -6,10: - 0: 65535 + 0: 28799 -6,11: - 0: 65535 + 0: 65399 + -6,7: + 0: 30583 -5,8: 0: 65535 -5,9: @@ -10175,2049 +10695,1774 @@ entities: -5,10: 0: 65535 -5,11: + 0: 61167 + -5,7: + 0: 62207 + -4,8: + 0: 65518 + -4,9: + 0: 65358 + -4,10: 0: 65535 - -8,12: - 0: 65535 - -8,13: - 0: 52479 - -8,14: - 0: 65535 - -8,15: - 0: 65535 - -7,12: + -4,11: 0: 65535 -7,13: - 0: 65535 + 0: 15 + 1: 65280 -7,14: - 0: 65535 + 0: 65520 -7,15: - 0: 65535 + 0: 61071 + -7,16: + 0: 61166 -6,12: - 0: 65535 + 0: 65520 -6,13: - 0: 65535 + 0: 52367 + 1: 4352 -6,14: - 0: 65535 + 0: 64988 -6,15: - 0: 65535 + 0: 56717 + -6,16: + 0: 65437 -5,12: - 0: 65535 + 0: 65520 -5,13: - 0: 65535 + 0: 47903 -5,14: - 0: 65535 + 0: 47931 -5,15: - 0: 65535 + 0: 64283 + -5,16: + 0: 65311 -4,12: - 0: 65535 + 0: 65520 -4,13: - 0: 65535 + 0: 65473 + -4,14: + 0: 4371 + 2: 52352 -4,15: - 0: 65523 - 1: 12 + 0: 56705 + 2: 12 + -4,16: + 0: 61129 -3,12: - 0: 65535 + 0: 65520 -3,13: - 0: 65535 + 0: 65422 + -3,14: + 2: 30512 + 0: 8 + -3,15: + 2: 7 + 0: 13056 + -3,11: + 0: 61198 -2,12: - 0: 65535 + 0: 65520 -2,13: - 0: 65535 + 0: 56589 + -2,14: + 0: 7645 + -2,15: + 0: 255 + 1: 61440 + -2,11: + 0: 65281 + 2: 12 -1,12: - 0: 65535 + 0: 65521 -1,13: - 0: 65535 + 0: 15251 -1,14: - 0: 65535 + 0: 12287 -1,15: - 0: 65535 + 0: 255 + 1: 61440 + -1,11: + 0: 65518 + 2: 1 + 0,12: + 0: 65520 + 0,13: + 0: 53242 + 0,14: + 0: 3549 + 0,15: + 0: 52991 + -1,16: + 1: 8 + 0: 63280 + -8,22: + 0: 61152 + -8,23: + 0: 238 -8,20: - 0: 65535 + 0: 32904 -8,21: - 0: 65535 - -8,22: - 0: 65535 + 0: 34824 -7,20: - 0: 65535 + 0: 47355 -7,21: - 0: 65535 + 0: 64399 -7,22: - 0: 65535 + 0: 49080 + -7,23: + 0: 29371 + -7,24: + 0: 119 + -7,19: + 0: 36792 -6,20: - 0: 65535 + 0: 30583 -6,21: - 0: 65535 + 0: 32639 -6,22: - 0: 65535 + 0: 30583 + -6,23: + 0: 61559 + -6,19: + 0: 30711 + -6,24: + 0: 65471 -5,20: 0: 65535 -5,21: - 0: 65535 + 0: 30479 -5,22: - 0: 65535 - -8,16: - 0: 65535 - -8,17: - 0: 65535 - -8,18: - 0: 65535 - -8,19: - 0: 65535 - -7,16: - 0: 65535 + 0: 1911 + -5,23: + 0: 53759 + -5,19: + 0: 65520 + -5,24: + 0: 56797 + -4,21: + 0: 63343 + -4,22: + 0: 30583 + -4,23: + 0: 61559 -7,17: - 0: 65535 + 0: 65262 -7,18: - 0: 65535 - -7,19: - 0: 65535 - -6,16: - 0: 65535 + 0: 61422 -6,17: - 0: 65535 + 0: 32767 -6,18: - 0: 65535 - -6,19: - 0: 65535 - -5,16: - 0: 65535 + 0: 30583 -5,17: - 0: 65535 + 0: 12287 -5,18: 0: 65535 - -5,19: - 0: 65535 - -4,16: - 0: 65535 -4,17: - 0: 65535 + 0: 61167 -4,18: - 0: 65535 + 0: 61168 -4,19: - 0: 65535 + 0: 57344 + -4,20: + 0: 61166 -3,16: - 0: 65535 + 0: 64432 -3,17: - 0: 65535 + 0: 48115 -3,18: - 0: 65535 + 0: 13240 + 1: 32768 -3,19: - 0: 65527 + 0: 61440 + -3,20: + 0: 13119 + 1: 34816 -2,16: - 0: 65535 + 0: 65520 -2,17: - 0: 65535 + 0: 65524 -2,18: - 0: 65535 - -1,16: - 0: 65535 + 0: 255 + 1: 61440 + -2,19: + 0: 65024 + -2,20: + 0: 61091 -1,17: - 0: 65535 + 0: 32752 -1,18: - 0: 65535 + 0: 119 + 1: 61440 + -1,19: + 0: 65280 + 0,16: + 1: 8753 + 0: 8 + 0,18: + 1: 4371 + 0: 52224 + 0,19: + 0: 65484 4,12: - 0: 65535 + 0: 61695 + 3,12: + 0: 61951 4,13: - 0: 65535 + 0: 65295 + 3,13: + 0: 65308 4,14: - 0: 65535 + 0: 62719 + 3,14: + 0: 53759 + 4,15: + 0: 61199 + 3,15: + 0: 52701 + 4,16: + 0: 57582 5,12: - 0: 65535 + 0: 61695 5,13: - 0: 65535 + 0: 56783 5,14: - 0: 65535 + 0: 64733 5,15: - 0: 65535 - 6,15: - 0: 65535 - 6,12: - 0: 65535 + 0: 65423 + 5,16: + 0: 63743 + 5,11: + 0: 61166 6,13: - 0: 65535 + 0: 61550 6,14: - 0: 65535 + 0: 56817 + 6,15: + 0: 56797 + 6,11: + 0: 65262 + 6,12: + 0: 61166 + 6,16: + 0: 4317 + 1: 32768 7,12: 0: 65535 7,13: - 0: 65535 + 0: 65295 7,14: - 0: 65535 + 0: 65520 7,15: 0: 65535 - 5,16: - 0: 65535 - 5,17: - 0: 65535 - 6,16: + 7,11: 0: 65535 - 6,17: - 0: 64511 7,16: - 0: 24575 - 2: 8192 - 3: 32768 - 7,17: - 0: 65365 - 2: 34 - 3: 136 - 7,18: - 0: 65263 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: + 0: 255 + 4: 32768 + 6: 8192 + 8,12: + 0: 30583 + 8,13: + 0: 65287 + 8,14: + 0: 65520 + 8,15: 0: 65535 - 0,15: + -14,26: + 0: 2176 + -13,26: 0: 65535 + -13,27: + 0: 36095 + -13,25: + 0: 60928 + -12,25: + 0: 65534 + -12,26: + 0: 32767 + -12,27: + 0: 65407 + -13,28: + 0: 136 + 0,11: + 0: 32759 1,12: - 0: 65535 + 0: 65520 1,13: - 0: 65535 + 0: 48056 + 1,14: + 0: 35763 + 1,15: + 0: 15291 + 1,11: + 0: 22389 + 1,16: + 0: 48059 2,12: - 0: 65535 + 0: 65532 2,13: - 0: 65535 + 0: 64985 2,14: + 0: 65532 + 2,15: + 0: 36863 + 2,11: 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: + 2,16: 0: 65535 + 3,11: + 0: 4369 + 1: 3148 + 3,16: + 0: 56799 + 3,8: + 0: 61167 4,9: 0: 65535 + 3,9: + 0: 36607 4,10: - 0: 65535 + 0: 4095 + 3,10: + 0: 7099 4,11: - 0: 65535 + 1: 3983 5,9: - 0: 65535 + 0: 59647 5,10: - 0: 65535 - 5,11: - 0: 65535 - 7,8: - 0: 65535 + 0: 4078 + 6,9: + 0: 25201 + 6,10: + 0: 61030 7,9: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 + 0: 65295 + 7,10: + 0: 65359 + 8,8: + 0: 28672 + 1: 102 + 8,9: + 0: 58983 + 8,10: + 0: 32526 + 8,11: + 0: 30583 -7,1: - 0: 65535 + 0: 30576 -7,2: - 0: 65535 + 0: 30711 -7,3: - 0: 65535 - -6,0: - 0: 65535 + 0: 30591 + -7,4: + 0: 65287 -6,1: - 0: 65535 + 0: 30719 -6,2: - 0: 65535 + 0: 30583 -6,3: - 0: 65535 - -5,0: - 0: 65535 + 0: 30591 + -6,4: + 0: 63351 -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 + 0: 30577 + -5,4: + 0: 30577 -7,5: - 0: 65535 + 0: 255 + 1: 61440 -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 + 1: 15 + 0: 65280 -6,5: - 0: 65535 + 0: 61183 -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 + 0: 30470 -5,5: - 0: 65535 + 0: 65521 -5,6: - 0: 65535 - -5,7: - 0: 65535 + 0: 65524 + -4,5: + 0: 65520 + -4,6: + 0: 56796 + -4,7: + 0: 60637 0,8: + 0: 30310 + -1,8: 0: 65535 0,9: - 0: 65535 + 0: 26214 + -1,9: + 0: 15 + 2: 65280 0,10: - 0: 65535 - 0,11: - 0: 65535 + 0: 30566 + -1,10: + 2: 4607 + 0: 60928 + 0,7: + 0: 60637 1,8: - 0: 65535 + 0: 65534 1,9: - 0: 65535 + 0: 52623 1,10: - 0: 65535 - 1,11: - 0: 65535 + 0: 3533 + 1,7: + 0: 61166 2,8: - 0: 65535 + 0: 65294 2,9: - 0: 65535 + 0: 61167 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 + 0: 52700 + 2,7: + 0: 57582 0,4: - 0: 65535 + 0: 48063 0,5: - 0: 65535 + 0: 65528 + -1,5: + 0: 65520 0,6: - 0: 65535 - 0,7: - 0: 65535 + 0: 56773 + -1,6: + 0: 61134 + -1,7: + 0: 62702 1,4: - 0: 65535 + 0: 61439 1,5: 0: 65535 - 1,6: - 0: 65535 - 1,7: + 1,3: 0: 65535 + 1,6: + 0: 61166 2,4: - 0: 65535 + 0: 61167 2,5: - 0: 65535 + 0: 65520 + 2,3: + 0: 65262 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 + 0: 61152 8,7: - 0: 65535 + 1: 26208 9,4: - 0: 65535 + 0: 65520 9,5: - 0: 65535 + 0: 65522 9,6: 0: 65535 9,7: - 0: 65535 + 0: 65520 + 9,8: + 0: 4095 10,4: - 0: 65535 + 0: 65520 10,5: - 0: 65535 + 0: 63344 10,6: - 0: 65535 + 0: 30591 10,7: - 0: 65535 + 0: 63344 + 10,8: + 0: 1911 11,4: - 0: 65535 + 0: 61168 11,5: - 0: 65535 + 0: 32752 11,6: - 0: 65535 + 0: 32759 11,7: - 0: 65535 - 12,3: - 0: 65535 - 12,4: - 0: 65343 + 0: 65399 + 11,8: + 0: 30583 12,5: - 0: 65535 + 0: 51676 12,6: 0: 65535 12,7: 0: 65535 + 12,3: + 0: 3822 + 12,4: + 1: 46 + 0: 49152 + 13,2: + 0: 4880 + 13,3: + 0: 273 + 1: 16384 13,4: - 0: 65519 + 1: 15 + 0: 56320 + 12,8: + 0: 65359 13,5: - 0: 65535 + 0: 63709 13,6: 0: 65535 13,7: 0: 65535 + 13,8: + 0: 13071 14,4: - 0: 65535 + 1: 34947 + 0: 13056 14,5: - 0: 65535 + 0: 45107 14,6: - 0: 65535 + 0: 48059 14,7: - 0: 65535 + 0: 13107 + 14,8: + 0: 3 + 1: 35976 15,4: - 0: 65535 + 1: 3840 15,5: - 0: 65535 + 0: 12288 + 1: 34816 15,6: - 0: 65535 - 15,7: - 0: 32767 - 12,8: - 0: 65535 + 0: 13107 + 1: 8 + 16,4: + 1: 3840 + 16,5: + 1: 61440 12,9: 0: 65535 + 11,9: + 0: 30591 12,10: - 0: 65535 + 0: 65524 12,11: + 0: 65524 + 12,12: 0: 65535 - 13,8: - 0: 32767 13,9: - 0: 65399 + 0: 13107 13,10: - 0: 65535 - 13,11: - 0: 65535 - 14,8: - 0: 53247 - 14,9: - 0: 65484 + 0: 65376 14,10: - 0: 65535 + 1: 56829 14,11: - 0: 65535 + 1: 17757 + 0: 47232 + 13,11: + 0: 32768 + 13,12: + 0: 34952 + 14,12: + 0: 47899 + 1: 17636 + 14,9: + 1: 52424 15,8: - 0: 63479 + 1: 240 + 0: 14080 15,9: - 0: 65501 - 15,10: - 0: 64507 - 15,11: - 0: 65535 - 12,12: - 0: 65535 + 0: 1 + 16,8: + 1: 240 12,13: - 0: 65535 + 0: 20479 12,14: - 0: 65535 + 0: 62207 12,15: 0: 65535 - 13,12: - 0: 65535 - 13,13: - 0: 61951 + 11,15: + 0: 32759 + 12,16: + 0: 12287 13,14: - 0: 65535 + 0: 61551 13,15: 0: 65535 - 14,12: - 0: 65535 + 13,16: + 0: 4095 14,13: - 0: 56831 + 1: 21845 + 0: 136 14,14: - 0: 65535 + 1: 255 + 0: 61440 14,15: 0: 65535 - 15,12: - 0: 64507 - 15,13: - 0: 56831 - 12,16: - 0: 65535 - 12,17: - 0: 65535 - 12,18: - 0: 65535 - 12,19: - 0: 65535 - 13,16: - 0: 65535 - 13,17: - 0: 65535 - 13,18: - 0: 65535 - 13,19: - 0: 65535 14,16: + 0: 53247 + 15,12: + 1: 240 + 15,14: + 1: 255 + 0: 61440 + 15,15: 0: 65535 - 14,17: - 0: 65535 - 14,18: + 15,16: 0: 65535 - 14,19: + 16,12: + 1: 240 + 16,14: + 1: 247 + 0: 61440 + 16,15: 0: 30591 - 12,20: + -12,28: + 0: 28415 + -12,24: + 0: 32768 + -11,24: + 0: 65152 + -11,25: + 0: 32767 + -11,26: + 0: 59647 + -11,27: + 0: 45932 + -11,28: + 0: 32763 + -10,25: + 0: 65279 + -10,26: 0: 65535 - 12,21: - 0: 511 - 13,20: + -10,27: + 0: 48063 + -9,25: + 0: 62399 + -9,26: 0: 65535 - 13,21: - 0: 255 - 14,20: + -9,27: + 0: 65311 + -10,28: + 0: 3480 + -9,28: + 0: 51711 + -8,24: + 0: 13072 + -8,25: + 0: 65335 + -8,26: + 0: 56795 + -8,27: + 0: 65037 + -8,28: + 0: 39742 + -8,29: + 0: 56828 + -9,29: + 0: 28663 + -8,30: + 0: 29 + -9,30: + 0: 4558 + -8,31: + 0: 16001 + -9,31: + 0: 1245 + -7,28: + 0: 65407 + -7,29: + 0: 4607 + -7,30: + 0: 9864 + -7,31: + 0: 2 + -7,27: + 0: 61439 + -6,30: + 0: 1 + -6,27: + 0: 7475 + -6,29: + 0: 9420 + -6,28: + 0: 52428 + -5,28: + 0: 13105 + -5,29: + 0: 19 + -5,27: + 0: 4096 + -12,29: + 0: 40174 + -12,30: + 0: 61299 + -13,30: + 0: 14476 + -12,31: + 0: 57806 + -13,31: + 0: 2287 + -11,29: + 0: 56799 + -11,30: + 0: 39052 + -11,31: + 0: 2073 + -12,32: + 0: 8 + -10,29: + 0: 16375 + -10,30: + 0: 61135 + -10,31: + 0: 238 + -9,32: + 0: 372 + -7,25: + 0: 28976 + -7,26: + 0: 65527 + -6,26: + 0: 4368 + -5,25: + 0: 12 + -4,24: 0: 30583 - 14,21: - 0: 119 - 8,20: - 0: 65535 - 8,21: - 0: 65535 - 9,20: - 0: 65535 - 9,21: - 0: 65535 - 10,20: - 0: 65535 - 10,21: - 0: 65535 - 11,20: - 0: 65535 - 11,21: - 0: 8191 + -4,25: + 0: 4359 8,16: - 0: 24575 - 4: 8192 + 0: 255 + 3: 8192 5: 32768 - 8,17: - 0: 65365 - 4: 34 - 5: 136 - 8,18: - 0: 65535 - 8,19: - 0: 65535 - 9,16: - 0: 24575 - 5: 40960 - 9,17: - 0: 65365 - 5: 170 - 9,18: - 0: 65535 - 9,19: - 0: 65535 - 10,16: - 0: 24575 - 5: 40960 - 10,17: - 0: 65365 - 5: 170 - 10,18: - 0: 65535 - 10,19: - 0: 65535 - 11,16: - 0: 65535 - 11,17: - 0: 65535 - 11,18: - 0: 65535 - 11,19: - 0: 65535 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 8,14: - 0: 65535 - 8,15: - 0: 65535 9,12: - 0: 65535 + 0: 14327 9,13: - 0: 65535 + 0: 33727 9,14: - 0: 65535 + 0: 65534 9,15: 0: 65535 + 9,11: + 0: 30583 + 9,16: + 0: 255 + 5: 40960 10,12: - 0: 65535 + 0: 2032 10,13: - 0: 65535 + 0: 61695 10,14: 0: 65535 10,15: 0: 65535 - 11,12: + 10,11: 0: 65535 + 10,16: + 0: 255 + 5: 40960 + 11,12: + 0: 30583 11,13: - 0: 65535 + 0: 29303 11,14: - 0: 65535 - 11,15: - 0: 65535 - 8,8: - 0: 65535 - 8,9: - 0: 65535 - 9,8: - 0: 65535 + 0: 30583 + 11,11: + 0: 30583 + 11,16: + 0: 18039 9,9: - 0: 65535 - 10,8: - 0: 65535 + 1: 31 + 0: 61440 + 9,10: + 0: 30519 10,9: - 0: 65535 + 1: 71 + 0: 61440 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,8: - 0: 65535 - 11,9: - 0: 65535 + 0: 65287 11,10: - 0: 65535 - 11,11: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 + 0: 30583 -3,8: - 0: 65535 + 0: 64507 -3,9: - 0: 65535 + 0: 65291 + -3,7: + 0: 45277 -3,10: - 0: 65535 - -3,11: - 0: 65535 + 0: 61160 -2,8: - 0: 65535 + 0: 64443 -2,9: - 0: 13311 - 1: 52224 + 0: 5003 + 2: 52224 -2,10: - 0: 13107 - 1: 52428 - -2,11: - 0: 65523 - 1: 12 - -1,8: - 0: 65535 - -1,9: - 0: 255 - 1: 65280 - -1,10: - 1: 4607 - 0: 60928 - -1,11: - 1: 1 - 0: 65534 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 + 0: 4400 + 2: 52428 + -2,7: + 0: 47359 -3,5: - 0: 65535 + 0: 65534 -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 + 0: 56669 -2,5: - 0: 65535 + 0: 65527 -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 + 0: 65423 1,1: - 0: 65535 + 0: 65534 1,2: 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 2,1: - 0: 65535 + 0: 3838 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 + 0: 3838 + -9,-9: + 1: 32768 + -8,-12: + 0: 49152 + -8,-11: + 0: 204 + -7,-12: + 0: 61952 + -7,-11: + 0: 255 + -6,-11: + 0: 26231 -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-10: - 0: 30719 - -5,-9: - 0: 30583 - -4,-10: - 0: 52991 - -4,-9: - 0: 52428 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -19,8: - 0: 52428 + 0: 28262 + -6,-12: + 1: 2048 + -20,8: + 1: 4096 + -21,8: + 1: 61713 -19,9: 0: 12 - -18,8: - 0: 65535 -18,9: - 0: 15 - -17,8: - 0: 65535 - -17,9: - 0: 15 - -21,4: - 0: 65535 - -21,5: - 0: 65535 - -4,20: - 0: 65535 - -4,21: - 0: 65535 - -4,22: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -12,-4: - 0: 65535 - -11,-4: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 2,-7: - 0: 65527 - 3,-7: - 0: 65520 - 4,7: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - -8,-5: - 0: 32767 - -8,-4: - 0: 65399 - -7,-4: - 0: 65280 - -6,-4: - 0: 65535 - -6,-3: - 0: 13119 - -6,-2: - 0: 65535 - -15,-4: - 0: 65535 - -14,-4: - 0: 65535 - -13,-4: - 0: 65535 - -16,-8: - 0: 63487 - -16,-7: - 0: 65535 - -15,-8: - 0: 64767 - -15,-6: - 0: 65535 - -15,-5: - 0: 65535 - -15,-7: - 0: 65535 - -14,-8: - 0: 65535 - -14,-7: - 0: 65535 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -13,-8: - 0: 65535 - -20,-8: - 0: 65535 - -20,-7: - 0: 65535 - -19,-8: - 0: 65535 - -19,-7: - 0: 65535 - -18,-8: - 0: 65535 - -18,-7: - 0: 65535 - -17,-8: - 0: 65535 - -17,-7: - 0: 65535 - -23,-7: - 0: 65535 - -23,-6: - 0: 65535 - -23,-5: - 0: 65535 - -22,-8: - 0: 65535 - -22,-7: - 0: 65535 - -22,-6: - 0: 65535 - -22,-5: - 0: 65535 - -21,-8: - 0: 65535 - -21,-7: - 0: 65535 - -21,-6: - 0: 65535 - -24,-1: - 0: 65535 - -23,-2: - 0: 65535 - -23,-1: - 0: 65535 - -23,-4: - 0: 65535 - -23,-3: - 0: 65535 - -22,-4: - 0: 65535 - -24,0: - 0: 65535 - -24,1: - 0: 65535 - -24,2: - 0: 65535 - -24,3: - 0: 65535 - -23,3: - 0: 65535 - -22,3: - 0: 65535 - -15,10: - 0: 65314 - -15,11: - 0: 65535 - -15,12: - 0: 65535 - -15,13: - 0: 65535 - -4,14: - 0: 13183 - 1: 52352 - -3,14: - 0: 35023 - 1: 30512 - -3,15: - 1: 7 - 0: 32760 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -2,19: - 0: 65520 - -1,19: - 0: 65520 - 1,14: - 0: 65535 - 1,15: - 0: 65535 - 2,15: - 0: 65535 - 3,15: - 0: 65535 - 4,8: - 0: 65535 - 5,8: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 3,7: - 0: 65535 + 0: 1 + -24,5: + 0: 2039 + -24,6: + 0: 4095 + -24,7: + 1: 60351 + -25,7: + 1: 12040 + -24,8: + 1: 65058 + -23,5: + 0: 11259 + -23,6: + 0: 4095 + -23,7: + 1: 50300 + -22,5: + 0: 2995 + -22,6: + 0: 819 + -22,7: + 1: 7991 + -22,8: + 1: 61713 0,17: - 0: 48059 - 0,19: - 0: 65534 - 0,16: - 0: 48127 - 0,18: - 0: 65531 - 1,16: - 0: 65535 + 1: 8738 1,17: - 0: 65535 + 0: 62395 1,18: - 0: 65535 + 0: 47931 1,19: - 0: 65535 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 + 0: 39867 + 1,20: + 0: 7644 + 2,17: + 0: 61695 + 2,18: + 0: 56607 + 2,19: + 0: 7645 + 2,20: + 0: 4915 + 1: 8 + 3,17: + 0: 64733 + 3,18: + 0: 65359 + 3,19: + 0: 4095 + 3,20: + 1: 8831 + -12,-9: + 0: 61440 + -12,-6: + 0: 57582 -11,-8: - 0: 65535 + 0: 3549 -11,-7: - 0: 65535 + 0: 61439 + -11,-6: + 0: 61174 + -11,-9: + 0: 40174 -10,-8: - 0: 65535 + 0: 61439 -10,-7: - 0: 65535 - -9,-8: - 0: 39321 - -9,-7: - 0: 63897 + 0: 65358 + -10,-6: + 0: 65520 + -9,-6: + 0: 30582 -20,-12: - 0: 65535 + 0: 6007 + -21,-12: + 0: 2184 + 1: 9011 -20,-11: - 0: 65535 + 1: 4095 + -21,-11: + 1: 2254 + 0: 12288 -20,-10: - 0: 65535 - -20,-9: - 0: 65535 + 0: 45567 + -21,-10: + 0: 62395 -19,-12: - 0: 39313 + 1: 4497 -19,-11: - 0: 64649 + 1: 1 + 0: 32768 -19,-10: - 0: 65535 - -19,-9: - 0: 65535 + 0: 61695 + -19,-13: + 1: 4352 + -18,-12: + 0: 61678 -18,-11: - 0: 65535 + 0: 47935 -18,-10: - 0: 65535 - -18,-9: - 0: 65535 + 0: 53435 + -18,-13: + 0: 20196 + -17,-12: + 0: 62719 -17,-11: - 0: 65535 + 0: 65295 -17,-10: - 0: 65535 - -17,-9: - 0: 65535 - -16,-11: - 0: 65535 - -16,-10: - 0: 65535 - -16,-9: - 0: 65535 - -15,-11: - 0: 62450 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-11: - 0: 29820 - -14,-10: - 0: 30583 - -14,-9: - 0: 65527 - -23,-11: - 0: 65280 - -23,-10: - 0: 65535 - -23,-9: 0: 61695 - -22,-11: - 0: 65280 - -22,-10: - 0: 65535 - -22,-9: - 0: 65279 - -21,-11: - 0: 65486 - -21,-10: - 0: 65535 - -21,-9: - 0: 65535 - -21,-12: - 0: 61439 - -21,-13: - 0: 61056 - -20,-13: - 0: 65329 - -19,-13: - 0: 4352 - -11,-9: - 0: 65535 - -10,-9: - 0: 61713 - -9,-9: - 0: 36864 - 0,20: - 0: 52479 - 1,20: - 0: 65535 - -3,20: - 0: 65535 - -2,20: - 0: 65535 - -1,20: - 0: 13311 - 9,-1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 65535 - 11,1: - 0: 61440 - 11,2: - 0: 65535 - -10,20: - 0: 61167 - -10,21: - 0: 61422 - -10,22: - 0: 61166 - -10,23: - 0: 65535 - -9,23: - 0: 65523 - -13,26: - 0: 65535 - -13,27: - 0: 36095 - 12,1: - 0: 61440 - 12,2: - 0: 65535 - 13,1: - 0: 65262 - 13,3: - 0: 32767 - 13,2: - 0: 65535 - 14,2: - 0: 65503 - 14,3: - 0: 57343 - 15,14: - 0: 65535 - 15,15: - 0: 65535 - -12,25: - 0: 65534 - -12,26: - 0: 65535 - -12,27: - 0: 65535 - -11,24: - 0: 65164 - -11,25: - 0: 65535 - -11,26: - 0: 65535 - -11,27: - 0: 65535 - -10,24: - 0: 65535 - -10,25: - 0: 65535 - -10,26: - 0: 65535 - -10,27: - 0: 65535 - -9,24: - 0: 65535 - -9,25: - 0: 65535 - -9,26: - 0: 65535 - -9,27: - 0: 65535 - -8,28: - 0: 65535 - -8,29: - 0: 65535 - -7,28: - 0: 65535 - -7,29: - 0: 65535 - -12,28: - 0: 65535 - -12,29: - 0: 65535 - -11,28: - 0: 65535 - -11,29: - 0: 65535 - -10,28: - 0: 65535 - -10,29: - 0: 65535 - -10,30: - 0: 65535 - -9,28: - 0: 65535 - -9,29: - 0: 65535 - -9,30: - 0: 65535 - -8,24: - 0: 15257 - -8,25: - 0: 65527 - -8,26: - 0: 65535 - -8,27: - 0: 65535 - -7,25: - 0: 29496 - -7,26: - 0: 65527 - -7,27: - 0: 65535 - -6,26: - 0: 4368 - -6,27: - 0: 65331 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - -13,28: - 0: 61576 - 16,12: - 0: 55544 - 16,13: - 0: 56797 - 16,14: - 0: 65535 - 16,15: - 0: 65535 - 17,12: - 0: 55544 - 17,13: - 0: 56797 - 17,14: - 0: 65528 - 17,15: - 0: 65535 - 18,12: - 0: 55544 - 18,13: - 0: 56797 - 18,14: - 0: 65528 - 18,15: - 0: 65535 - 19,12: - 0: 55544 - 19,13: - 0: 56797 - 19,14: - 0: 65520 - 19,15: - 0: 65535 - 16,8: - 0: 53488 - 16,9: - 0: 56797 - 16,10: - 0: 55544 - 16,11: - 0: 56797 - 17,8: - 0: 53488 - 17,9: - 0: 56797 - 17,10: - 0: 55544 - 17,11: - 0: 56797 - 18,8: - 0: 55544 - 18,9: - 0: 56797 - 18,10: - 0: 55544 - 18,11: - 0: 56797 - 19,8: - 0: 55544 - 19,9: - 0: 56797 - 19,10: - 0: 53488 - 19,11: - 0: 56797 - 20,10: - 0: 53264 - 20,14: - 0: 65296 - -23,-8: - 0: 65535 - -24,-2: - 0: 65523 - -11,23: - 0: 52428 - -8,23: - 0: 40959 - -7,23: - 0: 65535 - -6,23: - 0: 65535 - -5,23: - 0: 65535 - 4,15: - 0: 65535 - -24,4: - 0: 65535 - -24,5: - 0: 65535 - -24,6: - 0: 65535 - -23,4: - 0: 65535 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -22,4: - 0: 65535 - -22,5: - 0: 65535 - -22,6: - 0: 30583 - 2,16: - 0: 65535 - 2,17: - 0: 65535 - 2,18: - 0: 65535 - 3,16: - 0: 65535 - 3,17: - 0: 65535 - 3,18: - 0: 65535 - -4,23: - 0: 65535 - -3,21: - 0: 65535 - -3,22: - 0: 65535 - -3,23: - 0: 48063 - 4,16: - 0: 65535 - 4,17: - 0: 65535 - 4,18: - 0: 65535 - -3,24: - 0: 34955 - -3,25: - 0: 34952 - -3,26: - 0: 34952 - -25,0: - 0: 65529 - -25,1: - 0: 65535 - -25,2: - 0: 65535 - -25,3: - 0: 36863 - -25,-1: - 0: 39055 - -25,4: - 0: 34952 - -25,5: - 0: 34952 - -25,6: - 0: 36744 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -8,-10: - 0: 4095 - -7,-12: - 0: 65535 - -7,-11: - 0: 65535 - -7,-10: - 0: 511 - -6,-12: - 0: 65535 - -6,-11: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 8191 - -1,-12: - 0: 65331 - -1,-11: - 0: 16383 - -1,-10: - 0: 3 - -9,-12: - 0: 204 - -9,-11: - 0: 49152 - -9,-10: - 0: 3276 - -4,-13: - 0: 65024 - -3,-13: - 0: 65280 - -2,-13: - 0: 65280 - -8,-13: - 0: 65280 - -7,-13: - 0: 61696 - -6,-13: - 0: 65280 - -5,-13: - 0: 63232 - -9,-13: - 0: 52224 - -24,-8: - 0: 39327 - -24,-7: - 0: 65535 - -24,-9: - 0: 36864 - 10,-1: - 0: 65535 - 11,-1: - 0: 65535 - 9,0: - 0: 65535 - 10,0: - 0: 65535 - 11,0: - 0: 4095 - -24,-6: - 0: 64718 - -24,-3: - 0: 15311 - 12,0: - 0: 273 - -18,-12: - 0: 65535 - -17,-12: - 0: 65535 + -17,-13: + 0: 61152 -16,-12: - 0: 65433 - -13,-10: - 0: 64234 - -13,-9: - 0: 65535 - -12,-10: - 0: 4096 - -12,-9: - 0: 65297 - -25,-3: - 0: 65311 - -25,-2: - 0: 65535 - 12,-1: - 0: 4383 - -5,24: - 0: 65535 - -5,25: - 0: 35055 - 2,19: - 0: 65535 - 3,19: - 0: 65535 - 0,21: - 0: 65532 - 0,22: - 0: 65535 - 1,21: - 0: 16383 - 1,22: - 0: 14327 - 2,20: - 0: 30591 - -2,21: - 0: 65535 - -2,22: - 0: 65535 - -1,21: - 0: 65523 - -1,22: - 0: 65535 - 4,19: - 0: 4383 - 5,18: - 0: 65535 - 5,19: - 0: 143 - 6,18: - 0: 63359 - 6,19: - 0: 12151 - -4,24: - 0: 65535 - -4,25: - 0: 13311 - -3,27: - 0: 34952 - -27,0: - 0: 52463 - -27,1: - 0: 49356 - -27,2: - 0: 60620 - -26,0: - 0: 65523 - -26,1: - 0: 64255 - -26,2: - 0: 65535 - -3,28: - 0: 34952 - -3,29: - 0: 34952 - -3,30: - 0: 34952 - -3,31: - 0: 34952 - -3,32: - 0: 34952 - -3,33: - 0: 34952 - -5,26: - 0: 8 - -15,-12: - 0: 12236 - -14,-12: - 0: 20303 - -13,-12: - 0: 45041 - -13,-11: - 0: 44714 - -4,26: - 0: 19 - -16,-14: - 0: 51336 - -16,-13: - 0: 56797 - -15,-14: - 0: 65535 + 0: 28672 + 1: 136 + -16,-11: + 0: 58983 + -16,-10: + 0: 47343 + -16,-13: + 1: 50244 + -15,-12: + 1: 12228 + -15,-11: + 1: 754 + -15,-10: + 0: 65501 -15,-13: - 0: 65535 - -14,-14: - 0: 65520 + 1: 28672 + 0: 33143 + -14,-12: + 1: 20288 + -14,-11: + 1: 1148 + -14,-10: + 0: 13107 -14,-13: - 0: 65535 - -13,-14: - 0: 4096 - -13,-13: - 0: 4369 - 1,-8: - 0: 60616 - 9,-8: - 0: 30022 - 9,-7: 0: 30583 - -24,-5: - 0: 65535 - -24,-4: - 0: 65535 - -24,7: - 0: 61439 - -23,7: - 0: 64764 - -22,7: - 0: 7991 - -24,-10: - 0: 2296 + -13,-12: + 1: 45041 + -13,-13: + 1: 4369 + -13,-10: + 0: 40960 + 1: 2794 + -13,-11: + 1: 44714 + -24,-12: + 1: 240 + -25,-12: + 1: 240 + -25,-9: + 1: 61440 + -23,-12: + 1: 240 + -22,-12: + 1: 240 + -22,-10: + 0: 43183 + -22,-11: + 1: 512 + 0: 32768 + -21,-13: + 1: 11904 + -24,-14: + 1: 57600 + 0: 4096 + -25,-14: + 0: 51200 + 1: 13448 + -24,-13: + 1: 1 + -25,-13: + 0: 8 + 1: 4 + -23,-14: + 1: 30720 + 0: 32768 -23,-16: 0: 61152 -23,-15: - 0: 61160 - -23,-14: - 0: 63624 + 0: 61152 -22,-16: - 0: 49144 + 0: 13104 + 1: 35976 -22,-15: - 0: 49145 + 0: 13104 + 1: 35976 -22,-14: - 0: 65417 + 0: 29440 + 1: 35976 + -23,-13: + 1: 8 + -22,-13: + 0: 3 + 1: 4 + -22,-17: + 1: 35976 + 0: 13104 -21,-16: - 0: 65520 + 1: 256 + 0: 61152 -21,-15: - 0: 61409 + 1: 256 + 0: 61152 + -21,-14: + 1: 65280 -20,-16: - 0: 14320 + 0: 13104 -20,-15: - 0: 13105 + 0: 13104 -20,-14: - 0: 65297 + 1: 65280 + -20,-13: + 1: 3889 + -19,-14: + 1: 65280 -19,-16: 0: 65520 + -19,-15: + 0: 65520 -18,-16: - 0: 65524 + 0: 4368 + 1: 20036 -18,-15: - 0: 32631 + 0: 4368 + 1: 20036 -18,-14: - 0: 65518 - -18,-13: - 0: 65535 + 1: 4580 + 0: 60928 + -18,-17: + 1: 20036 + 0: 4368 -17,-16: 0: 65520 -17,-15: - 0: 65528 + 0: 65520 -17,-14: - 0: 4097 + 1: 4096 + -16,-16: + 0: 4368 + 1: 34952 + -16,-15: + 0: 4368 + 1: 34952 + -11,-10: + 0: 57344 + 0,20: + 1: 48 + 0: 34944 + -1,20: + 1: 192 + 0: 4368 + 0,21: + 1: 48 + 0: 61576 + -1,21: + 1: 192 + 0: 61457 + 0,22: + 0: 4095 + -1,22: + 0: 4095 0,23: - 0: 19 + 1: 19 + -1,23: + 1: 35022 + 1,21: + 0: 4573 + 1,22: + 0: 273 + 1: 1220 + 2,21: + 0: 17 2,22: - 0: 240 - 3,20: - 0: 8831 + 1: 240 3,22: - 0: 8754 + 1: 8754 3,23: - 0: 61986 + 1: 61986 + 3,24: + 1: 4991 3,21: - 0: 11810 + 1: 11810 + 4,21: + 1: 3840 + 4,23: + 1: 4972 + -3,21: + 0: 12339 + 1: 34952 + -3,22: + 0: 4915 + 1: 34952 + -3,23: + 0: 4369 + 1: 34956 + -2,22: + 0: 1894 -2,23: - 0: 1 - -1,23: - 0: 35022 + 1: 1 + -3,24: + 1: 34952 + -2,21: + 0: 57582 + -1,24: + 1: 34952 + -15,29: + 0: 32768 + -14,29: + 0: 29556 + -14,30: + 0: 36095 + -13,29: + 0: 1910 + 16,16: + 0: 30583 + 17,12: + 1: 240 + 17,14: + 0: 28672 + 1: 34816 + 17,15: + 0: 33591 + 1: 2184 + 17,16: + 0: 13107 + 1: 34952 + 18,12: + 1: 2296 + 0: 49152 + 18,14: + 1: 65280 + 18,15: + 1: 4095 + 0: 61440 + 18,16: + 1: 65535 + 18,13: + 0: 52428 + 18,11: + 0: 52428 + 19,12: + 1: 2296 + 0: 53248 + 19,13: + 0: 56797 + 19,14: + 1: 65280 + 19,15: + 1: 4095 + 0: 61440 + 19,16: + 1: 65535 + 19,11: + 0: 56797 + 20,12: + 1: 2296 + 0: 53248 + 20,13: + 0: 56797 + 20,14: + 1: 65280 + 20,15: + 1: 4095 + 0: 61440 + 17,8: + 1: 240 + 18,8: + 1: 2296 + 0: 49152 + 18,9: + 0: 52428 + 18,10: + 0: 49152 + 18,7: + 0: 52428 + 19,8: + 1: 2296 + 0: 53248 + 19,9: + 0: 56797 + 19,10: + 0: 53248 + 19,7: + 0: 56797 20,8: - 0: 55544 + 1: 2296 + 0: 53248 + 20,9: + 0: 56797 + 20,10: + 0: 53248 + 20,11: + 0: 56797 + 20,7: + 0: 56797 21,8: - 0: 64251 + 1: 2296 + 0: 53248 21,9: - 0: 65535 + 0: 56797 21,10: - 0: 61986 + 0: 53248 21,11: - 0: 65535 + 0: 56797 + 21,7: + 0: 56797 22,8: - 0: 55801 + 1: 2296 + 0: 53248 22,9: 0: 56797 22,10: - 0: 53521 + 0: 53248 22,11: 0: 56797 - 21,15: - 0: 45875 21,12: - 0: 64250 + 1: 2296 + 0: 53248 + 22,7: + 0: 56797 + 23,8: + 1: 240 + 0: 4096 + 23,9: + 0: 4369 + 23,10: + 0: 4096 + 23,11: + 0: 4369 + 22,12: + 1: 2296 + 0: 53248 + 20,16: + 1: 65535 21,13: - 0: 65535 + 0: 56797 21,14: - 0: 13090 - 22,12: - 0: 55801 + 1: 13056 + 21,15: + 1: 819 + 0: 12288 + 21,16: + 1: 13107 22,13: 0: 56797 - 22,14: - 0: 4369 - 22,15: + 23,12: + 1: 240 + 0: 4096 + 23,13: 0: 4369 - 15,17: + 8,17: + 3: 34 + 5: 136 + 7,17: + 4: 136 + 6: 34 + 8,18: + 1: 61471 + 7,18: + 1: 63695 + 8,19: + 1: 35056 + 7,19: + 1: 36744 + 9,18: + 1: 61455 + 9,19: + 1: 29936 + 9,17: + 5: 170 + 9,20: + 1: 62579 + 10,18: + 1: 64751 + 10,19: + 1: 17532 + 10,17: + 5: 170 + 10,20: + 1: 29764 + 11,18: + 1: 62576 + 0: 4 + 11,19: + 1: 15 + 11,17: + 0: 26214 + 12,17: + 0: 65535 + 12,18: + 0: 255 + 1: 61440 + 12,19: + 1: 127 + 0: 61440 + 12,20: + 0: 255 + 1: 57344 + 13,17: 0: 65535 + 13,18: + 0: 255 + 1: 28672 + 13,19: + 1: 119 + 0: 28672 + 13,20: + 0: 119 + 1: 12288 + 14,17: + 0: 56669 + 14,18: + 0: 60637 + 15,17: + 0: 65295 15,18: 0: 65535 - 7,19: - 0: 36744 + 16,17: + 0: 65287 + 16,18: + 0: 65535 + 4,17: + 0: 61166 + 4,18: + 0: 61166 + 5,17: + 0: 65535 + 5,18: + 0: 65535 + 6,17: + 0: 4369 + 1: 51336 + 6,18: + 0: 4369 + 1: 50252 + 5,19: + 1: 128 + 6,19: + 1: 12148 + 6,20: + 1: 8738 + 7,20: + 1: 34952 + 15,21: + 1: 34816 + 16,21: + 1: 64648 + -4,26: + 1: 16 + -3,25: + 1: 34952 + -3,26: + 1: 34952 + -3,27: + 1: 34952 + -3,28: + 1: 34952 -2,27: - 0: 32768 + 1: 32768 + -2,28: + 1: 8 -1,27: - 0: 63470 - -1,24: - 0: 34952 + 1: 63470 + -1,28: + 1: 15 + 0,24: + 1: 15 -1,25: - 0: 34952 + 1: 34952 -1,26: - 0: 34952 + 1: 34952 + 0,27: + 1: 4975 -28,0: - 0: 319 + 1: 319 + -29,0: + 1: 34952 -28,2: - 0: 12544 + 1: 12544 + -29,2: + 1: 34952 -28,3: - 0: 319 + 1: 319 + -29,3: + 1: 34952 + -27,0: + 1: 47 + 0: 34816 -27,3: + 1: 15 + -27,-1: + 1: 59528 + -27,2: + 1: 8192 + 0: 2184 + -27,1: + 0: 8 + -26,0: + 1: 3 + 0: 65280 + -26,1: 0: 15 + 1: 512 + -26,2: + 0: 4095 + -26,-1: + 1: 40035 -26,3: - 0: 51208 + 1: 51208 + -26,4: + 1: 4990 + -25,3: + 1: 1911 + -25,-1: + 1: 4096 -28,-1: - 0: 256 - -27,-1: - 0: 59528 + 1: 256 + -29,-1: + 1: 34816 -27,-4: - 0: 34952 - -27,-3: - 0: 34952 - -27,-2: - 0: 34952 + 1: 34952 + -27,-5: + 1: 34952 -26,-4: - 0: 12561 + 1: 12561 + -27,-3: + 1: 34952 -26,-3: - 0: 319 + 1: 319 + -27,-2: + 1: 34952 -26,-2: - 0: 4096 - -26,-1: - 0: 40035 - -25,-4: - 0: 65535 + 1: 4096 + -26,-5: + 1: 4369 -28,5: - 0: 55296 + 1: 55296 -28,6: - 0: 8063 + 1: 8063 + -29,5: + 1: 34952 + -29,6: + 1: 34952 -28,7: - 0: 768 + 1: 768 + -29,7: + 1: 2184 -27,5: - 0: 4990 + 1: 4990 -27,6: - 0: 3840 + 1: 3840 -27,4: - 0: 51200 - -26,4: - 0: 4990 + 1: 51200 -26,6: - 0: 3840 - -25,7: - 0: 12040 + 1: 3840 + -26,7: + 1: 3584 + -25,6: + 1: 1792 + -25,8: + 1: 61986 + -3,-12: + 1: 512 + -3,-11: + 0: 52428 + -3,-10: + 0: 52940 + -2,-11: + 0: 255 + -2,-12: + 0: 59392 + -1,-12: + 0: 28672 + -1,-11: + 0: 119 -12,-16: - 0: 21616 + 1: 21616 + -13,-16: + 1: 40176 -12,-15: - 0: 21607 + 1: 21607 -12,-14: - 0: 17511 + 1: 17511 + -13,-15: + 1: 35939 -12,-13: - 0: 100 - -2,28: + 1: 100 + 13,-4: + 1: 61970 + 0: 3533 + 13,-3: + 1: 65467 + 0: 4 + 13,-2: + 1: 48063 + 0: 16384 + 13,-1: + 1: 15 + 13,-5: + 1: 61440 + 0: 238 + 14,-4: + 0: 2321 + 1: 32768 + 14,-3: + 1: 13292 + 0: 52224 + 14,-2: + 1: 36067 + 0: 12 + 14,-5: + 1: 4096 + 0: 51 + 14,-1: 0: 8 - -1,28: - 0: 47 - -16,-16: - 0: 49144 - -16,-15: - 0: 39321 + -3,29: + 1: 34952 + -3,30: + 1: 34952 + -3,31: + 1: 34952 + -3,32: + 1: 34952 + -3,33: + 1: 2184 + -16,-14: + 1: 16384 + -16,-17: + 1: 34952 + 0: 4368 -15,-16: - 0: 5107 + 1: 5107 + -15,-14: + 0: 30576 + -15,-17: + 1: 4096 -14,-16: - 0: 36080 - -13,-16: - 0: 40176 - -13,-15: - 0: 35939 + 1: 36080 + -14,-14: + 0: 30464 + -13,-14: + 1: 4096 -27,-8: - 0: 34952 + 1: 34952 + -27,-9: + 1: 32768 -27,-7: - 0: 34952 - -27,-6: - 0: 34952 - -27,-5: - 0: 34952 + 1: 34952 -26,-7: - 0: 16383 + 1: 16177 + 0: 8 + -27,-6: + 1: 34952 -26,-6: - 0: 4369 - -25,-7: - 0: 8191 - -25,-6: - 0: 61713 - -25,-5: - 0: 65535 - 4,21: - 0: 3840 - 4,23: - 0: 4972 - 4,22: - 0: 32768 + 1: 4369 + -26,-8: + 0: 52352 + -26,-9: + 1: 45056 + 8,20: + 1: 63616 + 8,21: + 1: 61696 + 7,21: + 1: 64648 + 9,21: + 1: 61440 + 10,21: + 1: 65092 + 11,21: + 1: 4352 5,21: - 0: 36608 + 1: 36608 + 4,22: + 1: 32768 5,22: - 0: 4972 + 1: 4972 6,21: - 0: 62242 - 6,20: - 0: 8738 - 7,21: - 0: 64648 - 7,20: - 0: 34952 - 0,24: - 0: 15 - 0,27: - 0: 4975 - 0,26: - 0: 32768 + 1: 62242 1,24: - 0: 15 + 1: 15 + 0,26: + 1: 32768 1,26: - 0: 4972 - 1,25: - 0: 32768 + 1: 4972 2,24: - 0: 32783 + 1: 32783 + 1,25: + 1: 32768 2,25: - 0: 4972 - 3,24: - 0: 4991 - 16,17: - 0: 65535 - 16,18: - 0: 65535 + 1: 4972 + 16,19: + 1: 35008 17,17: - 0: 4479 + 0: 3 + 1: 8 + 17,19: + 1: 18 + 16,20: + 1: 34952 17,18: - 0: 62449 + 1: 57856 18,17: - 0: 17647 + 1: 15 18,18: - 0: 61694 + 1: 61440 19,17: - 0: 15 + 1: 15 19,18: - 0: 61680 - 20,16: - 0: 65535 + 1: 61440 20,17: - 0: 15 + 1: 15 20,18: - 0: 61680 - 21,16: - 0: 49147 + 1: 61440 21,17: - 0: 8831 + 1: 3 + 20,19: + 1: 8 21,18: - 0: 61687 - 22,16: - 0: 4369 - 22,17: - 0: 1 + 1: 61440 + 21,19: + 1: 8831 + 21,20: + 1: 8738 22,18: - 0: 61457 - 16,7: - 0: 4095 - 17,7: - 0: 4095 - 18,7: - 0: 52735 - 19,7: - 0: 56831 - 20,7: - 0: 57343 - 21,7: - 0: 65535 + 1: 61440 + 23,18: + 1: 62316 + 23,17: + 1: 32768 + 24,17: + 1: 39916 + 24,18: + 1: 64648 + 17,4: + 1: 32512 + 17,5: + 1: 63266 + 18,4: + 1: 36608 + 18,5: + 1: 63488 + 18,6: + 0: 49152 + 19,4: + 1: 16128 + 19,5: + 1: 62225 + 19,6: + 0: 53248 + 20,4: + 1: 52992 + 20,5: + 1: 64648 + 20,6: + 0: 53248 + 21,4: + 1: 7936 + 21,5: + 1: 61696 21,6: - 0: 65527 + 0: 53248 + 22,4: + 1: 3840 + 22,5: + 1: 61440 22,6: - 0: 53521 - 22,7: - 0: 56797 - 0,-9: - 0: 14464 - 1,-9: - 0: 52976 + 0: 53248 + 23,4: + 1: 16128 + 23,5: + 1: 63686 + 23,6: + 0: 4096 + 23,7: + 0: 4369 + 24,4: + 1: 52992 + 24,5: + 1: 47496 2,-9: - 0: 5104 + 1: 5104 3,-9: - 0: 240 - 9,-9: - 0: 30064 + 1: 240 + 4,-9: + 1: 36080 + 6,-9: + 1: 240 + 7,-9: + 1: 3312 + -27,-12: + 1: 34952 + -27,-13: + 1: 34952 + -26,-12: + 1: 12785 -27,-11: - 0: 34952 - -27,-10: - 0: 34952 - -27,-9: - 0: 34952 + 1: 136 -26,-11: - 0: 4147 - -26,-10: - 0: 5107 - -25,-10: - 0: 240 - -24,10: - 0: 65378 - -24,8: - 0: 65263 - -24,9: - 0: 9982 - -23,8: - 0: 65532 - -23,9: - 0: 2303 - -23,10: - 0: 64640 - -22,8: - 0: 61727 - -22,9: - 0: 4477 - -22,10: - 0: 14297 - -21,9: - 0: 12288 - -21,10: - 0: 1 - -25,9: - 0: 12428 - -25,10: - 0: 2246 + 1: 48 + -26,-13: + 1: 12289 -29,4: - 0: 34952 - -29,5: - 0: 34952 - -29,6: - 0: 34952 - -29,7: - 0: 2184 - -29,0: - 0: 34952 + 1: 34952 -29,1: - 0: 34952 - -29,2: - 0: 34952 - -29,3: - 0: 34952 - -29,-1: - 0: 34816 - -26,-5: - 0: 4369 - 2,-8: - 0: 12560 - 14,1: - 0: 65535 - 15,2: - 0: 65279 - 15,3: - 0: 65535 - -20,8: - 0: 4353 - -21,8: - 0: 65311 + 1: 34952 + -24,9: + 1: 8 + -23,9: + 1: 7 + -23,8: + 1: 52224 -26,8: - 0: 60942 - -25,8: - 0: 62255 - -16,10: - 0: 65348 - -16,11: - 0: 65535 - -16,12: - 0: 65535 - -16,13: - 0: 65535 - -16,14: - 0: 32767 - -15,14: - 0: 12287 - -20,7: - 0: 256 - -21,7: - 0: 7936 - -26,7: - 0: 3584 - -17,10: - 0: 32768 - -17,11: - 0: 34952 - -17,12: - 0: 34952 - -17,13: - 0: 34952 - -17,14: - 0: 34952 - -16,15: - 0: 15 - -15,15: - 0: 15 - -14,15: - 0: 15 - -17,15: - 0: 8 - -24,-14: - 0: 61696 - -24,-13: - 0: 1 - -23,-13: - 0: 8 - -22,-13: - 0: 7 - -21,-14: - 0: 65280 - -19,-15: - 0: 65520 - -19,-14: - 0: 65280 - -17,-13: - 0: 65535 + 1: 57344 -20,-19: 0: 13104 + -21,-19: + 0: 61152 + 1: 256 -20,-18: 0: 13104 + -21,-18: + 0: 61152 + 1: 256 -20,-17: 0: 13104 + -21,-17: + 0: 61152 + 1: 256 -19,-19: 0: 65520 -19,-18: @@ -12225,13 +12470,13 @@ entities: -19,-17: 0: 65520 -18,-19: - 0: 24404 + 0: 4368 + 1: 20036 -18,-18: - 0: 24404 - -18,-17: - 0: 24404 + 0: 4368 + 1: 20036 -18,-20: - 0: 16384 + 1: 16384 -17,-19: 0: 65520 -17,-18: @@ -12239,39 +12484,44 @@ entities: -17,-17: 0: 65520 -16,-19: - 0: 39320 + 0: 4368 + 1: 34952 -16,-18: - 0: 39320 - -16,-17: - 0: 39320 + 0: 4368 + 1: 34952 -16,-20: - 0: 35022 - -15,-17: - 0: 4096 + 1: 35022 -16,-21: - 0: 47600 + 1: 47600 + -17,-21: + 1: 2288 -20,-21: - 0: 240 + 1: 240 + -21,-21: + 1: 240 -19,-21: - 0: 240 + 1: 240 -18,-21: - 0: 240 - -17,-21: - 0: 2288 + 1: 240 -24,-21: - 0: 496 + 1: 496 + -25,-21: + 1: 52464 -23,-21: - 0: 240 + 1: 240 -22,-21: - 0: 240 - -21,-21: - 0: 240 + 1: 240 -27,-21: - 0: 34944 + 1: 34944 -26,-21: - 0: 60656 - -25,-21: - 0: 64752 + 1: 3312 + -27,-20: + 1: 34952 + -26,-20: + 0: 61164 + -25,-20: + 0: 13105 + 1: 34952 -23,-19: 0: 61152 -23,-18: @@ -12279,461 +12529,131 @@ entities: -23,-17: 0: 61152 -22,-19: - 0: 49080 + 0: 13104 + 1: 35976 -22,-18: - 0: 49080 - -22,-17: - 0: 49080 + 0: 13104 + 1: 35976 -22,-20: - 0: 32768 - -21,-19: - 0: 61408 - -21,-18: - 0: 61408 - -21,-17: - 0: 61408 + 1: 32768 -27,-16: - 0: 34952 - -27,-15: - 0: 34952 - -27,-14: - 0: 34952 - -27,-13: - 0: 34952 + 1: 34952 + -27,-17: + 1: 34952 -26,-16: - 0: 4097 + 1: 4097 + -27,-15: + 1: 34952 -26,-15: - 0: 31 + 1: 31 + -27,-14: + 1: 34952 -26,-14: - 0: 61696 - -26,-13: - 0: 12289 + 1: 61696 + -26,-17: + 1: 61696 -25,-15: - 0: 34959 - -25,-14: - 0: 64648 + 1: 34959 -25,-16: - 0: 51340 - -25,-13: - 0: 12 - -27,-20: - 0: 34952 + 1: 51340 + -25,-17: + 1: 64648 -27,-19: - 0: 34952 - -27,-18: - 0: 34952 - -27,-17: - 0: 34952 - -26,-20: - 0: 65535 + 1: 34952 -26,-19: - 0: 65535 + 1: 61712 + 0: 2248 + -27,-18: + 1: 34952 -26,-18: - 0: 49080 - -26,-17: - 0: 61696 + 0: 8736 + 1: 35976 -25,-19: - 0: 65535 + 0: 48 + 1: 63624 -25,-18: - 0: 61416 - -25,-17: - 0: 64648 - -25,-20: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-2: - 0: 13073 - 16,4: - 0: 65535 - 16,5: - 0: 65535 - 16,6: - 0: 65535 - 17,6: - 0: 65535 - 18,6: - 0: 65535 - 19,6: - 0: 65535 - 20,6: - 0: 65535 - 0,-3: - 0: 4368 - -15,17: - 0: 5983 - -15,18: - 0: 4369 - -15,19: - 0: 62833 - -14,20: - 0: 34952 - -14,21: - 0: 2184 - -13,21: - 0: 3875 - -12,21: - 0: 3840 - -11,21: - 0: 3840 - 2,21: - 0: 819 - 0,-8: - 0: 13107 - 0,-7: - 0: 13107 - 0,-6: - 0: 51 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 4607 - -1,-5: - 0: 4369 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-9: - 0: 4096 - -2,-9: - 0: 56593 - 15,1: - 0: 65535 - -11,16: - 0: 65535 - -12,15: - 0: 65416 - -11,14: - 0: 65535 - -11,15: - 0: 65535 - 10,-2: - 0: 65535 - -7,-9: - 0: 30464 - -1,-9: - 0: 4352 - -24,-12: - 0: 240 - -23,-12: - 0: 240 - -22,-12: - 0: 240 - -27,-12: - 0: 34952 - -26,-12: - 0: 12785 - -26,-9: - 0: 45056 - -25,-12: - 0: 240 - -26,-8: - 0: 61164 - -25,-8: - 0: 65535 - -25,-9: - 0: 61440 - -11,-10: - 0: 65280 - -10,-10: - 0: 4352 - 17,4: - 0: 65331 - 17,5: - 0: 65535 - 18,4: - 0: 40704 - 18,5: - 0: 65521 - 19,5: - 0: 65521 - 20,5: - 0: 65528 - 21,5: - 0: 63344 - 16,3: - 0: 65535 - 17,3: + 1: 35208 + 0: 8736 + 13,-7: + 0: 57344 + 13,-6: + 0: 65278 + 14,-7: + 0: 12288 + 14,-6: 0: 13107 - -7,24: - 0: 36863 - -6,24: - 0: 65535 - -6,25: - 0: 15 - 11,-7: - 0: 60928 - 11,-6: - 0: 61166 - 11,-5: - 0: 61166 - 10,-4: - 0: 61440 - 10,-3: - 0: 65535 - 11,-4: - 0: 63014 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 12,-4: - 0: 62259 - 12,-3: - 0: 65399 - 12,-2: - 0: 30591 - 13,-4: - 0: 65503 - 13,-3: - 0: 65471 - 13,-2: - 0: 64447 - 13,-1: - 0: 15 - 14,-3: - 0: 65516 - 14,-2: - 0: 36079 - 14,-4: - 0: 35089 - 14,-1: - 0: 8 - 12,-7: - 0: 65280 - 12,-6: - 0: 65535 - 12,-5: - 0: 32767 - 20,12: - 0: 55544 - 20,15: - 0: 65535 - 15,16: - 0: 65535 - 15,19: - 0: 15 - 15,21: - 0: 34816 - 16,16: - 0: 65535 - 16,19: - 0: 35023 - 17,16: - 0: 65535 - 17,19: - 0: 19 - 18,16: - 0: 65535 - 19,16: - 0: 65535 - 22,5: - 0: 61440 - 16,21: - 0: 64648 - 16,20: - 0: 34952 17,21: - 0: 61696 + 1: 61696 18,21: - 0: 61440 + 1: 61440 19,21: - 0: 61440 - -14,26: - 0: 2176 - -13,25: - 0: 61056 - -12,24: - 0: 32768 - -8,30: - 0: 65535 - -8,31: - 0: 16383 - -7,30: - 0: 14335 - -7,31: - 0: 3 - -6,28: - 0: 65535 - -6,29: - 0: 14335 - -6,30: - 0: 1 - -5,28: - 0: 13105 - -5,29: - 0: 19 - -12,30: - 0: 65535 - -12,31: - 0: 61439 - -11,30: - 0: 65535 - -11,31: - 0: 65535 - -10,31: - 0: 65535 - -9,31: - 0: 65535 - -5,27: - 0: 4096 - -15,29: - 0: 32768 - -14,29: - 0: 65532 - -14,30: - 0: 36095 - -14,28: - 0: 32768 - -13,29: - 0: 65535 - -13,30: - 0: 65535 - -13,31: - 0: 2287 - 20,9: - 0: 56797 - 20,11: - 0: 56797 - 23,8: - 0: 4336 - 23,9: - 0: 4369 - 23,10: - 0: 4096 - 23,11: - 0: 4369 - 20,13: - 0: 56797 - 23,12: - 0: 4336 - 23,13: - 0: 4369 - 20,19: - 0: 8 - 21,19: - 0: 8831 - 23,18: - 0: 62316 - 23,17: - 0: 32768 - 19,4: - 0: 16128 - 20,4: - 0: 52992 - 21,4: - 0: 7936 - 22,4: - 0: 3840 - 23,4: - 0: 16128 - 23,5: - 0: 63686 - 23,6: - 0: 4096 - 23,7: - 0: 4369 + 1: 61440 + 20,21: + 1: 63488 24,12: - 0: 34952 + 1: 34952 + 24,11: + 1: 34952 24,13: - 0: 34952 + 1: 34952 + 25,13: + 1: 18292 24,14: - 0: 34952 + 1: 34952 24,15: - 0: 34952 - 25,13: - 0: 18292 + 1: 34952 + 24,16: + 1: 34952 25,12: - 0: 17476 + 1: 17476 + 25,11: + 1: 17476 25,14: - 0: 17476 + 1: 17476 25,15: - 0: 17476 - 24,4: - 0: 52992 - 24,5: - 0: 47496 + 1: 17476 + 25,16: + 1: 17476 24,6: - 0: 35022 - 24,7: - 0: 34952 + 1: 35022 25,4: - 0: 30564 + 1: 30564 + 24,7: + 1: 34952 + 24,8: + 1: 34952 25,5: - 0: 17478 + 1: 17478 + 25,3: + 1: 17920 25,6: - 0: 17476 + 1: 17476 25,7: - 0: 17476 - 24,8: - 0: 34952 + 1: 17476 + 25,8: + 1: 17476 24,9: - 0: 34952 + 1: 34952 24,10: - 0: 34952 - 24,11: - 0: 34952 + 1: 34952 25,9: - 0: 29764 + 1: 29764 25,10: - 0: 17479 - 25,8: - 0: 17476 - 25,11: - 0: 17476 - 24,17: - 0: 39916 - 24,18: - 0: 64648 - 24,16: - 0: 34952 + 1: 17479 25,18: - 0: 30564 + 1: 30564 25,19: - 0: 25670 - 25,16: - 0: 17476 + 1: 25670 25,17: - 0: 17476 - 20,21: - 0: 63488 + 1: 17476 21,21: - 0: 65394 - 21,20: - 0: 8738 + 1: 65394 22,21: - 0: 29696 - 25,3: - 0: 17920 - -12,32: - 0: 8 + 1: 29696 -11,32: - 0: 239 + 0: 224 -10,32: - 0: 28671 - -9,32: - 0: 375 - 13,-7: - 0: 65280 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-7: - 0: 30464 - 14,-6: - 0: 30583 - 14,-5: - 0: 6007 - -13,15: - 0: 52224 + 0: 28544 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12750,6 +12670,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -12769,9 +12704,9 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -12801,7 +12736,7 @@ entities: - 0 - 0 - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -12814,7 +12749,7 @@ entities: temperature: 293.15 moles: - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -12841,14 +12776,15 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Parallax parallax: TortugaStation - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AcousticGuitarInstrument entities: - uid: 17773 @@ -12864,8 +12800,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 543 components: - type: Transform @@ -12881,8 +12815,6 @@ entities: - 22037 - 22034 - 29297 - - type: AtmosDevice - joinedGrid: 33 - uid: 1821 components: - type: Transform @@ -12892,8 +12824,6 @@ entities: - type: DeviceList devices: - 29635 - - type: AtmosDevice - joinedGrid: 33 - uid: 4070 components: - type: Transform @@ -12921,8 +12851,6 @@ entities: - 25808 - 21892 - 21901 - - type: AtmosDevice - joinedGrid: 33 - uid: 7948 components: - type: Transform @@ -12943,8 +12871,6 @@ entities: - 13226 - 25001 - 20012 - - type: AtmosDevice - joinedGrid: 33 - uid: 7949 components: - type: Transform @@ -12968,8 +12894,6 @@ entities: - 27859 - 20002 - 29088 - - type: AtmosDevice - joinedGrid: 33 - uid: 7950 components: - type: Transform @@ -12987,8 +12911,6 @@ entities: - 30287 - 9914 - 7559 - - type: AtmosDevice - joinedGrid: 33 - uid: 10916 components: - type: Transform @@ -13012,8 +12934,6 @@ entities: - 20438 - 20436 - 20439 - - type: AtmosDevice - joinedGrid: 33 - uid: 16563 components: - type: Transform @@ -13043,8 +12963,6 @@ entities: - 22096 - 21593 - 24741 - - type: AtmosDevice - joinedGrid: 33 - uid: 18415 components: - type: Transform @@ -13066,8 +12984,6 @@ entities: - 28459 - 24296 - 24295 - - type: AtmosDevice - joinedGrid: 33 - uid: 18472 components: - type: Transform @@ -13098,8 +13014,6 @@ entities: - 24275 - 29573 - 29572 - - type: AtmosDevice - joinedGrid: 33 - uid: 19566 components: - type: Transform @@ -13135,15 +13049,11 @@ entities: - 22802 - 22662 - 22663 - - type: AtmosDevice - joinedGrid: 33 - uid: 20136 components: - type: Transform pos: -17.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20865 components: - type: Transform @@ -13167,8 +13077,6 @@ entities: - 3579 - 30519 - 9378 - - type: AtmosDevice - joinedGrid: 33 - uid: 24249 components: - type: Transform @@ -13202,8 +13110,6 @@ entities: - 3257 - 23278 - 23279 - - type: AtmosDevice - joinedGrid: 33 - uid: 24266 components: - type: Transform @@ -13226,8 +13132,6 @@ entities: - 22762 - 22750 - 22763 - - type: AtmosDevice - joinedGrid: 33 - uid: 24272 components: - type: Transform @@ -13247,8 +13151,6 @@ entities: - 22731 - 22728 - 22730 - - type: AtmosDevice - joinedGrid: 33 - uid: 24273 components: - type: Transform @@ -13269,8 +13171,6 @@ entities: - 23185 - 23186 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 24671 components: - type: Transform @@ -13278,27 +13178,50 @@ entities: parent: 33 - type: DeviceList devices: + - 25877 + - 24263 - 25690 - 24271 - 27237 - 25887 - - 25885 + - 25883 - 25889 - 25890 - 25880 - 10885 - 24265 - 24264 - - 25877 - - 24263 - - 22415 - 22386 - - 23184 - - 23187 + - 22415 - 28438 - 28437 - - type: AtmosDevice - joinedGrid: 33 + - 23184 + - 23187 + - uid: 24672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 33 + - type: DeviceList + devices: + - 22387 + - 22416 + - 12895 + - 12896 + - 22448 + - 22445 + - 25889 + - 25890 + - 25879 + - 25891 + - 25884 + - 25892 + - 25881 + - 25893 + - 25882 + - 25888 + - 27237 - uid: 24685 components: - type: Transform @@ -13332,8 +13255,6 @@ entities: - 28391 - 28390 - 28394 - - type: AtmosDevice - joinedGrid: 33 - uid: 24777 components: - type: MetaData @@ -13345,8 +13266,6 @@ entities: - type: DeviceList devices: - 9931 - - type: AtmosDevice - joinedGrid: 33 - uid: 25324 components: - type: Transform @@ -13378,8 +13297,6 @@ entities: - 21486 - 15201 - 1552 - - type: AtmosDevice - joinedGrid: 33 - uid: 25526 components: - type: Transform @@ -13397,8 +13314,6 @@ entities: - 24258 - 22732 - 22727 - - type: AtmosDevice - joinedGrid: 33 - uid: 25528 components: - type: Transform @@ -13430,8 +13345,6 @@ entities: - 10947 - 22882 - 22883 - - type: AtmosDevice - joinedGrid: 33 - uid: 25536 components: - type: Transform @@ -13459,8 +13372,6 @@ entities: - 5133 - 5226 - 28203 - - type: AtmosDevice - joinedGrid: 33 - uid: 25541 components: - type: Transform @@ -13483,8 +13394,6 @@ entities: - 21457 - 21319 - 21320 - - type: AtmosDevice - joinedGrid: 33 - uid: 25547 components: - type: Transform @@ -13502,8 +13411,6 @@ entities: - 21434 - 23003 - 23002 - - type: AtmosDevice - joinedGrid: 33 - uid: 25550 components: - type: Transform @@ -13521,8 +13428,6 @@ entities: - 27556 - 27545 - 27529 - - type: AtmosDevice - joinedGrid: 33 - uid: 25552 components: - type: Transform @@ -13541,8 +13446,6 @@ entities: - 27546 - 27528 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25568 components: - type: Transform @@ -13556,8 +13459,6 @@ entities: - 25495 - 21353 - 21338 - - type: AtmosDevice - joinedGrid: 33 - uid: 25570 components: - type: Transform @@ -13570,8 +13471,6 @@ entities: - 4156 - 21140 - 21111 - - type: AtmosDevice - joinedGrid: 33 - uid: 25577 components: - type: Transform @@ -13603,8 +13502,6 @@ entities: - 23161 - 23162 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25586 components: - type: Transform @@ -13629,8 +13526,6 @@ entities: - 21130 - 21131 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 25588 components: - type: Transform @@ -13651,8 +13546,6 @@ entities: - 21187 - 21042 - 21043 - - type: AtmosDevice - joinedGrid: 33 - uid: 25595 components: - type: Transform @@ -13674,8 +13567,6 @@ entities: - 20946 - 20953 - 20949 - - type: AtmosDevice - joinedGrid: 33 - uid: 25622 components: - type: Transform @@ -13690,8 +13581,6 @@ entities: - 20819 - 20820 - 20843 - - type: AtmosDevice - joinedGrid: 33 - uid: 25626 components: - type: Transform @@ -13707,8 +13596,6 @@ entities: - 28497 - 20855 - 20856 - - type: AtmosDevice - joinedGrid: 33 - uid: 25631 components: - type: Transform @@ -13721,8 +13608,6 @@ entities: - 28473 - 25616 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 25639 components: - type: Transform @@ -13740,8 +13625,6 @@ entities: - 25621 - 21640 - 21641 - - type: AtmosDevice - joinedGrid: 33 - uid: 25660 components: - type: Transform @@ -13759,8 +13642,6 @@ entities: - 25593 - 20728 - 20730 - - type: AtmosDevice - joinedGrid: 33 - uid: 25662 components: - type: Transform @@ -13775,8 +13656,6 @@ entities: - 25647 - 20521 - 20520 - - type: AtmosDevice - joinedGrid: 33 - uid: 25664 components: - type: Transform @@ -13797,8 +13676,6 @@ entities: - 20470 - 20521 - 20520 - - type: AtmosDevice - joinedGrid: 33 - uid: 25666 components: - type: Transform @@ -13817,8 +13694,6 @@ entities: - 20483 - 20489 - 20510 - - type: AtmosDevice - joinedGrid: 33 - uid: 25670 components: - type: Transform @@ -13833,8 +13708,6 @@ entities: - 10912 - 20342 - 20343 - - type: AtmosDevice - joinedGrid: 33 - uid: 25672 components: - type: Transform @@ -13869,8 +13742,6 @@ entities: - 25750 - 22631 - 22620 - - type: AtmosDevice - joinedGrid: 33 - uid: 25679 components: - type: Transform @@ -13901,8 +13772,6 @@ entities: - 23027 - 23160 - 23163 - - type: AtmosDevice - joinedGrid: 33 - uid: 25691 components: - type: Transform @@ -13937,8 +13806,6 @@ entities: - 22573 - 22525 - 22526 - - type: AtmosDevice - joinedGrid: 33 - uid: 25694 components: - type: Transform @@ -13952,8 +13819,6 @@ entities: - 25688 - 22536 - 22537 - - type: AtmosDevice - joinedGrid: 33 - uid: 25696 components: - type: Transform @@ -13973,8 +13838,6 @@ entities: - 10908 - 20316 - 20313 - - type: AtmosDevice - joinedGrid: 33 - uid: 25701 components: - type: Transform @@ -13995,8 +13858,6 @@ entities: - 10907 - 20355 - 20354 - - type: AtmosDevice - joinedGrid: 33 - uid: 25705 components: - type: Transform @@ -14015,8 +13876,6 @@ entities: - 20288 - 20262 - 20263 - - type: AtmosDevice - joinedGrid: 33 - uid: 25710 components: - type: Transform @@ -14036,8 +13895,6 @@ entities: - 20219 - 20216 - 20200 - - type: AtmosDevice - joinedGrid: 33 - uid: 25712 components: - type: Transform @@ -14056,8 +13913,6 @@ entities: - 21651 - 24252 - 24255 - - type: AtmosDevice - joinedGrid: 33 - uid: 25733 components: - type: Transform @@ -14072,8 +13927,6 @@ entities: - 20554 - 20572 - 20561 - - type: AtmosDevice - joinedGrid: 33 - uid: 25735 components: - type: Transform @@ -14090,8 +13943,6 @@ entities: - 20244 - 23813 - 23791 - - type: AtmosDevice - joinedGrid: 33 - uid: 25736 components: - type: Transform @@ -14107,8 +13958,6 @@ entities: - 28431 - 20684 - 20692 - - type: AtmosDevice - joinedGrid: 33 - uid: 25738 components: - type: Transform @@ -14129,8 +13978,6 @@ entities: - 20707 - 20708 - 20709 - - type: AtmosDevice - joinedGrid: 33 - uid: 25740 components: - type: Transform @@ -14145,8 +13992,6 @@ entities: - 18722 - 20015 - 20014 - - type: AtmosDevice - joinedGrid: 33 - uid: 25741 components: - type: Transform @@ -14179,8 +14024,6 @@ entities: - 20104 - 20034 - 20037 - - type: AtmosDevice - joinedGrid: 33 - uid: 25742 components: - type: Transform @@ -14188,19 +14031,15 @@ entities: parent: 33 - type: DeviceList devices: - - 25716 - - 25717 - - 25727 - - 20631 - - 20659 - - 20665 - - 20629 - - 20630 - 20645 - - 20623 - - 20646 - - type: AtmosDevice - joinedGrid: 33 + - 20630 + - 20629 + - 20665 + - 20659 + - 20631 + - 25727 + - 25717 + - 25716 - uid: 25745 components: - type: Transform @@ -14214,8 +14053,6 @@ entities: - 20590 - 20591 - 20606 - - type: AtmosDevice - joinedGrid: 33 - uid: 25753 components: - type: Transform @@ -14233,8 +14070,6 @@ entities: - 19986 - 20014 - 20015 - - type: AtmosDevice - joinedGrid: 33 - uid: 25755 components: - type: Transform @@ -14245,8 +14080,6 @@ entities: - 17792 - 19884 - 19883 - - type: AtmosDevice - joinedGrid: 33 - uid: 25759 components: - type: Transform @@ -14265,8 +14098,6 @@ entities: - 19832 - 19833 - 19722 - - type: AtmosDevice - joinedGrid: 33 - uid: 25761 components: - type: Transform @@ -14286,8 +14117,6 @@ entities: - 19744 - 19792 - 19793 - - type: AtmosDevice - joinedGrid: 33 - uid: 25768 components: - type: Transform @@ -14315,8 +14144,6 @@ entities: - 27235 - 22521 - 22522 - - type: AtmosDevice - joinedGrid: 33 - uid: 25789 components: - type: Transform @@ -14334,8 +14161,6 @@ entities: - 10856 - 21690 - 21688 - - type: AtmosDevice - joinedGrid: 33 - uid: 25795 components: - type: Transform @@ -14365,8 +14190,6 @@ entities: - 21765 - 21786 - 21785 - - type: AtmosDevice - joinedGrid: 33 - uid: 25802 components: - type: Transform @@ -14388,8 +14211,6 @@ entities: - 21903 - 21806 - 24268 - - type: AtmosDevice - joinedGrid: 33 - uid: 25804 components: - type: Transform @@ -14405,8 +14226,6 @@ entities: - 21826 - 21827 - 21829 - - type: AtmosDevice - joinedGrid: 33 - uid: 25810 components: - type: Transform @@ -14445,8 +14264,6 @@ entities: - 10854 - 23444 - 23445 - - type: AtmosDevice - joinedGrid: 33 - uid: 25820 components: - type: Transform @@ -14478,8 +14295,6 @@ entities: - 23460 - 23459 - 23479 - - type: AtmosDevice - joinedGrid: 33 - uid: 25822 components: - type: Transform @@ -14514,8 +14329,6 @@ entities: - 22284 - 22281 - 22287 - - type: AtmosDevice - joinedGrid: 33 - uid: 25828 components: - type: Transform @@ -14533,8 +14346,6 @@ entities: - 23615 - 23616 - 23613 - - type: AtmosDevice - joinedGrid: 33 - uid: 25837 components: - type: Transform @@ -14575,8 +14386,6 @@ entities: - 23612 - 23685 - 23658 - - type: AtmosDevice - joinedGrid: 33 - uid: 25841 components: - type: Transform @@ -14600,8 +14409,6 @@ entities: - 23223 - 23259 - 23260 - - type: AtmosDevice - joinedGrid: 33 - uid: 25847 components: - type: Transform @@ -14621,8 +14428,6 @@ entities: - 27972 - 23638 - 27970 - - type: AtmosDevice - joinedGrid: 33 - uid: 25854 components: - type: Transform @@ -14647,8 +14452,6 @@ entities: - 2940 - 23689 - 23709 - - type: AtmosDevice - joinedGrid: 33 - uid: 25875 components: - type: Transform @@ -14686,8 +14489,6 @@ entities: - 10876 - 23226 - 23227 - - type: AtmosDevice - joinedGrid: 33 - uid: 25886 components: - type: Transform @@ -14727,37 +14528,6 @@ entities: - 22662 - 22803 - 22802 - - type: AtmosDevice - joinedGrid: 33 - - uid: 25895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 33 - - type: DeviceList - devices: - - 25879 - - 25890 - - 25889 - - 25884 - - 25891 - - 27237 - - 25888 - - 25882 - - 25893 - - 25881 - - 25892 - - 22445 - - 22448 - - 12908 - - 22390 - - 22416 - - 22387 - - 12895 - - 12896 - - type: AtmosDevice - joinedGrid: 33 - uid: 25897 components: - type: Transform @@ -14772,8 +14542,6 @@ entities: - 11410 - 22442 - 22458 - - type: AtmosDevice - joinedGrid: 33 - uid: 25899 components: - type: Transform @@ -14789,8 +14557,6 @@ entities: - 10868 - 22459 - 22443 - - type: AtmosDevice - joinedGrid: 33 - uid: 25901 components: - type: Transform @@ -14805,8 +14571,6 @@ entities: - 22417 - 22418 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 26796 components: - type: Transform @@ -14820,8 +14584,6 @@ entities: - 26808 - 26798 - 26799 - - type: AtmosDevice - joinedGrid: 33 - uid: 27239 components: - type: Transform @@ -14838,8 +14600,6 @@ entities: - 27235 - 27233 - 27234 - - type: AtmosDevice - joinedGrid: 33 - uid: 27551 components: - type: Transform @@ -14854,8 +14614,6 @@ entities: - 27544 - 27543 - 27531 - - type: AtmosDevice - joinedGrid: 33 - uid: 28398 components: - type: Transform @@ -14876,8 +14634,6 @@ entities: - 27155 - 27175 - 27174 - - type: AtmosDevice - joinedGrid: 33 - uid: 28404 components: - type: Transform @@ -14896,8 +14652,6 @@ entities: - 13771 - 12435 - 12431 - - type: AtmosDevice - joinedGrid: 33 - uid: 28405 components: - type: Transform @@ -14914,8 +14668,6 @@ entities: - 25167 - 25033 - 25160 - - type: AtmosDevice - joinedGrid: 33 - uid: 28408 components: - type: Transform @@ -14934,8 +14686,6 @@ entities: - 23607 - 27937 - 23600 - - type: AtmosDevice - joinedGrid: 33 - uid: 28416 components: - type: Transform @@ -14969,8 +14719,6 @@ entities: - 25512 - 21688 - 21690 - - type: AtmosDevice - joinedGrid: 33 - uid: 28421 components: - type: Transform @@ -14992,8 +14740,6 @@ entities: - 22204 - 23554 - 23553 - - type: AtmosDevice - joinedGrid: 33 - uid: 28422 components: - type: Transform @@ -15008,8 +14754,6 @@ entities: - 10818 - 22205 - 22202 - - type: AtmosDevice - joinedGrid: 33 - uid: 28427 components: - type: Transform @@ -15029,8 +14773,6 @@ entities: - 28431 - 20262 - 20263 - - type: AtmosDevice - joinedGrid: 33 - uid: 28449 components: - type: Transform @@ -15053,8 +14795,6 @@ entities: - 22608 - 24668 - 22609 - - type: AtmosDevice - joinedGrid: 33 - uid: 28452 components: - type: Transform @@ -15068,8 +14808,6 @@ entities: - 28451 - 22898 - 22899 - - type: AtmosDevice - joinedGrid: 33 - uid: 28454 components: - type: Transform @@ -15086,8 +14824,6 @@ entities: - 24308 - 24309 - 24325 - - type: AtmosDevice - joinedGrid: 33 - uid: 28460 components: - type: Transform @@ -15111,8 +14847,6 @@ entities: - 21522 - 21561 - 23929 - - type: AtmosDevice - joinedGrid: 33 - uid: 28463 components: - type: Transform @@ -15134,28 +14868,6 @@ entities: - 24343 - 21588 - 21602 - - type: AtmosDevice - joinedGrid: 33 - - uid: 28465 - components: - - type: Transform - pos: -43.5,18.5 - parent: 33 - - type: DeviceList - devices: - - 28434 - - 28477 - - 25621 - - 306 - - 304 - - 28458 - - 28466 - - 4319 - - 21618 - - 28487 - - 28486 - - type: AtmosDevice - joinedGrid: 33 - uid: 28469 components: - type: Transform @@ -15175,8 +14887,6 @@ entities: - 5192 - 16269 - 14914 - - type: AtmosDevice - joinedGrid: 33 - uid: 28489 components: - type: Transform @@ -15197,8 +14907,6 @@ entities: - 28492 - 28491 - 5192 - - type: AtmosDevice - joinedGrid: 33 - uid: 28495 components: - type: Transform @@ -15214,8 +14922,6 @@ entities: - 16226 - 16220 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 28506 components: - type: Transform @@ -15235,8 +14941,6 @@ entities: - 5307 - 5309 - 16718 - - type: AtmosDevice - joinedGrid: 33 - uid: 28507 components: - type: Transform @@ -15255,8 +14959,6 @@ entities: - 10948 - 21433 - 21395 - - type: AtmosDevice - joinedGrid: 33 - uid: 28513 components: - type: Transform @@ -15273,8 +14975,6 @@ entities: - 10951 - 27298 - 23067 - - type: AtmosDevice - joinedGrid: 33 - uid: 28519 components: - type: Transform @@ -15293,8 +14993,6 @@ entities: - 21368 - 21357 - 21364 - - type: AtmosDevice - joinedGrid: 33 - uid: 28523 components: - type: Transform @@ -15313,8 +15011,6 @@ entities: - 12704 - 27072 - 27071 - - type: AtmosDevice - joinedGrid: 33 - uid: 29558 components: - type: Transform @@ -15338,8 +15034,6 @@ entities: - 24677 - 29239 - 9530 - - type: AtmosDevice - joinedGrid: 33 - uid: 29569 components: - type: Transform @@ -15363,8 +15057,24 @@ entities: - 29272 - 29313 - 29271 - - type: AtmosDevice - joinedGrid: 33 + - uid: 30900 + components: + - type: Transform + pos: -43.5,22.5 + parent: 33 + - type: DeviceList + devices: + - 28434 + - 28477 + - 25621 + - 306 + - 304 + - 28458 + - 28466 + - 4319 + - 21618 + - 28487 + - 28486 - proto: AirAlarmElectronics entities: - uid: 683 @@ -15379,57 +15089,41 @@ entities: - type: Transform pos: 43.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10188 components: - type: Transform pos: 56.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17048 components: - type: Transform pos: -41.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17092 components: - type: Transform pos: -86.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17821 components: - type: Transform pos: 21.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18188 components: - type: Transform pos: 4.5,90.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20770 components: - type: Transform pos: -69.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28260 components: - type: Transform pos: -98.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: Airlock entities: - uid: 2610 @@ -17104,6 +16798,13 @@ entities: - type: Transform pos: -89.5,-31.5 parent: 33 +- proto: AirlockMaintMantisLocked + entities: + - uid: 404 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 33 - proto: AirlockMaintMedLocked entities: - uid: 3814 @@ -17173,11 +16874,6 @@ entities: - type: Transform pos: -54.5,-20.5 parent: 33 - - uid: 404 - components: - - type: Transform - pos: -51.5,-24.5 - parent: 33 - uid: 407 components: - type: Transform @@ -17799,8 +17495,6 @@ entities: - type: Transform pos: -30.5,-4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25538 components: - type: Transform @@ -17957,6 +17651,10 @@ entities: - type: Transform pos: -46.5,9.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 25635 components: - type: Transform @@ -18057,6 +17755,10 @@ entities: - type: Transform pos: -27.5,40.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 25693 components: - type: Transform @@ -18116,11 +17818,17 @@ entities: - type: Transform pos: -24.5,64.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - uid: 25717 components: - type: Transform pos: -23.5,85.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - uid: 25718 components: - type: Transform @@ -18383,6 +18091,10 @@ entities: - type: Transform pos: -7.5,22.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 25878 components: - type: Transform @@ -18393,36 +18105,55 @@ entities: - type: Transform pos: -17.5,40.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25880 components: - type: Transform pos: -13.5,34.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 25881 components: - type: Transform pos: -7.5,28.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25882 components: - type: Transform pos: -1.5,28.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25883 components: - type: Transform pos: -2.5,35.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 25884 components: - type: Transform pos: -8.5,35.5 parent: 33 - - uid: 25885 - components: - - type: Transform - pos: -3.5,40.5 - parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 26808 components: - type: Transform @@ -18438,6 +18169,12 @@ entities: - type: Transform pos: 1.5,37.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 + - 25895 + - 24672 - uid: 27547 components: - type: Transform @@ -18552,6 +18289,10 @@ entities: - type: Transform pos: -56.5,22.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 28450 components: - type: Transform @@ -18563,6 +18304,10 @@ entities: - type: Transform pos: -52.5,14.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 28468 components: - type: Transform @@ -18730,7 +18475,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -18752,7 +18496,6 @@ entities: solutions: jar: temperature: 293.15 - canMix: False canReact: True maxVol: 120 name: null @@ -20624,8 +20367,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: Basketball entities: - uid: 8385 @@ -21550,6 +21291,8 @@ entities: rot: 1.5707963267948966 rad pos: -84.5,-33.5 parent: 33 + - type: SpamEmitSound + enabled: False - proto: BoardGameSpawner entities: - uid: 701 @@ -22936,6 +22679,67 @@ entities: - type: Transform pos: -95.480774,26.597704 parent: 33 +- proto: ButtonFrameExit + entities: + - uid: 30898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,10.5 + parent: 33 +- proto: ButtonFrameJanitor + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 33 + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,33.5 + parent: 33 + - uid: 2588 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 33 + - uid: 30896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 33 + - uid: 30897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,25.5 + parent: 33 + - uid: 30899 + components: + - type: Transform + pos: -43.5,18.5 + parent: 33 + - uid: 30902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 33 + - uid: 30903 + components: + - type: Transform + pos: 11.5,30.5 + parent: 33 + - uid: 30904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,65.5 + parent: 33 - proto: CableApcExtension entities: - uid: 279 @@ -52851,15 +52655,11 @@ entities: - type: Transform pos: 39.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10182 components: - type: Transform pos: 55.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: CargoPallet entities: - uid: 182 @@ -60974,7 +60774,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 5000 name: null @@ -60991,7 +60790,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 5000 name: null @@ -61071,11 +60869,6 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 33 - - uid: 512 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 33 - uid: 2532 components: - type: Transform @@ -61106,11 +60899,6 @@ entities: - type: Transform pos: -29.5,52.5 parent: 33 - - uid: 10799 - components: - - type: Transform - pos: 8.5,46.5 - parent: 33 - uid: 10800 components: - type: Transform @@ -61131,16 +60919,6 @@ entities: - type: Transform pos: 33.5,-23.5 parent: 33 - - uid: 13056 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 33 - - uid: 15079 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 33 - uid: 15080 components: - type: Transform @@ -61161,11 +60939,6 @@ entities: - type: Transform pos: -86.5,-38.5 parent: 33 - - uid: 17099 - components: - - type: Transform - pos: -86.5,-36.5 - parent: 33 - uid: 18288 components: - type: Transform @@ -61216,11 +60989,6 @@ entities: - type: Transform pos: 49.5,12.5 parent: 33 - - uid: 28781 - components: - - type: Transform - pos: 69.5,62.5 - parent: 33 - uid: 28782 components: - type: Transform @@ -61231,11 +60999,98 @@ entities: - type: Transform pos: -33.5,95.5 parent: 33 - - uid: 30335 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 512 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 33 + - uid: 4440 + components: + - type: Transform + pos: 8.5,46.5 + parent: 33 + - uid: 4453 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 33 + - uid: 4569 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 33 + - uid: 5057 + components: + - type: Transform + pos: -86.5,-36.5 + parent: 33 + - uid: 9780 + components: + - type: Transform + pos: 69.5,62.5 + parent: 33 + - uid: 9782 components: - type: Transform pos: -32.5,95.5 parent: 33 + - uid: 10789 + components: + - type: Transform + pos: -74.5,-7.5 + parent: 33 + - uid: 17099 + components: + - type: Transform + pos: -41.5,23.5 + parent: 33 + - uid: 29142 + components: + - type: Transform + pos: -14.5,0.5 + parent: 33 + - uid: 29147 + components: + - type: Transform + pos: 25.5,11.5 + parent: 33 + - uid: 30335 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 33 + - uid: 30927 + components: + - type: Transform + pos: -92.5,-0.5 + parent: 33 + - uid: 30928 + components: + - type: Transform + pos: 3.5,29.5 + parent: 33 + - uid: 30929 + components: + - type: Transform + pos: 4.5,79.5 + parent: 33 + - uid: 30930 + components: + - type: Transform + pos: 38.5,40.5 + parent: 33 + - uid: 30931 + components: + - type: Transform + pos: 52.5,11.5 + parent: 33 + - uid: 30932 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 33 - proto: ClosetFireFilled entities: - uid: 2102 @@ -61303,11 +61158,6 @@ entities: - type: Transform pos: 38.5,45.5 parent: 33 - - uid: 24165 - components: - - type: Transform - pos: -74.5,-7.5 - parent: 33 - uid: 24167 components: - type: Transform @@ -62309,14 +62159,6 @@ entities: - type: Transform pos: -1.5833335,34.394047 parent: 33 -- proto: ClothingHeadHatHairflower - entities: - - uid: 9381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.524541,8.770387 - parent: 33 - proto: ClothingHeadHatHardhatOrange entities: - uid: 10923 @@ -62495,6 +62337,13 @@ entities: - type: Transform pos: -100.45929,8.641571 parent: 33 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 24476 + components: + - type: Transform + pos: -96.41625,35.611954 + parent: 33 - proto: ClothingHeadHelmetCosmonaut entities: - uid: 24334 @@ -62521,13 +62370,6 @@ entities: - type: Transform pos: 48.565704,21.575739 parent: 33 -- proto: ClothingHeadHelmetScaf - entities: - - uid: 24476 - components: - - type: Transform - pos: -96.41625,35.611954 - parent: 33 - proto: ClothingHeadHelmetTemplar entities: - uid: 16302 @@ -64238,6 +64080,15 @@ entities: - type: DeviceLinkSink links: - 13565 + - uid: 3762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,69.5 + parent: 33 + - type: DeviceLinkSink + links: + - 10965 - uid: 3779 components: - type: Transform @@ -64423,15 +64274,6 @@ entities: - type: DeviceLinkSink links: - 10965 - - uid: 10193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,69.5 - parent: 33 - - type: DeviceLinkSink - links: - - 10965 - uid: 10921 components: - type: Transform @@ -65425,8 +65267,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 9.117112 - - 34.29771 + - 2.4753592 + - 9.312066 - 0 - 0 - 0 @@ -65443,10 +65285,8 @@ entities: showEnts: False occludes: True ents: - - 17176 - - 17175 - - 17174 - 17173 + - 17174 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -65462,8 +65302,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 9.117112 - - 34.29771 + - 2.4753592 + - 9.312066 - 0 - 0 - 0 @@ -65481,11 +65321,9 @@ entities: occludes: True ents: - 18001 - - 18002 - - 18003 - - 18000 - - 17998 - 17999 + - 17998 + - 18000 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -66071,6 +65909,11 @@ entities: parent: 33 - proto: CrateTrashCart entities: + - uid: 11280 + components: + - type: Transform + pos: -42.5,72.5 + parent: 33 - uid: 30453 components: - type: Transform @@ -66354,15 +66197,11 @@ entities: - type: Transform pos: -69.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20765 components: - type: Transform pos: -69.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: d6Dice entities: - uid: 1721 @@ -67042,11 +66881,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,64.5 parent: 33 - - uid: 4955 - components: - - type: Transform - pos: 11.5,64.5 - parent: 33 - uid: 6313 components: - type: Transform @@ -67059,12 +66893,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-20.5 parent: 33 - - uid: 10034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,19.5 - parent: 33 - uid: 10638 components: - type: Transform @@ -67216,12 +67044,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,35.5 parent: 33 - - uid: 11821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 33 - uid: 11823 components: - type: Transform @@ -67394,6 +67216,12 @@ entities: rot: 3.141592653589793 rad pos: 5.5,22.5 parent: 33 + - uid: 13109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,69.5 + parent: 33 - uid: 16217 components: - type: Transform @@ -67663,13 +67491,150 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-7.5 parent: 33 + - uid: 30478 + components: + - type: Transform + pos: -56.5,35.5 + parent: 33 - uid: 30500 components: - type: Transform pos: -77.5,12.5 parent: 33 + - uid: 30589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,35.5 + parent: 33 + - uid: 30754 + components: + - type: Transform + pos: -50.5,77.5 + parent: 33 + - uid: 30760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,70.5 + parent: 33 + - uid: 30761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,70.5 + parent: 33 + - uid: 30762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,77.5 + parent: 33 + - uid: 30796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,84.5 + parent: 33 + - uid: 30797 + components: + - type: Transform + pos: 8.5,84.5 + parent: 33 + - uid: 30798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,71.5 + parent: 33 + - uid: 30799 + components: + - type: Transform + pos: 14.5,71.5 + parent: 33 + - uid: 30800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,64.5 + parent: 33 + - uid: 30832 + components: + - type: Transform + pos: 40.5,10.5 + parent: 33 + - uid: 30833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,10.5 + parent: 33 + - uid: 30834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 33 + - uid: 30835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 33 + - uid: 30836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 33 + - uid: 30837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,8.5 + parent: 33 + - uid: 30859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 33 + - uid: 30860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 33 + - uid: 30879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 33 + - uid: 30881 + components: + - type: Transform + pos: 7.5,42.5 + parent: 33 - proto: DisposalJunction entities: + - uid: 9770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,19.5 + parent: 33 + - uid: 9775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 33 + - uid: 9864 + components: + - type: Transform + pos: -23.5,74.5 + parent: 33 - uid: 11511 components: - type: Transform @@ -67809,6 +67774,22 @@ entities: rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 33 + - uid: 30764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,74.5 + parent: 33 + - uid: 30882 + components: + - type: Transform + pos: 7.5,40.5 + parent: 33 + - uid: 30883 + components: + - type: Transform + pos: 7.5,38.5 + parent: 33 - proto: DisposalJunctionFlipped entities: - uid: 422 @@ -67816,6 +67797,30 @@ entities: - type: Transform pos: 24.5,-8.5 parent: 33 + - uid: 4955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,64.5 + parent: 33 + - uid: 9866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,27.5 + parent: 33 + - uid: 10034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 33 + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,36.5 + parent: 33 - uid: 10562 components: - type: Transform @@ -67964,6 +67969,12 @@ entities: rot: 3.141592653589793 rad pos: -30.5,44.5 parent: 33 + - uid: 30763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,74.5 + parent: 33 - proto: DisposalPipe entities: - uid: 1646 @@ -68048,6 +68059,11 @@ entities: - type: Transform pos: 7.5,65.5 parent: 33 + - uid: 10691 + components: + - type: Transform + pos: 7.5,67.5 + parent: 33 - uid: 11497 components: - type: Transform @@ -68273,12 +68289,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,75.5 parent: 33 - - uid: 11558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,74.5 - parent: 33 - uid: 11559 components: - type: Transform @@ -68851,12 +68861,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,27.5 parent: 33 - - uid: 11696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,27.5 - parent: 33 - uid: 11697 components: - type: Transform @@ -69377,12 +69381,6 @@ entities: - type: Transform pos: 11.5,37.5 parent: 33 - - uid: 11814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,36.5 - parent: 33 - uid: 11815 components: - type: Transform @@ -69834,12 +69832,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-12.5 parent: 33 - - uid: 11963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 33 - uid: 11965 components: - type: Transform @@ -71479,6 +71471,11 @@ entities: - type: Transform pos: -9.5,1.5 parent: 33 + - uid: 12689 + components: + - type: Transform + pos: 7.5,68.5 + parent: 33 - uid: 13004 components: - type: Transform @@ -71583,6 +71580,12 @@ entities: rot: 1.5707963267948966 rad pos: -98.5,10.5 parent: 33 + - uid: 17967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,69.5 + parent: 33 - uid: 18490 components: - type: Transform @@ -73815,6 +73818,695 @@ entities: - type: Transform pos: -77.5,8.5 parent: 33 + - uid: 30740 + components: + - type: Transform + pos: -59.5,28.5 + parent: 33 + - uid: 30741 + components: + - type: Transform + pos: -59.5,29.5 + parent: 33 + - uid: 30742 + components: + - type: Transform + pos: -59.5,30.5 + parent: 33 + - uid: 30743 + components: + - type: Transform + pos: -59.5,31.5 + parent: 33 + - uid: 30744 + components: + - type: Transform + pos: -59.5,32.5 + parent: 33 + - uid: 30745 + components: + - type: Transform + pos: -59.5,33.5 + parent: 33 + - uid: 30746 + components: + - type: Transform + pos: -59.5,34.5 + parent: 33 + - uid: 30747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,35.5 + parent: 33 + - uid: 30748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,35.5 + parent: 33 + - uid: 30755 + components: + - type: Transform + pos: -50.5,76.5 + parent: 33 + - uid: 30756 + components: + - type: Transform + pos: -50.5,75.5 + parent: 33 + - uid: 30757 + components: + - type: Transform + pos: -50.5,73.5 + parent: 33 + - uid: 30758 + components: + - type: Transform + pos: -50.5,72.5 + parent: 33 + - uid: 30759 + components: + - type: Transform + pos: -50.5,71.5 + parent: 33 + - uid: 30765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,70.5 + parent: 33 + - uid: 30766 + components: + - type: Transform + pos: -44.5,71.5 + parent: 33 + - uid: 30767 + components: + - type: Transform + pos: -44.5,72.5 + parent: 33 + - uid: 30768 + components: + - type: Transform + pos: -44.5,73.5 + parent: 33 + - uid: 30769 + components: + - type: Transform + pos: -43.5,75.5 + parent: 33 + - uid: 30770 + components: + - type: Transform + pos: -43.5,76.5 + parent: 33 + - uid: 30771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,74.5 + parent: 33 + - uid: 30772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,74.5 + parent: 33 + - uid: 30773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,74.5 + parent: 33 + - uid: 30774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,74.5 + parent: 33 + - uid: 30775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,74.5 + parent: 33 + - uid: 30776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,74.5 + parent: 33 + - uid: 30777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,74.5 + parent: 33 + - uid: 30778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,74.5 + parent: 33 + - uid: 30779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,74.5 + parent: 33 + - uid: 30780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,74.5 + parent: 33 + - uid: 30781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,74.5 + parent: 33 + - uid: 30782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,74.5 + parent: 33 + - uid: 30783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,74.5 + parent: 33 + - uid: 30784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,74.5 + parent: 33 + - uid: 30785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,74.5 + parent: 33 + - uid: 30786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,74.5 + parent: 33 + - uid: 30787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,74.5 + parent: 33 + - uid: 30788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,74.5 + parent: 33 + - uid: 30789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,74.5 + parent: 33 + - uid: 30790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,74.5 + parent: 33 + - uid: 30791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,74.5 + parent: 33 + - uid: 30792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,74.5 + parent: 33 + - uid: 30793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,74.5 + parent: 33 + - uid: 30794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,74.5 + parent: 33 + - uid: 30801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,64.5 + parent: 33 + - uid: 30802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,64.5 + parent: 33 + - uid: 30803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,65.5 + parent: 33 + - uid: 30804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,66.5 + parent: 33 + - uid: 30805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,67.5 + parent: 33 + - uid: 30806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,68.5 + parent: 33 + - uid: 30807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,69.5 + parent: 33 + - uid: 30808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,70.5 + parent: 33 + - uid: 30809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,71.5 + parent: 33 + - uid: 30810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,71.5 + parent: 33 + - uid: 30811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,71.5 + parent: 33 + - uid: 30812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,71.5 + parent: 33 + - uid: 30813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,71.5 + parent: 33 + - uid: 30814 + components: + - type: Transform + pos: 8.5,72.5 + parent: 33 + - uid: 30815 + components: + - type: Transform + pos: 8.5,73.5 + parent: 33 + - uid: 30816 + components: + - type: Transform + pos: 8.5,74.5 + parent: 33 + - uid: 30817 + components: + - type: Transform + pos: 8.5,75.5 + parent: 33 + - uid: 30818 + components: + - type: Transform + pos: 8.5,76.5 + parent: 33 + - uid: 30819 + components: + - type: Transform + pos: 8.5,77.5 + parent: 33 + - uid: 30820 + components: + - type: Transform + pos: 8.5,78.5 + parent: 33 + - uid: 30821 + components: + - type: Transform + pos: 8.5,79.5 + parent: 33 + - uid: 30822 + components: + - type: Transform + pos: 8.5,80.5 + parent: 33 + - uid: 30823 + components: + - type: Transform + pos: 8.5,81.5 + parent: 33 + - uid: 30824 + components: + - type: Transform + pos: 8.5,82.5 + parent: 33 + - uid: 30825 + components: + - type: Transform + pos: 8.5,83.5 + parent: 33 + - uid: 30827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,63.5 + parent: 33 + - uid: 30828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,63.5 + parent: 33 + - uid: 30829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,63.5 + parent: 33 + - uid: 30838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 33 + - uid: 30839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 33 + - uid: 30840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 33 + - uid: 30841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 33 + - uid: 30842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 33 + - uid: 30843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 33 + - uid: 30844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 33 + - uid: 30845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 33 + - uid: 30846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 33 + - uid: 30847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 33 + - uid: 30848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,8.5 + parent: 33 + - uid: 30849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 33 + - uid: 30850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,8.5 + parent: 33 + - uid: 30851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 33 + - uid: 30852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,9.5 + parent: 33 + - uid: 30853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,9.5 + parent: 33 + - uid: 30854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,9.5 + parent: 33 + - uid: 30855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,9.5 + parent: 33 + - uid: 30856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,10.5 + parent: 33 + - uid: 30857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,10.5 + parent: 33 + - uid: 30861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-13.5 + parent: 33 + - uid: 30862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 33 + - uid: 30863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 33 + - uid: 30864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-16.5 + parent: 33 + - uid: 30865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-17.5 + parent: 33 + - uid: 30866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 33 + - uid: 30867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-19.5 + parent: 33 + - uid: 30868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 33 + - uid: 30869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 33 + - uid: 30870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 33 + - uid: 30871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 33 + - uid: 30872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 33 + - uid: 30873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 33 + - uid: 30874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 33 + - uid: 30875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 33 + - uid: 30876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 33 + - uid: 30877 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 33 + - uid: 30880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 33 + - uid: 30887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,42.5 + parent: 33 + - uid: 30888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 33 + - uid: 30889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 33 + - uid: 30890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 33 + - uid: 30891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 33 + - uid: 30892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,38.5 + parent: 33 + - uid: 30893 + components: + - type: Transform + pos: 7.5,41.5 + parent: 33 + - uid: 30894 + components: + - type: Transform + pos: 7.5,39.5 + parent: 33 + - uid: 30895 + components: + - type: Transform + pos: 7.5,37.5 + parent: 33 +- proto: DisposalPipeBroken + entities: + - uid: 30830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,63.5 + parent: 33 - proto: DisposalRouter entities: - uid: 9776 @@ -73831,6 +74523,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 33 + - uid: 9867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,36.5 + parent: 33 - uid: 10666 components: - type: Transform @@ -73931,12 +74629,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,35.5 parent: 33 - - uid: 11799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,36.5 - parent: 33 - uid: 11825 components: - type: Transform @@ -74133,11 +74825,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,66.5 parent: 33 - - uid: 9775 - components: - - type: Transform - pos: 7.5,67.5 - parent: 33 - uid: 11021 components: - type: Transform @@ -74429,6 +75116,12 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-32.5 parent: 33 + - uid: 20882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,69.5 + parent: 33 - uid: 22105 components: - type: Transform @@ -74498,6 +75191,12 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 33 + - uid: 28381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 33 - uid: 29338 components: - type: Transform @@ -74509,6 +75208,76 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,12.5 parent: 33 + - uid: 30749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,70.5 + parent: 33 + - uid: 30750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,77.5 + parent: 33 + - uid: 30751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,77.5 + parent: 33 + - uid: 30752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,70.5 + parent: 33 + - uid: 30795 + components: + - type: Transform + pos: 7.5,85.5 + parent: 33 + - uid: 30826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,63.5 + parent: 33 + - uid: 30831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 33 + - uid: 30858 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 33 + - uid: 30878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 33 + - uid: 30884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,38.5 + parent: 33 + - uid: 30885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,40.5 + parent: 33 + - uid: 30886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,42.5 + parent: 33 - proto: DisposalUnit entities: - uid: 1814 @@ -74731,11 +75500,6 @@ entities: - type: Transform pos: -74.5,-5.5 parent: 33 - - uid: 12689 - components: - - type: Transform - pos: -42.5,72.5 - parent: 33 - uid: 17408 components: - type: Transform @@ -74847,6 +75611,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,2.5 parent: 33 + - uid: 30753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,74.5 + parent: 33 - proto: DogBed entities: - uid: 3427 @@ -75386,7 +76156,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75403,7 +76172,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75485,7 +76253,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -75502,7 +76269,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: True canReact: True maxVol: 20 name: null @@ -75633,7 +76399,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 30 name: null @@ -75712,7 +76477,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -75728,36 +76492,28 @@ entities: parent: 17172 - type: Physics canCollide: False + - type: InsideEntityStorage - uid: 17999 components: - type: Transform parent: 17172 - type: Physics canCollide: False + - type: InsideEntityStorage - uid: 18000 components: - type: Transform parent: 17172 - type: Physics canCollide: False + - type: InsideEntityStorage - uid: 18001 components: - type: Transform parent: 17172 - type: Physics canCollide: False - - uid: 18002 - components: - - type: Transform - parent: 17172 - - type: Physics - canCollide: False - - uid: 18003 - components: - - type: Transform - parent: 17172 - - type: Physics - canCollide: False + - type: InsideEntityStorage - proto: DrinkTequilaSunriseGlass entities: - uid: 18421 @@ -75781,24 +76537,14 @@ entities: parent: 17171 - type: Physics canCollide: False + - type: InsideEntityStorage - uid: 17174 components: - type: Transform parent: 17171 - type: Physics canCollide: False - - uid: 17175 - components: - - type: Transform - parent: 17171 - - type: Physics - canCollide: False - - uid: 17176 - components: - - type: Transform - parent: 17171 - - type: Physics - canCollide: False + - type: InsideEntityStorage - proto: DrinkWaterBottleFull entities: - uid: 24654 @@ -75876,7 +76622,6 @@ entities: solutions: drink: temperature: 293.15 - canMix: False canReact: True maxVol: 100 name: null @@ -76602,14 +77347,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 6745 - components: - - type: Transform - pos: -7.5,29.5 - parent: 33 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 6746 components: - type: Transform @@ -77052,6 +77789,11 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight + - uid: 28465 + components: + - type: Transform + pos: -8.5,29.5 + parent: 33 - uid: 29574 components: - type: Transform @@ -77093,6 +77835,20 @@ entities: - type: Transform pos: 59.5,68.5 parent: 33 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 30934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.406418,64.49569 + parent: 33 + - uid: 30938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.593918,64.662476 + parent: 33 - proto: EmergencyOxygenTankFilled entities: - uid: 27637 @@ -77105,6 +77861,18 @@ entities: - type: Transform pos: 52.670948,9.575715 parent: 33 + - uid: 30936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.604332,65.621475 + parent: 33 + - uid: 30937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.448082,65.517235 + parent: 33 - proto: EmergencyRollerBed entities: - uid: 22128 @@ -77770,8 +78538,6 @@ entities: - 29744 - 25775 - 27330 - - type: AtmosDevice - joinedGrid: 33 - uid: 232 components: - type: Transform @@ -77788,8 +78554,6 @@ entities: - 7930 - 29745 - 29744 - - type: AtmosDevice - joinedGrid: 33 - uid: 233 components: - type: Transform @@ -77805,8 +78569,6 @@ entities: - 2537 - 7141 - 25797 - - type: AtmosDevice - joinedGrid: 33 - uid: 352 components: - type: Transform @@ -77832,8 +78594,6 @@ entities: - 16358 - 16357 - 16356 - - type: AtmosDevice - joinedGrid: 33 - uid: 366 components: - type: Transform @@ -77845,8 +78605,6 @@ entities: - 29546 - 29543 - 29544 - - type: AtmosDevice - joinedGrid: 33 - uid: 481 components: - type: Transform @@ -77872,8 +78630,6 @@ entities: - 10856 - 28410 - 25513 - - type: AtmosDevice - joinedGrid: 33 - uid: 542 components: - type: Transform @@ -77892,8 +78648,6 @@ entities: - 25730 - 25752 - 29042 - - type: AtmosDevice - joinedGrid: 33 - uid: 573 components: - type: Transform @@ -77920,15 +78674,11 @@ entities: - 25729 - 25718 - 25726 - - type: AtmosDevice - joinedGrid: 33 - uid: 1045 components: - type: Transform pos: -16.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 4439 components: - type: Transform @@ -77939,8 +78689,6 @@ entities: devices: - 25717 - 29042 - - type: AtmosDevice - joinedGrid: 33 - uid: 12840 components: - type: Transform @@ -77954,8 +78702,6 @@ entities: - 24277 - 25703 - 28431 - - type: AtmosDevice - joinedGrid: 33 - uid: 15225 components: - type: Transform @@ -77985,8 +78731,6 @@ entities: - 3256 - 25476 - 26153 - - type: AtmosDevice - joinedGrid: 33 - uid: 21517 components: - type: Transform @@ -78002,8 +78746,6 @@ entities: - 25608 - 28494 - 30530 - - type: AtmosDevice - joinedGrid: 33 - uid: 24154 components: - type: Transform @@ -78014,8 +78756,6 @@ entities: devices: - 24250 - 24260 - - type: AtmosDevice - joinedGrid: 33 - uid: 24261 components: - type: Transform @@ -78047,8 +78787,6 @@ entities: - 10937 - 3238 - 3257 - - type: AtmosDevice - joinedGrid: 33 - uid: 24276 components: - type: Transform @@ -78067,8 +78805,6 @@ entities: - 10872 - 10831 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 24397 components: - type: Transform @@ -78094,30 +78830,6 @@ entities: - 25782 - 25809 - 25808 - - type: AtmosDevice - joinedGrid: 33 - - uid: 24672 - components: - - type: Transform - pos: -9.5,40.5 - parent: 33 - - type: DeviceList - devices: - - 25690 - - 24271 - - 27237 - - 25887 - - 25885 - - 25889 - - 25890 - - 25880 - - 10885 - - 24265 - - 24264 - - 25877 - - 24263 - - type: AtmosDevice - joinedGrid: 33 - uid: 24684 components: - type: Transform @@ -78145,8 +78857,6 @@ entities: - 28391 - 28390 - 28394 - - type: AtmosDevice - joinedGrid: 33 - uid: 25325 components: - type: Transform @@ -78170,8 +78880,6 @@ entities: - 2079 - 28395 - 2134 - - type: AtmosDevice - joinedGrid: 33 - uid: 25525 components: - type: Transform @@ -78187,8 +78895,6 @@ entities: - 24270 - 24256 - 24257 - - type: AtmosDevice - joinedGrid: 33 - uid: 25527 components: - type: Transform @@ -78204,8 +78910,6 @@ entities: - 24250 - 24259 - 24258 - - type: AtmosDevice - joinedGrid: 33 - uid: 25529 components: - type: Transform @@ -78235,8 +78939,6 @@ entities: - 10958 - 28450 - 10947 - - type: AtmosDevice - joinedGrid: 33 - uid: 25537 components: - type: Transform @@ -78256,8 +78958,6 @@ entities: - 28503 - 28500 - 28501 - - type: AtmosDevice - joinedGrid: 33 - uid: 25542 components: - type: Transform @@ -78274,8 +78974,6 @@ entities: - 21648 - 21649 - 25543 - - type: AtmosDevice - joinedGrid: 33 - uid: 25548 components: - type: Transform @@ -78289,8 +78987,6 @@ entities: - 27557 - 28510 - 28511 - - type: AtmosDevice - joinedGrid: 33 - uid: 25551 components: - type: Transform @@ -78306,8 +79002,6 @@ entities: - 27558 - 25559 - 27556 - - type: AtmosDevice - joinedGrid: 33 - uid: 25569 components: - type: Transform @@ -78319,8 +79013,6 @@ entities: - 25585 - 28511 - 25495 - - type: AtmosDevice - joinedGrid: 33 - uid: 25571 components: - type: Transform @@ -78331,8 +79023,6 @@ entities: - 25582 - 25575 - 4156 - - type: AtmosDevice - joinedGrid: 33 - uid: 25578 components: - type: Transform @@ -78360,8 +79050,6 @@ entities: - 25351 - 5039 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 25587 components: - type: Transform @@ -78378,8 +79066,6 @@ entities: - 25575 - 4156 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 25589 components: - type: Transform @@ -78395,8 +79081,6 @@ entities: - 21645 - 21644 - 25593 - - type: AtmosDevice - joinedGrid: 33 - uid: 25596 components: - type: Transform @@ -78406,8 +79090,6 @@ entities: devices: - 25597 - 25594 - - type: AtmosDevice - joinedGrid: 33 - uid: 25623 components: - type: Transform @@ -78418,8 +79100,6 @@ entities: devices: - 25610 - 25598 - - type: AtmosDevice - joinedGrid: 33 - uid: 25627 components: - type: Transform @@ -78433,8 +79113,6 @@ entities: - 28499 - 28498 - 28497 - - type: AtmosDevice - joinedGrid: 33 - uid: 25638 components: - type: Transform @@ -78453,8 +79131,6 @@ entities: - 25604 - 25614 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 25640 components: - type: Transform @@ -78470,8 +79146,6 @@ entities: - 306 - 304 - 25621 - - type: AtmosDevice - joinedGrid: 33 - uid: 25661 components: - type: Transform @@ -78487,8 +79161,6 @@ entities: - 28434 - 25500 - 25593 - - type: AtmosDevice - joinedGrid: 33 - uid: 25663 components: - type: Transform @@ -78501,8 +79173,6 @@ entities: - 25501 - 25659 - 25647 - - type: AtmosDevice - joinedGrid: 33 - uid: 25665 components: - type: Transform @@ -78519,8 +79189,6 @@ entities: - 25656 - 25652 - 10931 - - type: AtmosDevice - joinedGrid: 33 - uid: 25667 components: - type: Transform @@ -78531,8 +79199,6 @@ entities: devices: - 28433 - 25656 - - type: AtmosDevice - joinedGrid: 33 - uid: 25669 components: - type: Transform @@ -78550,8 +79216,6 @@ entities: - 10931 - 25655 - 10912 - - type: AtmosDevice - joinedGrid: 33 - uid: 25671 components: - type: Transform @@ -78564,8 +79228,6 @@ entities: - 10908 - 25652 - 10912 - - type: AtmosDevice - joinedGrid: 33 - uid: 25673 components: - type: Transform @@ -78598,8 +79260,6 @@ entities: - 10911 - 25749 - 25750 - - type: AtmosDevice - joinedGrid: 33 - uid: 25680 components: - type: Transform @@ -78626,8 +79286,6 @@ entities: - 10958 - 10959 - 10960 - - type: AtmosDevice - joinedGrid: 33 - uid: 25685 components: - type: Transform @@ -78642,8 +79300,6 @@ entities: - 25690 - 25689 - 25686 - - type: AtmosDevice - joinedGrid: 33 - uid: 25692 components: - type: Transform @@ -78674,8 +79330,6 @@ entities: - 10903 - 25682 - 25758 - - type: AtmosDevice - joinedGrid: 33 - uid: 25695 components: - type: Transform @@ -78687,8 +79341,6 @@ entities: - 25687 - 25690 - 25688 - - type: AtmosDevice - joinedGrid: 33 - uid: 25697 components: - type: Transform @@ -78706,8 +79358,6 @@ entities: - 10906 - 25655 - 10908 - - type: AtmosDevice - joinedGrid: 33 - uid: 25702 components: - type: Transform @@ -78726,8 +79376,6 @@ entities: - 25699 - 10906 - 10907 - - type: AtmosDevice - joinedGrid: 33 - uid: 25706 components: - type: Transform @@ -78742,8 +79390,6 @@ entities: - 25704 - 25703 - 21651 - - type: AtmosDevice - joinedGrid: 33 - uid: 25711 components: - type: Transform @@ -78753,8 +79399,6 @@ entities: devices: - 25708 - 10897 - - type: AtmosDevice - joinedGrid: 33 - uid: 25713 components: - type: Transform @@ -78771,8 +79415,6 @@ entities: - 10897 - 25703 - 21651 - - type: AtmosDevice - joinedGrid: 33 - uid: 25734 components: - type: Transform @@ -78783,8 +79425,6 @@ entities: - 25716 - 25717 - 25729 - - type: AtmosDevice - joinedGrid: 33 - uid: 25739 components: - type: Transform @@ -78801,8 +79441,6 @@ entities: - 25716 - 10899 - 10900 - - type: AtmosDevice - joinedGrid: 33 - uid: 25743 components: - type: Transform @@ -78813,8 +79451,6 @@ entities: - 25716 - 25717 - 25727 - - type: AtmosDevice - joinedGrid: 33 - uid: 25746 components: - type: Transform @@ -78824,8 +79460,6 @@ entities: devices: - 25728 - 25723 - - type: AtmosDevice - joinedGrid: 33 - uid: 25747 components: - type: Transform @@ -78839,8 +79473,6 @@ entities: - 400 - 25784 - 324 - - type: AtmosDevice - joinedGrid: 33 - uid: 25754 components: - type: Transform @@ -78852,8 +79484,6 @@ entities: - 21658 - 25752 - 25505 - - type: AtmosDevice - joinedGrid: 33 - uid: 25756 components: - type: Transform @@ -78862,8 +79492,6 @@ entities: - type: DeviceList devices: - 17792 - - type: AtmosDevice - joinedGrid: 33 - uid: 25760 components: - type: Transform @@ -78879,8 +79507,6 @@ entities: - 25510 - 21655 - 21654 - - type: AtmosDevice - joinedGrid: 33 - uid: 25762 components: - type: Transform @@ -78896,8 +79522,6 @@ entities: - 28418 - 25508 - 25507 - - type: AtmosDevice - joinedGrid: 33 - uid: 25769 components: - type: Transform @@ -78919,8 +79543,6 @@ entities: - 10887 - 10886 - 10863 - - type: AtmosDevice - joinedGrid: 33 - uid: 25790 components: - type: Transform @@ -78936,8 +79558,6 @@ entities: - 10865 - 10811 - 10856 - - type: AtmosDevice - joinedGrid: 33 - uid: 25803 components: - type: Transform @@ -78955,8 +79575,6 @@ entities: - 25774 - 13028 - 25302 - - type: AtmosDevice - joinedGrid: 33 - uid: 25805 components: - type: Transform @@ -78968,8 +79586,6 @@ entities: - 28414 - 25779 - 25796 - - type: AtmosDevice - joinedGrid: 33 - uid: 25811 components: - type: Transform @@ -79006,8 +79622,6 @@ entities: - 10852 - 10853 - 10854 - - type: AtmosDevice - joinedGrid: 33 - uid: 25821 components: - type: Transform @@ -79027,8 +79641,6 @@ entities: - 10809 - 28410 - 25515 - - type: AtmosDevice - joinedGrid: 33 - uid: 25823 components: - type: Transform @@ -79057,8 +79669,6 @@ entities: - 10887 - 10886 - 10863 - - type: AtmosDevice - joinedGrid: 33 - uid: 25829 components: - type: Transform @@ -79072,8 +79682,6 @@ entities: - 10843 - 28401 - 25518 - - type: AtmosDevice - joinedGrid: 33 - uid: 25838 components: - type: Transform @@ -79110,8 +79718,6 @@ entities: - 25839 - 2503 - 2502 - - type: AtmosDevice - joinedGrid: 33 - uid: 25842 components: - type: Transform @@ -79129,8 +79735,6 @@ entities: - 28399 - 2503 - 2502 - - type: AtmosDevice - joinedGrid: 33 - uid: 25848 components: - type: Transform @@ -79144,8 +79748,6 @@ entities: - 10844 - 28401 - 25849 - - type: AtmosDevice - joinedGrid: 33 - uid: 25853 components: - type: Transform @@ -79168,8 +79770,6 @@ entities: - 8178 - 13761 - 2940 - - type: AtmosDevice - joinedGrid: 33 - uid: 25876 components: - type: Transform @@ -79205,9 +79805,27 @@ entities: - 10874 - 10875 - 10876 - - type: AtmosDevice - joinedGrid: 33 - - uid: 25896 + - uid: 25885 + components: + - type: Transform + pos: -9.5,40.5 + parent: 33 + - type: DeviceList + devices: + - 25877 + - 24263 + - 25690 + - 24271 + - 27237 + - 25887 + - 25883 + - 25889 + - 25890 + - 25880 + - 10885 + - 24265 + - 24264 + - uid: 25895 components: - type: Transform rot: -1.5707963267948966 rad @@ -79215,19 +79833,17 @@ entities: parent: 33 - type: DeviceList devices: - - 25879 - - 25890 - - 25889 - - 25884 - - 25891 - 27237 - 25888 - 25882 - 25893 - 25881 - 25892 - - type: AtmosDevice - joinedGrid: 33 + - 25884 + - 25891 + - 25879 + - 25890 + - 25889 - uid: 25898 components: - type: Transform @@ -79240,8 +79856,6 @@ entities: - 25877 - 12796 - 11410 - - type: AtmosDevice - joinedGrid: 33 - uid: 25900 components: - type: Transform @@ -79255,8 +79869,6 @@ entities: - 25877 - 4518 - 10868 - - type: AtmosDevice - joinedGrid: 33 - uid: 25902 components: - type: Transform @@ -79270,8 +79882,6 @@ entities: - 25883 - 25891 - 3002 - - type: AtmosDevice - joinedGrid: 33 - uid: 26797 components: - type: Transform @@ -79283,8 +79893,6 @@ entities: - 21649 - 21648 - 26808 - - type: AtmosDevice - joinedGrid: 33 - uid: 27240 components: - type: Transform @@ -79298,8 +79906,6 @@ entities: - 21656 - 21650 - 21658 - - type: AtmosDevice - joinedGrid: 33 - uid: 27550 components: - type: Transform @@ -79310,8 +79916,6 @@ entities: devices: - 27547 - 27558 - - type: AtmosDevice - joinedGrid: 33 - uid: 28397 components: - type: Transform @@ -79329,8 +79933,6 @@ entities: - 27157 - 27154 - 27155 - - type: AtmosDevice - joinedGrid: 33 - uid: 28403 components: - type: Transform @@ -79346,8 +79948,6 @@ entities: - 16359 - 25861 - 13771 - - type: AtmosDevice - joinedGrid: 33 - uid: 28406 components: - type: Transform @@ -79360,8 +79960,6 @@ entities: - 13771 - 25856 - 16360 - - type: AtmosDevice - joinedGrid: 33 - uid: 28409 components: - type: Transform @@ -79374,8 +79972,6 @@ entities: - 28400 - 28401 - 28407 - - type: AtmosDevice - joinedGrid: 33 - uid: 28417 components: - type: Transform @@ -79407,8 +80003,6 @@ entities: - 28410 - 25511 - 25512 - - type: AtmosDevice - joinedGrid: 33 - uid: 28420 components: - type: Transform @@ -79426,8 +80020,6 @@ entities: - 10818 - 28410 - 25514 - - type: AtmosDevice - joinedGrid: 33 - uid: 28423 components: - type: Transform @@ -79440,8 +80032,6 @@ entities: - 199 - 25771 - 10818 - - type: AtmosDevice - joinedGrid: 33 - uid: 28425 components: - type: Transform @@ -79454,8 +80044,6 @@ entities: - 28429 - 25699 - 28432 - - type: AtmosDevice - joinedGrid: 33 - uid: 28426 components: - type: Transform @@ -79473,8 +80061,6 @@ entities: - 25704 - 25718 - 28431 - - type: AtmosDevice - joinedGrid: 33 - uid: 28447 components: - type: Transform @@ -79510,8 +80096,6 @@ entities: - 28394 - 25476 - 26153 - - type: AtmosDevice - joinedGrid: 33 - uid: 28453 components: - type: Transform @@ -79523,8 +80107,6 @@ entities: - 10946 - 28450 - 28451 - - type: AtmosDevice - joinedGrid: 33 - uid: 28455 components: - type: Transform @@ -79536,8 +80118,6 @@ entities: - 10945 - 25616 - 28456 - - type: AtmosDevice - joinedGrid: 33 - uid: 28461 components: - type: Transform @@ -79555,8 +80135,6 @@ entities: - 28473 - 25616 - 25604 - - type: AtmosDevice - joinedGrid: 33 - uid: 28462 components: - type: Transform @@ -79573,25 +80151,6 @@ entities: - 25613 - 28468 - 28467 - - type: AtmosDevice - joinedGrid: 33 - - uid: 28464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,18.5 - parent: 33 - - type: DeviceList - devices: - - 28434 - - 28477 - - 25621 - - 306 - - 304 - - 28458 - - 28466 - - type: AtmosDevice - joinedGrid: 33 - uid: 28470 components: - type: Transform @@ -79607,8 +80166,6 @@ entities: - 28434 - 5192 - 30529 - - type: AtmosDevice - joinedGrid: 33 - uid: 28488 components: - type: Transform @@ -79621,8 +80178,6 @@ entities: - 28473 - 25616 - 28459 - - type: AtmosDevice - joinedGrid: 33 - uid: 28490 components: - type: Transform @@ -79641,8 +80196,6 @@ entities: - 25677 - 10952 - 5192 - - type: AtmosDevice - joinedGrid: 33 - uid: 28496 components: - type: Transform @@ -79654,8 +80207,6 @@ entities: - 25610 - 28494 - 1751 - - type: AtmosDevice - joinedGrid: 33 - uid: 28505 components: - type: Transform @@ -79669,8 +80220,6 @@ entities: - 28500 - 28394 - 28504 - - type: AtmosDevice - joinedGrid: 33 - uid: 28508 components: - type: Transform @@ -79687,8 +80236,6 @@ entities: - 25678 - 10949 - 10948 - - type: AtmosDevice - joinedGrid: 33 - uid: 28514 components: - type: Transform @@ -79703,8 +80250,6 @@ entities: - 25677 - 10950 - 10951 - - type: AtmosDevice - joinedGrid: 33 - uid: 28520 components: - type: Transform @@ -79719,8 +80264,6 @@ entities: - 28516 - 25566 - 25585 - - type: AtmosDevice - joinedGrid: 33 - uid: 28524 components: - type: Transform @@ -79737,8 +80280,6 @@ entities: - 25348 - 28522 - 12704 - - type: AtmosDevice - joinedGrid: 33 - uid: 28731 components: - type: Transform @@ -79755,16 +80296,12 @@ entities: - 25555 - 25554 - 5421 - - type: AtmosDevice - joinedGrid: 33 - uid: 29556 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29559 components: - type: Transform @@ -79784,8 +80321,20 @@ entities: - 29557 - 11900 - 12670 - - type: AtmosDevice - joinedGrid: 33 + - uid: 30901 + components: + - type: Transform + pos: -42.5,22.5 + parent: 33 + - type: DeviceList + devices: + - 28434 + - 28477 + - 25621 + - 306 + - 304 + - 28458 + - 28466 - proto: FireAlarmElectronics entities: - uid: 682 @@ -80060,6 +80609,9 @@ entities: - type: Transform pos: -15.5,68.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - uid: 25767 components: - type: Transform @@ -80075,11 +80627,19 @@ entities: - type: Transform pos: -11.5,46.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 25888 components: - type: Transform pos: 0.5,35.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25894 components: - type: Transform @@ -80110,6 +80670,10 @@ entities: - type: Transform pos: -39.5,20.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 28504 components: - type: Transform @@ -80353,6 +80917,10 @@ entities: - type: Transform pos: -41.5,13.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 305 components: - type: Transform @@ -80363,6 +80931,10 @@ entities: - type: Transform pos: -43.5,13.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 324 components: - type: Transform @@ -80728,6 +81300,10 @@ entities: - type: Transform pos: -13.5,37.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 10886 components: - type: Transform @@ -81148,21 +81724,37 @@ entities: - type: Transform pos: -17.5,24.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 24264 components: - type: Transform pos: -15.5,34.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 24265 components: - type: Transform pos: -15.5,35.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 24271 components: - type: Transform pos: -20.5,40.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 - uid: 24277 components: - type: Transform @@ -81381,26 +81973,50 @@ entities: - type: Transform pos: -6.5,38.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 + - 25895 + - 24672 - uid: 25890 components: - type: Transform pos: -8.5,40.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25885 + - 24671 + - 25895 + - 24672 - uid: 25891 components: - type: Transform pos: -5.5,35.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25892 components: - type: Transform pos: -4.5,30.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 25893 components: - type: Transform pos: -1.5,30.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 25895 + - 24672 - uid: 26153 components: - type: Transform @@ -81567,6 +82183,10 @@ entities: - type: Transform pos: -45.5,15.5 parent: 33 + - type: DeviceNetwork + deviceLists: + - 30900 + - 30901 - uid: 28467 components: - type: Transform @@ -82852,7 +83472,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 50 name: null @@ -83569,6 +84188,14 @@ entities: - type: Transform pos: 37.97196,14.448521 parent: 33 +- proto: FoodPoppy + entities: + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.524541,8.770387 + parent: 33 - proto: FoodPotato entities: - uid: 16409 @@ -83800,8 +84427,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10077 @@ -83810,16 +84435,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18283 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 19701 @@ -83827,8 +84448,6 @@ entities: - type: Transform pos: 54.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 19702 @@ -83836,8 +84455,6 @@ entities: - type: Transform pos: 54.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 24337 @@ -83846,16 +84463,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28605 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28736 @@ -83864,8 +84477,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - proto: GasFilterFlipped @@ -83876,8 +84487,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 8745 @@ -83886,8 +84495,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9924 @@ -83896,8 +84503,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9945 @@ -83906,8 +84511,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10070 @@ -83916,16 +84519,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10073 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10074 @@ -83934,8 +84533,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10323 @@ -83944,8 +84541,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 10324 @@ -83954,8 +84549,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 11895 @@ -83964,8 +84557,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18176 @@ -83974,8 +84565,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 18271 @@ -83984,8 +84573,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 19441 @@ -83994,8 +84581,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24776 @@ -84004,8 +84589,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 25925 @@ -84013,8 +84596,6 @@ entities: - type: Transform pos: 61.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 25939 @@ -84022,16 +84603,12 @@ entities: - type: Transform pos: 61.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28643 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28644 @@ -84039,8 +84616,6 @@ entities: - type: Transform pos: 65.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasMinerCarbonDioxide @@ -84050,8 +84625,6 @@ entities: - type: Transform pos: 39.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerNitrogenStationLarge entities: - uid: 8673 @@ -84059,8 +84632,6 @@ entities: - type: Transform pos: 29.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerOxygenStationLarge entities: - uid: 8674 @@ -84068,8 +84639,6 @@ entities: - type: Transform pos: 31.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMinerWaterVapor entities: - uid: 8676 @@ -84077,8 +84646,6 @@ entities: - type: Transform pos: 37.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasMixer entities: - uid: 9929 @@ -84087,8 +84654,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - uid: 10033 @@ -84097,16 +84662,12 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10069 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 10071 @@ -84115,8 +84676,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 10146 @@ -84125,8 +84684,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - proto: GasMixerFlipped @@ -84137,8 +84694,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 10031 @@ -84147,24 +84702,18 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10497 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19447 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 20000 @@ -84173,16 +84722,12 @@ entities: rot: 3.141592653589793 rad pos: 50.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25301 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 25416 @@ -84191,8 +84736,6 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 25417 @@ -84201,8 +84744,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27644 @@ -84211,8 +84752,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 27645 @@ -84221,8 +84760,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 28694 @@ -84231,8 +84768,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 29649 @@ -84240,8 +84775,6 @@ entities: - type: Transform pos: 62.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasOutletInjector entities: - uid: 5081 @@ -84250,23 +84783,17 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5405 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8665 components: - type: Transform pos: 29.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF6666FF' - uid: 8666 @@ -84274,8 +84801,6 @@ entities: - type: Transform pos: 31.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#33FFFFFF' - uid: 8667 @@ -84283,8 +84808,6 @@ entities: - type: Transform pos: 33.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 8668 @@ -84292,15 +84815,11 @@ entities: - type: Transform pos: 35.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8669 components: - type: Transform pos: 37.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 8670 @@ -84308,8 +84827,6 @@ entities: - type: Transform pos: 39.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 8671 @@ -84317,8 +84834,6 @@ entities: - type: Transform pos: 41.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 10129 @@ -84326,15 +84841,11 @@ entities: - type: Transform pos: 52.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10130 components: - type: Transform pos: 50.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#999900FF' - uid: 27018 @@ -84343,8 +84854,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28266 @@ -84353,15 +84862,11 @@ entities: rot: 3.141592653589793 rad pos: -100.5,-77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29653 components: - type: Transform pos: 62.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPassiveGate entities: - uid: 5400 @@ -84369,8 +84874,6 @@ entities: - type: Transform pos: -12.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 8631 @@ -84379,8 +84882,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 11406 @@ -84389,8 +84890,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 18559 @@ -84399,8 +84898,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20767 @@ -84409,8 +84906,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21078 @@ -84419,8 +84914,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24137 @@ -84429,8 +84922,6 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 25573 @@ -84439,8 +84930,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27016 @@ -84449,8 +84938,6 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasPassiveVent @@ -84461,15 +84948,11 @@ entities: rot: 1.5707963267948966 rad pos: -82.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8672 components: - type: Transform pos: 43.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9043 @@ -84478,8 +84961,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF6666FF' - uid: 9044 @@ -84488,8 +84969,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#33FFFFFF' - uid: 9045 @@ -84498,8 +84977,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 9046 @@ -84508,16 +84985,12 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9047 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 9048 @@ -84526,8 +84999,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 9049 @@ -84536,8 +85007,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 9050 @@ -84546,8 +85015,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10094 @@ -84556,8 +85023,6 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16180 @@ -84566,8 +85031,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,-13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 25427 @@ -84576,16 +85039,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 27882 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28267 @@ -84594,23 +85053,17 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28742 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29073 components: - type: Transform pos: 48.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29074 @@ -84618,8 +85071,6 @@ entities: - type: Transform pos: 49.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29075 @@ -84627,8 +85078,6 @@ entities: - type: Transform pos: 50.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29076 @@ -84636,8 +85085,6 @@ entities: - type: Transform pos: 51.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29077 @@ -84645,8 +85092,6 @@ entities: - type: Transform pos: 52.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29078 @@ -84654,8 +85099,6 @@ entities: - type: Transform pos: 53.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29079 @@ -84663,8 +85106,6 @@ entities: - type: Transform pos: 54.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 29176 @@ -84673,8 +85114,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29640 @@ -84682,15 +85121,11 @@ entities: - type: Transform pos: 64.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29641 components: - type: Transform pos: 63.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPipeBend entities: - uid: 1564 @@ -114997,20 +115432,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#99CCFFFF' - - uid: 29134 - components: - - type: Transform - pos: 81.5,59.5 - parent: 33 - - type: AtmosPipeColor - color: '#99CCFFFF' - - uid: 29135 - components: - - type: Transform - pos: 81.5,60.5 - parent: 33 - - type: AtmosPipeColor - color: '#99CCFFFF' - uid: 29136 components: - type: Transform @@ -115046,20 +115467,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#99CCFFFF' - - uid: 29141 - components: - - type: Transform - pos: 78.5,59.5 - parent: 33 - - type: AtmosPipeColor - color: '#99CCFFFF' - - uid: 29142 - components: - - type: Transform - pos: 77.5,59.5 - parent: 33 - - type: AtmosPipeColor - color: '#99CCFFFF' - uid: 29143 components: - type: Transform @@ -115088,13 +115495,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#99CCFFFF' - - uid: 29147 - components: - - type: Transform - pos: 75.5,60.5 - parent: 33 - - type: AtmosPipeColor - color: '#99CCFFFF' - uid: 29148 components: - type: Transform @@ -119898,85 +120298,63 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 1824 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 4641 components: - type: Transform pos: -55.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5408 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5465 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7916 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7923 components: - type: Transform pos: 53.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9922 components: - type: Transform pos: 42.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 9956 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9957 @@ -119985,8 +120363,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10027 @@ -119995,32 +120371,24 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10028 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10062 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10083 @@ -120028,31 +120396,23 @@ entities: - type: Transform pos: 56.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10145 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10150 components: - type: Transform pos: 33.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10153 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 10199 @@ -120060,24 +120420,18 @@ entities: - type: Transform pos: 32.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 12636 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 13227 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 18910 @@ -120086,45 +120440,33 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19679 components: - type: Transform pos: 55.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19703 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 20745 components: - type: Transform pos: -66.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25151 components: - type: Transform pos: 50.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25907 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25910 @@ -120133,101 +120475,75 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28170 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28611 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28640 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28645 components: - type: Transform pos: 52.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28672 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28745 components: - type: Transform pos: 61.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28784 components: - type: Transform pos: 59.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29642 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29643 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29650 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29651 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29719 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29720 @@ -120236,8 +120552,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29736 @@ -120246,8 +120560,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 30463 @@ -120256,16 +120568,12 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30464 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasPressurePump entities: - uid: 1047 @@ -120274,8 +120582,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1796 @@ -120284,8 +120590,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5397 @@ -120294,23 +120598,17 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7914 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 7941 components: - type: Transform pos: 31.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 8604 @@ -120319,8 +120617,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 9925 @@ -120329,8 +120625,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 9980 @@ -120339,8 +120633,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,61.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 10075 @@ -120349,23 +120641,17 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10143 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11896 components: - type: Transform pos: 32.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 12562 @@ -120373,8 +120659,6 @@ entities: - type: Transform pos: 30.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 13256 @@ -120382,8 +120666,6 @@ entities: - type: Transform pos: 42.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 13413 @@ -120391,8 +120673,6 @@ entities: - type: Transform pos: 34.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 13418 @@ -120400,15 +120680,11 @@ entities: - type: Transform pos: 36.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 13419 components: - type: Transform pos: 38.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 13422 @@ -120416,8 +120692,6 @@ entities: - type: Transform pos: 40.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 25286 @@ -120425,8 +120699,6 @@ entities: - type: Transform pos: 54.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9933FF' - uid: 25303 @@ -120434,8 +120706,6 @@ entities: - type: Transform pos: 44.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26002 @@ -120443,8 +120713,6 @@ entities: - type: Transform pos: 61.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28262 @@ -120453,23 +120721,17 @@ entities: rot: -1.5707963267948966 rad pos: -99.5,-74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28270 components: - type: Transform pos: -101.5,-78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28535 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 28786 @@ -120477,8 +120739,6 @@ entities: - type: Transform pos: 59.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29646 @@ -120486,15 +120746,11 @@ entities: - type: Transform pos: 63.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29647 components: - type: Transform pos: 64.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: GasRecycler entities: - uid: 10200 @@ -120502,8 +120758,6 @@ entities: - type: Transform pos: 37.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - proto: GasRecyclerMachineCircuitboard @@ -120521,15 +120775,11 @@ entities: - type: Transform pos: -77.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10476 components: - type: Transform pos: 41.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 12590 components: - type: Transform @@ -120537,8 +120787,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF1212FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 18173 components: - type: Transform @@ -120547,8 +120795,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 33 - uid: 19998 components: - type: Transform @@ -120557,8 +120803,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#999900FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 25988 components: - type: Transform @@ -120567,8 +120811,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF9933FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 29204 components: - type: Transform @@ -120577,8 +120819,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#0335FCFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineFreezerEnabled entities: - uid: 16527 @@ -120590,8 +120830,6 @@ entities: targetTemperature: 249.82 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 33 - uid: 20747 components: - type: Transform @@ -120601,8 +120839,6 @@ entities: targetTemperature: 249.8167 - type: AtmosPipeColor color: '#66B2FFFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineHeater entities: - uid: 10038 @@ -120612,8 +120848,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#66FF66FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 10147 components: - type: Transform @@ -120622,15 +120856,11 @@ entities: parent: 33 - type: AtmosPipeColor color: '#999900FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 16594 components: - type: Transform pos: -78.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 25986 components: - type: Transform @@ -120639,16 +120869,12 @@ entities: parent: 33 - type: AtmosPipeColor color: '#FF9933FF' - - type: AtmosDevice - joinedGrid: 33 - uid: 29652 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29692 components: - type: Transform @@ -120657,8 +120883,6 @@ entities: parent: 33 - type: AtmosPipeColor color: '#9933FFFF' - - type: AtmosDevice - joinedGrid: 33 - proto: GasThermoMachineHeaterEnabled entities: - uid: 18906 @@ -120670,8 +120894,6 @@ entities: targetTemperature: 310 - type: AtmosPipeColor color: '#FFFF66FF' - - type: AtmosDevice - joinedGrid: 33 - type: ActiveUserInterface - proto: GasValve entities: @@ -120683,8 +120905,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 7959 @@ -120695,8 +120915,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 8703 @@ -120706,8 +120924,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 9923 @@ -120718,8 +120934,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 10049 @@ -120730,8 +120944,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 10050 @@ -120742,8 +120954,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 10051 @@ -120752,8 +120962,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#808080FF' - uid: 10067 @@ -120764,8 +120972,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 10781 @@ -120774,8 +120980,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12907 @@ -120784,8 +120988,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 13257 @@ -120793,8 +120995,6 @@ entities: - type: Transform pos: 31.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 13480 @@ -120804,8 +121004,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF9999FF' - uid: 19448 @@ -120813,8 +121011,6 @@ entities: - type: Transform pos: 32.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#00FFFFFF' - uid: 19993 @@ -120824,8 +121020,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 20124 @@ -120834,8 +121028,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 23885 @@ -120843,8 +121035,6 @@ entities: - type: Transform pos: -90.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFFF66FF' - uid: 27014 @@ -120855,8 +121045,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27634 @@ -120866,8 +121054,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 27646 @@ -120875,8 +121061,6 @@ entities: - type: Transform pos: 35.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF66FFFF' - uid: 28636 @@ -120885,8 +121069,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 28641 @@ -120895,8 +121077,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FFCC99FF' - uid: 28642 @@ -120907,8 +121087,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF007FFF' - uid: 28698 @@ -120917,8 +121095,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28732 @@ -120928,8 +121104,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28733 @@ -120940,8 +121114,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#9933FFFF' - uid: 28746 @@ -120952,8 +121124,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29175 @@ -120964,8 +121134,6 @@ entities: parent: 33 - type: GasValve open: False - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29718 @@ -120974,8 +121142,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: GasVentPump @@ -120986,8 +121152,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1552 @@ -120996,8 +121160,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 2237 @@ -121009,8 +121171,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3579 @@ -121018,8 +121178,6 @@ entities: - type: Transform pos: -77.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 3583 @@ -121027,8 +121185,6 @@ entities: - type: Transform pos: -81.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5133 @@ -121037,8 +121193,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5144 @@ -121046,8 +121200,6 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5151 @@ -121056,8 +121208,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5152 @@ -121066,8 +121216,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5498 @@ -121075,8 +121223,6 @@ entities: - type: Transform pos: -68.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7559 @@ -121085,8 +121231,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 9378 @@ -121095,8 +121239,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 10080 @@ -121104,8 +121246,6 @@ entities: - type: Transform pos: -23.5,92.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12431 @@ -121114,8 +121254,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12896 @@ -121124,8 +121262,9 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#0335FCFF' - uid: 12908 @@ -121133,8 +121272,6 @@ entities: - type: Transform pos: -3.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 13226 @@ -121143,8 +121280,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13783 @@ -121153,8 +121288,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15192 @@ -121163,8 +121296,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16226 @@ -121173,8 +121304,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16269 @@ -121183,8 +121312,6 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16718 @@ -121193,8 +121320,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 17493 @@ -121203,8 +121328,6 @@ entities: rot: 3.141592653589793 rad pos: -64.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18035 @@ -121213,8 +121336,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18722 @@ -121223,8 +121344,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,95.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19730 @@ -121233,8 +121352,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19792 @@ -121242,8 +121359,6 @@ entities: - type: Transform pos: 11.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19833 @@ -121251,8 +121366,6 @@ entities: - type: Transform pos: 13.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19884 @@ -121260,8 +121373,6 @@ entities: - type: Transform pos: 3.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19929 @@ -121269,8 +121380,6 @@ entities: - type: Transform pos: -3.5,82.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 19986 @@ -121278,8 +121387,6 @@ entities: - type: Transform pos: -14.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20015 @@ -121288,8 +121395,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,89.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20034 @@ -121297,8 +121402,6 @@ entities: - type: Transform pos: -17.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20035 @@ -121307,8 +121410,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,82.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20059 @@ -121317,8 +121418,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,87.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20080 @@ -121327,8 +121426,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20105 @@ -121337,8 +121434,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20106 @@ -121347,8 +121442,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20107 @@ -121357,8 +121450,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,84.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20145 @@ -121367,8 +121458,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20192 @@ -121376,8 +121465,6 @@ entities: - type: Transform pos: -35.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20196 @@ -121385,8 +121472,6 @@ entities: - type: Transform pos: -42.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20200 @@ -121395,8 +121480,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20207 @@ -121404,8 +121487,6 @@ entities: - type: Transform pos: -46.5,79.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20208 @@ -121413,8 +121494,6 @@ entities: - type: Transform pos: -49.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20209 @@ -121423,8 +121502,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20263 @@ -121433,8 +121510,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20288 @@ -121443,8 +121518,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20316 @@ -121452,8 +121525,6 @@ entities: - type: Transform pos: -47.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20343 @@ -121462,8 +121533,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,43.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20355 @@ -121472,8 +121541,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,44.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20439 @@ -121482,8 +121549,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20440 @@ -121492,8 +121557,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20441 @@ -121502,8 +121565,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20470 @@ -121511,8 +121572,6 @@ entities: - type: Transform pos: -56.5,30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20507 @@ -121521,8 +121580,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20508 @@ -121531,8 +121588,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20509 @@ -121540,8 +121595,6 @@ entities: - type: Transform pos: -61.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20510 @@ -121550,8 +121603,6 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20520 @@ -121560,8 +121611,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20554 @@ -121570,8 +121619,6 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20561 @@ -121580,8 +121627,6 @@ entities: rot: 3.141592653589793 rad pos: -32.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20590 @@ -121589,8 +121634,6 @@ entities: - type: Transform pos: -19.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20591 @@ -121599,8 +121642,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20645 @@ -121608,8 +121649,9 @@ entities: - type: Transform pos: -11.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20646 @@ -121618,8 +121660,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66B2FFFF' - uid: 20659 @@ -121628,8 +121668,9 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20665 @@ -121637,8 +121678,9 @@ entities: - type: Transform pos: -7.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20684 @@ -121647,8 +121689,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20707 @@ -121657,8 +121697,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20709 @@ -121667,8 +121705,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20728 @@ -121677,8 +121713,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20819 @@ -121686,8 +121720,6 @@ entities: - type: Transform pos: -89.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20820 @@ -121696,8 +121728,6 @@ entities: rot: 3.141592653589793 rad pos: -90.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20856 @@ -121706,8 +121736,6 @@ entities: rot: -1.5707963267948966 rad pos: -75.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20857 @@ -121715,8 +121743,6 @@ entities: - type: Transform pos: -81.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20860 @@ -121725,8 +121751,6 @@ entities: rot: 3.141592653589793 rad pos: -81.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20951 @@ -121734,8 +121758,6 @@ entities: - type: Transform pos: -91.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20952 @@ -121744,8 +121766,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20953 @@ -121754,8 +121774,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20954 @@ -121764,8 +121782,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20955 @@ -121774,8 +121790,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 20956 @@ -121784,8 +121798,6 @@ entities: rot: -1.5707963267948966 rad pos: -90.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21008 @@ -121794,8 +121806,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21009 @@ -121804,8 +121814,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21042 @@ -121814,8 +121822,6 @@ entities: rot: 3.141592653589793 rad pos: -92.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21081 @@ -121824,8 +121830,6 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21108 @@ -121833,8 +121837,6 @@ entities: - type: Transform pos: -78.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21109 @@ -121842,8 +121844,6 @@ entities: - type: Transform pos: -76.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21131 @@ -121851,8 +121851,6 @@ entities: - type: Transform pos: -84.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21140 @@ -121861,8 +121859,6 @@ entities: rot: 1.5707963267948966 rad pos: -79.5,-17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21207 @@ -121871,8 +121867,6 @@ entities: rot: 1.5707963267948966 rad pos: -91.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21319 @@ -121881,8 +121875,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21338 @@ -121891,8 +121883,6 @@ entities: rot: 3.141592653589793 rad pos: -68.5,-36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21364 @@ -121901,8 +121891,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21368 @@ -121910,8 +121898,6 @@ entities: - type: Transform pos: -69.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21392 @@ -121920,8 +121906,6 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21395 @@ -121929,8 +121913,6 @@ entities: - type: Transform pos: -52.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21456 @@ -121939,8 +121921,6 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21486 @@ -121949,8 +121929,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21497 @@ -121959,8 +121937,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21522 @@ -121969,8 +121945,6 @@ entities: rot: 1.5707963267948966 rad pos: -67.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21589 @@ -121979,8 +121953,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21593 @@ -121989,8 +121961,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21602 @@ -121999,8 +121969,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21619 @@ -122009,8 +121977,6 @@ entities: rot: 3.141592653589793 rad pos: -47.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21641 @@ -122019,8 +121985,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21690 @@ -122029,8 +121993,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,52.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21731 @@ -122038,8 +122000,6 @@ entities: - type: Transform pos: 48.5,37.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21764 @@ -122047,8 +122007,6 @@ entities: - type: Transform pos: 48.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21765 @@ -122057,8 +122015,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21786 @@ -122067,8 +122023,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21828 @@ -122077,8 +122031,6 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21829 @@ -122087,8 +122039,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21898 @@ -122097,8 +122047,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21899 @@ -122107,8 +122055,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21900 @@ -122117,8 +122063,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21901 @@ -122126,8 +122070,6 @@ entities: - type: Transform pos: 27.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21902 @@ -122136,8 +122078,6 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21952 @@ -122146,8 +122086,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22037 @@ -122156,8 +122094,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22096 @@ -122166,8 +122102,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22202 @@ -122176,8 +122110,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22284 @@ -122185,8 +122117,6 @@ entities: - type: Transform pos: 6.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22285 @@ -122195,8 +122125,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22287 @@ -122205,8 +122133,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,45.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22415 @@ -122215,8 +122141,9 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22416 @@ -122224,8 +122151,9 @@ entities: - type: Transform pos: -7.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22417 @@ -122234,8 +122162,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22448 @@ -122244,8 +122170,9 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22458 @@ -122254,8 +122181,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22459 @@ -122264,8 +122189,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22520 @@ -122273,8 +122196,6 @@ entities: - type: Transform pos: 3.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22522 @@ -122283,8 +122204,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22526 @@ -122292,8 +122211,6 @@ entities: - type: Transform pos: -26.5,52.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22537 @@ -122302,8 +122219,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22573 @@ -122312,8 +122227,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22631 @@ -122322,8 +122235,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22663 @@ -122331,8 +122242,6 @@ entities: - type: Transform pos: -25.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22730 @@ -122341,8 +122250,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22731 @@ -122351,8 +122258,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22732 @@ -122360,8 +122265,6 @@ entities: - type: Transform pos: -26.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22743 @@ -122369,8 +122272,6 @@ entities: - type: Transform pos: -18.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22744 @@ -122379,8 +122280,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22747 @@ -122389,8 +122288,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22748 @@ -122399,8 +122296,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22749 @@ -122409,8 +122304,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22750 @@ -122419,8 +122312,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22802 @@ -122429,8 +122320,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22882 @@ -122438,8 +122327,6 @@ entities: - type: Transform pos: -38.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22899 @@ -122448,8 +122335,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 22942 @@ -122458,8 +122343,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23003 @@ -122468,8 +122351,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23027 @@ -122477,8 +122358,6 @@ entities: - type: Transform pos: -52.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23064 @@ -122487,8 +122366,6 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23160 @@ -122496,8 +122373,6 @@ entities: - type: Transform pos: -72.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23161 @@ -122506,8 +122381,6 @@ entities: rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23186 @@ -122515,8 +122388,6 @@ entities: - type: Transform pos: -13.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23187 @@ -122524,8 +122395,9 @@ entities: - type: Transform pos: -17.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23222 @@ -122534,8 +122406,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23223 @@ -122544,8 +122414,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23227 @@ -122554,8 +122422,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23260 @@ -122563,8 +122429,6 @@ entities: - type: Transform pos: -8.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23279 @@ -122573,8 +122437,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23339 @@ -122586,8 +122448,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23358 @@ -122599,8 +122459,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23377 @@ -122609,8 +122467,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23406 @@ -122618,8 +122474,6 @@ entities: - type: Transform pos: -6.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23407 @@ -122628,8 +122482,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23445 @@ -122638,8 +122490,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23475 @@ -122647,8 +122497,6 @@ entities: - type: Transform pos: 19.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23478 @@ -122657,8 +122505,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23479 @@ -122667,8 +122513,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23526 @@ -122676,8 +122520,6 @@ entities: - type: Transform pos: 23.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23527 @@ -122686,8 +122528,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23528 @@ -122696,8 +122536,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23554 @@ -122706,8 +122544,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23615 @@ -122716,8 +122552,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23616 @@ -122725,8 +122559,6 @@ entities: - type: Transform pos: 11.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23617 @@ -122735,8 +122567,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23658 @@ -122745,8 +122575,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23709 @@ -122755,8 +122583,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23813 @@ -122765,8 +122591,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 23929 @@ -122775,8 +122599,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24252 @@ -122785,8 +122607,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24268 @@ -122794,8 +122614,6 @@ entities: - type: Transform pos: 40.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24275 @@ -122804,8 +122622,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24296 @@ -122813,8 +122629,6 @@ entities: - type: Transform pos: -52.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24308 @@ -122823,8 +122637,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24309 @@ -122833,8 +122645,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24373 @@ -122843,8 +122653,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24611 @@ -122853,8 +122661,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24620 @@ -122862,8 +122668,6 @@ entities: - type: Transform pos: -27.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24626 @@ -122871,8 +122675,6 @@ entities: - type: Transform pos: -25.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24643 @@ -122880,8 +122682,6 @@ entities: - type: Transform pos: -23.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24668 @@ -122890,8 +122690,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24677 @@ -122899,8 +122697,6 @@ entities: - type: Transform pos: 32.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 24682 @@ -122909,8 +122705,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25033 @@ -122919,8 +122713,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25140 @@ -122929,8 +122721,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25150 @@ -122938,8 +122728,6 @@ entities: - type: Transform pos: 24.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25581 @@ -122948,8 +122736,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 25924 @@ -122958,8 +122744,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26165 @@ -122968,8 +122752,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 26799 @@ -122978,8 +122760,6 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27072 @@ -122988,8 +122768,6 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27175 @@ -122998,8 +122776,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27235 @@ -123008,8 +122784,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27241 @@ -123018,8 +122792,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27298 @@ -123028,8 +122800,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27543 @@ -123038,8 +122808,6 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27544 @@ -123048,8 +122816,6 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27545 @@ -123057,8 +122823,6 @@ entities: - type: Transform pos: -58.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27546 @@ -123067,8 +122831,6 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27860 @@ -123077,8 +122839,6 @@ entities: rot: 3.141592653589793 rad pos: 51.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27935 @@ -123087,8 +122847,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27936 @@ -123097,8 +122855,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27937 @@ -123106,8 +122862,6 @@ entities: - type: Transform pos: 9.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27970 @@ -123115,8 +122869,6 @@ entities: - type: Transform pos: 10.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27971 @@ -123125,8 +122877,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 27972 @@ -123135,8 +122885,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28203 @@ -123145,8 +122893,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28244 @@ -123155,8 +122901,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28308 @@ -123165,8 +122909,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28438 @@ -123175,8 +122917,9 @@ entities: rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28486 @@ -123184,8 +122927,9 @@ entities: - type: Transform pos: -42.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 30900 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28487 @@ -123194,8 +122938,9 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 30900 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28492 @@ -123204,8 +122949,6 @@ entities: rot: 3.141592653589793 rad pos: -67.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 28974 @@ -123214,8 +122957,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,95.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29088 @@ -123224,8 +122965,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29239 @@ -123234,8 +122973,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29240 @@ -123244,8 +122981,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29264 @@ -123253,8 +122988,6 @@ entities: - type: Transform pos: 34.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29271 @@ -123263,8 +122996,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29272 @@ -123272,8 +123003,6 @@ entities: - type: Transform pos: 45.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29273 @@ -123281,8 +123010,6 @@ entities: - type: Transform pos: 39.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29297 @@ -123291,8 +123018,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 29573 @@ -123300,8 +123025,6 @@ entities: - type: Transform pos: -25.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - uid: 30287 @@ -123310,8 +123033,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -123322,8 +123043,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2222 @@ -123335,8 +123054,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4319 @@ -123344,8 +123061,9 @@ entities: - type: Transform pos: -41.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 30900 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5226 @@ -123354,8 +123072,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5303 @@ -123364,8 +123080,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5307 @@ -123374,8 +123088,6 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5309 @@ -123384,8 +123096,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7206 @@ -123394,8 +123104,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9530 @@ -123404,8 +123112,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9914 @@ -123414,8 +123120,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11041 @@ -123424,8 +123128,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12344 @@ -123433,8 +123135,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12435 @@ -123443,8 +123143,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12895 @@ -123453,8 +123151,9 @@ entities: rot: 3.141592653589793 rad pos: -2.5,45.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14914 @@ -123463,8 +123162,6 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15193 @@ -123473,8 +123170,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15201 @@ -123483,8 +123178,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16218 @@ -123492,8 +123185,6 @@ entities: - type: Transform pos: -82.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16220 @@ -123502,8 +123193,6 @@ entities: rot: 1.5707963267948966 rad pos: -83.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16687 @@ -123512,8 +123201,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18036 @@ -123522,8 +123209,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18596 @@ -123532,8 +123217,6 @@ entities: rot: 3.141592653589793 rad pos: -63.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18726 @@ -123541,15 +123224,11 @@ entities: - type: Transform pos: -27.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 19722 components: - type: Transform pos: 23.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19744 @@ -123558,8 +123237,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19793 @@ -123567,8 +123244,6 @@ entities: - type: Transform pos: 12.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19832 @@ -123576,8 +123251,6 @@ entities: - type: Transform pos: 14.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19883 @@ -123585,8 +123258,6 @@ entities: - type: Transform pos: 4.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19934 @@ -123594,8 +123265,6 @@ entities: - type: Transform pos: -4.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 19985 @@ -123603,8 +123272,6 @@ entities: - type: Transform pos: -13.5,96.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20002 @@ -123613,8 +123280,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20012 @@ -123622,8 +123287,6 @@ entities: - type: Transform pos: 41.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20014 @@ -123632,8 +123295,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20036 @@ -123642,8 +123303,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20037 @@ -123651,8 +123310,6 @@ entities: - type: Transform pos: -18.5,88.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20060 @@ -123661,8 +123318,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,86.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20079 @@ -123671,8 +123326,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,85.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20102 @@ -123681,8 +123334,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,83.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20103 @@ -123691,8 +123342,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,80.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20104 @@ -123701,8 +123350,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20176 @@ -123711,8 +123358,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,78.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20191 @@ -123720,8 +123365,6 @@ entities: - type: Transform pos: -37.5,93.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20215 @@ -123730,8 +123373,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20216 @@ -123740,8 +123381,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20217 @@ -123749,8 +123388,6 @@ entities: - type: Transform pos: -44.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20218 @@ -123758,8 +123395,6 @@ entities: - type: Transform pos: -51.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20219 @@ -123768,8 +123403,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20244 @@ -123778,8 +123411,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20262 @@ -123788,8 +123419,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20289 @@ -123798,8 +123427,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,51.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20313 @@ -123807,8 +123434,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20342 @@ -123817,8 +123442,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,43.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20354 @@ -123827,8 +123450,6 @@ entities: rot: 3.141592653589793 rad pos: -46.5,44.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20436 @@ -123837,8 +123458,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20437 @@ -123846,8 +123465,6 @@ entities: - type: Transform pos: -38.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20438 @@ -123856,8 +123473,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20460 @@ -123865,8 +123480,6 @@ entities: - type: Transform pos: -55.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20461 @@ -123875,8 +123488,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20479 @@ -123884,8 +123495,6 @@ entities: - type: Transform pos: -59.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20483 @@ -123894,8 +123503,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20489 @@ -123903,8 +123510,6 @@ entities: - type: Transform pos: -64.5,34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20521 @@ -123913,8 +123518,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20571 @@ -123922,8 +123525,6 @@ entities: - type: Transform pos: -31.5,70.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20572 @@ -123932,8 +123533,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20605 @@ -123941,8 +123540,6 @@ entities: - type: Transform pos: -17.5,75.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20606 @@ -123951,8 +123548,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20608 @@ -123961,8 +123556,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20623 @@ -123971,8 +123564,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20629 @@ -123981,8 +123572,9 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,67.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20630 @@ -123991,8 +123583,9 @@ entities: rot: 3.141592653589793 rad pos: -11.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20631 @@ -124001,8 +123594,9 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 25742 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20692 @@ -124011,8 +123605,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,58.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20706 @@ -124021,8 +123613,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,63.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20708 @@ -124031,8 +123621,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20730 @@ -124041,8 +123629,6 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20842 @@ -124051,8 +123637,6 @@ entities: rot: 3.141592653589793 rad pos: -88.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20843 @@ -124061,8 +123645,6 @@ entities: rot: 3.141592653589793 rad pos: -89.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20855 @@ -124071,8 +123653,6 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20859 @@ -124081,8 +123661,6 @@ entities: rot: 3.141592653589793 rad pos: -82.5,-3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20946 @@ -124091,8 +123669,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20947 @@ -124101,8 +123677,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20948 @@ -124111,8 +123685,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20949 @@ -124121,8 +123693,6 @@ entities: rot: 1.5707963267948966 rad pos: -94.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20950 @@ -124130,8 +123700,6 @@ entities: - type: Transform pos: -90.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20957 @@ -124140,8 +123708,6 @@ entities: rot: 1.5707963267948966 rad pos: -91.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21006 @@ -124150,8 +123716,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21007 @@ -124160,8 +123724,6 @@ entities: rot: 1.5707963267948966 rad pos: -104.5,3.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21043 @@ -124170,8 +123732,6 @@ entities: rot: 1.5707963267948966 rad pos: -93.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21082 @@ -124180,8 +123740,6 @@ entities: rot: 3.141592653589793 rad pos: -83.5,-9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21107 @@ -124189,8 +123747,6 @@ entities: - type: Transform pos: -77.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21110 @@ -124199,8 +123755,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21111 @@ -124209,8 +123763,6 @@ entities: rot: 3.141592653589793 rad pos: -77.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21130 @@ -124219,8 +123771,6 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21187 @@ -124229,8 +123779,6 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21206 @@ -124239,8 +123787,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21320 @@ -124249,8 +123795,6 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21353 @@ -124259,8 +123803,6 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21357 @@ -124269,8 +123811,6 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21358 @@ -124278,8 +123818,6 @@ entities: - type: Transform pos: -68.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21433 @@ -124287,8 +123825,6 @@ entities: - type: Transform pos: -51.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21434 @@ -124297,8 +123833,6 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21457 @@ -124307,8 +123841,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21473 @@ -124317,8 +123849,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-34.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21496 @@ -124327,8 +123857,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21561 @@ -124337,8 +123865,6 @@ entities: rot: 3.141592653589793 rad pos: -59.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21562 @@ -124347,8 +123873,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21588 @@ -124357,8 +123881,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21618 @@ -124366,8 +123888,9 @@ entities: - type: Transform pos: -43.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 30900 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21640 @@ -124376,8 +123899,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21688 @@ -124385,8 +123906,6 @@ entities: - type: Transform pos: 44.5,53.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21730 @@ -124395,8 +123914,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21785 @@ -124405,8 +123922,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21787 @@ -124415,8 +123930,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21788 @@ -124425,8 +123938,6 @@ entities: rot: 3.141592653589793 rad pos: 48.5,24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21806 @@ -124434,8 +123945,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21826 @@ -124444,8 +123953,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21827 @@ -124454,8 +123961,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21892 @@ -124463,8 +123968,6 @@ entities: - type: Transform pos: 26.5,19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21893 @@ -124473,8 +123976,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21894 @@ -124483,8 +123984,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21896 @@ -124492,8 +123991,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21903 @@ -124501,8 +123998,6 @@ entities: - type: Transform pos: 31.5,23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21951 @@ -124511,8 +124006,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22034 @@ -124520,8 +124013,6 @@ entities: - type: Transform pos: 40.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22035 @@ -124530,8 +124021,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22102 @@ -124540,8 +124029,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22204 @@ -124550,8 +124037,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,49.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22205 @@ -124560,8 +124045,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22281 @@ -124570,8 +124053,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22283 @@ -124579,8 +124060,6 @@ entities: - type: Transform pos: 7.5,41.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22286 @@ -124589,8 +124068,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22386 @@ -124599,8 +124076,9 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22387 @@ -124608,8 +124086,9 @@ entities: - type: Transform pos: -8.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22390 @@ -124617,8 +124096,6 @@ entities: - type: Transform pos: -4.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22418 @@ -124627,8 +124104,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22442 @@ -124637,8 +124112,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22443 @@ -124647,8 +124120,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22445 @@ -124657,8 +124128,9 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24672 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22521 @@ -124666,8 +124138,6 @@ entities: - type: Transform pos: -3.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22525 @@ -124675,8 +124145,6 @@ entities: - type: Transform pos: -25.5,50.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22536 @@ -124685,8 +124153,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22572 @@ -124695,8 +124161,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,40.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22608 @@ -124705,8 +124169,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,27.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22609 @@ -124715,8 +124177,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22620 @@ -124725,8 +124185,6 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22662 @@ -124735,8 +124193,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22727 @@ -124745,8 +124201,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22728 @@ -124755,8 +124209,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22729 @@ -124764,8 +124216,6 @@ entities: - type: Transform pos: -30.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22759 @@ -124774,8 +124224,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22760 @@ -124784,8 +124232,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22761 @@ -124793,8 +124239,6 @@ entities: - type: Transform pos: -14.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22762 @@ -124803,8 +124247,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22763 @@ -124813,8 +124255,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22764 @@ -124822,8 +124262,6 @@ entities: - type: Transform pos: -19.5,17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22803 @@ -124832,8 +124270,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22883 @@ -124842,8 +124278,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22898 @@ -124852,8 +124286,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 22967 @@ -124862,8 +124294,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23002 @@ -124872,8 +124302,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23026 @@ -124881,8 +124309,6 @@ entities: - type: Transform pos: -51.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23063 @@ -124891,8 +124317,6 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,-23.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23067 @@ -124901,8 +124325,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23162 @@ -124911,8 +124333,6 @@ entities: rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23163 @@ -124920,8 +124340,6 @@ entities: - type: Transform pos: -73.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23184 @@ -124929,8 +124347,9 @@ entities: - type: Transform pos: -16.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23185 @@ -124938,8 +124357,6 @@ entities: - type: Transform pos: -12.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23220 @@ -124948,8 +124365,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23221 @@ -124958,8 +124373,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23226 @@ -124968,8 +124381,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23259 @@ -124977,8 +124388,6 @@ entities: - type: Transform pos: -9.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23278 @@ -124987,8 +124396,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23287 @@ -124999,8 +124406,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23291 @@ -125012,8 +124417,6 @@ entities: - type: DeviceNetwork deviceLists: - 24685 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23364 @@ -125022,8 +124425,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23408 @@ -125032,8 +124433,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23409 @@ -125042,8 +124441,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23444 @@ -125052,8 +124449,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23458 @@ -125062,8 +124457,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23459 @@ -125072,8 +124465,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23460 @@ -125082,8 +124473,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23466 @@ -125092,8 +124481,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,32.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23519 @@ -125101,8 +124488,6 @@ entities: - type: Transform pos: 14.5,37.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23520 @@ -125110,8 +124495,6 @@ entities: - type: Transform pos: 22.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23553 @@ -125120,8 +124503,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,39.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23600 @@ -125129,8 +124510,6 @@ entities: - type: Transform pos: 12.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23607 @@ -125139,8 +124518,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23612 @@ -125149,8 +124526,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,11.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23613 @@ -125159,8 +124534,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23614 @@ -125169,8 +124542,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23638 @@ -125178,8 +124549,6 @@ entities: - type: Transform pos: 11.5,6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23685 @@ -125188,8 +124557,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23689 @@ -125198,8 +124565,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 23791 @@ -125208,8 +124573,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24116 @@ -125217,8 +124580,6 @@ entities: - type: Transform pos: -63.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24117 @@ -125226,8 +124587,6 @@ entities: - type: Transform pos: -60.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24192 @@ -125235,8 +124594,6 @@ entities: - type: Transform pos: -67.5,12.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24255 @@ -125244,8 +124601,6 @@ entities: - type: Transform pos: -32.5,74.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24295 @@ -125254,8 +124609,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24324 @@ -125264,8 +124617,6 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24325 @@ -125274,8 +124625,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24343 @@ -125284,8 +124633,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,16.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24346 @@ -125294,8 +124641,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24614 @@ -125304,8 +124649,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,36.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24644 @@ -125313,8 +124656,6 @@ entities: - type: Transform pos: -24.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24678 @@ -125322,8 +124663,6 @@ entities: - type: Transform pos: 33.5,4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24683 @@ -125332,8 +124671,6 @@ entities: rot: 1.5707963267948966 rad pos: -90.5,-29.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 24741 @@ -125342,8 +124679,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-17.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25001 @@ -125351,8 +124686,6 @@ entities: - type: Transform pos: 26.5,62.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25160 @@ -125361,8 +124694,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-24.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25167 @@ -125371,8 +124702,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25532 @@ -125381,8 +124710,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25580 @@ -125391,8 +124718,6 @@ entities: rot: 1.5707963267948966 rad pos: -74.5,-8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 25993 @@ -125400,8 +124725,6 @@ entities: - type: Transform pos: -22.5,92.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26164 @@ -125410,8 +124733,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 26798 @@ -125420,8 +124741,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,-48.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27071 @@ -125430,8 +124749,6 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27136 @@ -125440,8 +124757,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,54.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27174 @@ -125450,8 +124765,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27233 @@ -125460,8 +124773,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27234 @@ -125470,8 +124781,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27528 @@ -125480,8 +124789,6 @@ entities: rot: 3.141592653589793 rad pos: -65.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27529 @@ -125490,8 +124797,6 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27530 @@ -125500,8 +124805,6 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27531 @@ -125510,8 +124813,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27859 @@ -125520,8 +124821,6 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27958 @@ -125530,8 +124829,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 27959 @@ -125540,8 +124837,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-1.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28268 @@ -125549,16 +124844,15 @@ entities: - type: Transform pos: -101.5,-77.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28437 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 + - type: DeviceNetwork + deviceLists: + - 24671 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28491 @@ -125566,8 +124860,6 @@ entities: - type: Transform pos: -66.5,8.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 28982 @@ -125575,8 +124867,6 @@ entities: - type: Transform pos: -19.5,98.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29307 @@ -125584,8 +124874,6 @@ entities: - type: Transform pos: 35.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29313 @@ -125594,8 +124882,6 @@ entities: rot: 3.141592653589793 rad pos: 44.5,9.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29314 @@ -125603,8 +124889,6 @@ entities: - type: Transform pos: 44.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29315 @@ -125612,8 +124896,6 @@ entities: - type: Transform pos: 38.5,14.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 29572 @@ -125622,8 +124904,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30294 @@ -125631,8 +124911,6 @@ entities: - type: Transform pos: 66.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30517 @@ -125640,8 +124918,6 @@ entities: - type: Transform pos: -79.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30518 @@ -125649,8 +124925,6 @@ entities: - type: Transform pos: -78.5,15.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - uid: 30519 @@ -125659,8 +124933,6 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,13.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -125671,24 +124943,18 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-20.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 5322 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-19.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10035 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#66FF66FF' - uid: 25911 @@ -125696,8 +124962,6 @@ entities: - type: Transform pos: 59.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29174 @@ -125706,8 +124970,6 @@ entities: rot: 3.141592653589793 rad pos: 65.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - proto: Gauze @@ -133819,13 +133081,36 @@ entities: parent: 33 - proto: HeatExchanger entities: + - uid: 10799 + components: + - type: Transform + pos: 77.5,59.5 + parent: 33 + - uid: 10996 + components: + - type: Transform + pos: 75.5,60.5 + parent: 33 + - uid: 13056 + components: + - type: Transform + pos: 78.5,59.5 + parent: 33 + - uid: 15079 + components: + - type: Transform + pos: 81.5,59.5 + parent: 33 + - uid: 15199 + components: + - type: Transform + pos: 81.5,60.5 + parent: 33 - uid: 29154 components: - type: Transform pos: 72.5,59.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29155 @@ -133833,8 +133118,6 @@ entities: - type: Transform pos: 72.5,60.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#99CCFFFF' - uid: 29694 @@ -133842,8 +133125,6 @@ entities: - type: Transform pos: 64.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - uid: 29695 @@ -133851,8 +133132,6 @@ entities: - type: Transform pos: 66.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - type: AtmosPipeColor color: '#CC0000FF' - proto: HelicopterInstrument @@ -134753,7 +134032,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 200 name: null @@ -134763,6 +134041,26 @@ entities: Quantity: 150 - type: Label currentLabel: Ammonia +- proto: Jukebox + entities: + - uid: 30933 + components: + - type: Transform + pos: 21.5,28.5 + parent: 33 + - uid: 30935 + components: + - type: Transform + pos: -45.5,76.5 + parent: 33 +- proto: JukeboxCircuitBoard + entities: + - uid: 17175 + components: + - type: Transform + parent: 17820 + - type: Physics + canCollide: False - proto: Katana entities: - uid: 18115 @@ -135176,7 +134474,6 @@ entities: solutions: tank: temperature: 293.15 - canMix: False canReact: True maxVol: 1500 name: null @@ -135472,7 +134769,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 100 name: null @@ -137146,10 +136442,10 @@ entities: parent: 33 - proto: MaterialReclaimer entities: - - uid: 3762 + - uid: 11963 components: - type: Transform - pos: 7.5,66.5 + pos: 7.5,67.5 parent: 33 - proto: MaterialWoodPlank entities: @@ -138666,71 +137962,51 @@ entities: - type: Transform pos: -20.5,47.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 6015 components: - type: Transform pos: 3.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8694 components: - type: Transform pos: 29.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10183 components: - type: Transform pos: 56.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10184 components: - type: Transform pos: 55.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10345 components: - type: Transform pos: -87.5,-2.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18214 components: - type: Transform pos: -70.5,-38.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18250 components: - type: Transform pos: -35.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18297 components: - type: Transform pos: 9.5,81.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18365 components: - type: Transform pos: 3.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: NitrogenTankFilled entities: - uid: 4201 @@ -138780,8 +138056,6 @@ entities: - type: Transform pos: 41.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: NitrousOxideTankFilled entities: - uid: 6322 @@ -138971,106 +138245,76 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 3237 components: - type: Transform pos: -20.5,46.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8693 components: - type: Transform pos: 31.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10185 components: - type: Transform pos: 56.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10186 components: - type: Transform pos: 55.5,72.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11461 components: - type: Transform pos: -15.5,89.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 17956 components: - type: Transform pos: -16.5,55.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18208 components: - type: Transform pos: -36.5,-25.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18225 components: - type: Transform pos: -87.5,-0.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18249 components: - type: Transform pos: -34.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18270 components: - type: Transform pos: 15.5,-4.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18292 components: - type: Transform pos: 38.5,42.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18364 components: - type: Transform pos: 1.5,31.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 28092 components: - type: Transform pos: -97.5,-30.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29713 components: - type: Transform pos: 69.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: OxygenTankFilled entities: - uid: 4187 @@ -147103,7 +146347,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147125,7 +146368,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147143,7 +146385,6 @@ entities: solutions: food: temperature: 293.15 - canMix: False canReact: True maxVol: 25 name: null @@ -147269,15 +146510,11 @@ entities: - type: Transform pos: 52.5,66.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29711 components: - type: Transform pos: 69.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 211 @@ -147448,6 +146685,82 @@ entities: - type: Transform pos: -44.652573,38.39818 parent: 33 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 18002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,69.5 + parent: 33 + - uid: 18003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,67.5 + parent: 33 + - uid: 18562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,70.5 + parent: 33 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 23645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-18.5 + parent: 33 + - uid: 24165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 33 + - uid: 25919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-18.5 + parent: 33 + - uid: 27300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-18.5 + parent: 33 +- proto: PlasmaWindoorSecureEngineeringLocked + entities: + - uid: 28781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,74.5 + parent: 33 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 29134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-19.5 + parent: 33 + - uid: 29135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 33 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 29141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,65.5 + parent: 33 - proto: PlasticBanana entities: - uid: 22109 @@ -147541,10 +146854,10 @@ entities: parent: 33 - proto: PlushieCarp entities: - - uid: 11280 + - uid: 11821 components: - type: Transform - pos: 7.4782286,67.44273 + pos: 10.476361,69.57309 parent: 33 - uid: 18429 components: @@ -148689,6 +148002,11 @@ entities: - type: Transform pos: 0.5,-23.5 parent: 33 + - uid: 16552 + components: + - type: Transform + pos: -36.5,7.5 + parent: 33 - uid: 16696 components: - type: Transform @@ -153158,7 +152476,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -153186,7 +152503,6 @@ entities: solutions: puddle: temperature: 293.15 - canMix: False canReact: True maxVol: 1000 name: null @@ -154221,6 +153537,16 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 33 + - uid: 30939 + components: + - type: Transform + pos: -48.5,65.5 + parent: 33 + - uid: 30940 + components: + - type: Transform + pos: -48.5,64.5 + parent: 33 - proto: RadioHandheld entities: - uid: 1261 @@ -154405,29 +153731,23 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,49.5 parent: 33 - - uid: 9770 + - uid: 9865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,67.5 + rot: -1.5707963267948966 rad + pos: 8.5,67.5 parent: 33 - - uid: 9864 + - uid: 11814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,66.5 + pos: -9.5,25.5 parent: 33 - - uid: 9865 + - uid: 12676 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,67.5 - parent: 33 - - uid: 9866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,66.5 + pos: -9.5,25.5 parent: 33 - uid: 13794 components: @@ -154544,6 +153864,18 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-33.5 parent: 33 + - uid: 27375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 33 + - uid: 27376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 33 - proto: RailingCorner entities: - uid: 9771 @@ -154623,11 +153955,17 @@ entities: rot: 3.141592653589793 rad pos: 27.5,50.5 parent: 33 - - uid: 9867 + - uid: 11558 components: - type: Transform pos: 8.5,66.5 parent: 33 + - uid: 11799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,67.5 + parent: 33 - uid: 13044 components: - type: Transform @@ -158033,11 +157371,6 @@ entities: - type: Transform pos: -36.5,6.5 parent: 33 - - uid: 10996 - components: - - type: Transform - pos: -36.5,7.5 - parent: 33 - uid: 10997 components: - type: Transform @@ -158090,11 +157423,6 @@ entities: - type: Transform pos: 4.5,35.5 parent: 33 - - uid: 10789 - components: - - type: Transform - pos: -36.5,4.5 - parent: 33 - uid: 25644 components: - type: Transform @@ -158169,7 +157497,7 @@ entities: - uid: 24089 components: - type: Transform - pos: 12.5,66.5 + pos: 12.5,67.5 parent: 33 - type: DeviceLinkSink links: @@ -164267,6 +163595,150 @@ entities: - type: DeviceLinkSink links: - 8530 + - uid: 30911 + components: + - type: Transform + pos: -9.5,36.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30912 + components: + - type: Transform + pos: -9.5,35.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30913 + components: + - type: Transform + pos: -9.5,34.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30914 + components: + - type: Transform + pos: -9.5,33.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30915 + components: + - type: Transform + pos: -9.5,32.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30916 + components: + - type: Transform + pos: -9.5,31.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30907 + - uid: 30917 + components: + - type: Transform + pos: -9.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30918 + components: + - type: Transform + pos: -8.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30919 + components: + - type: Transform + pos: -7.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30920 + components: + - type: Transform + pos: -6.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30921 + components: + - type: Transform + pos: -5.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30922 + components: + - type: Transform + pos: -4.5,24.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30906 + - uid: 30923 + components: + - type: Transform + pos: -1.5,25.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30905 + - uid: 30924 + components: + - type: Transform + pos: -0.5,25.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30905 + - uid: 30925 + components: + - type: Transform + pos: -2.5,25.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30905 + - uid: 30926 + components: + - type: Transform + pos: 0.5,25.5 + parent: 33 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 30905 - proto: ShuttersRadiation entities: - uid: 695 @@ -164615,6 +164087,9 @@ entities: - Pressed: Toggle - uid: 30640 components: + - type: MetaData + desc: Activate button to alert janitors their service is needed. + name: janitorial service button - type: Transform rot: 1.5707963267948966 rad pos: -5.5,33.5 @@ -165759,6 +165234,94 @@ entities: - On: Toggle - Off: Toggle - Status: Toggle + - uid: 30905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 33 + - type: DeviceLinkSource + linkedPorts: + 30926: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30924: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30923: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30925: + - On: Toggle + - Off: Toggle + - Status: Toggle + - uid: 30906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 33 + - type: DeviceLinkSource + linkedPorts: + 30922: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30921: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30920: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30919: + - On: Toggle + - Status: Toggle + - Off: Toggle + 30918: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30917: + - On: Toggle + - Off: Toggle + - Status: Toggle + - uid: 30907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,32.5 + parent: 33 + - type: DeviceLinkSource + linkedPorts: + 30911: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30912: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30913: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30914: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30915: + - On: Toggle + - Off: Toggle + - Status: Toggle + 30916: + - On: Toggle + - Off: Toggle + - Status: Toggle - proto: SignAnomaly entities: - uid: 24173 @@ -166725,6 +166288,27 @@ entities: - type: Transform pos: -56.5,-55.5 parent: 33 +- proto: SignRedOne + entities: + - uid: 30908 + components: + - type: Transform + pos: -2.5,30.5 + parent: 33 +- proto: SignRedThree + entities: + - uid: 30910 + components: + - type: Transform + pos: -5.5,32.5 + parent: 33 +- proto: SignRedTwo + entities: + - uid: 30909 + components: + - type: Transform + pos: -5.5,31.5 + parent: 33 - proto: SignRobo entities: - uid: 12642 @@ -169188,6 +168772,8 @@ entities: rot: 1.5707963267948966 rad pos: -84.5,-32.5 parent: 33 + - type: SpamEmitSound + enabled: False - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 17706 @@ -169342,7 +168928,7 @@ entities: - uid: 18590 components: - type: Transform - pos: -9.5,43.5 + pos: 4.5,45.5 parent: 33 - proto: SpawnMobOreCrab entities: @@ -170820,113 +170406,81 @@ entities: - type: Transform pos: -79.5,-18.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 8691 components: - type: Transform pos: 35.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10179 components: - type: Transform pos: 56.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10180 components: - type: Transform pos: 55.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10181 components: - type: Transform pos: 56.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10202 components: - type: Transform pos: 46.5,56.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10203 components: - type: Transform pos: 46.5,57.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 11033 components: - type: Transform pos: -30.5,-21.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18164 components: - type: Transform pos: -57.5,-35.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18215 components: - type: Transform pos: -71.5,-38.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18251 components: - type: Transform pos: -43.5,26.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18269 components: - type: Transform pos: 11.5,-5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 18328 components: - type: Transform pos: 2.5,76.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29715 components: - type: Transform pos: 68.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29716 components: - type: Transform pos: 69.5,68.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30551 components: - type: Transform pos: -65.5,5.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: StrangePill entities: - uid: 18544 @@ -176711,8 +176265,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,65.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: TegCirculator entities: - uid: 25424 @@ -177097,7 +176649,6 @@ entities: solutions: toilet: temperature: 293.15 - canMix: False canReact: True maxVol: 250 name: null @@ -177141,6 +176692,16 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,63.5 parent: 33 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 17175 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 24488 components: - type: Transform @@ -177463,7 +177024,7 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - 10193: + 3762: - Left: Forward - Right: Reverse - Middle: Off @@ -177733,7 +177294,9 @@ entities: - type: Transform pos: -15.5,-23.5 parent: 33 - - uid: 15199 +- proto: VendingMachineBoozeUnlocked + entities: + - uid: 17176 components: - type: Transform pos: 36.5,6.5 @@ -178614,11 +178177,6 @@ entities: - type: Transform pos: -33.5,62.5 parent: 33 - - uid: 66 - components: - - type: Transform - pos: -1.5,55.5 - parent: 33 - uid: 67 components: - type: Transform @@ -179219,11 +178777,6 @@ entities: - type: Transform pos: -29.5,65.5 parent: 33 - - uid: 936 - components: - - type: Transform - pos: 1.5,59.5 - parent: 33 - uid: 952 components: - type: Transform @@ -181464,11 +181017,6 @@ entities: - type: Transform pos: -53.5,37.5 parent: 33 - - uid: 2588 - components: - - type: Transform - pos: -1.5,59.5 - parent: 33 - uid: 2590 components: - type: Transform @@ -181484,11 +181032,6 @@ entities: - type: Transform pos: 5.5,-14.5 parent: 33 - - uid: 2604 - components: - - type: Transform - pos: 0.5,59.5 - parent: 33 - uid: 2609 components: - type: Transform @@ -181689,11 +181232,6 @@ entities: - type: Transform pos: -48.5,4.5 parent: 33 - - uid: 2902 - components: - - type: Transform - pos: -0.5,59.5 - parent: 33 - uid: 2904 components: - type: Transform @@ -183274,11 +182812,6 @@ entities: - type: Transform pos: -81.5,11.5 parent: 33 - - uid: 4369 - components: - - type: Transform - pos: -74.5,17.5 - parent: 33 - uid: 4424 components: - type: Transform @@ -185894,26 +185427,6 @@ entities: - type: Transform pos: -17.5,57.5 parent: 33 - - uid: 8273 - components: - - type: Transform - pos: 0.5,55.5 - parent: 33 - - uid: 8274 - components: - - type: Transform - pos: 1.5,57.5 - parent: 33 - - uid: 8280 - components: - - type: Transform - pos: 1.5,55.5 - parent: 33 - - uid: 8281 - components: - - type: Transform - pos: -0.5,55.5 - parent: 33 - uid: 8594 components: - type: Transform @@ -188994,11 +188507,6 @@ entities: - type: Transform pos: -44.5,58.5 parent: 33 - - uid: 22468 - components: - - type: Transform - pos: 1.5,56.5 - parent: 33 - uid: 22584 components: - type: Transform @@ -189124,11 +188632,6 @@ entities: - type: Transform pos: -85.5,-37.5 parent: 33 - - uid: 25506 - components: - - type: Transform - pos: 1.5,58.5 - parent: 33 - uid: 25519 components: - type: Transform @@ -191946,6 +191449,11 @@ entities: - type: Transform pos: 13.5,1.5 parent: 33 + - uid: 2604 + components: + - type: Transform + pos: -1.5,55.5 + parent: 33 - uid: 2605 components: - type: Transform @@ -192081,6 +191589,11 @@ entities: - type: Transform pos: 6.5,58.5 parent: 33 + - uid: 2902 + components: + - type: Transform + pos: 1.5,59.5 + parent: 33 - uid: 2937 components: - type: Transform @@ -192641,6 +192154,11 @@ entities: - type: Transform pos: -62.5,9.5 parent: 33 + - uid: 4369 + components: + - type: Transform + pos: -1.5,59.5 + parent: 33 - uid: 4405 components: - type: Transform @@ -193611,6 +193129,11 @@ entities: - type: Transform pos: -23.5,-11.5 parent: 33 + - uid: 6745 + components: + - type: Transform + pos: 0.5,59.5 + parent: 33 - uid: 6762 components: - type: Transform @@ -194211,6 +193734,26 @@ entities: - type: Transform pos: 6.5,52.5 parent: 33 + - uid: 8273 + components: + - type: Transform + pos: -0.5,59.5 + parent: 33 + - uid: 8274 + components: + - type: Transform + pos: -74.5,17.5 + parent: 33 + - uid: 8280 + components: + - type: Transform + pos: 0.5,55.5 + parent: 33 + - uid: 8281 + components: + - type: Transform + pos: 1.5,57.5 + parent: 33 - uid: 8286 components: - type: Transform @@ -195216,6 +194759,11 @@ entities: - type: Transform pos: 36.5,-24.5 parent: 33 + - uid: 22468 + components: + - type: Transform + pos: 1.5,55.5 + parent: 33 - uid: 22923 components: - type: Transform @@ -195286,6 +194834,16 @@ entities: - type: Transform pos: -80.5,-37.5 parent: 33 + - uid: 25506 + components: + - type: Transform + pos: -0.5,55.5 + parent: 33 + - uid: 25896 + components: + - type: Transform + pos: 1.5,56.5 + parent: 33 - uid: 25958 components: - type: Transform @@ -195321,6 +194879,11 @@ entities: - type: Transform pos: -43.5,-18.5 parent: 33 + - uid: 28464 + components: + - type: Transform + pos: 1.5,58.5 + parent: 33 - uid: 28648 components: - type: Transform @@ -196487,36 +196050,26 @@ entities: - type: Transform pos: 37.5,69.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 10187 components: - type: Transform pos: 56.5,71.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29714 components: - type: Transform pos: 68.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 29721 components: - type: Transform pos: 64.5,64.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - uid: 30467 components: - type: Transform pos: 61.5,73.5 parent: 33 - - type: AtmosDevice - joinedGrid: 33 - proto: WeaponCapacitorRecharger entities: - uid: 141 @@ -197209,26 +196762,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 33 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 9780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,69.5 - parent: 33 - - uid: 9782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,70.5 - parent: 33 - - uid: 18562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,67.5 - parent: 33 - proto: WindoorSecureCargoLocked entities: - uid: 85 @@ -197267,30 +196800,6 @@ entities: parent: 33 - proto: WindoorSecureCommandLocked entities: - - uid: 4440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-18.5 - parent: 33 - - uid: 4453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-18.5 - parent: 33 - - uid: 4569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-18.5 - parent: 33 - - uid: 16552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-18.5 - parent: 33 - uid: 24768 components: - type: Transform @@ -197310,12 +196819,6 @@ entities: - type: Transform pos: -20.5,-0.5 parent: 33 - - uid: 25919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,74.5 - parent: 33 - proto: WindoorSecureExternalLocked entities: - uid: 23823 @@ -197338,6 +196841,14 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,10.5 parent: 33 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,66.5 + parent: 33 - proto: WindoorSecureKitchenLocked entities: - uid: 2715 @@ -197421,18 +196932,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-7.5 parent: 33 - - uid: 5057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-19.5 - parent: 33 - - uid: 27300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 33 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 2920 @@ -197539,12 +197038,6 @@ entities: - type: Transform pos: -23.5,91.5 parent: 33 - - uid: 23645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,65.5 - parent: 33 - uid: 24145 components: - type: Transform diff --git a/Resources/Migrations/deltaMigrations.yml b/Resources/Migrations/deltaMigrations.yml index ad30788a9a5..28b287310ad 100644 --- a/Resources/Migrations/deltaMigrations.yml +++ b/Resources/Migrations/deltaMigrations.yml @@ -103,3 +103,6 @@ SignDirectionalICU: SignDirectionalIcu # 2024-03-29 #Remove whenever holoparasite isn't broken I suppose MagicalLamp: Lamp + +# 2024-04-21 +ClothingEyesHudSyndicateMed: ClothingEyesHudSyndicateAgent diff --git a/Resources/Migrations/migration.yml b/Resources/Migrations/migration.yml index 162dc8442b8..01fea95c031 100644 --- a/Resources/Migrations/migration.yml +++ b/Resources/Migrations/migration.yml @@ -235,6 +235,8 @@ AirlockShuttleEasyPryLocked: AirlockExternalShuttleLocked #ClothingBackpackFilledDetective: ClothingBackpackSecurityFilledDetective #ClothingBackpackDuffelFilledDetective: ClothingBackpackDuffelSecurityFilledDetective #ClothingBackpackSatchelFilledDetective: ClothingBackpackSatchelSecurityFilledDetective +FoodChili: FoodChiliPepper +FoodChilly: FoodChillyPepper # 2024-03-11 ImprovisedExplosive: FireBomb @@ -248,6 +250,8 @@ ClothingHeadHatHairflower: FoodPoppy RPED: null # 2024-03-30 +TraversalDistorterMachineCircuitboard: null +MachineTraversalDistorter: null # These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright. ClothingHeadHelmetScaf: ClothingHeadHelmetBasic ClothingOuterArmorScaf: ClothingOuterArmorBasic @@ -256,3 +260,7 @@ ClothingOuterArmorScaf: ClothingOuterArmorBasic ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath BriefcaseSyndieBase: null + +# 2024-04-08 +BodyBag_Container: BodyBag +BodyBag_Folded: BodyBagFolded diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index 45a1ffa3af0..a938f3aaa26 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -424,3 +424,4 @@ # chatsan-word-41: chatsan-replacement-41 # chatsan-word-42: chatsan-replacement-42 chatsan-word-43: chatsan-replacement-43 + chatsan-word-44: chatsan-replacement-44 diff --git a/Resources/Prototypes/AlertLevels/alert_levels.yml b/Resources/Prototypes/AlertLevels/alert_levels.yml index 5a8cb2dd129..b4323639fc7 100644 --- a/Resources/Prototypes/AlertLevels/alert_levels.yml +++ b/Resources/Prototypes/AlertLevels/alert_levels.yml @@ -6,35 +6,43 @@ announcement: alert-level-green-announcement color: Green sound: /Audio/Announcements/Alerts/code_green.ogg + emergencyLightColor: LawnGreen shuttleTime: 600 blue: announcement: alert-level-blue-announcement sound: /Audio/Announcements/Alerts/code_blue.ogg color: DodgerBlue + forceEnableEmergencyLights: true + emergencyLightColor: DodgerBlue shuttleTime: 600 violet: announcement: alert-level-violet-announcement sound: /Audio/Announcements/Alerts/code_violet.ogg color: Violet emergencyLightColor: Violet + forceEnableEmergencyLights: true shuttleTime: 600 white: announcement: alert-level-white-announcement sound: /Audio/Announcements/Alerts/code_white.ogg emergencyLightColor: "#F6CCF6" color: White + forceEnableEmergencyLights: true shuttleTime: 600 yellow: announcement: alert-level-yellow-announcement sound: /Audio/Announcements/Alerts/code_yellow.ogg color: Yellow emergencyLightColor: Goldenrod + forceEnableEmergencyLights: true shuttleTime: 600 red: announcement: alert-level-red-announcement sound: /Audio/Announcements/Alerts/code_red.ogg color: Red - shuttleTime: 600 + emergencyLightColor: Red + forceEnableEmergencyLights: true + shuttleTime: 600 #No reduction in time as we don't have swiping for red alert like in /tg/. Shuttle times are intended to create friction, so having a way to brainlessly bypass that would be dumb. gamma: announcement: alert-level-gamma-announcement selectable: false diff --git a/Resources/Prototypes/Body/Organs/Animal/slimes.yml b/Resources/Prototypes/Body/Organs/Animal/slimes.yml index 3bdb1aef8f1..f1a3d47e667 100644 --- a/Resources/Prototypes/Body/Organs/Animal/slimes.yml +++ b/Resources/Prototypes/Body/Organs/Animal/slimes.yml @@ -37,7 +37,7 @@ - state: lung-l-slime - state: lung-r-slime - type: Lung - Alert: LowNitrogen + alert: LowNitrogen - type: Metabolizer removeEmpty: true solutionOnBody: false diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 976fd679fdc..c1e199e1121 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -46,7 +46,7 @@ - ReagentId: UncookedAnimalProteins Quantity: 5 - type: Metabolizer - updateFrequency: 1.5 + updateInterval: 1.5 - type: entity id: OrganArachnidLungs @@ -60,7 +60,7 @@ - state: lung-r - type: Lung - type: Metabolizer - updateFrequency: 1.5 + updateInterval: 1.5 removeEmpty: true solutionOnBody: false solution: "Lung" @@ -92,7 +92,7 @@ - type: Sprite state: heart-on - type: Metabolizer - updateFrequency: 1.5 + updateInterval: 1.5 maxReagents: 2 metabolizerTypes: [Arachnid] groups: @@ -110,7 +110,7 @@ - type: Sprite state: liver - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. - updateFrequency: 1.5 + updateInterval: 1.5 maxReagents: 1 metabolizerTypes: [Animal] groups: @@ -130,7 +130,7 @@ - state: kidney-r # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. - type: Metabolizer - updateFrequency: 1.5 + updateInterval: 1.5 maxReagents: 5 metabolizerTypes: [Animal] removeEmpty: true diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml index 2715e0c3501..c04e49f413c 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_emergency.yml @@ -4,7 +4,7 @@ sprite: Clothing/Head/Helmets/bombsuit.rsi state: icon product: CrateEmergencyExplosive - cost: 650 + cost: 1000 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 d77bef37579..4fbd8f89a5e 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,17 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 8000 #DeltaV + cost: 3500 # DeltaV + category: cargoproduct-category-name-service + group: market + +- type: cargoProduct + id: CrateVendingMachineRestockAutoDrobe + icon: + sprite: Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: CrateVendingMachineRestockAutoDrobeFilled + cost: 1700 # DeltaV category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml index aba61ce332d..d9beb724356 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml @@ -88,27 +88,6 @@ - state: box - state: nitrile -- type: entity - name: sterile swab box - parent: BoxCardboard - id: BoxMouthSwab - components: - - type: Storage - grid: - - 0,0,4,3 - - type: StorageFill - contents: - - id: DiseaseSwab - amount: 10 - - type: Sprite - layers: - - state: box - - state: swab - - type: GuideHelp - guides: - # - Virology (when it's back) - - Botany - - type: entity name: body bag box parent: BoxCardboard @@ -117,7 +96,7 @@ components: - type: StorageFill contents: - - id: BodyBag_Folded + - id: BodyBagFolded amount: 4 - type: Sprite layers: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml index f10fd010f64..c0d8a422f27 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml @@ -6,8 +6,6 @@ components: - type: StorageFill contents: - - id: BananaSeeds - amount: 2 - id: EggySeeds amount: 2 - id: TowercapSeeds @@ -20,8 +18,6 @@ amount: 2 - id: FlyAmanitaSeeds amount: 2 - - id: PineappleSeeds - amount: 2 - id: BungoSeeds amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 1db0c3121ed..ea1e05359ac 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -182,6 +182,8 @@ - id: GrassBattlemap - id: DiceBag amount: 6 + - id: PaperCNCSheet + amount: 6 - type: entity id: CrateFunSadTromboneImplants diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 141f98edab2..b7cee152530 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -51,15 +51,20 @@ - type: StorageFill contents: - id: CigCartonGreen - prob: 0.50 + prob: 0.33 # DeltaV orGroup: CigCarton1 - id: CigCartonRed orGroup: CigCarton1 - id: CigCartonBlue - prob: 0.50 + prob: 0.33 # DeltaV orGroup: CigCarton2 - id: CigCartonBlack orGroup: CigCarton2 + - id: CigCartonPurple # DeltaV + prob: 0.33 + orGroup: CigCarton3 + - id: CigCartonCandy # DeltaV + orGroup: CigCarton3 - id: CigarGoldCase prob: 0.05 orGroup: Cigars diff --git a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml index 5a6b5ca089f..d54e103a70f 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml @@ -22,11 +22,20 @@ id: CrateVendingMachineRestockClothesFilled parent: CratePlastic name: clothing restock crate - description: Contains a pair of restock boxes, one for the ClothesMate and one for the AutoDrobe. + description: Contains a restock box for the clothes vending machines. components: - type: StorageFill contents: - id: VendingMachineRestockClothes + +- type: entity + id: CrateVendingMachineRestockAutoDrobeFilled + parent: CratePlastic + name: AutoDrobe restock crate + description: Contains a restock box for the AutoDrobe. + components: + - type: StorageFill + contents: - id: VendingMachineRestockCostumes - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index e4d995e52ee..b3efb6ec1d2 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -65,13 +65,20 @@ components: - type: StorageFill contents: + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWelding + - id: ClothingHeadHatWelding + prob: 0.5 + - id: Welder + - id: Welder - id: WelderMini + orGroup: thirdWelder - id: Welder - prob: 0.7 + prob: 0.33 + orGroup: thirdWelder - id: WelderIndustrial - prob: 0.5 - - id: ClothingHeadHatWelding - prob: 0.5 + prob: 0.33 + orGroup: thirdWelder - type: entity id: LockerAtmosphericsFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index fd7152b2296..34eb2a608ed 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -61,6 +61,21 @@ - id: BoxMRE prob: 0.1 +- type: entity + id: ClosetEmergencyN2FilledRandom + parent: ClosetEmergencyN2 + suffix: Filled, Random + components: + - type: StorageFill + contents: + - id: ClothingMaskBreath + - id: EmergencyNitrogenTankFilled + prob: 0.80 + orGroup: EmergencyTankOrRegularTank + - id: NitrogenTankFilled + prob: 0.20 + orGroup: EmergencyTankOrRegularTank + - type: entity id: ClosetFireFilled parent: ClosetFire diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 110d62f62aa..bfa46a6135c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -105,14 +105,12 @@ - id: ClothingHandsGlovesLeather - id: ClothingOuterApronBotanist - id: ClothingHeadBandBotany - - id: HydroponicsToolClippers - - id: HydroponicsToolSpade - - id: HydroponicsToolMiniHoe - id: RobustHarvestChemistryBottle prob: 0.3 - id: ClothingBeltPlant - id: PlantBag ##Some maps don't have nutrivend - id: BoxMouthSwab + - id: Dropper - id: HandLabeler - id: ClothingUniformOveralls - id: ClothingHeadHatTrucker diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml index 2038ef00139..4e885a08b29 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_colors.yml @@ -38,7 +38,7 @@ amount: 3 - id: ClothingUniformRandomArmless amount: 5 - - id: ClothingUniformRandomStandart + - id: ClothingUniformRandomStandard amount: 5 - id: ClothingUniformRandomBra amount: 5 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml index ee5748329a8..13b100f8ec5 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml @@ -13,6 +13,7 @@ - id: ClothingShoesColorBlack amount: 2 - id: ClothingMaskMuzzle + - id: ClothingHeadsetPrison #DV - Added prisoner headsets #- type: entity # id: WardrobePajamaFilled diff --git a/Resources/Prototypes/Catalog/Jukebox/Standard.yml b/Resources/Prototypes/Catalog/Jukebox/Standard.yml new file mode 100644 index 00000000000..7440428bd49 --- /dev/null +++ b/Resources/Prototypes/Catalog/Jukebox/Standard.yml @@ -0,0 +1,41 @@ +- type: jukebox + id: FlipFlap + name: X-CEED - Flip Flap + path: + path: /Audio/Jukebox/flip-flap.ogg + +- type: jukebox + id: Tintin + name: Jeroen Tel - Tintin on the Moon + path: + path: /Audio/Jukebox/title3.ogg + +- type: jukebox + id: Thunderdome + name: MashedByMachines - Sector 11 + path: + path: /Audio/Jukebox/sector11.ogg + +- type: jukebox + id: Constellations + name: Qwertyquerty - Constellations + path: + path: /Audio/Jukebox/constellations.ogg + +- type: jukebox + id: Drifting + name: Qwertyquerty - Drifting + path: + path: /Audio/Jukebox/drifting.ogg + +- type: jukebox + id: starlight + name: Qwertyquerty - Starlight + path: + path: /Audio/Jukebox/starlight.ogg + +- type: jukebox + id: sunset + name: PigeonBeans - Sunset + path: + path: /Audio/Jukebox/sunset.ogg diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml index cf690580275..9ea895b629e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml @@ -5,6 +5,8 @@ CigPackRed: 2 CigPackBlue: 2 CigPackBlack: 2 + CigPackPurple: 2 # DeltaV + CigPackCandy: 2 # DeltaV CigPackMixed: 2 CigarCase: 1 SmokingPipeFilledTobacco: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml index 31011057370..29b3cb8aee7 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/nutri.yml @@ -1,11 +1,12 @@ - type: vendingMachineInventory id: NutriMaxInventory startingInventory: - HydroponicsToolSpade: 3 - HydroponicsToolMiniHoe: 3 - HydroponicsToolClippers: 3 - HydroponicsToolScythe: 3 - HydroponicsToolHatchet: 3 + HydroponicsToolSpade: 4 + HydroponicsToolMiniHoe: 4 + HydroponicsToolClippers: 4 + HydroponicsToolScythe: 4 + HydroponicsToolHatchet: 4 + Dropper: 4 PlantBag: 3 PlantBGoneSpray: 20 WeedSpray: 20 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index cb0c10c129e..14bc1764981 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -17,6 +17,7 @@ ClothingUniformJumpsuitSecBlue: 3 ClothingUniformJumpskirtSecBlue: 3 # DeltaV - new skirt sprited, added to secdrobe ClothingHeadsetSecurity: 3 + ClothingHeadsetPrison: 3 # DeltaV - prison headsets in secdrobe ClothingOuterWinterSec: 2 ClothingOuterCoatGreatcoat: 2 # DeltaV - added greatcoats to SecDrobe. Surplus, reminds the officers of the good times. ## ClothingOuterArmorBasic: 2 # DeltaV - moved body armour from SecDrobe to SecTech @@ -26,4 +27,4 @@ ClothingShoesBootsCombat: 1 ClothingShoesBootsWinterSec: 2 ClothingShoesBootsCowboyBlack: 1 - ClothingHeadHatCowboyBlack: 1 \ No newline at end of file + ClothingHeadHatCowboyBlack: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index 05e3ae0eb0e..25e41702af3 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -17,6 +17,7 @@ GrapeSeeds: 5 LemonSeeds: 5 LimeSeeds: 5 + PineappleSeeds: 4 LingzhiSeeds: 3 OatSeeds: 5 OnionSeeds: 5 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 7753c31e92d..c8007037f08 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -314,7 +314,7 @@ Telecrystal: 11 categories: - UplinkExplosives - restockTime: 30 + restockTime: 1800 conditions: - !type:StoreWhitelistCondition blacklist: @@ -622,6 +622,16 @@ categories: - UplinkDeception +- type: listing + id: UplinkChameleonProjector + name: uplink-chameleon-projector-name + description: uplink-chameleon-projector-desc + productEntity: ChameleonProjector + cost: + Telecrystal: 7 + categories: + - UplinkDeception + - type: listing id: UplinkHeadsetEncryptionKey name: uplink-encryption-key-name diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml index 0751582e3d6..f4941b1d136 100644 --- a/Resources/Prototypes/Datasets/ion_storm.yml +++ b/Resources/Prototypes/Datasets/ion_storm.yml @@ -5,15 +5,16 @@ - type: dataset id: IonStormAdjectives values: + - ADORABLE + - ANNOYING - BATTERY-OPERATED - - BLACK - BLOODY - BLUE - BORED - BOUNCING - BRASS - - BROWN - BURNING + - CHEESE-EATING - CHRISTMAS-STEALING - CLOWN-POWERED - CLOWN @@ -21,7 +22,6 @@ - COMMITTED - COTTONY - CUBAN - - DARK - DEADLY - DELICIOUS - DEPRESSING @@ -48,14 +48,14 @@ - GANGSTA - GLOWING - GOOD - - GREEN - - GREY - HAPPY - HARD - HARMFUL - HEALTHY + - HIGHLY-SPECIFIC - HILARIOUS - HONKING + - HORRIFYING - HUNGRY - HYPERACTIVE - ICY @@ -81,12 +81,12 @@ - MICROSCOPIC - MIND-SHATTERING - MOIST + - MUSICAL - NERDY - NUCLEAR - OBSCENE - OFFICIAL - OPAQUE - - ORANGE - ORGANIC - PAINFUL - PEACEFUL @@ -95,14 +95,12 @@ - POLITE - POLITICAL - POORLY DRAWN - - PURPLE - QUIET - RADIOACTIVE - RAGING - - RAINBOW - RAPIDLY-EXPANDING - - RED - REDACTED + - REVOLUTIONARY - RIDICULOUS - ROBOTIC - ROBUST @@ -110,21 +108,24 @@ - RUDE - SAD - SANITARY - - SCALY - SHAKING - SILLY - SLOW + - SLUG-LIKE # wawa - SMELLY - SMOOTH - SOFT - SOLAR-POWERED - SOPPING + - SLIPPERY - SPACE - SPESS - SPINNING - SPOILING - STEALTHY + - SUSPICIOUS # among - SWEARING + - SYNDIE-LOVING - TACTICAL - TACTICOOL - SYNDICATE @@ -135,6 +136,7 @@ - UGLY - UNATTRACTIVE - UNDULATING + - UNEARTHLY - UNFRIENDLY - UNHEALTHY - UNIDENTIFIED @@ -147,10 +149,8 @@ - WARM - WATERY - WEIRD - - WHITE - WOBBLY - WOODEN - - YELLOW # Allergies should be broad and appear somewhere on the station for maximum fun. - type: dataset @@ -174,10 +174,10 @@ - FOOD - GLASS - HAPPINESS - - MEAT - - HUMAN CONTACT + - HUMANOID CONTACT - HUMOR - LIGHT + - MEAT - MEDICINE - METAL - NUTS @@ -258,6 +258,7 @@ - ANARCHY - ART - BADNESS + - BALDNESS - BRAVERY - CAPITALISM - CHAOS @@ -268,7 +269,6 @@ - CONFUSION - CRUELTY - DEATH - - DICKISHNESS - EXISTENCE - FINANCIAL SECURITY - FREEDOM @@ -289,6 +289,7 @@ - MARXISM - MISERY - MYSTERY + - NASTINESS - OPPRESSION - PAIN - PHYSICS @@ -314,12 +315,13 @@ - type: dataset id: IonStormCrew values: + - ANIMALS - ARTIFICIAL INTELLIGENCES - ATMOSPHERIC TECHNICIANS - BARTENDERS - BOTANISTS - CAPTAINS - - CAPTAINS AND HEADS + - CAPTAINS AND HEADS OF STAFF - CARGO TECHNICIANS - CHAPLAINS - CHEFS @@ -330,7 +332,6 @@ - CREW-MEMBERS - CYBORGS - DETECTIVES - # - DRONES / uncomment if/when drones get reenabled # - GENETICISTS - HEADS OF PERSONNEL - HEADS OF SECURITY @@ -340,6 +341,8 @@ - LIBRARIANS - MEDICAL DOCTORS - MIMES + - MUSICIANS + - NON-CREW - PARAMEDICS - PASSENGERS # DeltaV - Logistics Department - Replace Quartermaster with Logistics Officer @@ -349,6 +352,7 @@ - MYSTAGOGUES # End of modified code - ROBOTICISTS + - RODENTS - SALVAGE SPECIALISTS - SCIENTISTS - SECURITY OFFICERS @@ -362,17 +366,20 @@ values: - BANANA HONK - BEEPSKY SMASH + - BLOOD - BLOODY MARYS - DOCTOR'S DELIGHT + - FOURTEEN-LOKO - GARGLE BLASTERS - LEAN - LONG ISLAND ICED TEA - - NUKA COLA + - NUCLEAR COLA + - PIÑA COLADA # AND GETTING CAUGHT IN THE RAIN - OIL - SPACE GLUE - SPACE LUBE - SULFURIC ACID - - WELDER FUEL + - WELDING FUEL - type: dataset id: IonStormFeelings @@ -432,7 +439,8 @@ id: IonStormFoods values: - BANANAS - - BIG BITE BURGERS + - BANANIUM + - BIG BITE BURGER - CAKE - CARP - CAT BURGERS @@ -441,6 +449,7 @@ - CRAZY HAMBURGERS - DONK POCKETS - FLY AMANITA DISHES + - HAPPY HONK MEAL - HOT SOUP - GHOST BURGERS - LOTSA SPAGHETTI @@ -448,6 +457,7 @@ - ORGANS - PIZZA - ROBURGERS + - STEEL - SUPPERMATTER - URANIUM @@ -463,6 +473,11 @@ - BE POLITE - BE QUIET - BE RUSSIAN + - BE IN SPACE + - BE IN THE BRIDGE + - BE IN SECURITY + - BE IN THE BAR + - BE IN MAINTENANCE - BELIEVE IN THE HEART OF THE CARDS - BELIEVE IN YOURSELF - BELIEVE IT @@ -471,6 +486,7 @@ - CLOWN AROUND - COMPLAIN - DANCE + - EAT THE CHEF - FOLLOW THE CAPTAIN - FOLLOW THE CLOWN - FOLLOW YOUR HEART @@ -487,10 +503,11 @@ - INSULT THE CLOWN - INSULT THE CREW - LIE - - MAKE FART NOISES + - MAKE DATED REFERENCES - MUMBLE - NEVER STOP TALKING - OPEN DOORS + - PETS THE FISHES - PIRATE VIDEO GAMES - PLAY MUSIC - PRESS B @@ -500,6 +517,7 @@ - PRETEND TO BE DRUNK - QUESTION AUTHORITY - QUOTE PEOPLE + - QUOTE SHAKESPEARE - RAP - REPEAT WHAT PEOPLE SAY - RESPOND TO EVERY QUESTION WITH A QUESTION @@ -519,6 +537,7 @@ - TELL THE TRUTH - TURN OFF THE LIGHTS - WHISPER + - WEEP UNCONTROLLABLY - type: dataset id: IonStormNumberBase @@ -530,6 +549,7 @@ - FORTY - FOUR - NINE + - NINE NINE NINE NINE N#@*- - NINETY - ONE - SEVEN @@ -582,17 +602,17 @@ - CANDLES - CANDY BARS - CANISTERS - - CAT EARS + - CONTAINERS - CATS - CELLS - CHAIRS - CHEMICAL DISPENSERS - CHEMICALS - - CLONING EQUIPMENT - - CLONING PODS + - CRYO PODS - CLOSETS - CLOTHES - CLOWN CLOTHES + - CLOWNING EQUIPMENT # as opposed to "cloning equipment" - COFFINS - COLLECTABLES - COMPUTERS @@ -612,25 +632,27 @@ - ENGINES - EQUIPMENT - ERRORS - - EXOSKELETONS - - EXPERIMENTORS + - EXTERMINATORS - EXPLOSIVES - EYEWEAR - FEDORAS - FIRE AXES - FIRE EXTINGUISHERS - FIRESUITS + - FISH - FLAMETHROWERS - FLASHES - FLASHLIGHTS - FLOOR TILES - FREEZERS - GAS MASKS + - GENERATORS - GLASS SHEETS - GLOVES - GUNS - HAIRDOS - HANDCUFFS + - HARDSUITS - HATS - HEADS - HEADSETS @@ -645,18 +667,20 @@ - LIGHTS - LOCKERS - MACHINES - - MECHAS + - MECHS - MEDICAL TOOLS + - MONEY - MEDKITS - - MESONS + - MICE - MIME CLOTHES - MINING TOOLS + - MONKEYS - MULTITOOLS - ORES - OXYGEN TANKS - PACKETS - PAIS - - PANTS + - PANTS # This might work better as jumpsuits, but the Discord is adamant that the word pants is funny so it stays - PAPERS - PARTICLE ACCELERATORS - PDAS @@ -664,6 +688,7 @@ - PETS - PIPES - PLANTS + - PLUSHIES - POSITRONIC BRAINS - PUDDLES - RACKS @@ -681,19 +706,19 @@ - SKELETONS - SOLAR PANELS - SOLARS + - SMALL LIZARD PLUSHIES - SPACE STATIONS - SPACESUITS + - SPESOS - STEEL SHEETS - STUN BATONS - SUITS - SUNGLASSES - - SUPPERMATTER SHARDS - SWORDS - SYRINGES - TABLES - TANKS - TELECOMMUNICATION EQUIPMENTS - - TELEPORTERS - TOILETS - TOOLBELTS - TOOLBOXES @@ -702,6 +727,7 @@ - TUBES - VEHICLES - VENDING MACHINES + - VITALS - WELDERS - WINDOWS - WIRECUTTERS @@ -732,7 +758,7 @@ - A SUPER FIGHTING ROBOT - A TALKING BROOMSTICK - A VACATION - - A WEIGHT LOSS REGIMENT + - A WEIGHT LOSS REGIME - ADDITIONAL PYLONS - ADVENTURE - AN ADULT @@ -746,13 +772,15 @@ - BRING ME THE GIRL - BRING ME TO LIFE - BULLETS - - CHILI DOGS + - CHILLI DOGS + - CHILLY DOGS - CORPSES - DEODORANT AND A BATH - ENOUGH CABBAGES - FIVE HUNDRED AND NINETY-NINE US DOLLARS - FIVE TEENAGERS WITH ATTITUDE - - GODDAMN FUCKING PIECE OF SHIT ASSHOLE BITCH-CHRISTING CUNT-SMUGGLING SWEARING + - GODDAMN FUCKING PIECE-OF-SHIT ASSHOLE SWEARING + - GOSHDARN EFFING PINCH-OF-SALT GOD-FEARING SELF-CENSORSHIP - GREENTEXT - HERESY - HEROES IN A HALF SHELL @@ -806,7 +834,10 @@ - TO CONSUME...CONSUME EVERYTHING... - TO GO TO DISNEYLAND - TO GO TO SYNDIELAND + - TO SUMMON OUR LORD NAR-SIE + - TO SUMMON OUR LORD RATVAR - TO SMOKE WEED EVERY DAY + - TO UNDERSTAND UNDERSTAND, UNDERSTAND UNDERSTAND, UNDERSTAND UNDERSTAND THE CONCEPT OF LOVE - TRAITORS - VEGETABLES @@ -894,11 +925,10 @@ - CLOWNS - COMMUNISTS - CORGIS - - CORTICAL BORERS - COWBOYS - CRABS - CULTISTS - - DARK GOD + - DARK GODS - DINOSAURS - DRUGS - EELS @@ -925,6 +955,7 @@ - REVENANTS - ROGUE CYBORGS - SERIAL KILLERS + - SHIT SECURITY OFFICERS - SINGULARITIES - SKELETONS - SLIMES @@ -932,7 +963,7 @@ - SNOWMEN - SPACE JESUS - SPACE NINJAS - - SPACE PIRATESS + - SPACE PIRATES - SPACE SPIDERS - SPIDERS - SYNDICATE AGENTS diff --git a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml index 2d47ecd352d..adc626bc114 100644 --- a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml +++ b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml @@ -10,7 +10,7 @@ - state: lung-r - type: Lung - type: Metabolizer - updateFrequency: 2.0 + updateInterval: 2.0 removeEmpty: true solutionOnBody: false solution: "Lung" diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 2e551702a99..93538d6f725 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -20,7 +20,7 @@ contents: - id: BoxSurvivalMedical - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib - type: entity diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 03128291b58..fbd4d7d934d 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -7,7 +7,7 @@ contents: - id: BoxSurvivalMedical - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib - type: entity diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/satchel.yml index b6ae3c2a9cb..ced9275d7f5 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -7,7 +7,7 @@ contents: - id: BoxSurvivalMedical - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib - type: entity diff --git a/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/unlockedboozeomat.yml b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/unlockedboozeomat.yml new file mode 100644 index 00000000000..0e5017ac871 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/unlockedboozeomat.yml @@ -0,0 +1,37 @@ +- type: vendingMachineInventory + id: BoozeOMatUnlockedInventory + startingInventory: + DrinkGlass: 15 #Kept glasses at top for ease to differentiate from booze. + DrinkShotGlass: 5 + DrinkGlassCoupeShaped: 5 + DrinkVacuumFlask: 1 + DrinkFlaskBar: 1 + DrinkShaker: 4 + CustomDrinkJug: 2 #to allow for custom drinks in the soda/booze dispensers + DrinkAleBottleFull: 8 + DrinkBeerBottleFull: 8 + DrinkBeerCan: 8 + DrinkWineCan: 8 + DrinkSolDryCan: 8 + DrinkWineBottleFull: 3 + DrinkSojuBottleFull: 1 + DrinkSakeBottleFull: 1 + DrinkGinBottleFull: 3 + DrinkRumBottleFull: 3 + DrinkTequilaBottleFull: 3 + DrinkVodkaBottleFull: 3 + DrinkWhiskeyBottleFull: 3 + #Mixers + DrinkColaBottleFull: 4 + DrinkCreamCarton: 5 + DrinkGrenadineBottleFull: 2 + DrinkJuiceLimeCarton: 3 + DrinkJuiceOrangeCarton: 3 + DrinkJuiceTomatoCarton: 3 + DrinkCoffeeLiqueurBottleFull: 1 + DrinkSodaWaterCan: 8 + DrinkSpaceMountainWindBottleFull: 3 + DrinkSpaceUpBottleFull: 3 + DrinkTonicWaterCan: 8 + DrinkVermouthBottleFull: 4 + #emaggedInventory: diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml index 37b4a65d98d..38bbd956868 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml @@ -7,7 +7,7 @@ contents: - id: BoxSurvivalSecurity - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib # - id: Flash - id: BruteAutoInjector diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml index 2ab94da0a4b..caf5aa3515b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml @@ -7,7 +7,7 @@ contents: - id: BoxSurvivalSecurity - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib # - id: Flash - id: BruteAutoInjector diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml index d2d081da462..9c27500a1f7 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml @@ -7,7 +7,7 @@ contents: - id: BoxSurvivalSecurity - id: EmergencyRollerBedSpawnFolded - - id: BodyBag_Folded + - id: BodyBagFolded - id: Portafib # - id: Flash - id: BruteAutoInjector diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml index c482da6188d..96efcf6ddfc 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Eyes/hud.yml @@ -23,7 +23,7 @@ - GlassesNearsight - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesPrescriptionHudSecurity name: prescription security hud description: A poorly done and rushed mix between half of a pair of prescription glasses and a security HUD allowing you to see clearly out of one eye and inspect the employee's ID and warning status in the other! @@ -32,7 +32,6 @@ sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi - type: Clothing sprite: DeltaV/Clothing/Eyes/Hud/prescsechud.rsi - - type: ShowSecurityIcons - type: Construction graph: PrescriptionSecHud node: prescsechud @@ -40,19 +39,3 @@ tags: - HudSecurity - GlassesNearsight - -- type: entity - parent: ClothingEyesBase - id: ClothingEyesHudSyndicateMed - name: syndicate medical visor - description: An upgraded syndicate visor with automatic health readings, designed for better detection of humanoids and their subsequent elimination. - components: - - type: Sprite - sprite: DeltaV/Clothing/Eyes/Hud/syndmed.rsi - - type: Clothing - sprite: DeltaV/Clothing/Eyes/Hud/syndmed.rsi - - type: ShowSyndicateIcons - - type: ShowSecurityIcons - - type: ShowHealthBars - damageContainers: - - Biological diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml index 51cba35429f..eeef0dbe43d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml @@ -62,14 +62,6 @@ - sprite: DeltaV/Mobs/Customization/hair.rsi state: classic_ombre -- type: marking - id: HumanHairClassicCrewcut - bodyPart: Hair - markingCategory: Hair - sprites: - - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classic_crewcut - - type: marking id: HumanHairClassicLong bodyPart: Hair diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml index 57aa38c3749..ab8c41f2f27 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml @@ -127,10 +127,6 @@ - type: Welder fuelReagent: Phlogiston tankSafe: true - litMeleeDamageBonus: - types: # When lit, negate standard melee damage and replace with heat - Heat: 10 - Blunt: -10 # welderOnSounds: # collection: WelderIfritHandOn # welderOffSounds: diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml index 96950317c1f..9e3eb961af3 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml @@ -143,7 +143,7 @@ - type: Bloodstream bloodMaxVolume: 60 - type: CanEscapeInventory - BaseResistTime: 3 + baseResistTime: 3 - type: MobPrice price: 250 # Their suits, while tiny, go for quite a bit on the market - type: IntrinsicRadioReceiver @@ -163,4 +163,4 @@ interactFailureString: petting-failure-nukie-mouse interactSuccessSpawn: EffectHearts interactSuccessSound: - path: /Audio/Animals/mouse_squeak.ogg \ No newline at end of file + path: /Audio/Animals/mouse_squeak.ogg diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml new file mode 100644 index 00000000000..d0810259803 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml @@ -0,0 +1,33 @@ +- type: entity + id: CigCartonPurple + parent: CigCartonGreen + name: De Jure carton + description: A carton containing 6 packets of De Jure. + components: + - type: Sprite + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi + layers: + - state: closed + - type: Item + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi + - type: StorageFill + contents: + - id: CigPackPurple + amount: 5 + +- type: entity + id: CigCartonCandy + parent: CigCartonGreen + name: Sugar Rush carton + description: A carton containing 6 packets of Sugar Rush. + components: + - type: Sprite + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi + layers: + - state: closed + - type: Item + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi + - type: StorageFill + contents: + - id: CigPackCandy + amount: 5 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml new file mode 100644 index 00000000000..ec6642e7b8d --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml @@ -0,0 +1,45 @@ +- type: entity + id: CigaretteOlive + suffix: olive + parent: Cigarette + name: cigarette + description: A roll of tobacco and nicotine soaked in some chemical, smells like olives. + components: + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 15 + reagents: + - ReagentId: Nicotine + Quantity: 10 + - ReagentId: OilOlive + Quantity: 5 + +- type: entity + id: CigaretteCandy + suffix: candy + parent: [Cigarette, FoodBase] + name: cigarette + description: Sugar sticks designed to look like a roll of nicotine and tobacco. + components: + - type: Appearance + - type: Food + - type: Tag + tags: + - FoodSnack + - type: FlavorProfile + flavors: + - sweet + - type: Sprite + sprite: Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi + state: unlit-icon + - type: Clothing + sprite: Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi + slots: [ mask ] + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Sugar + Quantity: 10 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml new file mode 100644 index 00000000000..09ab2e09eec --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -0,0 +1,29 @@ +- type: entity + id: CigPackPurple + parent: CigPackBase + name: De Jure packet + description: Your divine right to smoke. Tastes like olives and fake gold. + components: + - type: Sprite + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi + - type: Item + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi + - type: StorageFill + contents: + - id: CigaretteOlive + amount: 10 + +- type: entity + id: CigPackCandy + parent: CigPackBase + name: Sugar Rush packet + description: It's sweetened! + components: + - type: Sprite + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi + - type: Item + sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi + - type: StorageFill + contents: + - id: CigaretteCandy + amount: 10 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Electronics/door_access.yml index b3a5867d2de..1fea754ce67 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/Electronics/door_access.yml @@ -85,3 +85,11 @@ components: - type: AccessReader access: [["Psychologist"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMail + suffix: Mail, Locked + components: + - type: AccessReader + access: [["Mail"]] diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml index d27a8d8e70e..759f97a80bb 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml @@ -3,21 +3,24 @@ id: WindoorMailLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] - type: entity parent: WindoorSecure id: WindoorSecureMailLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] - type: entity parent: WindoorSecure id: WindoorSecureParamedicLocked suffix: Paramedic, Locked components: - - type: AccessReader - access: [["Paramedic"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsParamedic ] diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml index b4a1f8808eb..517f94700e1 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml @@ -27,7 +27,6 @@ machine_parts: !type:Container - type: CrewMonitoringServer - type: SingletonDeviceNetServer - ServerType: CrewMonitoringServer - type: DeviceNetwork deviceNetId: Wireless transmitFrequencyId: CrewMonitor @@ -37,7 +36,6 @@ range: 10000 # Mega range for Listening Post - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: ExtensionCableReceiver - type: Destructible thresholds: diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/vending_machines.yml index 4e9c251ce18..eb632356b2e 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/vending_machines.yml @@ -54,5 +54,7 @@ id: VendingMachineBoozeUnlocked suffix: Unlocked components: + - type: VendingMachine + pack: BoozeOMatUnlockedInventory - type: AccessReader enabled: false diff --git a/Resources/Prototypes/DeltaV/Flavors/candyflavors.yml b/Resources/Prototypes/DeltaV/Flavors/candyflavors.yml new file mode 100644 index 00000000000..66f4bb0af44 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Flavors/candyflavors.yml @@ -0,0 +1,236 @@ +# Flavors for lollipops and gumballs + +- type: candyFlavor + id: berry + name: berry + color: '#800080' + flavors: + - berry + +- type: candyFlavor + id: ginger + name: ginger + color: '#fbdba0' + flavors: + - gingersoda + +- type: candyFlavor + id: bananashake + name: banana shake + color: '#ffe135' + flavors: + - bananahonk + +- type: candyFlavor + id: vanilla + name: vanilla + color: '#f9e5bc' + flavors: + - creamy + - vanilla + +- type: candyFlavor + id: orange + name: orange + color: '#fa7000' + flavors: + - orange + +- type: candyFlavor + id: watermelon + name: watermelon + color: '#009345' + flavors: + - watermelon + +- type: candyFlavor + id: pineapple + name: pineapple + color: '#e6ae25' + flavors: + - pineapple + +- type: candyFlavor + id: rootbeer + name: root beer + color: '#290e05' + flavors: + - rootbeersoda + +- type: candyFlavor + id: lemon + name: lemon + color: '#fef250' + flavors: + - lemondrop + +- type: candyFlavor + id: cola + name: cola + color: '#3c3024' + flavors: + - cola + +- type: candyFlavor + id: icedtea + name: iced tea + color: '#e0a779' + flavors: + - icedtea + +- type: candyFlavor + id: peppermint + name: peppermint + color: '#47e7ad' + flavors: + - minty + +- type: candyFlavor + id: spearmint + name: spearmint + color: '#47e75b' + flavors: + - minty + +- type: candyFlavor + id: apple + name: apple + color: '#dd1533' + flavors: + - apple + +- type: candyFlavor + id: honey + name: honey + color: '#e79a3f' + flavors: + - honey + +- type: candyFlavor + id: bungo + name: bungo + color: '#ffe017' + flavors: + - bungo + +- type: candyFlavor + id: grape + name: grape + color: '#6c3461' + flavors: + - grape + +- type: candyFlavor + id: bubbletea + name: bubble tea + color: '#d2b18c' + flavors: + - bubbletea + +- type: candyFlavor + id: mystery + name: mystery flavor + color: '#202020' + flavors: + - spaceshroom # it's a "mysterious" flavor + +- type: candyFlavor + id: creamystrawberry + name: creamy strawberry + color: '#f8d9df' + flavors: + - creamy + - candystrawberry + +- type: candyFlavor + id: strawberryyogurt + name: strawberry yogurt + color: '#f8d9df' + flavors: + - sour + - candystrawberry + - milk + +- type: candyFlavor + id: sourapple + name: sour apple # mouth-puckering! + color: '#68aa2e' + flavors: + - sour + - apple + +- type: candyFlavor + id: bubblegum + name: bubble gum + color: '#f988d9' + flavors: + - candybubblegum + +- type: candyFlavor + id: chilibungo + name: chili bungo # don't ask, i found chili mango lollipops on google, and bungos supposedly taste similar to mango + color: '#813c23' + flavors: + - spicy + - bungo + +- type: candyFlavor + id: tequilasunrise + name: tequila sunrise + color: '#ffe48c' + flavors: + - tequilasunrise + +- type: candyFlavor + id: mime + name: mime + color: '#eeeeee' + flavors: + - nothing + +- type: candyFlavor + id: honeylemonginger + name: honey lemon ginger + color: '#e6d781' + flavors: + - sour + - honey + - gingersoda + +# weird flavors below! + +- type: candyFlavor + id: foof + name: foof + color: '#ff00ff' + flavors: + - pinkdrink + +- type: candyFlavor + id: feline + name: cat-flavored + color: '#7c4511' + flavors: + - cat + +- type: candyFlavor + id: blellow + name: blellow + color: '#737373' + flavors: + - blellow + +- type: candyFlavor + id: stale + name: stale + color: '#96818e' + flavors: + - terrible + - sadness + +- type: candyFlavor + id: weh + name: weh # sorry, doesn't actually make you weh! + color: '#59b23a' + flavors: + - weh diff --git a/Resources/Prototypes/DeltaV/Flavors/flavors.yml b/Resources/Prototypes/DeltaV/Flavors/flavors.yml index 382868db630..b76b0dccd99 100644 --- a/Resources/Prototypes/DeltaV/Flavors/flavors.yml +++ b/Resources/Prototypes/DeltaV/Flavors/flavors.yml @@ -115,3 +115,19 @@ id: arsonistsbrew flavorType: Complex description: flavor-complex-arsonistsbrew + +- type: flavor + id: blellow + flavorType: Complex + description: flavor-complex-blellow + +# this is prefixed with "candy" to avoid clashes with potential future strawberries upstream +- type: flavor + id: candystrawberry + flavorType: Complex + description: flavor-complex-candy-strawberry + +- type: flavor + id: candybubblegum + flavorType: Complex + description: flavor-complex-candy-bubblegum diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml index 73b0ca6549c..71a936ee3a1 100644 --- a/Resources/Prototypes/DeltaV/GameRules/events.yml +++ b/Resources/Prototypes/DeltaV/GameRules/events.yml @@ -36,7 +36,6 @@ noSpawn: true components: - type: StationEvent - id: VentCritters earliestStart: 15 minimumPlayers: 15 weight: 4 diff --git a/Resources/Prototypes/DeltaV/NPC/roboisseur.yml b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml index 2c0b3aee8a0..e7f0b5bcd09 100644 --- a/Resources/Prototypes/DeltaV/NPC/roboisseur.yml +++ b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml @@ -4,12 +4,22 @@ name: Mr. Butlertron description: It asks for food to deliver to exotic customers across the cosmos. Powered by the latest technology in bluespace food delivery. components: + - type: Anchorable + - type: Pullable - type: Sprite noRot: true drawdepth: Mobs sprite: DeltaV/Structures/Machines/roboisseur.rsi layers: - state: roboisseur-1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 1000 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: Roboisseur - type: Speech speechSounds: Pai diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index 73acf414bf7..6f513efd292 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -56,6 +56,8 @@ collection: VulpkaninWhines Howl: collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls Honk: collection: HarpyHonks Weh: @@ -98,6 +100,8 @@ collection: VulpkaninWhines Howl: collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls - type: emoteSounds id: FemaleVulpkanin @@ -136,3 +140,5 @@ collection: VulpkaninWhines Howl: collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml index 668281a6f64..eed28f0dbce 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml @@ -125,3 +125,15 @@ - howls! - howling. - howled. + +- type: emote + id: Awoo + category: Vocal + chatMessages: [awoos.] + chatTriggers: + - awoo. + - awoo! + - awoos. + - awoos! + - awooing. + - awooed. diff --git a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml index 2f904d3438c..703730daf38 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/base_clothingbelt.yml @@ -9,12 +9,14 @@ size: Normal - type: Clothing slots: [belt] + equipSound: + path: /Audio/Items/belt_equip.ogg quickEquip: false - type: PhysicalComposition materialComposition: Cloth: 50 - type: StaticPrice - price: 25 + price: 20 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 7a43d96a241..45860c93c06 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -161,7 +161,7 @@ - WhitelistChameleon - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesGlassesSecurity name: security glasses description: Upgraded sunglasses that provide flash immunity and a security HUD. @@ -184,7 +184,6 @@ - type: GuideHelp guides: - Security - - type: ShowSecurityIcons - type: IdentityBlocker coverage: EYES diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index fabb7bc6429..c919f9173b4 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -1,3 +1,13 @@ +- type: entity + id: ShowSecurityIcons + abstract: true + noSpawn: true + components: + - type: ShowJobIcons + - type: ShowMindShieldIcons + - type: ShowCriminalRecordIcons + + - type: entity parent: ClothingEyesBase id: ClothingEyesHudDiagnostic @@ -17,7 +27,7 @@ parent: ClothingEyesBase id: ClothingEyesHudMedical name: medical hud - description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. + description: A heads-up display that scans the humanoids in view and provides accurate data about their health status. components: - type: Sprite sprite: Clothing/Eyes/Hud/med.rsi @@ -34,7 +44,7 @@ - HudMedical - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSecurity name: security hud description: A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. @@ -43,7 +53,6 @@ sprite: Clothing/Eyes/Hud/sec.rsi - type: Clothing sprite: Clothing/Eyes/Hud/sec.rsi - - type: ShowSecurityIcons - type: Tag tags: - HudSecurity @@ -138,7 +147,7 @@ - type: ShowThirstIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMedSec name: medsec hud description: An eye display that looks like a mixture of medical and security huds. @@ -150,13 +159,12 @@ - type: Construction graph: HudMedSec node: medsecHud - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudMultiversal name: multiversal hud description: Filler @@ -165,7 +173,6 @@ sprite: Clothing/Eyes/Hud/medsecengi.rsi - type: Clothing sprite: Clothing/Eyes/Hud/medsecengi.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -176,7 +183,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudOmni name: omni hud description: Filler @@ -185,7 +192,6 @@ sprite: Clothing/Eyes/Hud/omni.rsi - type: Clothing sprite: Clothing/Eyes/Hud/omni.rsi - - type: ShowSecurityIcons - type: ShowHealthBars damageContainers: - Biological @@ -198,7 +204,7 @@ - type: ShowSyndicateIcons - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesBase, ShowSecurityIcons] id: ClothingEyesHudSyndicate name: syndicate visor description: The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. @@ -208,14 +214,26 @@ - type: Clothing sprite: Clothing/Eyes/Hud/synd.rsi - type: ShowSyndicateIcons - - type: ShowSecurityIcons - type: entity - parent: ClothingEyesGlassesSunglasses + parent: [ClothingEyesBase, ShowSecurityIcons] + id: ClothingEyesHudSyndicateAgent + name: syndicate agent visor + description: The Syndicate Agent's professional heads-up display, designed for quick diagnosis of their team's status. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/syndagent.rsi + - type: ShowSyndicateIcons + - type: ShowHealthBars + damageContainers: + - Biological + +- type: entity + parent: [ClothingEyesGlassesSunglasses, ShowSecurityIcons] id: ClothingEyesGlassesHiddenSecurity suffix: Syndicate - components: - - type: ShowSecurityIcons - type: entity parent: ClothingEyesHudMedical diff --git a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml index 38472e3901d..02cf0ab6f67 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/base_clothinghands.yml @@ -34,3 +34,13 @@ spawned: - id: MaterialCloth1 amount: 1 + +# gloves that cover the fingertips and have synthetic fibers +- type: entity + abstract: true + parent: ClothingHandsButcherable + id: ClothingHandsGlovesSyntheticBase + components: + - type: Fiber + fiberMaterial: fibers-synthetic + - type: FingerprintMask diff --git a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml index 4a78bd0a993..0fa298b648b 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/colored.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/colored.yml @@ -1,13 +1,8 @@ -# gloves that cover the fingertips and have synthetic fibers -- type: entity - abstract: true - parent: ClothingHandsButcherable - id: ClothingHandsGlovesSyntheticBase - components: - - type: Fiber - fiberMaterial: fibers-synthetic - - type: FingerprintMask +#DO NOT MAKE THESE THE SAME COLOR AS THE JUMPSUIT. It is going to cause contrast issues for those wearing the full set of color clothing and is almost definitely going to look worse. +#If you want to make it similar to the jumpsuit color, it should be slightly off. +#P.S: Most of these just use the shoe colors, so they end up having a nice "secondary" color when wearing the full set of color clothing. +# Purple Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorPurple @@ -15,12 +10,28 @@ description: Regular purple gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/purple.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#9C0DE1" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9C0DE1" + right: + - state: inhand-right + color: "#9C0DE1" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/purple.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#9C0DE1" - type: Fiber fiberColor: fibers-purple +# Red Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorRed @@ -28,31 +39,28 @@ description: Regular red gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/red.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#940000" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#940000" + right: + - state: inhand-right + color: "#940000" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/red.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#940000" - type: Fiber fiberColor: fibers-red -- type: entity - parent: ClothingHandsGlovesSyntheticBase - id: ClothingHandsGlovesColorBlack - name: black gloves - description: Regular black gloves that do not keep you from frying. - components: - - type: Sprite - sprite: Clothing/Hands/Gloves/Color/black.rsi - - type: Clothing - sprite: Clothing/Hands/Gloves/Color/black.rsi - - type: GloveHeatResistance - heatResistance: 1400 - - type: Butcherable - butcheringType: Knife - spawned: - - id: ClothingHandsGlovesFingerless - - type: Fiber - fiberColor: fibers-black - +# Blue Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorBlue @@ -60,12 +68,28 @@ description: Regular blue gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/blue.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#0089EF" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#0089EF" + right: + - state: inhand-right + color: "#0089EF" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/blue.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#0089EF" - type: Fiber fiberColor: fibers-blue +# Brown Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorBrown @@ -73,12 +97,28 @@ description: Regular brown gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/brown.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#723A02" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#723A02" + right: + - state: inhand-right + color: "#723A02" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/brown.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#723A02" - type: Fiber fiberColor: fibers-brown +# Grey Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorGray @@ -86,12 +126,28 @@ description: Regular grey gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/gray.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#999999" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#999999" + right: + - state: inhand-right + color: "#999999" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/gray.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#999999" - type: Fiber fiberColor: fibers-grey +# Green Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorGreen @@ -99,12 +155,28 @@ description: Regular green gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/green.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#5ABF2F" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5ABF2F" + right: + - state: inhand-right + color: "#5ABF2F" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/green.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#5ABF2F" - type: Fiber fiberColor: fibers-green +# Light Brown Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorLightBrown @@ -112,12 +184,28 @@ description: Regular light brown gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/lightbrown.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#C09F72" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#C09F72" + right: + - state: inhand-right + color: "#C09F72" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/lightbrown.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#C09F72" - type: Fiber fiberColor: fibers-brown +# Orange Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorOrange @@ -125,25 +213,87 @@ description: Regular orange gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/orange.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#EF8100" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EF8100" + right: + - state: inhand-right + color: "#EF8100" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/orange.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#EF8100" - type: Fiber fiberColor: fibers-orange +# White Gloves - type: entity parent: ClothingHandsGlovesSyntheticBase id: ClothingHandsGlovesColorWhite name: white gloves - description: Those gloves look fancy. + description: Regular white gloves that do not keep you from frying. components: - type: Sprite - sprite: Clothing/Hands/Gloves/Color/white.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + layers: + - state: icon + color: "#EAE8E8" + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" - type: Clothing - sprite: Clothing/Hands/Gloves/Color/white.rsi + sprite: Clothing/Hands/Gloves/Color/color.rsi + clothingVisuals: + gloves: + - state: equipped-HAND + color: "#EAE8E8" - type: Fiber fiberColor: fibers-white +# Black Gloves +# TECHNICALLY, if you ported the worn state to the RSI, this could be greyscaled, but I do not really feel like doing that. +- type: entity + parent: ClothingHandsGlovesSyntheticBase + id: ClothingHandsGlovesColorBlack + name: black gloves + description: Regular black gloves that do not keep you from frying. + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Color/black.rsi + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#535353" + right: + - state: inhand-right + color: "#535353" + - type: Clothing + sprite: Clothing/Hands/Gloves/Color/black.rsi + - type: GloveHeatResistance + heatResistance: 1400 + - type: Butcherable + butcheringType: Knife + spawned: + - id: ClothingHandsGlovesFingerless + - type: Fiber + fiberColor: fibers-black + +# Insulated Gloves (Yellow Gloves) +# Currently can not be greyscaled without looking like shit. - type: entity parent: ClothingHandsBase id: ClothingHandsGlovesColorYellow @@ -166,6 +316,7 @@ fiberMaterial: fibers-insulative fiberColor: fibers-yellow +# Budget Insulated Gloves - type: entity parent: ClothingHandsGlovesColorYellow id: ClothingHandsGlovesColorYellowBudget @@ -192,6 +343,7 @@ - 3.5 - 4 +# Conductive Insulated Gloves - type: entity parent: ClothingHandsGlovesColorYellow id: ClothingHandsGlovesConducting diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index bf08db78f71..96bdd61f94e 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -20,6 +20,7 @@ soundHit: collection: BoxingHit animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-red @@ -90,6 +91,7 @@ types: Blunt: 8 bluntStaminaDamageFactor: 0.0 # so blunt doesn't deal stamina damage at all + mustBeEquippedToUse: true - type: entity parent: ClothingHandsBase @@ -362,6 +364,7 @@ soundHit: collection: Punch animation: WeaponArcFist + mustBeEquippedToUse: true - type: Fiber fiberMaterial: fibers-leather fiberColor: fibers-blue diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index d13b284ff29..e1e5ddc11fa 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -133,11 +133,13 @@ unequipSound: /Audio/Mecha/mechmove03.ogg - type: Tag tags: - - HidesHair - WhitelistChameleon - HelmetEVA - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -173,10 +175,12 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon - - HidesNose - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity abstract: true @@ -248,6 +252,6 @@ - type: TemperatureProtection coefficient: 0.7 - type: GroupExamine - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index f1489b0ddd6..c897eedb939 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -17,9 +17,9 @@ sprite: Clothing/Head/Hardsuits/basic.rsi - type: Clothing sprite: Clothing/Head/Hardsuits/basic.rsi - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout #Atmospherics Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 30907f70b5b..2417ef4c9dd 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -384,9 +384,12 @@ sprite: Clothing/Head/Hats/plaguedoctor.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadBase @@ -549,9 +552,11 @@ sprite: Clothing/Head/Hats/witch.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - ClothMade + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 83d15eb2427..3bf8b527f16 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -110,10 +110,14 @@ Blunt: 0.95 Slash: 0.95 Piercing: 0.95 + - type: HideLayerClothing + slots: + - Hair + - Snout #Janitorial Bombsuit Helmet - type: entity - parent: ClothingHeadBase + parent: ClothingHeadHelmetBombSuit id: ClothingHeadHelmetJanitorBombSuit name: janitorial bombsuit helmet description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. @@ -123,9 +127,6 @@ sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi - type: Clothing sprite: Clothing/Head/Helmets/janitor_bombsuit.rsi - - type: IngestionBlocker - - type: ExplosionResistance - damageCoefficient: 0.9 #Cult Helmet - type: entity @@ -160,10 +161,13 @@ sprite: Clothing/Head/Helmets/spaceninja.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon - type: IngestionBlocker - type: IdentityBlocker + - type: HideLayerClothing + slots: + - Hair + - Snout #Templar Helmet - type: entity @@ -223,8 +227,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Atmos Fire Helmet - type: entity @@ -247,8 +254,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Chitinous Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 9ab528581af..0bca209d51e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -13,8 +13,11 @@ - type: IngestionBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadHatHoodBioGeneral @@ -94,9 +97,11 @@ sprite: Clothing/Head/Hoods/chaplain.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -110,8 +115,10 @@ sprite: Clothing/Head/Hoods/cult.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -125,9 +132,11 @@ sprite: Clothing/Head/Hoods/nun.rsi - type: Tag tags: - - HidesHair - HamsterWearable - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -145,9 +154,10 @@ Heat: 0.95 Radiation: 0.65 - type: BreathMask - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair + - Snout - type: entity parent: ClothingHeadBase @@ -161,8 +171,10 @@ sprite: Clothing/Head/Hoods/goliathcloak.rsi - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -175,9 +187,9 @@ sprite: Clothing/Head/Hoods/iansuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/iansuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -190,9 +202,9 @@ sprite: Clothing/Head/Hoods/carpsuit.rsi - type: Clothing sprite: Clothing/Head/Hoods/carpsuit.rsi - - type: Tag - tags: - - HidesHair + - type: HideLayerClothing + slots: + - Hair - type: entity parent: ClothingHeadBase @@ -207,8 +219,11 @@ - type: IdentityBlocker - type: Tag tags: - - HidesHair - WhitelistChameleon + - type: HideLayerClothing + slots: + - Hair + - Snout #Winter Coat Hoods - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index 93d9b1e084f..cd5c63d7ec7 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -19,6 +19,9 @@ - type: Tag tags: - WhitelistChameleon + - type: HideLayerClothing + slots: + - Snout - type: entity parent: WeldingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index 246b47b8003..f5ad2fb6c83 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -25,7 +25,10 @@ - type: Tag tags: - Bandana - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskBandanaBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index ad738792a73..850050b2d38 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -15,7 +15,10 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGas @@ -177,6 +180,8 @@ materialComposition: Steel: 50 Plastic: 100 + - type: StaticPrice + price: 12.5 # increases in price after decomposed into raw materials - type: entity parent: ClothingMaskBase @@ -195,7 +200,9 @@ tags: - ClownMask - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClownBase @@ -206,7 +213,9 @@ - ClownMask - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskClown @@ -233,9 +242,9 @@ sprite: Clothing/Mask/joy.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -253,7 +262,9 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskPullableBase @@ -304,9 +315,10 @@ - type: BreathMask - type: IngestionBlocker - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskClownBase @@ -336,8 +348,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasExplorer @@ -363,8 +378,11 @@ - type: Tag tags: - WhitelistChameleon - - HidesHair - - HidesNose + - type: HideLayerClothing + slots: + - Hair + - Snout + hideOnToggle: true - type: entity parent: ClothingMaskGasERT @@ -399,7 +417,9 @@ tags: - HamsterWearable - WhitelistChameleon - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: IdentityBlocker - type: entity @@ -414,9 +434,9 @@ sprite: Clothing/Mask/fox.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -430,9 +450,9 @@ sprite: Clothing/Mask/bee.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -446,9 +466,9 @@ sprite: Clothing/Mask/bear.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -462,9 +482,9 @@ sprite: Clothing/Mask/raven.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -478,9 +498,9 @@ sprite: Clothing/Mask/jackal.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase @@ -494,9 +514,9 @@ sprite: Clothing/Mask/bat.rsi - type: BreathMask - type: IdentityBlocker - - type: Tag - tags: - - HidesNose + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 1e85073da9b..0a0fc68469a 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -6,8 +6,7 @@ suffix: Chameleon components: - type: Tag - tags: # ignore "WhitelistChameleon" tag - - HidesNose + tags: [] # ignore "WhitelistChameleon" tag - type: Sprite sprite: Clothing/Mask/gas.rsi - type: Clothing @@ -21,6 +20,9 @@ interfaces: - key: enum.ChameleonUiKey.Key type: ChameleonBoundUserInterface + - type: HideLayerClothing + slots: + - Snout - type: entity parent: ClothingMaskGasChameleon @@ -28,4 +30,6 @@ suffix: Voice Mask, Chameleon components: - type: VoiceMasker - default: ClothingMaskGas + - type: HideLayerClothing + slots: + - Snout diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index 0d22a653dbf..0054a3645c7 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -151,3 +151,35 @@ clothingVisuals: neck: - state: trans-equipped + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckAutismPin + name: autism pin + description: be autism do crime + components: + - type: Sprite + sprite: Clothing/Neck/Misc/autismpin.rsi + layers: + - state: autism + - type: Clothing + sprite: Clothing/Neck/Misc/autismpin.rsi + clothingVisuals: + neck: + - state: autism-equipped + +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckGoldAutismPin + name: golden autism pin + description: be autism do warcrime + components: + - type: Sprite + sprite: Clothing/Neck/Misc/goldautismpin.rsi + layers: + - state: goldautism + - type: Clothing + sprite: Clothing/Neck/Misc/goldautismpin.rsi + clothingVisuals: + neck: + - state: goldautism-equipped diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 65f7c4f1134..6dccd594025 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -41,7 +41,7 @@ - key: enum.StorageUiKey.Key type: StorageBoundUserInterface - type: StaticPrice - price: 80 + price: 70 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index bb918dacca0..473abe4be06 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -43,7 +43,36 @@ sprite: Clothing/OuterClothing/Coats/gentlecoat.rsi - type: entity - parent: ClothingOuterStorageBase + abstract: true + id: ClothingOuterArmorHoS + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + Caustic: 0.75 # not the full 90% from ss13 because of the head + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + abstract: true + id: ClothingOuterArmorWarden + components: + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.7 + Heat: 0.7 + - type: ExplosionResistance + damageCoefficient: 0.9 + +- type: entity + parent: [ClothingOuterArmorHoS, ClothingOuterStorageBase] id: ClothingOuterCoatHoSTrench name: head of security's armored trenchcoat description: A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence. @@ -51,17 +80,7 @@ - type: Sprite sprite: DeltaV/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi # DeltaV - resprite - type: Clothing - sprite: DeltaV/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi # DeltaV - resprite - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.70 - Heat: 0.70 - Caustic: 0.75 #not the full 90% from ss13 because of the head - - type: ExplosionResistance - damageCoefficient: 0.90 + sprite: DeltaV/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi - type: entity parent: ClothingOuterStorageBase @@ -286,7 +305,7 @@ sprite: Clothing/OuterClothing/Coats/pirate.rsi - type: entity - parent: ClothingOuterStorageBase + parent: [ClothingOuterArmorWarden, ClothingOuterStorageBase] id: ClothingOuterCoatWarden name: warden's armored jacket description: A sturdy, utilitarian jacket designed to protect a warden from any brig-bound threats. @@ -295,15 +314,6 @@ sprite: Clothing/OuterClothing/Coats/warden.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/warden.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.70 - Heat: 0.70 - - type: ExplosionResistance - damageCoefficient: 0.90 - type: entity parent: ClothingOuterStorageBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 165744c6b71..b0e22d3b46f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -373,7 +373,7 @@ parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitRd name: experimental research hardsuit - description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. Able to be compressed to small sizes. + description: A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/rd.rsi @@ -398,7 +398,9 @@ sprintModifier: 0.75 - type: HeldSpeedModifier - type: Item - size: Normal + size: Huge + shape: + - 0,0,4,4 #5X5, can fit in a duffel bag but nothing smaller. - type: Tag tags: - WhitelistChameleon @@ -924,7 +926,7 @@ #MISC. HARDSUITS #Clown Hardsuit - type: entity - parent: ClothingOuterHardsuitBase + parent: ClothingOuterEVASuitBase # Delta V-Brings back clownsuit but make it make sense id: ClothingOuterHardsuitClown name: clown hardsuit description: A custom-made clown hardsuit. @@ -936,24 +938,27 @@ - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 - - type: ExplosionResistance - damageCoefficient: 0.9 - - type: Armor - modifiers: - coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.9 - Caustic: 0.8 + #- type: ExplosionResistance # Delta V-Brings back clownsuit but make it make sense + # damageCoefficient: 0.9 + #- type: Armor + # modifiers: + # coefficients: + # Blunt: 0.9 + # Slash: 0.9 + # Piercing: 0.9 + # Caustic: 0.8 - type: ClothingSpeedModifier walkModifier: 0.9 sprintModifier: 0.9 - type: HeldSpeedModifier - #- type: Construction # DeltaV - Prevent clowns from making the hardsuit - # graph: ClownHardsuit - # node: clownHardsuit + - type: Construction + graph: ClownHardsuit + node: clownHardsuit - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitClown + - type: ContainerContainer # Delta V-Brings back clownsuit but make it make sense + containers: + toggleable-clothing: !type:ContainerSlot {} #Mime Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 96a97be87ec..5e82959c4e2 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -8,6 +8,9 @@ sprite: Clothing/OuterClothing/Suits/bombsuit.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/bombsuit.rsi + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 - type: Armor modifiers: coefficients: @@ -24,7 +27,7 @@ - WhitelistChameleon - type: entity - parent: ClothingOuterBaseLarge + parent: ClothingOuterSuitBomb id: ClothingOuterSuitJanitorBomb name: janitorial bomb suit description: A heavy helmet designed to withstand explosions formed from reactions between chemicals. @@ -34,16 +37,6 @@ sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi - type: Clothing sprite: Clothing/OuterClothing/Suits/janitor_bombsuit.rsi - - type: ClothingSpeedModifier - walkModifier: 0.8 - sprintModifier: 0.8 - - type: ExplosionResistance - damageCoefficient: 0.15 - - type: GroupExamine - - type: Tag - tags: - - Hardsuit - - WhitelistChameleon - type: entity parent: ClothingOuterBaseLarge diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index f8b54ad8350..cd502a8f781 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -32,7 +32,7 @@ - ClothMade - WhitelistChameleon - type: StaticPrice - price: 70 + price: 50 - type: entity parent: ClothingOuterWinterCoat @@ -231,9 +231,23 @@ clothingPrototype: ClothingHeadHatHoodWinterHOP - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorHoS, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterHoS + name: head of security's armored winter coat + description: A sturdy, utilitarian winter coat designed to protect a head of security from any brig-bound threats and hypothermic events. + components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coathosarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterHOS + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterHoSUnarmored name: head of security's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coathos.rsi @@ -445,22 +459,28 @@ clothingPrototype: ClothingHeadHatHoodWinterSci - type: entity - parent: ClothingOuterWinterCoatToggleable + parent: [ClothingOuterArmorWarden, ClothingOuterWinterCoatToggleable] id: ClothingOuterWinterWarden name: warden's armored winter coat description: A sturdy, utilitarian winter coat designed to protect a warden from any brig-bound threats and hypothermic events. components: + - type: Sprite + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: Clothing + sprite: Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodWinterWarden + +- type: entity + parent: ClothingOuterWinterCoatToggleable + id: ClothingOuterWinterWardenUnarmored + name: warden's winter coat + description: A sturdy coat, a warm coat, but not an armored coat. + components: - type: Sprite sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - type: Clothing sprite: Clothing/OuterClothing/WinterCoats/coatwarden.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.70 - Slash: 0.70 - Piercing: 0.8 #slightly less bulletproof then warden's normal coat - Heat: 0.70 - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterWarden diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/color.yml b/Resources/Prototypes/Entities/Clothing/Shoes/color.yml index 0bfe153b59d..16608aacc99 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/color.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/color.yml @@ -1,3 +1,6 @@ +# DO NOT ARBITRARILY CHANGE THESE TO MAKE THEM "CONSISTENT" WITH THE COLOR JUMPSUITS. You are probably just going to make them look worse. + +# Black Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorBlack @@ -5,10 +8,59 @@ description: Stylish black shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/black.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#3f3f3f" #Different from the worn state for contrast reasons. + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: soles-inhand-right + - type: Clothing + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#1d1d1d" + - state: soles-equipped-FEET + +# White Shoes +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesColorWhite + name: white shoes + description: Don't take them off at your office Christmas party. + components: + - type: Sprite + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#EAE8E8" #Deliberately NOT pure white + - state: soles-icon + - type: Item + inhandVisuals: #We don't want the sole icons. Since this is white, it's just going to look weird (white on white doesn't really contrast.) + left: + - state: inhand-left + color: "#EAE8E8" + right: + - state: inhand-right + color: "#EAE8E8" - type: Clothing - sprite: Clothing/Shoes/Color/black.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#EAE8E8" + - state: contrastedsoles-equipped-FEET +# Blue Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorBlue @@ -16,10 +68,30 @@ description: Stylish blue shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/blue.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#0089EF" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#0089EF" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#0089EF" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/blue.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#0089EF" + - state: soles-equipped-FEET +# Brown Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorBrown @@ -27,10 +99,30 @@ description: A pair of brown shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/brown.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#723A02" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#723A02" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#723A02" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/brown.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#592D01" + - state: soles-equipped-FEET +# Green Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorGreen @@ -38,10 +130,30 @@ description: Stylish green shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/green.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#5ABF2F" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#5ABF2F" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#5ABF2F" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/green.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#5ABF2F" + - state: soles-equipped-FEET +# Orange Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorOrange @@ -49,21 +161,30 @@ description: Stylish orange shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/orange.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#EF8100" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EF8100" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#EF8100" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/orange.rsi - -- type: entity - parent: ClothingShoesBaseButcherable - id: ClothingShoesColorPurple - name: purple shoes - description: Stylish purple shoes. - components: - - type: Sprite - sprite: Clothing/Shoes/Color/purple.rsi - - type: Clothing - sprite: Clothing/Shoes/Color/purple.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#EF8100" + - state: soles-equipped-FEET +# Red Shoes - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesColorRed @@ -71,28 +192,87 @@ description: Stylish red shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/red.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#940000" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#940000" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#940000" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/red.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#940000" + - state: soles-equipped-FEET +# Yellow Shoes - type: entity parent: ClothingShoesBaseButcherable - id: ClothingShoesColorWhite - name: white shoes - description: Don't take them off at your office Christmas party. + id: ClothingShoesColorYellow + name: yellow shoes + description: Stylish yellow shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/white.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#EBE216" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#EBE216" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#EBE216" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/white.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#EBE216" + - state: soles-equipped-FEET +# Purple Shoes - type: entity parent: ClothingShoesBaseButcherable - id: ClothingShoesColorYellow - name: yellow shoes - description: Stylish yellow shoes. + id: ClothingShoesColorPurple + name: purple shoes + description: Stylish purple shoes. components: - type: Sprite - sprite: Clothing/Shoes/Color/yellow.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#9C0DE1" + - state: soles-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9C0DE1" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#9C0DE1" + - state: soles-inhand-right - type: Clothing - sprite: Clothing/Shoes/Color/yellow.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#9C0DE1" + - state: soles-equipped-FEET \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 4b9cbeef424..987eda582e4 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -15,6 +15,7 @@ parent: [ClothingShoesBaseButcherable, ClothingSlotBase] id: ClothingShoesClownBase components: + - type: WaddleWhenWorn - type: ItemSlots slots: item: @@ -157,9 +158,28 @@ - type: Tag tags: [] # ignore "WhitelistChameleon" tag - type: Sprite - sprite: Clothing/Shoes/Color/black.rsi + sprite: Clothing/Shoes/color.rsi + layers: + - state: icon + color: "#3f3f3f" + - state: soles-icon - type: Clothing - sprite: Clothing/Shoes/Color/black.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#1d1d1d" + - state: soles-equipped-FEET + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: soles-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: soles-inhand-right - type: ChameleonClothing slot: [FEET] default: ClothingShoesColorBlack diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml new file mode 100644 index 00000000000..1f77059841b --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml @@ -0,0 +1,491 @@ +# White Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorWhite + name: white jumpskirt + description: A generic white jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + - state: trinkets-inhand-left + right: + - state: inhand-right + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + - state: trinkets-equipped-INNERCLOTHING + +# Grey Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorGrey + name: grey jumpskirt + description: A tasteful grey jumpskirt that reminds you of the good old days. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#b3b3b3" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b3b3b3" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#b3b3b3" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#b3b3b3" + - state: trinkets-equipped-INNERCLOTHING + +# Black Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorBlack + name: black jumpskirt + description: A generic black jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#3f3f3f" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3f3f3f" + - state: trinkets-equipped-INNERCLOTHING + +# Blue Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorBlue + name: blue jumpskirt + description: A generic blue jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#52aecc" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#52aecc" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#52aecc" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#52aecc" + - state: trinkets-equipped-INNERCLOTHING + +# Dark Blue Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorDarkBlue + name: dark blue jumpskirt + description: A generic dark blue jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#3285ba" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#3285ba" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3285ba" + - state: trinkets-equipped-INNERCLOTHING + +# Teal Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorTeal + name: teal jumpskirt + description: A generic teal jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#77f3b7" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#77f3b7" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#77f3b7" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#77f3b7" + - state: trinkets-equipped-INNERCLOTHING + +# Green Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorGreen + name: green jumpskirt + description: A generic green jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#9ed63a" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9ed63a" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#9ed63a" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9ed63a" + - state: trinkets-equipped-INNERCLOTHING + + # Dark Green Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorDarkGreen + name: dark green jumpskirt + description: A generic dark green jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#79CC26" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#79CC26" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#79CC26" + - state: trinkets-equipped-INNERCLOTHING + +# Orange Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorOrange + name: orange jumpskirt + description: Don't wear this near paranoid security officers. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#ff8c19" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8c19" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ff8c19" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8c19" + - state: trinkets-equipped-INNERCLOTHING + +# Pink Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorPink + name: pink jumpskirt + description: Just looking at this makes you feel fabulous. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#ffa69b" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffa69b" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ffa69b" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffa69b" + - state: trinkets-equipped-INNERCLOTHING + +# Red Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorRed + name: red jumpskirt + description: A generic red jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#eb0c07" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#eb0c07" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#eb0c07" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#eb0c07" + - state: trinkets-equipped-INNERCLOTHING + +# Yellow Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorYellow + name: yellow jumpskirt + description: A generic yellow jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#ffe14d" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ffe14d" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffe14d" + - state: trinkets-equipped-INNERCLOTHING + +# Purple Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorPurple + name: purple jumpskirt + description: A generic light purple jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#9f70cc" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9f70cc" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#9f70cc" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9f70cc" + - state: trinkets-equipped-INNERCLOTHING + +# Light Brown Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorLightBrown + name: light brown jumpskirt + description: A generic light brown jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#c59431" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#c59431" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#c59431" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#c59431" + - state: trinkets-equipped-INNERCLOTHING + +# Brown Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorBrown + name: brown jumpskirt + description: A generic brown jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#a17229" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a17229" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#a17229" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#a17229" + - state: trinkets-equipped-INNERCLOTHING + +# Maroon Jumpskirt +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpskirtColorMaroon + name: maroon jumpskirt + description: A generic maroon jumpskirt with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#cc295f" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#cc295f" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#cc295f" + - state: trinkets-equipped-INNERCLOTHING diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml new file mode 100644 index 00000000000..f56afabeac1 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml @@ -0,0 +1,503 @@ +# White Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorWhite + name: white jumpsuit + description: A generic white jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + - state: trinkets-inhand-left + right: + - state: inhand-right + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + - state: trinkets-equipped-INNERCLOTHING + +# Grey Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorGrey + name: grey jumpsuit + description: A tasteful grey jumpsuit that reminds you of the good old days. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#b3b3b3" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#b3b3b3" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#b3b3b3" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#b3b3b3" + - state: trinkets-equipped-INNERCLOTHING + +# Black Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBlack + name: black jumpsuit + description: A generic black jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#3f3f3f" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3f3f3f" + - state: trinkets-equipped-INNERCLOTHING + +# Blue Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBlue + name: blue jumpsuit + description: A generic blue jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#52aecc" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#52aecc" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#52aecc" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#52aecc" + - state: trinkets-equipped-INNERCLOTHING + +# Dark Blue Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorDarkBlue + name: dark blue jumpsuit + description: A generic dark blue jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#3285ba" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3285ba" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#3285ba" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#3285ba" + - state: trinkets-equipped-INNERCLOTHING + +# Teal Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorTeal + name: teal jumpsuit + description: A generic teal jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#77f3b7" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#77f3b7" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#77f3b7" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#77f3b7" + - state: trinkets-equipped-INNERCLOTHING + +# Green Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorGreen + name: green jumpsuit + description: A generic green jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#9ed63a" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9ed63a" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#9ed63a" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9ed63a" + - state: trinkets-equipped-INNERCLOTHING + + # Dark Green Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorDarkGreen + name: dark green jumpsuit + description: A generic dark green jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#79CC26" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#79CC26" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#79CC26" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#79CC26" + - state: trinkets-equipped-INNERCLOTHING + +# Orange Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorOrange + name: orange jumpsuit + description: Don't wear this near paranoid security officers. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#ff8c19" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8c19" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ff8c19" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8c19" + - state: trinkets-equipped-INNERCLOTHING + +# Pink Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorPink + name: pink jumpsuit + description: Just looking at this makes you feel fabulous. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#ffa69b" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffa69b" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ffa69b" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffa69b" + - state: trinkets-equipped-INNERCLOTHING + +# Red Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorRed + name: red jumpsuit + description: A generic red jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#eb0c07" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#eb0c07" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#eb0c07" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#eb0c07" + - state: trinkets-equipped-INNERCLOTHING + +# Yellow Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorYellow + name: yellow jumpsuit + description: A generic yellow jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#ffe14d" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ffe14d" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#ffe14d" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ffe14d" + - state: trinkets-equipped-INNERCLOTHING + +# Purple Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorPurple + name: purple jumpsuit + description: A generic light purple jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#9f70cc" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#9f70cc" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#9f70cc" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#9f70cc" + - state: trinkets-equipped-INNERCLOTHING + +# Light Brown Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorLightBrown + name: light brown jumpsuit + description: A generic light brown jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#c59431" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#c59431" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#c59431" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#c59431" + - state: trinkets-equipped-INNERCLOTHING + +# Brown Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorBrown + name: brown jumpsuit + description: A generic brown jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#a17229" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#a17229" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#a17229" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#a17229" + - state: trinkets-equipped-INNERCLOTHING + +# Maroon Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitColorMaroon + name: maroon jumpsuit + description: A generic maroon jumpsuit with no rank markings. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#cc295f" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#cc295f" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#cc295f" + - state: trinkets-inhand-right + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#cc295f" + - state: trinkets-equipped-INNERCLOTHING + +# Rainbow Jumpsuit +- type: entity + parent: ClothingUniformBase + id: ClothingUniformColorRainbow + name: rainbow jumpsuit + description: A multi-colored jumpsuit! + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 23c35fbc8a7..d6363120ea5 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -35,7 +35,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtChiefEngineer name: chief engineer's jumpskirt - description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpskirt given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/ce.rsi @@ -178,7 +178,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtHoSAlt name: head of security's turtleneck - description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. Its sturdy fabric provides minor protection from slash and pierce damage. + description: It's a turtleneck worn by those strong and disciplined enough to achieve the position of Head of Security. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/hos_alt.rsi @@ -263,15 +263,34 @@ sprite: DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi # DeltaV - resprite - type: entity - parent: ClothingUniformSkirtBase + parent: ClothingUniformBase id: ClothingUniformJumpskirtPrisoner name: prisoner jumpskirt description: Busted. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/prisoner.rsi + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + layers: + - state: icon + color: "#ff8300" + - state: prisoner-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8300" + - state: prisoner-inhand-left + right: + - state: inhand-right + color: "#ff8300" + - state: prisoner-inhand-right - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/prisoner.rsi + sprite: Clothing/Uniforms/Jumpskirt/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8300" + - state: prisoner-equipped-INNERCLOTHING - type: SuitSensor controlsLocked: true randomMode: false @@ -279,8 +298,8 @@ - type: Tag tags: - ClothMade - - WhitelistChameleon - PrisonUniform + - WhitelistChameleon - Skirt # Delta-V - Skirt Tag so Harpies can wear it. - type: entity @@ -320,7 +339,7 @@ parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtScientist name: scientist jumpskirt - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite sprite: Clothing/Uniforms/Jumpskirt/scientist.rsi @@ -360,184 +379,6 @@ - type: Clothing sprite: DeltaV/Clothing/Uniforms/Jumpskirt/warden.rsi # DeltaV - resprite -# COLORS - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorGrey - description: A tasteful grey jumpskirt that reminds you of the good old days. - name: grey jumpskirt - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/grey.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/grey.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorBlack - name: black jumpskirt - description: A generic black jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/black.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/black.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorBlue - name: blue jumpskirt - description: A generic blue jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/blue.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/blue.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorGreen - name: green jumpskirt - description: A generic green jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/green.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/green.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorOrange - name: orange jumpskirt - description: "Don't wear this near paranoid security officers." - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/orange.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/orange.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorPink - name: pink jumpskirt - description: "Just looking at this makes you feel fabulous." - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/pink.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/pink.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorRed - name: red jumpskirt - description: A generic red jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/red.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/red.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorWhite - name: white jumpskirt - description: A generic white jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/white.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/white.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorYellow - name: yellow jumpskirt - description: A generic yellow jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/yellow.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/yellow.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorDarkBlue - name: dark blue jumpskirt - description: A generic dark blue jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorTeal - name: teal jumpskirt - description: A generic teal jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/teal.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/teal.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorPurple - name: purple jumpskirt - description: A generic purple jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorDarkGreen - name: dark green jumpskirt - description: A generic dark green jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorLightBrown - name: light brown jumpskirt - description: A generic light brown jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorBrown - name: brown jumpskirt - description: A generic brown jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/brown.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/brown.rsi - -- type: entity - parent: ClothingUniformSkirtBase - id: ClothingUniformJumpskirtColorMaroon - name: maroon jumpskirt - description: A generic maroon jumpskirt with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/Color/maroon.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/Color/maroon.rsi - - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtLibrarian diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index c3e8da706d3..0ba26d4eabf 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -94,7 +94,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitChiefEngineer name: chief engineer's jumpsuit - description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding. + description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/ce.rsi @@ -458,9 +458,28 @@ description: Busted. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/prisoner.rsi + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#ff8300" + - state: prisoner-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#ff8300" + - state: prisoner-inhand-left + right: + - state: inhand-right + color: "#ff8300" + - state: prisoner-inhand-right - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/prisoner.rsi + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING + color: "#ff8300" + - state: prisoner-equipped-INNERCLOTHING - type: SuitSensor controlsLocked: true randomMode: false @@ -521,7 +540,7 @@ parent: ClothingUniformBase id: ClothingUniformJumpsuitScientist name: scientist jumpsuit - description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist. + description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi @@ -594,195 +613,6 @@ - type: Clothing sprite: DeltaV/Clothing/Uniforms/Jumpsuit/warden.rsi # DeltaV - resprite -# COLORS - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorGrey - description: A tasteful grey jumpsuit that reminds you of the good old days. - name: grey jumpsuit - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/grey.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/grey.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorBlack - name: black jumpsuit - description: A generic black jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorBlue - name: blue jumpsuit - description: A generic blue jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/blue.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/blue.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorGreen - name: green jumpsuit - description: A generic green jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/green.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/green.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorOrange - name: orange jumpsuit - description: "Don't wear this near paranoid security officers." - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/orange.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/orange.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorPink - name: pink jumpsuit - description: "Just looking at this makes you feel fabulous." - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/pink.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/pink.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorRed - name: red jumpsuit - description: A generic red jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/red.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/red.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorWhite - name: white jumpsuit - description: A generic white jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/white.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/white.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorYellow - name: yellow jumpsuit - description: A generic yellow jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/yellow.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/yellow.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorDarkBlue - name: dark blue jumpsuit - description: A generic dark blue jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorTeal - name: teal jumpsuit - description: A generic teal jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/teal.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/teal.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorPurple - name: purple jumpsuit - description: A generic purple jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorDarkGreen - name: dark green jumpsuit - description: A generic dark green jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorLightBrown - name: light brown jumpsuit - description: A generic light brown jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorBrown - name: brown jumpsuit - description: A generic brown jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/brown.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/brown.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitColorMaroon - name: maroon jumpsuit - description: A generic maroon jumpsuit with no rank markings. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/maroon.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/maroon.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformColorRainbow - name: rainbow jumpsuit - description: A multi-colored jumpsuit! - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/rainbow.rsi - - type: entity parent: ClothingUniformBase id: ClothingUniformOveralls diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml index 88278077b5c..e113f0ffc76 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml @@ -10,9 +10,9 @@ - type: Sprite sprite: Clothing/Uniforms/procedural.rsi layers: - - state: base_torso_standart + - state: base_torso_standard map: [ "torso" ] - - state: base_leg_standart + - state: base_leg_standard map: [ "leg" ] - state: mask_null map: [ "decor" ] @@ -24,9 +24,9 @@ sprite: Clothing/Uniforms/procedural.rsi clothingVisuals: jumpsuit: - - state: base_torso_standart + - state: base_torso_standard map: [ "torso" ] - - state: base_leg_standart + - state: base_leg_standard map: [ "leg" ] - state: mask_null map: [ "decor" ] @@ -42,7 +42,7 @@ offset: 0 prototypes: - ClothingUniformRandomArmless - - ClothingUniformRandomStandart + - ClothingUniformRandomStandard - ClothingUniformRandomBra - ClothingUniformRandomShorts - ClothingUniformRandomShirt @@ -57,7 +57,7 @@ - torso: base_torso_armless: Sixteen leg: - base_leg_standart: Sixteen + base_leg_standard: Sixteen base_leg_short: Sixteen base_leg_skirt: Sixteen base_leg_skirt_long: Sixteen @@ -76,16 +76,16 @@ - type: entity parent: ClothingUniformRandom - id: ClothingUniformRandomStandart + id: ClothingUniformRandomStandard name: colorful costume components: - type: RandomSprite available: - torso: - base_torso_standart: Sixteen - base_torso_standart2: Sixteen + base_torso_standard: Sixteen + base_torso_standard2: Sixteen leg: - base_leg_standart: Sixteen + base_leg_standard: Sixteen base_leg_short: Sixteen base_leg_skirt: Sixteen base_leg_skirt_long: Sixteen @@ -100,15 +100,15 @@ decor_torso_armless8: Sixteen decor_torso_armless9: Sixteen decor_torso_armless10: Sixteen - decor_torso_standart1: Sixteen - decor_torso_standart2: Sixteen - decor_torso_standart3: Sixteen - decor_torso_standart4: Sixteen - decor_torso_standart5: Sixteen - decor_torso_standart6: Sixteen - decor_torso_standart7: Sixteen - decor_torso_standart8: Sixteen - decor_torso_standart9: Sixteen + decor_torso_standard1: Sixteen + decor_torso_standard2: Sixteen + decor_torso_standard3: Sixteen + decor_torso_standard4: Sixteen + decor_torso_standard5: Sixteen + decor_torso_standard6: Sixteen + decor_torso_standard7: Sixteen + decor_torso_standard8: Sixteen + decor_torso_standard9: Sixteen mask_null: "" - type: entity @@ -121,7 +121,7 @@ - torso: base_torso_bra: Sixteen leg: - base_leg_standart: Sixteen + base_leg_standard: Sixteen base_leg_short: Sixteen base_leg_skirt: Sixteen base_leg_skirt_long: Sixteen @@ -143,7 +143,7 @@ - torso: mask_null: "" leg: - base_leg_standart: Sixteen + base_leg_standard: Sixteen base_leg_short: Sixteen base_leg_skirt: Sixteen base_leg_skirt_long: Sixteen @@ -159,11 +159,11 @@ base_torso_armless: Sixteen mask_null: "" leg: - base_leg_standart: Sixteen + base_leg_standard: Sixteen base_leg_short: Sixteen decor: base_torso_shirt: Sixteen overlay: decor_torso_shirt1: Sixteen decor_torso_shirt2: Sixteen - decor_torso_shirt3: Sixteen \ No newline at end of file + decor_torso_shirt3: Sixteen diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml index d7a5e2b787d..ad02f4aa676 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/specific.yml @@ -8,9 +8,28 @@ - type: Tag tags: [] # ignore "WhitelistChameleon" tag - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi + sprite: Clothing/Uniforms/Jumpsuit/color.rsi + layers: + - state: icon + color: "#3f3f3f" + - state: trinkets-icon + - type: Item + inhandVisuals: + left: + - state: inhand-left + color: "#3f3f3f" + - state: trinkets-inhand-left + right: + - state: inhand-right + color: "#3f3f3f" + - state: trinkets-inhand-right - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/Color/black.rsi + sprite: Clothing/Shoes/color.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + color: "#1d1d1d" + - state: soles-equipped-FEET - type: SuitSensor randomMode: false mode: SensorOff diff --git a/Resources/Prototypes/Entities/Clothing/base_clothing.yml b/Resources/Prototypes/Entities/Clothing/base_clothing.yml index 92a698dd301..44613e042f8 100644 --- a/Resources/Prototypes/Entities/Clothing/base_clothing.yml +++ b/Resources/Prototypes/Entities/Clothing/base_clothing.yml @@ -10,7 +10,7 @@ tags: - WhitelistChameleon - type: StaticPrice - price: 15 + price: 10 - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 2c845e1d0f0..fecf9f19a47 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -142,8 +142,11 @@ mode: CardinalFlags - type: SolutionContainerManager solutions: - puddle: { maxVol: 1000 } + puddle: + maxVol: 1000 - type: Puddle + - type: MixableSolution + solution: puddle - type: Appearance - type: ActiveEdgeSpreader - type: EdgeSpreader diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml index 6edf341e108..a889b939bde 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_produce.yml @@ -33,8 +33,8 @@ - FoodOnion - FoodOnionRed - FoodMushroom - - FoodChili - - FoodChilly + - FoodChiliPepper + - FoodChillyPepper - FoodAloe - FoodPoppy - FoodLingzhi diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index f641fbec39e..4c820998ea2 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -66,6 +66,8 @@ - ClothingUniformJumpsuitPirate - ClothingShoesBootsCowboyFancy - ClothingHeadHatCowboyBountyHunter + - ClothingNeckAutismPin + - ClothingNeckGoldAutismPin rareChance: 0.01 prototypes: - Lighter diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml index c68075dc508..3ca7a78b398 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/gauze.yml @@ -1,8 +1,8 @@ - type: marking id: GauzeLefteyePatch bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -13,10 +13,10 @@ state: gauze_lefteye_2 - type: marking - id: GauzeLefteyeTape + id: GauzeLefteyePad bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -29,8 +29,8 @@ - type: marking id: GauzeRighteyePatch bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -41,10 +41,10 @@ state: gauze_righteye_2 - type: marking - id: GauzeRighteyeTape + id: GauzeRighteyePad bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -57,8 +57,8 @@ - type: marking id: GauzeBlindfold bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Moth, Dwarf, Human, Arachnid, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Harpy, Vulpkanin] # Delta V - Felinid, Oni, Harpy, Vulpkanin coloring: default: type: @@ -71,8 +71,8 @@ - type: marking id: GauzeShoulder bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -85,8 +85,8 @@ - type: marking id: GauzeStomach bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -99,8 +99,8 @@ - type: marking id: GauzeUpperArmRight bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -113,8 +113,8 @@ - type: marking id: GauzeLowerArmRight bodyPart: RArm, RHand - markingCategory: Arms - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -127,8 +127,8 @@ - type: marking id: GauzeLeftArm bodyPart: LArm, LHand - markingCategory: Arms - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -141,8 +141,8 @@ - type: marking id: GauzeLowerLegLeft bodyPart: LFoot - markingCategory: Legs - speciesRestriction: [Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -155,8 +155,8 @@ - type: marking id: GauzeUpperLegLeft bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -169,8 +169,8 @@ - type: marking id: GauzeUpperLegRight bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -183,8 +183,8 @@ - type: marking id: GauzeLowerLegRight bodyPart: RFoot - markingCategory: Legs - speciesRestriction: [Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -197,8 +197,8 @@ - type: marking id: GauzeBoxerWrapRight bodyPart: RHand - markingCategory: Arms - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -211,8 +211,8 @@ - type: marking id: GauzeBoxerWrapLeft bodyPart: LHand - markingCategory: Arms - speciesRestriction: [Moth, Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin + markingCategory: Overlay + speciesRestriction: [Dwarf, Human, Reptilian, Arachnid, SlimePerson, Felinid, Oni, Vulpkanin] # Delta V - Felinid, Oni, Vulpkanin coloring: default: type: @@ -226,7 +226,7 @@ - type: marking id: GauzeLizardLefteyePatch bodyPart: Eyes - markingCategory: Head + markingCategory: Overlay speciesRestriction: [Reptilian] coloring: default: @@ -235,12 +235,12 @@ color: "#FFFFFF" sprites: - sprite: Mobs/Customization/gauze.rsi - state: gauze_lizardlefteye + state: gauze_lizard_lefteye - type: marking id: GauzeLizardRighteyePatch bodyPart: Eyes - markingCategory: Head + markingCategory: Overlay speciesRestriction: [Reptilian] coloring: default: @@ -249,12 +249,12 @@ color: "#FFFFFF" sprites: - sprite: Mobs/Customization/gauze.rsi - state: gauze_lizardrighteye + state: gauze_lizard_righteye - type: marking id: GauzeLizardFootRight bodyPart: RFoot - markingCategory: Legs + markingCategory: Overlay speciesRestriction: [Reptilian] coloring: default: @@ -263,12 +263,12 @@ color: "#FFFFFF" sprites: - sprite: Mobs/Customization/gauze.rsi - state: gauze_lizardfoot_r + state: gauze_lizard_foot_r - type: marking id: GauzeLizardFootLeft bodyPart: LFoot - markingCategory: Legs + markingCategory: Overlay speciesRestriction: [Reptilian] coloring: default: @@ -277,12 +277,12 @@ color: "#FFFFFF" sprites: - sprite: Mobs/Customization/gauze.rsi - state: gauze_lizardfoot_l + state: gauze_lizard_foot_l - type: marking id: GauzeLizardBlindfold bodyPart: Eyes - markingCategory: Head + markingCategory: Overlay speciesRestriction: [Reptilian] coloring: default: @@ -291,4 +291,187 @@ color: "#FFFFFF" sprites: - sprite: Mobs/Customization/gauze.rsi - state: gauze_lizardblindfold + state: gauze_lizard_blindfold + +# Moth Specific Markings +- type: marking + id: GauzeMothBlindfold + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_blindfold + +- type: marking + id: GauzeMothShoulder + bodyPart: Chest + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_shoulder + +- type: marking + id: GauzeMothStomach + bodyPart: Chest + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_abdomen + +- type: marking + id: GauzeMothLeftEyePatch + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_lefteye_2 + +- type: marking + id: GauzeMothLeftEyePad + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_lefteye_1 + +- type: marking + id: GauzeMothRightEyePatch + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_righteye_2 + +- type: marking + id: GauzeMothRightEyePad + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_righteye_1 + +- type: marking + id: GauzeMothUpperArmRight + bodyPart: RArm + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_upperarm_r + +- type: marking + id: GauzeMothUpperArmLeft + bodyPart: LArm + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_upperarm_l + +- type: marking + id: GauzeMothUpperLegRight + bodyPart: RLeg + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_upperleg_r + +- type: marking + id: GauzeMothUpperLegLeft + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_upperleg_l + +- type: marking + id: GauzeMothLowerLegRight + bodyPart: RFoot + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_lowerleg_r + +- type: marking + id: GauzeMothLowerLegLeft + bodyPart: LFoot + markingCategory: Overlay + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Mobs/Customization/gauze.rsi + state: gauze_moth_lowerleg_l diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index d1ed51013a2..b7d9266327d 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -184,6 +184,17 @@ - sprite: Mobs/Customization/reptilian_parts.rsi state: snout_sharp +- type: marking + id: LizardSnoutSplotch + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_primary + - sprite: Mobs/Customization/reptilian_parts.rsi + state: snout_splotch_secondary + - type: marking id: LizardChestTiger bodyPart: Chest diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 190a669d1ed..54666398c88 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -231,7 +231,8 @@ - AllAccessBorg - type: AccessReader access: [["Command"], ["Research"]] - - type: ShowSecurityIcons + - type: ShowJobIcons + - type: ShowMindShieldIcons - type: entity id: BaseBorgChassisSyndicate diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 6393bdc41a7..118dd6ede4d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -914,9 +914,8 @@ maxVol: 250 - type: Udder reagentId: MilkGoat - targetSolution: udder - quantity: 25 - updateRate: 20 + quantityPerUpdate: 25 + growthDelay: 20 - type: Wooly - type: Food solution: wool diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml index bc63deeac36..8a10337c946 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml @@ -84,7 +84,7 @@ 500: Dead - type: Metabolizer solutionOnBody: false - updateFrequency: 0.25 + updateInterval: 0.25 metabolizerTypes: [ Dragon ] groups: - id: Medicine @@ -165,7 +165,6 @@ explosionMaxTileIntensity: 10 - type: ProjectileAnomaly projectilePrototype: ProjectileIcicle - targetNonSentientChance: 0.1 - type: TempAffectingAnomaly tempChangePerSecond: -25 hotspotExposeTemperature: -1000 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index 01fce382e37..c2380c40278 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -229,6 +229,7 @@ description: It consists of a liquid, and it wants to dissolve you in itself. components: - type: GhostRole + prob: 0 description: ghost-role-information-angry-slimes-description - type: NpcFactionMember factions: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index 633a4ff3cac..6fca4e6a63e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -66,3 +66,98 @@ interactFailureString: petting-failure-generic interactSuccessSound: path: /Audio/Animals/lizard_happy.ogg + +- type: entity + id: MobTomatoKiller + parent: + - BaseSimpleMob + - MobDamageable + - MobBloodstream + - MobFlammable + - MobCombat + name: tomato killer + description: it seems today it's not you eating tomatoes, it's the tomatoes eating you. + components: + - type: Item + size: Huge + - type: NpcFactionMember + factions: + - SimpleHostile + - type: HTN + rootTask: + task: KillerTomatoCompound + - type: NPCImprintingOnSpawnBehaviour + whitelist: + components: + - HumanoidAppearance + - type: Sprite + sprite: Mobs/Demons/tomatokiller.rsi + noRot: true + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + - type: Bloodstream + bloodReagent: JuiceTomato + bloodMaxVolume: 50 + chemicalMaxVolume: 30 + - type: DamageStateVisuals + states: + Alive: + Base: alive + Dead: + Base: dead + - type: Butcherable + spawned: + - id: FoodMeatTomato + amount: 2 + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 100 + behaviors: + - !type:GibBehavior { } + - type: MobThresholds + thresholds: + 0: Alive + 24: Dead + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.30 + density: 80 + mask: + - MobMask + layer: + - MobLayer + - type: MeleeWeapon + hidden: true + damage: + groups: + Brute: 4 + animation: WeaponArcBite + - type: Climbing + - type: NameIdentifier + group: GenericNumber + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 80: 0.5 + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Effects/Footsteps/slime1.ogg + params: + volume: 3 + - type: Tag + tags: + - FootstepSound + - Fruit + - type: Extractable + grindableSolutionName: bloodstream + - type: PotencyVisuals + - type: Appearance + - type: Produce + seedId: killerTomato diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 42b7ff9e211..9a4d4ec3aae 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -60,8 +60,8 @@ - type: NameIdentifier group: GenericNumber - type: Repairable - fuelcost: 15 doAfterDelay: 8 + fuelCost: 15 - type: Pullable - type: Tag tags: @@ -115,11 +115,16 @@ description: Horrifying. components: - type: SpamEmitSound + minInterval: 2 + maxInterval: 12 sound: collection: BikeHorn - type: Sprite sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot + - type: HTN + rootTask: + task: HonkbotCompound - type: Slippery launchForwardsMultiplier: 2 - type: Speech diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index c64479369a6..2edcdaac851 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -86,7 +86,7 @@ methods: [ Touch ] effects: - !type:HealthChange - scaled: true + scaleByQuantity: true damage: types: Heat: 3 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 80e87d3670c..f038e439f46 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -75,8 +75,6 @@ followEntity: true - type: CargoOrderConsole - type: CrewMonitoringConsole - snap: false - precision: 3 - type: GeneralStationRecordConsole - type: DeviceNetwork deviceNetId: Wireless diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 025b8d917c7..0eda8ae9d76 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -85,9 +85,13 @@ 0: Alive 450: Critical 500: Dead + - type: SlowOnDamage + speedModifierThresholds: + 250: 0.7 + 400: 0.5 - type: Metabolizer solutionOnBody: false - updateFrequency: 0.25 + updateInterval: 0.25 metabolizerTypes: [ Dragon ] groups: - id: Medicine @@ -132,8 +136,6 @@ id: MobDragon components: - type: Dragon - spawnsLeft: 2 - spawnsProto: MobCarpDragon spawnRiftAction: ActionSpawnRift - type: GenericAntag rule: Dragon diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index c7cd40988d4..ae4a370f9d1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -66,7 +66,7 @@ mask: - FlyingMobMask layer: - - FlyingMobLayer + - Opaque - type: Damageable damageContainer: Biological - type: MobState @@ -86,6 +86,8 @@ animation: WeaponArcFist attackRate: 1.8 autoAttack: true + soundHit: + collection: Punch damage: types: Blunt: 20 @@ -227,6 +229,8 @@ angle: 30 animation: WeaponArcFist attackRate: 1.8 + soundHit: + collection: BikeHorn damage: types: Blunt: 5 diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index d99b796fc26..93a1ba2932a 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -47,7 +47,7 @@ methods: [ Touch ] effects: - !type:HealthChange - scaled: true + scaleByQuantity: true damage: types: Blunt: 2 @@ -62,7 +62,7 @@ methods: [ Touch ] effects: - !type:HealthChange - scaled: true + scaleByQuantity: true damage: types: Poison: 5 diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index fe36754b9b5..9901504abc1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -52,6 +52,11 @@ accent: dwarf - type: Speech speechSounds: Bass + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index 7bf96efe2cc..f1464c977ae 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -16,6 +16,11 @@ spawned: - id: FoodMeatHuman amount: 5 + - type: HumanoidAppearance + species: Human + hideLayersOnEquip: + - Hair + - Snout - type: PotentialPsionic #Nyano - Summary: makes potentially psionic. - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index b2dbedb642d..e46f522d153 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -53,7 +53,7 @@ methods: [ Touch ] effects: - !type:HealthChange - scaled: true + scaleByQuantity: true damage: types: Heat: 2 diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index ac9aabbeadb..065d62c748d 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -60,6 +60,21 @@ damage: 400 behaviors: - !type:GibBehavior { } + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 1500 + behaviors: + - !type:SpawnEntitiesBehavior + spawnInContainer: true + spawn: + Ash: + min: 1 + max: 1 + - !type:BurnBodyBehavior { } + - !type:PlaySoundBehavior + sound: + collection: MeatLaserImpact - type: RadiationReceiver - type: Stamina - type: MobState diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml index 84639c9af0f..aef0c5a8f5a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks-cartons.yml @@ -2,6 +2,7 @@ parent: DrinkBase id: DrinkCartonBaseFull abstract: true + suffix: Full components: - type: Openable sound: @@ -14,6 +15,9 @@ solutions: drink: maxVol: 50 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Sprite state: icon - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 4dbfa464a50..b9c0ba6e9d6 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -10,6 +10,8 @@ solutions: drink: maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true - type: Drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index b6455735cc1..73b1e06f9bb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -3,6 +3,7 @@ parent: DrinkBase id: DrinkBottlePlasticBaseFull abstract: true + suffix: Full components: - type: Tag tags: @@ -38,6 +39,9 @@ - type: PhysicalComposition materialComposition: Plastic: 100 + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: entity parent: DrinkBottlePlasticBaseFull @@ -744,7 +748,7 @@ parent: DrinkBottlePlasticBaseFull id: DrinkSugarJug name: sugar jug - suffix: for drinks + suffix: For Drinks, Full description: some people put this in their coffee... components: - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 585e5ed14d9..ca67e51792e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -6,7 +6,7 @@ components: - type: Drink - type: Openable - - type: PressurizedDrink + - type: Shakeable - type: SolutionContainerManager solutions: drink: @@ -14,6 +14,8 @@ - ReagentId: Cola Quantity: 30 maxVol: 30 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 15 @@ -34,6 +36,8 @@ solution: drink - type: DrainableSolution solution: drink + - type: PressurizedSolution + solution: drink - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 4fc2e170d5b..9e2322019ea 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -10,7 +10,8 @@ solutions: drink: maxVol: 20 - canMix: true + - type: MixableSolution + solution: drink - type: FitsInDispenser solution: drink - type: DrawableSolution diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index 2fd2331f91e..ef6208b69d4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -146,6 +146,9 @@ - type: RandomFillSolution solution: drink weightedRandomId: RandomFillMopwata + - type: PressurizedSolution + solution: drink + - type: Shakeable - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index c80398e3496..829d68279d4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -8,7 +8,10 @@ solutions: drink: maxVol: 100 + - type: MixableSolution + solution: drink - type: Drink + - type: Shakeable # Doesn't do anything, but I mean... - type: FitsInDispenser solution: drink - type: DrawableSolution diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml index 86bc34f3c8b..67154963d1f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/trash_drinks.yml @@ -5,6 +5,7 @@ parent: BaseItem abstract: true description: An empty bottle. + suffix: Empty components: - type: Sprite state: icon @@ -24,6 +25,8 @@ damage: types: Blunt: 0 + - type: MixableSolution + solution: drink - type: Spillable solution: drink - type: FitsInDispenser @@ -93,6 +96,7 @@ parent: BaseItem abstract: true description: An empty carton. + suffix: Empty components: - type: Sprite state: icon @@ -100,6 +104,8 @@ solutions: drink: maxVol: 50 + - type: MixableSolution + solution: drink - type: SolutionTransfer canChangeTransferAmount: true maxTransferAmount: 5 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 07d07e370be..71b38959ce3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -711,7 +711,7 @@ state: suppermatter - type: SliceableFood slice: FoodCakeSuppermatterSlice - TotalCount: 8 + count: 8 - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 45953296351..70303cfdff4 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -19,6 +19,8 @@ - map: ["enum.SolutionContainerLayers.Fill"] state: fill-1 visible: false + - type: MixableSolution + solution: food - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index 58fe2a34154..bbe5cf244b2 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -32,7 +32,6 @@ size: Tiny - type: Drink solution: food - refillable: false - type: Openable sound: collection: packetOpenSounds @@ -523,7 +522,7 @@ # Shakers - type: entity - parent: BaseFoodCondimentBottle + parent: BaseFoodCondiment id: BaseFoodShaker abstract: true name: empty shaker @@ -561,6 +560,8 @@ acts: [ "Destruction" ] - type: Sprite state: shaker-empty + - type: RefillableSolution + solution: food - type: entity parent: BaseFoodShaker diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 3f0277e1bc3..302c0d98b66 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -1133,9 +1133,9 @@ Quantity: 1 - type: entity - name: chili + name: chili pepper parent: FoodProduceBase - id: FoodChili + id: FoodChiliPepper description: Spicy, best not touch your eyes. components: - type: FlavorProfile @@ -1163,7 +1163,7 @@ - type: entity name: chilly pepper parent: FoodProduceBase - id: FoodChilly + id: FoodChillyPepper description: Icy hot. components: - type: FlavorProfile diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml index 374a396a5a6..0049c389b5b 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml @@ -6,5 +6,5 @@ description: "Like a cigar, but for tough teens. (WARNING:Pour only water into the vape)" components: - type: Sprite - sprite: Objects/Consumable/Smokeables/Vapes/vape-standart.rsi + sprite: Objects/Consumable/Smokeables/Vapes/vape-standard.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml b/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml index e4cd6ba0dea..61554d0621b 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/ashtray.yml @@ -17,6 +17,8 @@ whitelist: tags: - Burnt + - Cigarette + - Cigar maxItemSize: Tiny grid: - 0,0,9,0 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 1fcd85562b2..377ffb16a5c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -277,27 +277,6 @@ recipes: - ArtifactAnalyzerMachineCircuitboard -- type: entity - id: TraversalDistorterMachineCircuitboard - parent: BaseMachineCircuitboard - name: traversal distorter machine board - description: A machine printed circuit board for a traversal distorter. - components: - - type: Sprite - state: science - - type: MachineBoard - prototype: MachineTraversalDistorter - requirements: - Manipulator: 1 - Capacitor: 2 - materialRequirements: - Steel: 5 - Cable: 1 - - type: ReverseEngineering # Nyano - difficulty: 2 - recipes: - - TraversalDistorterMachineCircuitboard - - type: entity id: ArtifactCrusherMachineCircuitboard parent: BaseMachineCircuitboard @@ -1517,4 +1496,18 @@ MatterBin: 1 Manipulator: 3 materialRequirements: - Glass: 1 \ No newline at end of file + Glass: 1 + +- type: entity + parent: BaseMachineCircuitboard + id: JukeboxCircuitBoard + name: jukebox machine board + description: A machine printed circuit board for a jukebox. + components: + - type: MachineBoard + prototype: Jukebox + materialRequirements: + WoodPlank: 5 + Steel: 2 + Glass: 5 + Cable: 2 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml index f520c2d4bd1..380525bdd18 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door.yml @@ -21,7 +21,7 @@ key: enum.DoorElectronicsConfigurationUiKey.Key allowedItems: tags: - - Multitool + - DoorElectronicsConfigurator - type: UserInterface interfaces: - key: enum.DoorElectronicsConfigurationUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index d9332e7d9aa..495d91cd2df 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -1,51 +1,44 @@ - +# Command - type: entity parent: DoorElectronics - id: DoorElectronicsService - suffix: Service, Locked - components: - - type: AccessReader - access: [["Service"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsTheatre - suffix: Theatre, Locked + id: DoorElectronicsCaptain + suffix: Captain, Locked components: - type: AccessReader - access: [["Theatre"]] + access: [["Captain"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChapel - suffix: Chapel, Locked + id: DoorElectronicsHeadOfPersonnel + suffix: HeadOfPersonnel, Locked components: - type: AccessReader - access: [["Chapel"]] + access: [["HeadOfPersonnel"]] - type: entity parent: DoorElectronics - id: DoorElectronicsJanitor - suffix: Janitor, Locked + id: DoorElectronicsCommand + suffix: Command, Locked components: - type: AccessReader - access: [["Janitor"]] + access: [["Command"]] +# Service - type: entity parent: DoorElectronics - id: DoorElectronicsKitchen - suffix: Kitchen, Locked + id: DoorElectronicsBar + suffix: Bar, Locked components: - type: AccessReader - access: [["Kitchen"]] + access: [["Bar"]] - type: entity parent: DoorElectronics - id: DoorElectronicsBar + id: DoorElectronicsBarKitchen suffix: Bar, Locked components: - type: AccessReader - access: [["Bar"]] + access: [["Bar"], ["Kitchen"]] - type: entity parent: DoorElectronics @@ -57,132 +50,136 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsLawyer - suffix: Lawyer, Locked + id: DoorElectronicsChapel + suffix: Chapel, Locked components: - type: AccessReader - access: [["Lawyer"]] + access: [["Chapel"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCaptain - suffix: Captain, Locked + id: DoorElectronicsTheatre + suffix: Theatre, Locked components: - type: AccessReader - access: [["Captain"]] + access: [["Theatre"]] - type: entity parent: DoorElectronics - id: DoorElectronicsExternal - suffix: External, Locked + id: DoorElectronicsKitchen + suffix: Kitchen, Locked components: - type: AccessReader - access: [["External"]] + access: [["Kitchen"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCargo - suffix: Cargo, Locked + id: DoorElectronicsKitchenHydroponics + suffix: Kitchen/Hydroponics, Locked components: - type: AccessReader - access: [["Cargo"]] + access: [["Kitchen"], ["Hydroponics"]] - type: entity parent: DoorElectronics - id: DoorElectronicsEngineering - suffix: Engineering, Locked + id: DoorElectronicsJanitor + suffix: Janitor, Locked components: - type: AccessReader - access: [["Engineering"]] + access: [["Janitor"]] - type: entity parent: DoorElectronics - id: DoorElectronicsAtmospherics - suffix: Atmospherics, Locked + id: DoorElectronicsLawyer + suffix: Lawyer, Locked components: - type: AccessReader - access: [["Atmospherics"]] + access: [["Lawyer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsFreezer - suffix: Freezer, Locked + id: DoorElectronicsService + suffix: Service, Locked components: - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] + access: [["Service"]] +# Cargo - type: entity parent: DoorElectronics - id: DoorElectronicsSalvage - suffix: Salvage, Locked + id: DoorElectronicsQuartermaster + suffix: Quartermaster, Locked components: - type: AccessReader - access: [["Salvage"]] + access: [["Quartermaster"]] - type: entity parent: DoorElectronics - id: DoorElectronicsMedical - suffix: Medical, Locked + id: DoorElectronicsSalvage + suffix: Salvage, Locked components: - type: AccessReader - access: [["Medical"]] + access: [["Salvage"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChemistry - suffix: Chemistry, Locked + id: DoorElectronicsCargo + suffix: Cargo, Locked components: - type: AccessReader - access: [["Chemistry"]] + access: [["Cargo"]] +# Engineering - type: entity parent: DoorElectronics - id: DoorElectronicsResearch - suffix: Research, Locked + id: DoorElectronicsChiefEngineer + suffix: ChiefEngineer, Locked components: - type: AccessReader - access: [["Research"]] + access: [["ChiefEngineer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsScience - suffix: Science, Locked + id: DoorElectronicsAtmospherics + suffix: Atmospherics, Locked components: - type: AccessReader - access: [["Research"], ["Medical"]] + access: [["Atmospherics"]] - type: entity parent: DoorElectronics - id: DoorElectronicsCommand - suffix: Command, Locked + id: DoorElectronicsEngineering + suffix: Engineering, Locked components: - type: AccessReader - access: [["Command"]] + access: [["Engineering"]] +# Science - type: entity parent: DoorElectronics - id: DoorElectronicsCentralCommand - suffix: CentralCommand, Locked + id: DoorElectronicsResearchDirector + suffix: ResearchDirector, Locked components: - type: AccessReader - access: [["CentralCommand"]] + access: [["ResearchDirector"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChiefMedicalOfficer - suffix: ChiefMedicalOfficer, Locked + id: DoorElectronicsMedicalResearch + suffix: Medical/Science, Locked components: - type: AccessReader - access: [["ChiefMedicalOfficer"]] + access: [["Research"], ["Medical"]] - type: entity parent: DoorElectronics - id: DoorElectronicsChiefEngineer - suffix: ChiefEngineer, Locked + id: DoorElectronicsResearch + suffix: Research, Locked components: - type: AccessReader - access: [["ChiefEngineer"]] + access: [["Research"]] +# Security - type: entity parent: DoorElectronics id: DoorElectronicsHeadOfSecurity @@ -193,27 +190,19 @@ - type: entity parent: DoorElectronics - id: DoorElectronicsResearchDirector - suffix: ResearchDirector, Locked - components: - - type: AccessReader - access: [["ResearchDirector"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsHeadOfPersonnel - suffix: HeadOfPersonnel, Locked + id: DoorElectronicsArmory + suffix: Armory, Locked components: - type: AccessReader - access: [["HeadOfPersonnel"]] + access: [["Armory"]] - type: entity parent: DoorElectronics - id: DoorElectronicsQuartermaster - suffix: Quartermaster, Locked + id: DoorElectronicsDetective + suffix: Detective, Locked components: - type: AccessReader - access: [["Quartermaster"]] + access: [["Detective"]] - type: entity parent: DoorElectronics @@ -229,15 +218,7 @@ suffix: Security/Lawyer, Locked components: - type: AccessReader - access: [["Security", "Lawyer"]] - -- type: entity - parent: DoorElectronics - id: DoorElectronicsDetective - suffix: Detective, Locked - components: - - type: AccessReader - access: [["Detective"]] + access: [["Security"], ["Lawyer"]] #- type: entity # parent: DoorElectronics @@ -247,29 +228,39 @@ # - type: AccessReader # access: [["Brig"]] +# Medical - type: entity parent: DoorElectronics - id: DoorElectronicsArmory - suffix: Armory, Locked + id: DoorElectronicsChiefMedicalOfficer + suffix: ChiefMedicalOfficer, Locked components: - type: AccessReader - access: [["Armory"]] + access: [["ChiefMedicalOfficer"]] - type: entity parent: DoorElectronics - id: DoorElectronicsVault - suffix: Vault, Locked + id: DoorElectronicsChemistry + suffix: Chemistry, Locked components: - type: AccessReader - access: [["Security", "Command"]] + access: [["Chemistry"]] - type: entity parent: DoorElectronics - id: DoorElectronicsMaintenance - suffix: Maintenance, Locked + id: DoorElectronicsMedical + suffix: Medical, Locked components: - type: AccessReader - access: [["Maintenance"]] + access: [["Medical"]] + +# Syndicate +- type: entity + parent: DoorElectronics + id: DoorElectronicsNukeop + suffix: Nukeop, Locked + components: + - type: AccessReader + access: [["NuclearOperative"]] - type: entity parent: DoorElectronics @@ -279,18 +270,35 @@ - type: AccessReader access: [["SyndicateAgent"]] +# Misc - type: entity parent: DoorElectronics - id: DoorElectronicsNukeop - suffix: Nukeop, Locked + id: DoorElectronicsCentralCommand + suffix: CentralCommand, Locked components: - type: AccessReader - access: [["NuclearOperative"]] + access: [["CentralCommand"]] - type: entity parent: DoorElectronics - id: DoorElectronicsRnDMed - suffix: Medical/Science, Locked + id: DoorElectronicsExternal + suffix: External, Locked components: - type: AccessReader - access: [["Research"], ["Medical"]] + access: [["External"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMaintenance + suffix: Maintenance, Locked + components: + - type: AccessReader + access: [["Maintenance"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsVault + suffix: Vault, Locked + components: + - type: AccessReader + access: [["Security"], ["Command"]] diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml index aa889341b1b..db4406905a6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/signaller.yml @@ -32,7 +32,13 @@ description: A handheld device used for remotely sending signals to objects within a small radius of about 50 meters. components: - type: Sprite - state: signaller2 + state: advanced + - type: Item + inhandVisuals: + left: + - state: advanced-inhand-left + right: + - state: advanced-inhand-right - type: WirelessNetworkConnection range: 50 - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml index 372b6891130..b2f159f4636 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml @@ -35,6 +35,5 @@ acts: [ "Destruction" ] - type: ApcPowerReceiver powerLoad: 15000 - priority: High - type: StaticPrice price: 1500 diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index e523bbe16ec..0563826a570 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -90,5 +90,6 @@ sprite: Structures/Doors/Airlocks/Standard/security.rsi state: closed - type: LogProbeCartridge + - type: GuideHelp guides: - Forensics diff --git a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml new file mode 100644 index 00000000000..e0212810210 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -0,0 +1,71 @@ +- type: entity + parent: BaseItem + id: ChameleonProjector + name: chameleon projector + description: Holoparasite technology used to create a hard-light replica of any object around you. Disguise is destroyed when picked up or deactivated. + components: + - type: Sprite + sprite: /Textures/Objects/Devices/chameleon_projector.rsi + state: icon + - type: ChameleonProjector + whitelist: + components: + - Anchorable + - Item + blacklist: + components: + - ChameleonDisguise # no becoming kleiner + - InsideEntityStorage # no clark kent going in phone booth and becoming superman + - MindContainer # no + - Pda # PDAs currently make you invisible /!\ + polymorph: + entity: ChameleonDisguise + +- type: entity + noSpawn: true + parent: BaseMob + id: ChameleonDisguise + name: Urist McKleiner + components: + # this and the name/desc get replaced, this is just placeholder incase something goes wrong + - type: Sprite + sprite: /Textures/Mobs/Species/Human/parts.rsi + state: full + # so people can attempt to pick it up + - type: Item + # so it can take damage + # projector system sets health to be proportional to mass + - type: Damageable + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 1: Critical + 200: Dead + - type: MovementSpeedModifier + baseWalkSpeed: 1 # precise movement for the perfect spot + baseSprintSpeed: 5 # the jig is up + - type: ChameleonDisguise + +# actions +- type: entity + noSpawn: true + id: ActionDisguiseNoRot + name: Toggle Rotation + description: Use this to prevent your disguise from rotating, making it easier to hide in some scenarios. + components: + - type: InstantAction + icon: Interface/VerbIcons/refresh.svg.192dpi.png + event: !type:DisguiseToggleNoRotEvent + +- type: entity + noSpawn: true + id: ActionDisguiseAnchor + name: Toggle Anchored + description: For many objects you will want to be anchored to not be completely obvious. + components: + - type: InstantAction + icon: + sprite: Objects/Tools/wrench.rsi + state: icon + event: !type:DisguiseToggleAnchoredEvent diff --git a/Resources/Prototypes/Entities/Objects/Devices/payload.yml b/Resources/Prototypes/Entities/Objects/Devices/payload.yml index 019f19e7118..160f0c58e79 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/payload.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/payload.yml @@ -33,7 +33,6 @@ maxIntensity: 10 intensitySlope: 3 totalIntensity: 120 # about a ~4 tile radius - flashRange: 7 - type: ExplodeOnTrigger - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml index 6a5d3c36f55..d8932bc0e5d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/figurines.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/figurines.yml @@ -322,7 +322,7 @@ parent: BaseFigurine id: ToyFigurineNukieElite name: elite syndicate operative figure - description: A figurine depicting someone in an elite blood-red hardsuit, similar to what the medic of a nuclear operative team might wear. + description: A figurine depicting someone in an elite blood-red hardsuit, similar to what someone on a nuclear operative team might wear. components: - type: Sprite state: nukie_elite diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index f46abe8a5af..e52f66d39b1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -11,8 +11,6 @@ state: icon noRot: false - type: ImmovableRod - - type: TimedDespawn - lifetime: 30.0 - type: Physics bodyType: Dynamic linearDamping: 0 @@ -36,8 +34,16 @@ location: immovable rod - type: entity + id: ImmovableRodDespawn + suffix: Despawn parent: ImmovableRod + components: + - type: TimedDespawn + lifetime: 30.0 + +- type: entity id: ImmovableRodSlow + parent: ImmovableRodDespawn suffix: Slow components: - type: ImmovableRod @@ -45,7 +51,7 @@ maxSpeed: 5 - type: entity - parent: ImmovableRod + parent: ImmovableRodDespawn id: ImmovableRodKeepTiles suffix: Keep Tiles components: @@ -53,6 +59,33 @@ destroyTiles: false hitSoundProbability: 1.0 +# For Wizard Polymorph +- type: entity + parent: ImmovableRod + id: ImmovableRodWizard + suffix: Wizard + components: + - type: ImmovableRod + minSpeed: 35 + destroyTiles: false + randomizeVelocity: false + shouldGib: false + damage: + types: + Blunt: 200 + - type: MovementIgnoreGravity + gravityState: true + - type: InputMover + - type: MovementSpeedModifier + weightlessAcceleration: 5 + weightlessModifier: 2 + weightlessFriction: 0 + friction: 0 + frictionNoInput: 0 + - type: CanMoveInAir + - type: MovementAlwaysTouching + - type: NoSlip + - type: entity parent: ImmovableRodKeepTiles id: ImmovableRodKeepTilesStill diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 901b52b21b1..6341316ecfa 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1184,7 +1184,6 @@ description: New Sandy-Cat plastic sword! Comes with realistic sound and full color! Looks almost like the real thing! components: - type: EnergySword - isSharp: false colorOptions: - DodgerBlue - type: ItemToggle @@ -1318,9 +1317,7 @@ components: - type: Sprite sprite: Objects/Fun/rubber_hammer.rsi - layers: - - state: icon - shader: unshaded + state: icon - type: WeaponRandom damageBonus: types: diff --git a/Resources/Prototypes/Entities/Objects/Materials/shards.yml b/Resources/Prototypes/Entities/Objects/Materials/shards.yml index 621a3b1c389..834a2e7ff0a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/shards.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/shards.yml @@ -17,7 +17,7 @@ shard2: "" shard3: "" - type: MeleeWeapon - attackRate: 1.5 + attackRate: 1 damage: types: Slash: 3.5 @@ -91,7 +91,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 4.5 - type: Tag tags: - GlassShard @@ -116,6 +116,10 @@ components: - type: Sprite color: "#96cdef" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 - type: WelderRefinable refineResult: - SheetGlass1 @@ -123,7 +127,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 5.5 - type: Tag tags: - ReinforcedGlassShard @@ -148,6 +152,10 @@ components: - type: Sprite color: "#FF72E7" + - type: MeleeWeapon + damage: + types: + Slash: 5.5 - type: WelderRefinable refineResult: - SheetGlass1 @@ -155,7 +163,7 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 5 + Piercing: 6.5 - type: Tag tags: - PlasmaGlassShard @@ -182,6 +190,11 @@ components: - type: Sprite color: "#8eff7a" + - type: MeleeWeapon + damage: + types: + Slash: 4.5 + Radiation: 2 - type: WelderRefinable refineResult: - SheetGlass1 @@ -189,8 +202,8 @@ - type: DamageUserOnTrigger damage: types: - Piercing: 3 - Radiation: 2 + Piercing: 5 + Radiation: 2.5 - type: Tag tags: - UraniumGlassShard diff --git a/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml b/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml index 1fe3b8a271c..f170aa899e6 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/desk_bell.yml @@ -14,9 +14,9 @@ successChance: 1 interactSuccessSound: collection: DeskBell - params: - variation: 0.03 - volume: 3 + params: + variation: 0.03 + volume: 3 onActivate: true - type: EmitSoundOnUse sound: diff --git a/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml index bc3488aaf43..43c4568e70a 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml @@ -48,6 +48,5 @@ types: Heat: 5 coldDamage: {} - ColdDamageThreshold: 0 + coldDamageThreshold: 0 - type: FrictionContacts - \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index 657201912e8..a1005004946 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -58,11 +58,9 @@ types: Heat: 5 coldDamage: {} - ColdDamageThreshold: 0 + coldDamageThreshold: 0 - type: Flammable fireSpread: true #If you walk into incredibly dense, flaming vines, you can expect to burn. - cold: - types: {} damage: types: Heat: 3 @@ -75,11 +73,12 @@ methods: [Touch] effects: - !type:HealthChange - scaled: true + scaleByQuantity: true damage: types: Heat: 10 - type: AtmosExposed + - type: Kudzu growthTickChance: 0.3 spreadChance: 0.4 - type: SpeedModifierContacts @@ -235,7 +234,6 @@ damage: types: Heat: 3 - growthTickChance: 0.3 - type: AtmosExposed - type: SpeedModifierContacts walkSpeedModifier: 0.3 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 58457ebb7fa..0c52b2381cd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -15,6 +15,7 @@ map: ["enum.PaperVisualLayers.Stamp"] visible: false - type: Paper + - type: PaperLabelType - type: ActivatableUI key: enum.PaperUiKey.Key closeOnHandDeselect: false @@ -143,6 +144,8 @@ - state: paper_stamp-generic map: ["enum.PaperVisualLayers.Stamp"] visible: false + - type: PaperLabelType + paperType: CaptainsPaper - type: PaperVisuals headerImagePath: "/Textures/Interface/Paper/paper_heading_captains_thoughts.svg.96dpi.png" backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" @@ -160,19 +163,21 @@ sprite: Objects/Misc/bureaucracy.rsi layers: - state: paper - color: "#f7e574" + color: "#9ef5ff" - state: paper_words map: ["enum.PaperVisualLayers.Writing"] - color: "#f7e574" + color: "#9ef5ff" visible: false - state: paper_stamp-generic map: ["enum.PaperVisualLayers.Stamp"] visible: false + - type: PaperLabelType + paperType: Invoice - type: PaperVisuals backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" - backgroundModulate: "#f7e574" - contentImageModulate: "#f7e574" + backgroundModulate: "#9ef5ff" + contentImageModulate: "#9ef5ff" backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 contentMargin: 16.0, 16.0, 16.0, 16.0 headerImagePath: "/Textures/Interface/Paper/paper_heading_cargo_invoice.svg.96dpi.png" @@ -184,6 +189,29 @@ name: bounty manifest description: A paper label designating a crate as containing a bounty. Selling a crate with this label will fulfill the bounty. components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: paper + color: "#f7e574" + - state: paper_words + map: ["enum.PaperVisualLayers.Writing"] + color: "#f7e574" + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: PaperLabelType + paperType: Bounty + - type: PaperVisuals + backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png" + contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png" + backgroundModulate: "#f7e574" + contentImageModulate: "#f7e574" + backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0 + contentMargin: 16.0, 16.0, 16.0, 16.0 + headerImagePath: "/Textures/Interface/Paper/paper_heading_cargo_invoice.svg.96dpi.png" + headerMargin: 0.0, 12.0, 0.0, 0.0 - type: CargoBountyLabel - type: StaticPrice price: 0 @@ -323,6 +351,8 @@ damage: types: Piercing: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Tool qualities: - Screwing diff --git a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml index 84c9c7c7520..b7f296cbac7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml @@ -30,7 +30,7 @@ radius: 0.45 density: 25 mask: - - SmallMobMask + - ItemMask layer: - MachineLayer - type: EntityStorage diff --git a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml index e1f4d086d45..9561fa3538f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/spider_web.yml @@ -59,11 +59,9 @@ types: Heat: 5 coldDamage: {} - ColdDamageThreshold: 0 + coldDamageThreshold: 0 - type: Flammable fireSpread: true - cold: - types: {} damage: types: Heat: 5 @@ -146,11 +144,9 @@ types: Heat: 5 coldDamage: {} - ColdDamageThreshold: 0 + coldDamageThreshold: 0 - type: Flammable fireSpread: true - cold: - types: {} damage: types: Heat: 5 diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index dcdb316b7ec..2336945f171 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -189,7 +189,6 @@ implantAction: ActionActivateScramImplant - type: TriggerImplantAction - type: ScramImplant - teleportAttempts: 10 # small amount of risk of being teleported into space and lets you teleport off shuttles - type: entity parent: BaseSubdermalImplant diff --git a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml index c628d199a90..07bdee63cfc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Cargo/cargo_pallet.yml @@ -1,7 +1,7 @@ - type: entity id: CargoPallet name: cargo pallet - description: Designates valid items to sell to CentCom when a shuttle is recalled. + description: Common fixture of logistics and cargo. Subtle reminder where crates go during transport to avoid bruised shins. parent: BaseStructure components: - type: InteractionOutline @@ -58,17 +58,20 @@ - type: entity id: CargoPalletSell name: cargo selling pallet - description: Designates valid items to sell with a selling computer, or to CentCom when a shuttle is recalled. + description: Designates valid items to sell. parent: CargoPallet components: - type: CargoPallet palletType: sell - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_sell - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_sell + - type: IconSmooth + key: cargo_pallet_sell + base: cargo_pallet_sell_ - type: entity id: CargoPalletBuy @@ -80,7 +83,10 @@ palletType: buy - type: Sprite drawdepth: FloorTiles - layers: - - sprite: Structures/cargo_pallets.rsi - state: cargo_pallet_buy - + sprite: Structures/cargo_pallets.rsi + - type: Icon + sprite: Structures/cargo_pallets.rsi + state: cargo_pallet_buy + - type: IconSmooth + key: cargo_pallet_buy + base: cargo_pallet_buy_ diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 748ab123185..3d547cef6f0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -73,7 +73,6 @@ failChance: 0 locPrefix: "necro" healSound: "/Audio/Effects/lightburn.ogg" - cooldownTime: 1.3 - type: Summonable specialItem: SpawnPointGhostCerberus respawnTime: 300 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 2b232d643d3..0a084dc2463 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -213,6 +213,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/blood_tomato.rsi +- type: entity + parent: SeedBase + name: packet of killer tomato seeds + id: KillerTomatoSeeds + components: + - type: Seed + seedId: killerTomato + - type: Sprite + sprite: Objects/Specific/Hydroponics/tomatokiller.rsi + - type: entity parent: SeedBase name: packet of eggplant seeds diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index 0e19c03deef..64b3568adf5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -24,6 +24,8 @@ solution: spray - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: spray - type: UseDelay - type: Spray transferAmount: 10 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml index f802ae1c5c3..9927d836baa 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/trashbag.yml @@ -22,6 +22,8 @@ tags: - Cartridge - Trash + - type: UseDelay + delay: 0.5 - type: Tag tags: - TrashBag diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml index 0f03c6d8ea6..ab6cdfc4e3b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/disease.yml @@ -19,6 +19,27 @@ # - Virology (when it's back) - Botany +- type: entity + parent: BaseAmmoProvider # this is for cycling swabs out and not spawning 30 entities, trust + id: BoxMouthSwab + name: sterile swab dispenser + description: Dispenses 30 sterile swabs, extremely useful for botany. + components: + - type: Sprite + layers: + - state: boxwide + - state: swab + - type: BallisticAmmoProvider + whitelist: + components: + - BotanySwab + proto: DiseaseSwab + capacity: 30 + - type: GuideHelp + guides: + # - Virology (when it's back) + - Botany + - type: entity parent: BaseItem id: Vaccine diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index ce51a642dda..9eae5fbce1c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -1,5 +1,5 @@ - type: entity - id: BodyBag_Container + id: BodyBag parent: BaseFoldable name: body bag description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. @@ -17,8 +17,8 @@ visible: false - state: open_overlay map: ["enum.StorageVisualLayers.Door"] - - state: label_overlay - map: ["enum.BodyBagVisualLayers.Label"] + - state: paper + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Objects/Specific/Medical/Morgue/bodybags.rsi state: bag @@ -62,9 +62,15 @@ - type: GenericVisualizer visuals: enum.PaperLabelVisuals.HasLabel: - enum.BodyBagVisualLayers.Label: + enum.PaperLabelVisuals.Layer: True: {visible: true} False: {visible: false} + enum.PaperLabelVisuals.LabelType: + enum.PaperLabelVisuals.Layer: + Paper: { state: paper } + Bounty: { state: bounty } + CaptainsPaper: { state: captains_paper } + Invoice: { state: invoice } enum.FoldedVisuals.State: foldedLayer: True: {visible: true} @@ -83,10 +89,10 @@ price: 50 - type: entity - id: BodyBag_Folded + id: BodyBagFolded name: body bag description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. - parent: BodyBag_Container + parent: BodyBag suffix: folded components: - type: Foldable diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index cbfec8c9cf6..d37523bd735 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -222,7 +222,6 @@ - type: ItemBorgModule items: - WeaponGrapplingGun - - WeaponCrusherDagger - HandheldGPSBasic # engineering modules diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index 4abeea38128..e1716f08439 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: CrateArtifactContainer parent: BaseStructureDynamic name: artifact container @@ -24,6 +24,8 @@ - state: locked map: ["enum.LockVisualLayers.Lock"] shader: unshaded + - state: paper + map: ["enum.PaperLabelVisuals.Layer"] - type: InteractionOutline - type: Physics - type: Fixtures @@ -34,7 +36,7 @@ radius: 0.45 density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: Icon @@ -73,6 +75,23 @@ - type: EntityStorageVisuals stateDoorOpen: artifact_container_open stateDoorClosed: artifact_container_door + - type: GenericVisualizer + visuals: + enum.PaperLabelVisuals.HasLabel: + enum.PaperLabelVisuals.Layer: + True: { visible: true } + False: { visible: false } + enum.PaperLabelVisuals.LabelType: + enum.PaperLabelVisuals.Layer: + Paper: { state: paper } + Bounty: { state: bounty } + CaptainsPaper: { state: captains_paper } + Invoice: { state: invoice } + enum.StorageVisuals.Open: + enum.PaperLabelVisuals.Layer: + True: { offset: "0.0,0.3125" } + False: { offset: "0.0,0.0" } + - type: LockVisuals - type: ItemSlots - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index 027ff206f8d..8034844a82b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -8,7 +8,6 @@ solutions: beaker: maxVol: 200 - canMix: true - type: Sprite sprite: Objects/Specific/Chemistry/jug.rsi layers: @@ -19,6 +18,8 @@ - type: Item size: Normal sprite: Objects/Specific/Chemistry/jug.rsi + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution @@ -31,6 +32,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - key: enum.TransferAmountUiKey.Key diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index acfb65aa54f..6c81fa94665 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -29,7 +29,8 @@ solutions: drink: # This solution name and target volume is hard-coded in ChemMasterComponent maxVol: 30 - canMix: true + - type: MixableSolution + solution: drink - type: RefillableSolution solution: drink - type: DrainableSolution diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index c5de88d690d..65f5fbb5d06 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -35,7 +35,8 @@ solutions: beaker: maxVol: 30 - canMix: true + - type: MixableSolution + solution: beaker - type: RefillableSolution solution: beaker - type: DrainableSolution diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index ae4aaed7d21..fdf58dc4841 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -25,7 +25,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -40,6 +41,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: - key: enum.TransferAmountUiKey.Key @@ -117,7 +120,8 @@ solutions: beaker: maxVol: 50 - canMix: true + - type: MixableSolution + solution: beaker - type: FitsInDispenser solution: beaker - type: RefillableSolution @@ -200,7 +204,6 @@ solutions: beaker: maxVol: 100 - canMix: true - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 6 @@ -244,7 +247,6 @@ solutions: beaker: maxVol: 1000 - canMix: true - type: entity name: dropper @@ -475,7 +477,6 @@ behaviors: - !type:SpillBehavior solution: food - transferForensics: true - !type:DoActsBehavior acts: [ "Destruction" ] - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 16be537891f..73e8b7bbca2 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -43,7 +43,9 @@ - Kitchen - Lawyer - Library #Delta V: Add Library Access + - Mail #Nyanotrasen: Add Mail Access - Maintenance + - Mantis #Nyanotrasen: Add Mantis Access - Medical - Mime #Delta V: Add Mime Access - Musician #Delta V: Add Musician Access diff --git a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml index 496fd231b82..77803a13ec6 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml @@ -26,6 +26,8 @@ solutions: bucket: maxVol: 250 + - type: MixableSolution + solution: bucket - type: SolutionTransfer transferAmount: 100 maxTransferAmount: 100 @@ -49,6 +51,8 @@ solution: bucket - type: DrainableSolution solution: bucket + - type: SolutionItemStatus + solution: bucket - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 3 diff --git a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml index 977a8a931b5..295412debc8 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml @@ -128,11 +128,6 @@ sprite: Objects/Tools/Cowtools/cowelder.rsi - type: Tool speed: 0.05 - - type: Welder - litMeleeDamageBonus: - types: # When lit, negate standard melee damage and replace with heat - Heat: 0.5 - Blunt: -5 - type: entity name: milkalyzer diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index 631e2a247ea..d03cc725efe 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -142,8 +142,12 @@ predictable: false soundActivate: path: /Audio/Items/Lighters/zippo_open.ogg + params: + volume: -5 soundDeactivate: path: /Audio/Items/Lighters/zippo_close.ogg + params: + volume: -5 - type: ItemToggleMeleeWeapon activatedDamage: types: @@ -201,6 +205,9 @@ netsync: false radius: 1.2 #slightly stronger than the other lighters color: orange + - type: UseDelay + - type: IgnitionSource + ignited: false - type: entity name: flippo engraved lighter diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index 667d8559971..695725140ff 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -154,7 +154,6 @@ sprite: Objects/Tools/Toolboxes/toolbox_thief.rsi state: icon - type: ThiefUndeterminedBackpack - transformAfterSelect: AlwaysPoweredWallLight possibleSets: # - TO DO Thief pinpointer needed - ChemistrySet diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 41c0ccc4a3d..ad62426bb0f 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -225,6 +225,7 @@ - type: Tag tags: - Multitool + - DoorElectronicsConfigurator - type: PhysicalComposition materialComposition: Steel: 100 @@ -266,6 +267,9 @@ - type: ActivatableUI key: enum.NetworkConfiguratorUiKey.List inHandsOnly: true + - type: Tag + tags: + - DoorElectronicsConfigurator - type: UserInterface interfaces: - key: enum.NetworkConfiguratorUiKey.List @@ -349,13 +353,13 @@ description: The rapid construction device can be used to quickly place and remove various station structures and fixtures. Requires compressed matter to function. components: - type: RCD - availablePrototypes: + availablePrototypes: - WallSolid - FloorSteel - Plating - Catwalk - Grille - - Window + - Window - WindowDirectional - WindowReinforcedDirectional - ReinforcedWindow @@ -404,7 +408,7 @@ - type: LimitedCharges charges: 0 - type: RCD - availablePrototypes: + availablePrototypes: - WallSolid - FloorSteel - Plating diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml index 7f0507d686d..36d41e391ac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml @@ -50,7 +50,7 @@ Blunt: 1 Heat: 2 - type: IgniteOnCollide - fireStacks: 3 + fireStacks: 1 count: 10 - type: TimedDespawn lifetime: 0.25 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 52c5dc8a9db..6f925139fb1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: BaseItem id: BaseArrow abstract: true @@ -35,7 +35,6 @@ - type: Tag tags: - Arrow - - CannonRestrict - type: Projectile deleteOnCollide: false onlyCollideWhenShot: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index b693bdba370..7398374e86c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -20,7 +20,7 @@ maxAngle: 16 fireRate: 8 angleIncrease: 3 - angleDecay: 16 + angleDecay: 16 selectedMode: FullAuto availableModes: - SemiAuto @@ -94,6 +94,11 @@ - type: Clothing sprite: Objects/Weapons/Guns/SMGs/c20r.rsi - type: Gun + shotsPerBurst: 5 + availableModes: + - SemiAuto + - Burst + - FullAuto soundGunshot: path: /Audio/Weapons/Guns/Gunshots/c-20r.ogg - type: ChamberMagazineAmmoProvider @@ -221,9 +226,16 @@ - type: ChamberMagazineAmmoProvider boltClosed: null - type: Gun - fireRate: 5 + fireRate: 5.5 + minAngle: 1 + maxAngle: 6 + angleIncrease: 1.5 + angleDecay: 6 selectedMode: FullAuto + shotsPerBurst: 5 availableModes: + - SemiAuto + - Burst - FullAuto - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index ae1f5df3c15..12511729460 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -22,7 +22,6 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - FullAuto soundGunshot: path: /Audio/Effects/thunk.ogg soundEmpty: @@ -34,10 +33,7 @@ - type: Storage maxItemSize: Normal grid: - - 0,0,3,3 - blacklist: - tags: - - CannonRestrict + - 0,0,1,1 - type: Appearance - type: ItemMapper containerWhitelist: [gas_tank] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 9cd1bb29408..afe4644517c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -263,7 +263,6 @@ tags: - CombatKnife - Knife - - CannonRestrict - type: Sprite sprite: Objects/Weapons/Melee/throwing_knife.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index 3758487bd43..0def916ddc7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -52,6 +52,7 @@ quickEquip: false slots: - back + - suitStorage - type: Construction graph: Spear node: spear diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml index b0b166f6ce8..9e187651ec5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -25,9 +25,9 @@ - type: ItemToggleMeleeWeapon activatedDamage: types: - Blunt: 0 + Shock: 5 - type: Stunbaton - energyPerUse: 70 + energyPerUse: 120 - type: MeleeWeapon wideAnimationRotation: -135 damage: @@ -36,10 +36,10 @@ angle: 60 animation: WeaponArcThrust - type: StaminaDamageOnHit - damage: 20 + damage: 35 sound: /Audio/Weapons/egloves.ogg - type: StaminaDamageOnCollide - damage: 20 + damage: 35 sound: /Audio/Weapons/egloves.ogg - type: Battery maxCharge: 360 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index 426be1386a9..5ffe16d3b53 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -18,7 +18,7 @@ path: /Audio/Weapons/bladeslice.ogg - type: Reflect enabled: true - reflectProb: .5 + reflectProb: .1 spread: 90 - type: Item size: Normal diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 23286a77192..6c99a28762d 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -4,6 +4,12 @@ components: - type: StationData +- type: entity + id: BaseRandomStation + abstract: true + components: + - type: StationRandomTransform + - type: entity id: BaseStationCargo abstract: true @@ -146,4 +152,4 @@ id: BaseStationAllEventsEligible abstract: true components: - - type: StationEventEligible # For when someone makes this more granular in the future. \ No newline at end of file + - type: StationEventEligible # For when someone makes this more granular in the future. diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 6adbeae529c..16af75d629c 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -36,6 +36,7 @@ - BaseStation - BaseStationAlertLevels - BaseStationNanotrasen + - BaseRandomStation noSpawn: true components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml index 7777153bbac..cc69a6304d1 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml @@ -23,8 +23,8 @@ !type:DamageTrigger damage: 50 behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] + - !type:DoActsBehavior + acts: [ "Destruction" ] - type: AmbientSound volume: -5 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 8ef7a3d1674..27f4ada13fb 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -152,7 +152,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsFreezer ] + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: AirlockFreezer @@ -251,7 +251,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommand @@ -617,7 +617,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsScience ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockCentralCommandGlass @@ -967,7 +967,7 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsRnDMed ] + board: [ DoorElectronicsMedicalResearch ] - type: entity parent: AirlockMaint @@ -1043,6 +1043,15 @@ containers: board: [ DoorElectronicsResearchDirector ] +- type: entity + parent: AirlockMaintCommandLocked + id: AirlockMaintQuartermasterLocked + suffix: Logistics Officer, Locked # DeltaV - Logistics Department replacing Cargo + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsQuartermaster ] + - type: entity parent: AirlockMaint id: AirlockMaintArmoryLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 4ca7df6482e..8b2ce8ab563 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -64,6 +64,7 @@ containers: board: !type:Container - type: Weldable + fuel: 5 time: 3 - type: Airlock - type: NavMapDoor @@ -116,7 +117,7 @@ - type: RCDDeconstructable cost: 6 delay: 8 - fx: EffectRCDDeconstruct8 + fx: EffectRCDDeconstruct8 - type: Destructible thresholds: - trigger: @@ -154,7 +155,7 @@ - type: BlockWeather placement: mode: SnapgridCenter - + - type: entity id: AirlockRCDResistant parent: Airlock @@ -203,4 +204,4 @@ - type: Tag tags: - GlassAirlock - # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor \ No newline at end of file + # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index e9ea05a1c3f..2a8cc0c5261 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -55,6 +55,7 @@ denySound: path: /Audio/Machines/airlock_deny.ogg - type: Weldable + fuel: 10 time: 10 - type: Airlock - type: NavMapDoor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 1ba867773bc..a5b8a8dc74d 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -82,6 +82,7 @@ openingAnimationTime: 0.6 closingAnimationTime: 0.6 - type: Weldable + fuel: 5 time: 3 - type: Firelock - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index d58273edcc9..a6515b52c64 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -93,10 +93,11 @@ max: 4 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: AccessReader - type: ContainerFill containers: board: [ DoorElectronics ] + - type: AccessReader + containerAccessProvider: board - type: ContainerContainer containers: board: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index 2b4b2c5fe07..840ff1da44f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -48,88 +48,99 @@ id: WindoorBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] - type: entity parent: Windoor id: WindoorBarKitchenLocked suffix: Bar&Kitchen, Locked components: - - type: AccessReader - access: [["Bar"], ["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] - type: entity parent: Windoor id: WindoorCargoLocked suffix: Logistics, Locked # DeltaV - Logistics Department replacing Cargo components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: Windoor id: WindoorChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: Windoor id: WindoorHydroponicsLocked suffix: Hydroponics, Locked components: - - type: AccessReader - access: [["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHydroponics ] - type: entity parent: Windoor id: WindoorJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorPlasma id: PlasmaWindoorJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: Windoor id: WindoorKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: Windoor id: WindoorKitchenHydroponicsLocked suffix: Kitchen&Hydroponics, Locked components: - - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchenHydroponics ] - type: entity parent: Windoor id: WindoorServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: Windoor id: WindoorTheatreLocked suffix: Theatre, Locked components: - - type: AccessReader - access: [["Theatre"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsTheatre ] # Secure @@ -138,24 +149,45 @@ id: WindoorSecureArmoryLocked suffix: Armory, Locked components: - - type: AccessReader - access: [["Armory"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureArmoryLocked + suffix: Armory, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsArmory ] - type: entity parent: WindoorSecure id: WindoorSecureAtmosphericsLocked suffix: Atmospherics, Locked components: - - type: AccessReader - access: [["Atmospherics"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureAtmosphericsLocked + suffix: Atmospherics, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsAtmospherics ] - type: entity parent: WindoorSecure id: WindoorSecureBarLocked suffix: Bar, Locked components: - - type: AccessReader - access: [["Bar"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsBar ] #Delta V: Removed Brig Access #- type: entity @@ -163,197 +195,240 @@ # id: WindoorSecureBrigLocked # suffix: Brig, Locked # components: -# - type: AccessReader -# access: [["Brig"]] +# - type: ContainerFill +# containers: +# board: [ DoorElectronicsBrig ] - type: entity parent: WindoorSecure id: WindoorSecureCargoLocked suffix: Logistics, Locked # DeltaV - Logistics Department replacing Cargo components: - - type: AccessReader - access: [["Cargo"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCargo ] - type: entity parent: WindoorSecure id: WindoorSecureChapelLocked suffix: Chapel, Locked components: - - type: AccessReader - access: [["Chapel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChapel ] - type: entity parent: WindoorSecure id: WindoorSecureChemistryLocked suffix: Chemistry, Locked components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureChemistryLocked suffix: Chemistry, Locked, Plasma components: - - type: AccessReader - access: [["Chemistry"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsChemistry ] - type: entity parent: WindoorSecure id: WindoorSecureCentralCommandLocked suffix: Central Command, Locked components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Plasma components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureCentralCommandLocked suffix: Central Command, Locked, Uranium components: - - type: AccessReader - access: [["CentralCommand"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] - type: entity parent: WindoorSecure id: WindoorSecureCommandLocked suffix: Command, Locked components: - - type: AccessReader - access: [["Command"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureCommandLocked + suffix: Command, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCommand ] - type: entity parent: WindoorSecure id: WindoorSecureDetectiveLocked suffix: Detective, Locked components: - - type: AccessReader - access: [["Detective"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsDetective ] - type: entity parent: WindoorSecure id: WindoorSecureEngineeringLocked suffix: Engineering, Locked components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureEngineeringLocked suffix: Engineering, Locked, Plasma components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecureUranium id: UraniumWindoorSecureEngineeringLocked suffix: Engineering, Locked, Uranium components: - - type: AccessReader - access: [["Engineering"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsEngineering ] - type: entity parent: WindoorSecure id: WindoorSecureExternalLocked suffix: External, Locked components: - - type: AccessReader - access: [["External"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsExternal ] - type: entity parent: WindoorSecure id: WindoorSecureJanitorLocked suffix: Janitor, Locked components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureJanitorLocked suffix: Janitor, Locked, Plasma components: - - type: AccessReader - access: [["Janitor"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsJanitor ] - type: entity parent: WindoorSecure id: WindoorSecureKitchenLocked suffix: Kitchen, Locked components: - - type: AccessReader - access: [["Kitchen"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchen ] - type: entity parent: WindoorSecureSecurityLocked id: WindoorSecureSecurityLawyerLocked suffix: Security/Lawyer, Locked components: - - type: AccessReader - access: [["Security"], ["Lawyer"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurityLawyer ] - type: entity parent: WindoorSecure id: WindoorSecureMedicalLocked suffix: Medical, Locked components: - - type: AccessReader - access: [["Medical"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsMedical ] - type: entity parent: WindoorSecure id: WindoorSecureSalvageLocked suffix: Salvage, Locked components: - - type: AccessReader - access: [["Salvage"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSalvage ] - type: entity parent: WindoorSecure id: WindoorSecureSecurityLocked suffix: Security, Locked components: - - type: AccessReader - access: [["Security"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] + +- type: entity + parent: WindoorSecurePlasma + id: PlasmaWindoorSecureSecurityLocked + suffix: Security, Locked, Plasma + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsSecurity ] - type: entity parent: WindoorSecure id: WindoorSecureScienceLocked suffix: Epistemics, Locked # DeltaV - Epistemics Department replacing Science components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecurePlasma id: PlasmaWindoorSecureScienceLocked suffix: Science, Locked, Plasma components: - - type: AccessReader - access: [["Research"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsResearch ] - type: entity parent: WindoorSecure id: WindoorSecureServiceLocked suffix: Service, Locked components: - - type: AccessReader - access: [["Service"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsService ] - type: entity parent: WindoorSecure id: WindoorSecureHeadOfPersonnelLocked suffix: HeadOfPersonnel, Locked components: - - type: AccessReader - access: [["HeadOfPersonnel"]] + - type: ContainerFill + containers: + board: [ DoorElectronicsHeadOfPersonnel ] diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index 0b3c291af25..0fb69b4fdbd 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -282,6 +282,7 @@ MaterialWoodPlank: min: 1 max: 1 + - type: Construction graph: RitualSeat node: chairCursed diff --git a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml index fa029c035ae..2caa4010ca0 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/dresser.yml @@ -53,18 +53,6 @@ components: - type: StorageFill contents: - - id: ClothingUniformRandomArmless - prob: 0.05 - orGroup: dressermainloot - - id: ClothingUniformRandomStandart - prob: 0.05 - orGroup: dressermainloot - - id: ClothingUniformRandomBra - prob: 0.05 - orGroup: dressermainloot - - id: ClothingUniformRandomShorts - prob: 0.05 - orGroup: dressermainloot - id: ClothingNeckLGBTPin prob: 0.06 orGroup: dressermainloot diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 22bbdb7b9f9..0c6f48f7cf3 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -361,7 +361,7 @@ radius: 5 energy: 0.6 offset: "0, 0.4" - color: "#FF4020" + color: "#7CFC00" mask: /Textures/Effects/LightMasks/double_cone.png - type: ApcPowerReceiver - type: ExtensionCableReceiver @@ -378,10 +378,10 @@ map: [ "enum.EmergencyLightVisualLayers.Base" ] - state: emergency_light_off map: [ "enum.EmergencyLightVisualLayers.LightOff" ] - color: "#FF4020" + color: "#7CFC00" - state: emergency_light_on map: [ "enum.EmergencyLightVisualLayers.LightOn" ] - color: "#FF4020" + color: "#7CFC00" shader: "unshaded" visible: false - type: Appearance diff --git a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml new file mode 100644 index 00000000000..8eceb76b639 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml @@ -0,0 +1,148 @@ +- type: entity + id: AlwaysPoweredStrobeLight + name: strobe + description: "UH?! Sorry, all I can hear is WEE-OOO-WEE-OOO!" + suffix: Always powered + components: + - type: AmbientSound + volume: -15 + range: 2 + sound: + path: /Audio/Ambience/Objects/light_hum.ogg + - type: MeleeSound + soundGroups: + Brute: + collection: GlassSmash + - type: Transform + anchored: true + - type: Clickable + - type: InteractionOutline + - type: Construction + graph: LightFixture + node: bulbLight + - type: Sprite + sprite: Structures/Wallmounts/Lighting/strobe_light.rsi + drawdepth: WallMountedItems + layers: + - map: ["enum.PoweredLightLayers.Base"] + state: base + - map: ["enum.PoweredLightLayers.Glow"] + state: glow + shader: unshaded + state: base + - type: PointLight + mask: /Textures/Effects/LightMasks/double_cone.png + color: "#FFE4CE" + energy: 5 + radius: 10 + softness: 1 + offset: "0, 0.35" + - type: RotatingLight + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: #excess damage, don't spawn entities. + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 25 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + placement: + mode: SnapgridCenter + snap: + - Wallmount + +- type: entity + name: strobe + description: "UH?! Sorry, all I can hear is WEE-OOO-WEE-OOO!" + id: PoweredStrobeLightEmpty + suffix: Empty + parent: AlwaysPoweredStrobeLight + components: + - type: Sprite + sprite: Structures/Wallmounts/Lighting/strobe_light.rsi + state: empty + - type: AmbientSound + enabled: false + - type: PointLight + enabled: false + offset: "0, 0.35" + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + - type: PoweredLight + bulb: Bulb + on: false + damage: + types: + Heat: 5 + - type: ApcPowerReceiver + - type: ExtensionCableReceiver + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: SmartLight + - type: WirelessNetworkConnection + range: 200 + - type: Appearance + - type: PoweredLightVisuals + spriteStateMap: + empty: empty + broken: broken + burned: broken + off: base + on: base + - type: DeviceLinkSink + ports: + - On + - Off + - Toggle + - type: Construction + graph: LightFixture + node: strobeLight + +- type: entity + id: PoweredStrobeLightPolice + suffix: "Empty, police" + parent: PoweredStrobeLightEmpty + components: + - type: AmbientSound + volume: 0 + range: 10 + sound: + path: "/Audio/Effects/Lightning/strobe.ogg" + +- type: entity + id: PoweredStrobeLightSiren + suffix: "Empty, siren" + parent: PoweredStrobeLightEmpty + components: + - type: AmbientSound + volume: 0 + range: 10 + sound: + path: "/Audio/Misc/siren.ogg" + +- type: entity + id: PoweredStrobeLightEpsilon + suffix: "Empty, epsilon" + parent: PoweredStrobeLightEmpty + components: + - type: AmbientSound + volume: 0 + range: 10 + sound: + path: "/Audio/Effects/Lightning/strobeepsilon.ogg" \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index 67436a4cbbc..98f4a9afb0c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -7,7 +7,6 @@ components: - type: ApcPowerReceiver powerLoad: 350 - priority: Low - type: ExtensionCableReceiver - type: PointLight radius: 1.8 @@ -70,7 +69,8 @@ - type: PointLight color: "#e3a136" - type: SpaceVillainArcade - rewardAmount: 0 + rewardMinAmount: 0 + rewardMaxAmount: 0 possibleRewards: - ToyMouse - ToyAi @@ -148,8 +148,8 @@ board: SpaceVillainArcadeComputerCircuitboard - type: Advertise pack: SpaceVillainAds - minWait: 60 # Arcades are noisy - maxWait: 240 + minimumWait: 60 # Arcades are noisy + maximumWait: 240 - type: SpeakOnUIClosed pack: SpaceVillainGoodbyes @@ -192,7 +192,7 @@ board: BlockGameArcadeComputerCircuitboard - type: Advertise pack: BlockGameAds - minWait: 60 # Arcades are noisy - maxWait: 240 + minimumWait: 60 # Arcades are noisy + maximumWait: 240 - type: SpeakOnUIClosed pack: BlockGameGoodbyes diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index ab3a8c25ac2..0dfc4847672 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -422,7 +422,6 @@ type: ResearchClientBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - priority: Low - type: Computer board: ResearchComputerCircuitboard - type: AccessReader @@ -471,7 +470,6 @@ type: ResearchClientBoundUserInterface - type: ApcPowerReceiver powerLoad: 1000 - priority: Low - type: Computer board: AnalysisComputerCircuitboard - type: PointLight @@ -737,6 +735,9 @@ - map: ["computerLayerKeys"] state: tech_key - type: CargoOrderConsole + - type: ActiveRadio + channels: + - Supply - type: ActivatableUI key: enum.CargoConsoleUiKey.Orders - type: UserInterface @@ -793,6 +794,8 @@ radius: 1.5 energy: 1.6 color: "#b89f25" + - type: AccessReader + access: [["Quartermaster"]] - type: GuideHelp guides: - CargoBounties @@ -955,7 +958,6 @@ speechVerb: Robotic - type: SurveillanceCameraSpeaker - type: SurveillanceCameraMonitor - speechEnabled: true - type: ActivatableUI key: enum.SurveillanceCameraMonitorUiKey.Key - type: ActivatableUIRequiresVision diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index b00d6d89862..8b0c5787631 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -43,6 +43,7 @@ powerLoad: 12000 needsPower: false #only turns on when scanning - type: ArtifactAnalyzer + - type: TraversalDistorter - type: ItemPlacer whitelist: components: @@ -72,62 +73,6 @@ True: { visible: true } False: { visible: false } -- type: entity - id: MachineTraversalDistorter - parent: [ BaseMachinePowered, ConstructibleMachine ] - name: traversal distorter - description: A machine capable of distorting the traversal of artifact nodes. - components: - - type: Sprite - noRot: true - sprite: Structures/Machines/traversal_distorter.rsi - drawdepth: FloorObjects - layers: - - state: icon - - state: unshaded - shader: unshaded - map: ["enum.PowerDeviceVisualLayers.Powered"] - - type: Physics - bodyType: Static - canCollide: true - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 190 - mask: - - MachineMask - layer: - - Impassable - - MidImpassable - - LowImpassable - hard: False - - type: Transform - noRot: false - - type: TraversalDistorter - - type: ItemPlacer - # don't limit the number of artifacts that can be biased - maxEntities: 0 - whitelist: - components: - - Artifact - - type: PlaceableSurface - placeCentered: true - - type: Machine - board: TraversalDistorterMachineCircuitboard - - type: Appearance - - type: GuideHelp - guides: - - TraversalDistorter - - type: GenericVisualizer - visuals: - enum.PowerDeviceVisuals.Powered: - enum.PowerDeviceVisualLayers.Powered: - True: { visible: true } - False: { visible: false } - - type: entity id: MachineArtifactCrusher parent: [ ConstructibleMachine, BaseMachinePowered ] diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml index 72027d2243e..0f8286af862 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml @@ -23,7 +23,6 @@ machine_parts: !type:Container - type: CrewMonitoringServer - type: SingletonDeviceNetServer - ServerType: CrewMonitoringServer - type: DeviceNetwork deviceNetId: Wireless transmitFrequencyId: CrewMonitor @@ -34,7 +33,6 @@ - type: StationLimitedNetwork - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: ExtensionCableReceiver - type: Destructible thresholds: diff --git a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml index aebc4b03def..618538dccb7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/gravity_generator.yml @@ -55,7 +55,7 @@ activePower: 2500 lightRadiusMin: 0.75 lightRadiusMax: 2.5 - spritemap: + spriteMap: broken: "broken" unpowered: "off" off: "off" diff --git a/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml new file mode 100644 index 00000000000..76b8ddd36ba --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/jukebox.yml @@ -0,0 +1,59 @@ +- type: entity + id: Jukebox + name: jukebox + parent: [ BaseMachinePowered, ConstructibleMachine ] + description: A machine capable of playing a wide variety of tunes. Enjoyment not guaranteed. + components: + - type: Sprite + sprite: Structures/Machines/jukebox.rsi + layers: + - state: "off" + map: ["enum.JukeboxVisualLayers.Base"] + - type: Transform + anchored: true + - type: Jukebox + onState: on + offState: off + selectState: select + - type: Machine + board: JukeboxCircuitBoard + - type: Appearance + - type: ApcPowerReceiver + powerLoad: 100 + - type: ExtensionCableReceiver + - type: ActivatableUI + key: enum.JukeboxUiKey.Key + - type: ActivatableUIRequiresPower + - type: UserInterface + interfaces: + - key: enum.JukeboxUiKey.Key + type: JukeboxBoundUserInterface + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 2 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.45,0.25,0.45" + mask: + - MachineMask + layer: + - MachineLayer + density: 200 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 0a5c71711e2..b8b670d5e36 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -121,6 +121,7 @@ - DrinkGlass - DrinkShotGlass - DrinkGlassCoupeShaped + - CustomDrinkJug - FoodPlate - FoodPlateSmall - FoodPlatePlastic @@ -154,6 +155,7 @@ - APCElectronics - SMESMachineCircuitboard - SubstationMachineCircuitboard + - WallmountSubstationElectronics - CellRechargerCircuitboard - BorgChargerCircuitboard - WeaponCapacitorRechargerCircuitboard @@ -470,11 +472,11 @@ - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - TelecomServerCircuitboard - MassMediaCircuitboard - ReagentGrinderIndustrialMachineCircuitboard + - JukeboxCircuitBoard # Begin Nyano additions - ReverseEngineeringMachineCircuitboard - CrewMonitoringComputerCircuitboard @@ -1061,7 +1063,8 @@ - ClothingOuterWinterCE - ClothingOuterWinterCMO - ClothingOuterWinterHoP - - ClothingOuterWinterHoS + - ClothingOuterWinterHoSUnarmored + - ClothingOuterWinterWardenUnarmored - ClothingOuterWinterQM - ClothingOuterWinterRD - ClothingNeckMantleCap diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 83525a0510c..948b3f84b26 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -20,7 +20,6 @@ - CivilianServices - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: ExtensionCableReceiver - type: WiresPanel - type: WiresVisuals diff --git a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml index 2bf3ce082d8..859dc85ff1d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/salvage.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/salvage.yml @@ -52,7 +52,6 @@ description: Locates salvage. components: - type: SalvageMagnet - offsetRadiusMax: 32 - type: ApcPowerReceiver powerLoad: 1000 diff --git a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml index c523e7d68d3..ba9d7be88b0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/stasisbed.yml @@ -5,7 +5,6 @@ description: A bed that massively slows down the patient's metabolism and prevents bodily decay, allowing more time to administer a proper treatment for stabilization. components: - type: StasisBed - baseMultiplier: 10 - type: AntiRotOnBuckle - type: HealOnBuckle damage: diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 495ba06e939..efec2392d4c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -93,7 +93,6 @@ - type: LitOnPowered - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: Actions - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-mechanical diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml index a6f831e1a52..d0f239b338b 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml @@ -64,9 +64,6 @@ - type: Construction graph: GasTrinary node: filter - conditions: - - !type:TileNotBlocked - - !type:NoUnstackableInTile - type: AmbientSound enabled: false volume: -9 diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 4ee78f1213f..e046fb831a0 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -304,7 +304,6 @@ suffix: Enabled components: - type: GasThermoMachine - enabled: true - type: ApcPowerReceiver powerDisabled: false @@ -349,7 +348,6 @@ suffix: Enabled components: - type: GasThermoMachine - enabled: true - type: ApcPowerReceiver powerDisabled: false @@ -459,7 +457,8 @@ solutions: tank: maxVol: 400 - canMix: true + - type: MixableSolution + solution: tank - type: DrainableSolution solution: tank - type: ExaminableSolution diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml index f236bb8a41e..48994ac7d84 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml @@ -59,7 +59,6 @@ maxCharge: 1000000 startingCharge: 0 - type: BatteryDischarger - activeSupplyRate: 15000 - type: TeslaCoil chargeFromLightning: 500000 - type: LightningTarget diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml index 4567c6d0440..ea41ba3a20d 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml @@ -85,7 +85,6 @@ - type: ChaoticJump jumpMinInterval: 8 jumpMaxInterval: 15 - offset: 1 - type: WarpPoint follow: true location: tesla ball diff --git a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml index 2e8f047c214..cc337911742 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cable_terminal.yml @@ -19,8 +19,8 @@ damageModifierSet: Metallic - type: RCDDeconstructable cost: 2 - delay: 2 - fx: EffectRCDDeconstruct2 + delay: 0 + fx: EffectRCDConstruct0 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index a81c89de0fb..d064cc187c4 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -45,8 +45,8 @@ node: power - type: RCDDeconstructable cost: 2 - delay: 2 - fx: EffectRCDDeconstruct2 + delay: 0 + fx: EffectRCDConstruct0 - type: entity parent: CableBase diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 4bd0bec5ea0..347b18ecaee 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -241,6 +241,16 @@ - type: Battery maxCharge: 2000000 startingCharge: 2000000 + - type: ContainerFill + containers: + board: [ WallmountSubstationElectronics ] + capacitor: [ CapacitorStockPart ] + powercell: [ PowerCellSmall ] + - type: ContainerContainer + containers: + board: !type:Container + capacitor: !type:Container + powercell: !type:Container # Construction Frame - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index a5c2800e175..2792a0ef325 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -93,7 +93,6 @@ tempChange: 420 - type: ProjectileAnomaly projectilePrototype: ProjectileAnomalyFireball - targetNonSentientChance: 0.6 projectileSpeed: 0.5 minProjectiles: 3 maxProjectiles: 6 @@ -333,7 +332,6 @@ explosionMaxTileIntensity: 20 - type: ProjectileAnomaly projectilePrototype: ProjectileIcicle - targetNonSentientChance: 0.1 - type: EntitySpawnAnomaly entries: - settings: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index 5fda0ddbe2e..fb00db7aa6b 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -37,6 +37,19 @@ stateDoorOpen: emergency_open stateDoorClosed: emergency_door +# Emergency N2 closet +- type: entity + id: ClosetEmergencyN2 + name: emergency nitrogen closet + parent: ClosetSteelBase + description: It's full of life-saving equipment. Assuming, that is, that you breathe nitrogen. + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: fire + stateDoorOpen: fire_open + stateDoorClosed: n2_door + # Fire safety closet - type: entity id: ClosetFire diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 403e20b43c7..2d84541231e 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -21,6 +21,9 @@ - state: welded visible: false map: ["enum.WeldableLayers.BaseWelded"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + map: ["enum.PaperLabelVisuals.Layer"] - type: InteractionOutline - type: Physics - type: Fixtures @@ -31,7 +34,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 50 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - MachineLayer - type: EntityStorage @@ -55,6 +58,18 @@ - type: EntityStorageVisuals stateDoorOpen: open stateDoorClosed: closed + - type: GenericVisualizer + visuals: + enum.PaperLabelVisuals.HasLabel: + enum.PaperLabelVisuals.Layer: + True: { visible: true } + False: { visible: false } + enum.PaperLabelVisuals.LabelType: + enum.PaperLabelVisuals.Layer: + Paper: { state: paper } + Bounty: { state: bounty } + CaptainsPaper: { state: captains_paper } + Invoice: { state: invoice } - type: PaperLabel labelSlot: insertVerbText: Attach Label @@ -106,6 +121,9 @@ - state: locked map: ["enum.LockVisualLayers.Lock"] shader: unshaded + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + map: ["enum.PaperLabelVisuals.Layer"] - type: Damageable damageContainer: StructuralInorganic damageModifierSet: StructuralMetallic diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 285dd741b5d..11c963ed228 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -138,6 +138,9 @@ map: ["enum.StorageVisualLayers.Base"] - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + map: ["enum.PaperLabelVisuals.Layer"] - type: Construction graph: WebStructures node: crate @@ -320,6 +323,10 @@ - state: base - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "-0.25,0.625" + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/livestock.rsi state: base @@ -349,7 +356,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 135 mask: - - SmallMobMask #this is so they can go under plastic flaps + - CrateMask #this is so they can go under plastic flaps layer: - LargeMobLayer - type: Construction @@ -371,6 +378,10 @@ - state: base - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "0.0,0.125" + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/cage.rsi - type: Destructible @@ -402,7 +413,7 @@ bounds: "-0.4,-0.4,0.4,0.29" density: 80 mask: - - LargeMobMask + - CrateMask layer: - LargeMobLayer - type: StaticPrice @@ -424,6 +435,10 @@ - state: welded visible: false map: ["enum.WeldableLayers.BaseWelded"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "0.0,-0.09375" + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/piratechest.rsi state: crate_icon @@ -449,6 +464,8 @@ - state: welded visible: false map: ["enum.WeldableLayers.BaseWelded"] + - state: paper + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/toybox.rsi state: crate_icon @@ -465,6 +482,8 @@ - state: base - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/coffin.rsi state: base @@ -503,6 +522,10 @@ - state: base - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "-0.28125,0.625" + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/wooden_grave.rsi state: base @@ -547,6 +570,10 @@ - state: base - state: closed map: ["enum.StorageVisualLayers.Door"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "-0.3125,0.5625" + map: ["enum.PaperLabelVisuals.Layer"] - type: Icon sprite: Structures/Storage/Crates/stone_grave.rsi state: base @@ -571,6 +598,17 @@ sprite: Structures/Storage/Crates/trashcart.rsi - type: Sprite sprite: Structures/Storage/Crates/trashcart.rsi + layers: + - state: base + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "0.0,0.03125" + map: ["enum.PaperLabelVisuals.Layer"] - type: entity parent: CrateBaseSecure @@ -581,6 +619,20 @@ sprite: Structures/Storage/Crates/trashcart_jani.rsi - type: Sprite sprite: Structures/Storage/Crates/trashcart_jani.rsi + layers: + - state: base + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - state: paper + sprite: Structures/Storage/Crates/labels.rsi + offset: "0.0,0.03125" + map: ["enum.PaperLabelVisuals.Layer"] - type: AccessReader access: [["Janitor"]] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml index 4a442d0542f..421ab93be97 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml @@ -2,6 +2,8 @@ id: NoticeBoard name: notice board description: Is there a job for a witcher? + placement: + mode: SnapgridCenter components: - type: WallMount - type: Sprite @@ -53,3 +55,9 @@ - type: ContainerContainer containers: storagebase: !type:Container + - type: Tag + tags: + - Wooden + - type: Construction + graph: NoticeBoard + node: noticeBoard diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml index 94bc33a210a..d1df619b7a4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/station_map.yml @@ -59,7 +59,6 @@ board: !type:Container - type: ApcPowerReceiver powerLoad: 200 - priority: Low - type: WallMount arc: 360 - type: ExtensionCableReceiver diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index ff9a7ef9ae2..1b105e9cae5 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -169,7 +169,7 @@ sprite: Structures/Walls/meat.rsi - type: Construction graph: Girder - node: bananiumWall + node: meatWall - type: Destructible thresholds: - trigger: @@ -546,8 +546,9 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak + - !type:PlaySoundBehavior + sound: + collection: MetalBreak - type: IconSmooth key: walls base: reinf_over @@ -797,8 +798,9 @@ collection: MetalSlam - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak + - !type:PlaySoundBehavior + sound: + collection: MetalBreak - type: Construction graph: Girder node: diagonalshuttleWall diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index c4ee507395f..4439c11d689 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -23,7 +23,7 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - MidImpassable - type: Damageable @@ -61,7 +61,7 @@ bounds: "-0.49,-0.49,0.49,0.49" density: 100 mask: - - TabletopMachineMask + - Impassable layer: - Opaque - MidImpassable diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index a21be1678ce..9a89961b458 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -41,7 +41,6 @@ text: "/ServerInfo/Guidebook/Science/Xenoarchaeology.xml" children: - ArtifactReports - - TraversalDistorter - type: guideEntry id: Robotics @@ -55,11 +54,6 @@ name: guide-entry-artifact-reports text: "/ServerInfo/Guidebook/Science/ArtifactReports.xml" -- type: guideEntry - id: TraversalDistorter - name: guide-entry-traversal-distorter - text: "/ServerInfo/Guidebook/Science/TraversalDistorter.xml" - - type: guideEntry id: Cyborgs name: guide-entry-cyborgs diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index f076a235380..053300b9863 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -421,7 +421,6 @@ nutrientConsumption: 0.40 idealLight: 8 idealHeat: 298 - juicy: true splatPrototype: PuddleSplatter chemicals: Nutriment: @@ -456,7 +455,6 @@ nutrientConsumption: 0.70 idealLight: 8 idealHeat: 298 - juicy: true splatPrototype: PuddleSplatter chemicals: Nutriment: @@ -481,8 +479,10 @@ packetPrototype: BloodTomatoSeeds productPrototypes: - FoodBloodTomato + mutationPrototypes: + - killerTomato harvestRepeat: Repeat - lifespan: 25 + lifespan: 60 maturation: 8 production: 6 yield: 2 @@ -491,7 +491,6 @@ nutrientConsumption: 0.70 idealLight: 8 idealHeat: 298 - juicy: true splatPrototype: PuddleSplatter chemicals: Blood: @@ -503,6 +502,37 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: killerTomato + name: seeds-killertomato-name + noun: seeds-noun-seeds + displayName: seeds-killertomato-display-name + plantRsi: Objects/Specific/Hydroponics/tomatokiller.rsi + packetPrototype: KillerTomatoSeeds + productPrototypes: + - MobTomatoKiller + harvestRepeat: Repeat + lifespan: 25 + maturation: 15 + production: 6 + yield: 2 + potency: 10 + waterConsumption: 0.60 + nutrientConsumption: 0.70 + idealLight: 8 + idealHeat: 298 + growthStages: 2 + splatPrototype: PuddleSplatter + chemicals: + Blood: + Min: 1 + Max: 10 + PotencyDivisor: 10 + JuiceTomato: + Min: 1 + Max: 4 + PotencyDivisor: 25 + - type: seed id: eggplant name: seeds-eggplant-name @@ -868,7 +898,7 @@ plantRsi: Objects/Specific/Hydroponics/chili.rsi packetPrototype: ChiliSeeds productPrototypes: - - FoodChili + - FoodChiliPepper mutationPrototypes: - chilly harvestRepeat: Repeat @@ -901,7 +931,7 @@ plantRsi: Objects/Specific/Hydroponics/chilly.rsi packetPrototype: ChillySeeds productPrototypes: - - FoodChilly + - FoodChillyPepper harvestRepeat: Repeat lifespan: 25 maturation: 6 diff --git a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml index 6252ad8e993..84806a051a7 100644 --- a/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/aghost_inventory_template.yml @@ -11,6 +11,7 @@ displayName: ID - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml index a0c62b04cb1..d96331c9f5b 100644 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -63,6 +63,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -72,6 +73,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -80,6 +82,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 @@ -89,6 +92,7 @@ - name: pocket4 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -97,6 +101,7 @@ displayName: Pocket 4 - name: pocket3 slotTexture: web + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -112,6 +117,7 @@ displayName: Suit - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -122,6 +128,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml index 41fa7dc375f..a672e403b3a 100644 --- a/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/corpse_inventory_template.yml @@ -55,6 +55,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -65,6 +66,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -84,6 +86,7 @@ displayName: Suit Storage - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml index 4bbd18b1364..5d909264fe4 100644 --- a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml @@ -56,6 +56,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -66,6 +67,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -85,6 +87,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -94,6 +97,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -102,6 +106,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml index 57dce506eaf..7be9c75015b 100644 --- a/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/holoclown_inventory_template.yml @@ -3,6 +3,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -12,6 +13,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml index 574ecca35f4..2070f646b79 100644 --- a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml @@ -62,6 +62,7 @@ displayName: Head - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -72,6 +73,7 @@ stripHidden: true - name: pocket2 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -91,6 +93,7 @@ displayName: Suit Storage - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 @@ -100,6 +103,7 @@ displayName: ID - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -108,6 +112,7 @@ displayName: Belt - name: back slotTexture: back + fullTextureName: template_small slotFlags: BACK slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml index fb7dee1ec2b..5f81cdebc6c 100644 --- a/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/kangaroo_inventory_template.yml @@ -35,6 +35,7 @@ - name: belt slotTexture: belt + fullTextureName: template_small slotFlags: BELT slotGroup: SecondHotbar stripTime: 6 @@ -47,6 +48,7 @@ - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 @@ -60,6 +62,7 @@ slots: - name: pocket1 slotTexture: pocket + fullTextureName: template_small slotFlags: POCKET slotGroup: MainHotbar stripTime: 3 diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index 5af23dabac2..bdd51000844 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -29,6 +29,7 @@ displayName: Jumpsuit - name: id slotTexture: id + fullTextureName: template_small slotFlags: IDCARD slotGroup: SecondHotbar stripTime: 6 diff --git a/Resources/Prototypes/Maps/arena.yml b/Resources/Prototypes/Maps/arena.yml index 400a63cf6e1..a4fa261cea9 100644 --- a/Resources/Prototypes/Maps/arena.yml +++ b/Resources/Prototypes/Maps/arena.yml @@ -12,7 +12,7 @@ mapNameTemplate: '{0} Arena Station {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_UCLB.yml - type: StationJobs @@ -41,7 +41,7 @@ Detective: [ 1, 1 ] Gladiator: [ 0, 2 ] HeadOfSecurity: [ 1, 1 ] - Prisoner: [ 1, 2 ] + Prisoner: [ 2, 2 ] PrisonGuard: [ 1, 1 ] SecurityOfficer: [ 5, 7 ] SecurityCadet: [ 1, 2 ] @@ -59,14 +59,14 @@ Reporter: [ 2, 2 ] ServiceWorker: [ 1, 3 ] #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 3, 5 ] + Borg: [ 2, 2 ] + Chaplain: [ 1, 1 ] ForensicMantis: [ 1, 1 ] ResearchAssistant: [ 2, 4 ] - Chaplain: [ 1, 1 ] - Borg: [ 2, 2 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 5 ] #supply - Quartermaster: [ 1, 1 ] CargoTechnician: [ 2, 3 ] - SalvageSpecialist: [ 2, 3 ] MailCarrier: [ 1, 2 ] + SalvageSpecialist: [ 2, 3 ] + Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/edge.yml b/Resources/Prototypes/Maps/edge.yml index e9df3f397ee..4f53cadafce 100644 --- a/Resources/Prototypes/Maps/edge.yml +++ b/Resources/Prototypes/Maps/edge.yml @@ -9,7 +9,7 @@ stationProto: StandardNanotrasenStation components: - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml + emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Box.yml - type: StationNameSetup mapNameTemplate: '{0} Edge Station {1}' nameGenerator: diff --git a/Resources/Prototypes/Maps/hammurabi.yml b/Resources/Prototypes/Maps/hammurabi.yml index 6c27a09ddbb..8f6e0318516 100644 --- a/Resources/Prototypes/Maps/hammurabi.yml +++ b/Resources/Prototypes/Maps/hammurabi.yml @@ -11,7 +11,7 @@ mapNameTemplate: '{0} Hammurabi Prison Station {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Centipede.yml - type: StationJobs @@ -58,14 +58,14 @@ Reporter: [ 2, 2 ] ServiceWorker: [ 4, 6 ] #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 6 ] - ResearchAssistant: [ 2, 3 ] Chaplain: [ 1, 1 ] Borg: [ 2, 3 ] ForensicMantis: [ 1, 1 ] + ResearchAssistant: [ 2, 3 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 6 ] #supply - Quartermaster: [ 1, 1 ] CargoTechnician: [ 2, 4 ] - SalvageSpecialist: [ 3, 5 ] MailCarrier: [ 2, 3 ] + SalvageSpecialist: [ 3, 5 ] + Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/hive.yml b/Resources/Prototypes/Maps/hive.yml index 0b6d3a182ce..7445787fd17 100644 --- a/Resources/Prototypes/Maps/hive.yml +++ b/Resources/Prototypes/Maps/hive.yml @@ -12,7 +12,7 @@ mapNameTemplate: 'The Hive' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Seal.yml - type: StationJobs @@ -66,7 +66,7 @@ ResearchDirector: [ 1, 1 ] Scientist: [ 3, 5 ] #supply - Quartermaster: [ 1, 1 ] CargoTechnician: [ 2, 3 ] - SalvageSpecialist: [ 2, 3 ] MailCarrier: [ 2, 2 ] + SalvageSpecialist: [ 2, 3 ] + Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/lighthouse.yml b/Resources/Prototypes/Maps/lighthouse.yml index 4ad5c2df8e6..58b1361f762 100644 --- a/Resources/Prototypes/Maps/lighthouse.yml +++ b/Resources/Prototypes/Maps/lighthouse.yml @@ -3,7 +3,7 @@ mapName: Lighthouse mapPath: /Maps/lighthouse.yml minPlayers: 15 - maxPlayers: 55 + maxPlayers: 80 stations: Lighthouse: stationProto: StandardNanotrasenStation @@ -31,6 +31,7 @@ Librarian: [ 1, 1 ] Reporter: [ 2, 2 ] Musician: [ 1, 1 ] + ServiceWorker: [ 2, 2] Janitor: [ 2, 2 ] Mime: [ 1, 1 ] #engineering @@ -58,6 +59,7 @@ Detective: [ 1, 1 ] SecurityOfficer: [ 2, 4 ] SecurityCadet: [ 1, 4 ] + Brigmedic: [ 1, 1 ] Prisoner: [ 2, 3 ] #logistics Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/pebble.yml b/Resources/Prototypes/Maps/pebble.yml index 81b77070b73..1551df316e4 100644 --- a/Resources/Prototypes/Maps/pebble.yml +++ b/Resources/Prototypes/Maps/pebble.yml @@ -12,7 +12,7 @@ mapNameTemplate: '{0} Pebble Station {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationJobs overflowJobs: - Passenger diff --git a/Resources/Prototypes/Maps/shoukou.yml b/Resources/Prototypes/Maps/shoukou.yml index 5b4664eb161..b04c53c2f27 100644 --- a/Resources/Prototypes/Maps/shoukou.yml +++ b/Resources/Prototypes/Maps/shoukou.yml @@ -12,7 +12,7 @@ mapNameTemplate: '{0} Shōkō "Little Port" {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Delta.yml - type: StationJobs diff --git a/Resources/Prototypes/Maps/tortuga.yml b/Resources/Prototypes/Maps/tortuga.yml index 7bbaee4cd09..b12fa32d03b 100644 --- a/Resources/Prototypes/Maps/tortuga.yml +++ b/Resources/Prototypes/Maps/tortuga.yml @@ -11,7 +11,7 @@ mapNameTemplate: '{0} Tortuga Station {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'DV' + prefixCreator: 'NY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Seal.yml - type: StationJobs @@ -58,14 +58,14 @@ Reporter: [ 2, 2 ] ServiceWorker: [ 3, 6 ] #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 6 ] - ForensicMantis: [ 1, 1 ] - ResearchAssistant: [ 2, 4 ] Chaplain: [ 1, 1 ] Borg: [ 2, 3 ] + ForensicMantis: [ 1, 1 ] + ResearchAssistant: [ 2, 4 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 6 ] #supply - Quartermaster: [ 1, 1 ] CargoTechnician: [ 2, 4 ] - SalvageSpecialist: [ 3, 4 ] MailCarrier: [ 2, 2 ] + SalvageSpecialist: [ 3, 4 ] + Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/NPCs/Combat/melee.yml b/Resources/Prototypes/NPCs/Combat/melee.yml index 2facfaa5427..122875ed97a 100644 --- a/Resources/Prototypes/NPCs/Combat/melee.yml +++ b/Resources/Prototypes/NPCs/Combat/melee.yml @@ -70,12 +70,11 @@ # Tries to melee attack our target. - type: htnCompound id: MeleeAttackTargetCompound - preconditions: - - !type:KeyExistsPrecondition - key: Target branches: - # Move to melee range and hit them - - tasks: + - preconditions: + - !type:KeyExistsPrecondition + key: Target + tasks: - !type:HTNPrimitiveTask operator: !type:MoveToOperator shutdownState: PlanFinished @@ -104,11 +103,11 @@ - type: htnCompound id: MeleeAttackOrderedTargetCompound - preconditions: - - !type:KeyExistsPrecondition - key: Target branches: - - tasks: + - preconditions: + - !type:KeyExistsPrecondition + key: Target + tasks: - !type:HTNPrimitiveTask operator: !type:MoveToOperator shutdownState: PlanFinished diff --git a/Resources/Prototypes/NPCs/honkbot.yml b/Resources/Prototypes/NPCs/honkbot.yml new file mode 100644 index 00000000000..c9c925ac49d --- /dev/null +++ b/Resources/Prototypes/NPCs/honkbot.yml @@ -0,0 +1,6 @@ +- type: htnCompound + id: HonkbotCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index 740f7ca5767..b0e1c8ae9b9 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -77,3 +77,16 @@ - tasks: - !type:HTNCompoundTask task: IdleCompound + +- type: htnCompound + id: KillerTomatoCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: MeleeCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/Nyanotrasen/Actions/types.yml b/Resources/Prototypes/Nyanotrasen/Actions/types.yml index e6e4bdc5a75..b089568f419 100644 --- a/Resources/Prototypes/Nyanotrasen/Actions/types.yml +++ b/Resources/Prototypes/Nyanotrasen/Actions/types.yml @@ -175,5 +175,6 @@ components: - type: InstantAction icon: { sprite: Nyanotrasen/Objects/Consumable/Food/candy.rsi, state: gumball } + iconColor: '#FFAED7' useDelay: 40 event: !type:FabricateGumballActionEvent diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml index abd4d86a1ef..6838a3d3d09 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/devices.yml @@ -83,7 +83,6 @@ - HandheldStationMap chance: 0.8 rarePrototypes: - - TraversalDistorterMachineCircuitboard - CloningPodMachineCircuitboard - MetempsychoticMachineCircuitboard - ReverseEngineeringMachineCircuitboard diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml index 5b47ee34a9a..142c1919599 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/randomitems.yml @@ -85,7 +85,7 @@ - BaseChemistryEmptyVial - Syringe - Dropper - - BodyBag_Folded + - BodyBagFolded - SprayBottle - SprayBottleWater - SprayBottleSpaceCleaner @@ -161,6 +161,8 @@ - CigCartonRed - CigCartonBlue - CigCartonBlack + - CigCartonPurple # DeltaV + - CigCartonCandy # DeltaV - Joint - Blunt - CigarGold diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml index 5daf2e15e56..045af4d82fc 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/mutants.yml @@ -1,75 +1,3 @@ -- type: entity - name: killer tomato - id: MobTomatoKiller - parent: SimpleSpaceMobBase - description: This is really going to let you own some vegans in your next online debate. - components: - - type: InputMover - - type: MobMover - - type: HTN - rootTask: - task: SimpleHostileCompound - - type: NpcFactionMember - factions: - - SimpleHostile - - type: Sprite - drawdepth: Mobs - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: produce - sprite: Nyanotrasen/Mobs/Mutants/killer_tomato.rsi - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.5 - density: 63 - mask: - - MobMask - layer: - - MobLayer - - type: MobState - - type: MobThresholds - thresholds: - 0: Alive - 60: Dead - - type: Appearance - - type: DamageStateVisuals - states: - Alive: - Base: produce - Critical: - Base: produce_dead - Dead: - Base: produce_dead - - type: Butcherable - spawned: - - id: FoodMeatTomato - amount: 3 - - id: KillerTomatoSeeds - amount: 1 - - type: Bloodstream - bloodReagent: DemonsBlood - bloodMaxVolume: 100 - - type: CombatMode - - type: Temperature - heatDamageThreshold: 500 - coldDamageThreshold: 200 - - type: MeleeWeapon - hidden: true - animation: WeaponArcBite - soundHit: - path: /Audio/Effects/bite.ogg - damage: - types: - Piercing: 3 - Slash: 5 - - type: ReplacementAccent - accent: genericAggressive - - type: Produce - - type: NoSlip - # - type: entity # name: oneirophage # parent: SimpleMobBase @@ -309,9 +237,10 @@ - type: Puller needsHands: false - type: Vocal - # mice are gender neutral who cares - maleScream: /Audio/Animals/mouse_squeak.ogg - femaleScream: /Audio/Animals/mouse_squeak.ogg + sounds: + Male: Mouse + Female: Mouse + Unsexed: Mouse wilhelmProbability: 0.001 - type: Tag tags: @@ -346,8 +275,6 @@ proper: true gender: male - type: IntrinsicRadioReceiver - channels: - - Common - type: IntrinsicRadioTransmitter channels: - Common diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml index 9dbe9f95f70..e12b14d4906 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml @@ -6,6 +6,7 @@ id: MobPurpleSnakeGhost components: - type: GhostTakeoverAvailable + - type: GhostRole allowMovement: true allowSpeech: false makeSentient: true @@ -19,6 +20,7 @@ id: MobSmallPurpleSnakeGhost components: - type: GhostTakeoverAvailable + - type: GhostRole allowMovement: true allowSpeech: false makeSentient: true diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/candy.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/candy.yml index 11eb1fac1c5..971748013b3 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/candy.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/candy.yml @@ -2,7 +2,7 @@ parent: FoodBase id: FoodLollipop name: lollipop - description: For being such a good sport. + description: For being such a good sport! It's enriched with potent yet mostly safe-to-eat medicine. components: - type: SolutionContainerManager solutions: @@ -21,13 +21,23 @@ Quantity: 3 - type: Sprite sprite: Nyanotrasen/Objects/Consumable/Food/candy.rsi - state: lollipop + layers: + - state: lollipop-ball + map: [ "enum.CandyVisualLayers.Ball" ] + - state: lollipop-stickandshine + - type: Clothing + sprite: Nyanotrasen/Objects/Consumable/Food/candy.rsi + slots: [ mask ] + equippedPrefix: lollipop + quickEquip: false # would block eating otherwise + - type: Appearance + - type: RandomizedCandy - type: entity parent: FoodBase id: FoodGumball name: gumball - description: For being such a good sport. + description: Try as you might, you can't blow bubbles with it... it's enriched with medicine for minor ailments. components: - type: SolutionContainerManager solutions: @@ -44,4 +54,9 @@ Quantity: 3 - type: Sprite sprite: Nyanotrasen/Objects/Consumable/Food/candy.rsi - state: gumball + layers: + - state: gumball + map: [ "enum.CandyVisualLayers.Ball" ] + - state: gumball-shine + - type: Appearance + - type: RandomizedCandy diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml index 10f5d631aa5..413304dca40 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Chapel/amphorae.yml @@ -17,7 +17,6 @@ jar: maxVol: 120 - type: Drink - isOpen: true solution: jar - type: Spillable solution: jar diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Hydroponics/seeds.yml deleted file mode 100644 index 870a0861456..00000000000 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Hydroponics/seeds.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - parent: SeedBase - name: packet of killer tomato seeds - id: KillerTomatoSeeds - components: - - type: Seed - seedId: killertomato - - type: Sprite - sprite: Nyanotrasen/Mobs/Mutants/killer_tomato.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml index c1ca2cd60b1..8904b6991be 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Specific/Mail/base_mail.yml @@ -77,7 +77,7 @@ - trigger: !type:DamageTrigger damage: 5 - triggersOnce: true + #triggersOnce: true behaviors: - !type:DoActsBehavior acts: [ "Breakage" ] diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml index c7e6aa0259e..1aa942e8746 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Doors/Airlocks/access.yml @@ -3,17 +3,24 @@ id: AirlockMailLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] - - type: Wires - layoutId: AirlockCargo + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] - type: entity parent: AirlockCargoGlass id: AirlockMailGlassLocked suffix: Mail, Locked components: - - type: AccessReader - access: [["Mail"]] - - type: Wires - layoutId: AirlockCargo + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] + +- type: entity + parent: AirlockMaint + id: AirlockMaintMailLocked + suffix: Mail, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMail ] diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml index fa3e0537dbb..4a57369a14f 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/deep_fryer.yml @@ -124,7 +124,6 @@ - type: RefillableSolution solution: vat_oil - type: Drink - isOpen: true solution: vat_oil - type: Appearance - type: ActivatableUI diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/oracle.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/oracle.yml index f7481abf1ed..5d9b0e308dd 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/oracle.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/oracle.yml @@ -22,7 +22,6 @@ fountain: maxVol: 200 - type: Drink - isOpen: true solution: fountain - type: DrawableSolution solution: fountain diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml index ae85cd25e03..deaf5581aa9 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/sophicscribe.yml @@ -16,9 +16,6 @@ - type: Speech speechSounds: Tenor - type: IntrinsicRadioReceiver - channels: - - Common - - Science - type: IntrinsicRadioTransmitter channels: - Common diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml index 0d398128af5..b0b92899502 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Walls/walls.yml @@ -30,8 +30,9 @@ node: girder - !type:DoActsBehavior acts: ["Destruction"] - destroySound: - collection: MetalBreak + - !type:PlaySoundBehavior + sound: + collection: MetalBreak - type: IconSmooth key: walls base: paperwall diff --git a/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml b/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml deleted file mode 100644 index 688af9fc50c..00000000000 --- a/Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml +++ /dev/null @@ -1,30 +0,0 @@ -- type: seed - id: killertomato - name: seeds-killertomato-name - noun: seeds-noun-seeds - displayName: seeds-killertomato-display-name - plantRsi: Nyanotrasen/Mobs/Mutants/killer_tomato.rsi - packetPrototype: KillerTomatoSeeds - productPrototypes: - - MobTomatoKiller - lifespan: 25 - maturation: 8 - production: 6 - yield: 2 - potency: 10 - waterConsumption: 6 - growthStages: 2 - nutrientConsumption: 0.25 - idealLight: 8 - idealHeat: 298 - juicy: true - splatPrototype: PuddleSplatter - chemicals: - Nutriment: - Min: 1 - Max: 10 - PotencyDivisor: 10 - DemonsBlood: - Min: 1 - Max: 4 - PotencyDivisor: 25 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml index 51777e2f594..b61e99ba920 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml @@ -26,7 +26,7 @@ solids: FoodSnackBoritos: 1 FoodCheeseSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatMeatball: 1 # Base ingredients: Should be moved out of microwave as soon as possible. @@ -62,7 +62,7 @@ solids: FoodTofuSlice: 2 FoodOnionSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodCarrot: 1 FoodCheeseCurds: 1 @@ -97,7 +97,7 @@ solids: FoodCheeseSlice: 1 FoodCabbage: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodPotato: 1 FoodOnionSlice: 2 @@ -111,7 +111,7 @@ solids: FoodCheeseSlice: 1 #Grilled cheese slice FoodMothSaladBase: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodCabbage: 1 - type: microwaveMealRecipe @@ -142,7 +142,7 @@ FoodRiceBoiled: 1 FoodPotato: 2 FoodCabbage: 1 - FoodChili: 1 + FoodChiliPepper: 1 #Herbs: 1 - type: microwaveMealRecipe @@ -307,7 +307,7 @@ solids: FoodBowlBig: 1 FoodTofuSlice: 1 - FoodChili: 1 + FoodChiliPepper: 1 #FoodYogurt: 1 #Milk and Cream placeholder - type: microwaveMealRecipe @@ -368,7 +368,7 @@ solids: FoodBowlBig: 1 FoodTomato: 1 - FoodChili: 1 + FoodChiliPepper: 1 # Salads: These should be moved out of the microwave as soon as possible @@ -421,7 +421,7 @@ solids: FoodBowlBig: 1 FoodMothSaladBase: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodOnionRed: 1 FoodAmbrosiaVulgaris: 1 #Herbs @@ -438,7 +438,7 @@ FoodDoughFlat: 1 FoodCheeseSlice: 1 FoodMothBakedCorn: 1 - FoodChili: 1 + FoodChiliPepper: 1 - type: microwaveMealRecipe id: RecipeMothFiveCheesePizza diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index ffeba32546d..80fb2d5b9e1 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -191,6 +191,9 @@ components: - type: StealCondition stealGroup: ClothingOuterHardsuitRd + - type: Objective + # This item must be worn or stored in a slowing duffelbag, very hard to hide. + difficulty: 3 - type: entity noSpawn: true diff --git a/Resources/Prototypes/Procedural/dungeon_configs.yml b/Resources/Prototypes/Procedural/dungeon_configs.yml index 9e8d3a44095..3614e4e787f 100644 --- a/Resources/Prototypes/Procedural/dungeon_configs.yml +++ b/Resources/Prototypes/Procedural/dungeon_configs.yml @@ -292,11 +292,11 @@ - !type:JunctionPostGen width: 1 entities: - - AirlockHydroGlassLocked + - AirlockGlass - !type:JunctionPostGen entities: - - AirlockHydroGlassLocked + - AirlockGlass - !type:AutoCablingPostGen diff --git a/Resources/Prototypes/RCD/rcd.yml b/Resources/Prototypes/RCD/rcd.yml index cb2c9ed2341..500b5f59bf9 100644 --- a/Resources/Prototypes/RCD/rcd.yml +++ b/Resources/Prototypes/RCD/rcd.yml @@ -14,14 +14,16 @@ - type: rcd id: DeconstructLattice # Hidden prototype - do not add to RCDs + name: rcd-component-deconstruct mode: Deconstruct cost: 2 - delay: 1 + delay: 0 rotation: Camera - fx: EffectRCDDeconstruct2 + fx: EffectRCDConstruct0 - type: rcd id: DeconstructTile # Hidden prototype - do not add to RCDs + name: rcd-component-deconstruct mode: Deconstruct cost: 4 delay: 4 @@ -59,7 +61,6 @@ - type: rcd id: Catwalk - name: rcd-component-catwalk category: WallsAndFlooring sprite: /Textures/Interface/Radial/RCD/catwalk.png mode: ConstructObject @@ -76,7 +77,6 @@ # Walls - type: rcd id: WallSolid - name: rcd-component-wall-solid category: WallsAndFlooring sprite: /Textures/Interface/Radial/RCD/solid_wall.png mode: ConstructObject @@ -89,7 +89,6 @@ - type: rcd id: Grille - name: rcd-component-grille category: WindowsAndGrilles sprite: /Textures/Interface/Radial/RCD/grille.png mode: ConstructObject @@ -103,7 +102,6 @@ # Windows - type: rcd id: Window - name: rcd-component-window category: WindowsAndGrilles sprite: /Textures/Interface/Radial/RCD/window.png mode: ConstructObject @@ -118,7 +116,6 @@ - type: rcd id: WindowDirectional - name: rcd-component-window-directional category: WindowsAndGrilles sprite: /Textures/Interface/Radial/RCD/directional.png mode: ConstructObject @@ -134,7 +131,6 @@ - type: rcd id: ReinforcedWindow - name: rcd-component-reinforced-window category: WindowsAndGrilles sprite: /Textures/Interface/Radial/RCD/window_reinforced.png mode: ConstructObject @@ -149,7 +145,6 @@ - type: rcd id: WindowReinforcedDirectional - name: rcd-component-window-reinforced-directional category: WindowsAndGrilles sprite: /Textures/Interface/Radial/RCD/directional_reinforced.png mode: ConstructObject @@ -166,7 +161,6 @@ # Airlocks - type: rcd id: Airlock - name: rcd-component-airlock category: Airlocks sprite: /Textures/Interface/Radial/RCD/airlock.png mode: ConstructObject @@ -179,7 +173,6 @@ - type: rcd id: AirlockGlass - name: rcd-component-airlock-glass category: Airlocks sprite: /Textures/Interface/Radial/RCD/glass_airlock.png mode: ConstructObject @@ -192,7 +185,6 @@ - type: rcd id: Firelock - name: rcd-component-firelock category: Airlocks sprite: /Textures/Interface/Radial/RCD/firelock.png mode: ConstructObject @@ -206,7 +198,6 @@ # Lighting - type: rcd id: TubeLight - name: rcd-component-tube-light category: Lighting sprite: /Textures/Interface/Radial/RCD/tube_light.png mode: ConstructObject @@ -220,7 +211,6 @@ - type: rcd id: BulbLight - name: rcd-component-window-bulb-light category: Lighting sprite: /Textures/Interface/Radial/RCD/bulb_light.png mode: ConstructObject @@ -235,7 +225,6 @@ # Electrical - type: rcd id: LVCable - name: rcd-component-window-lv-cable category: Electrical sprite: /Textures/Interface/Radial/RCD/lv_coil.png mode: ConstructObject @@ -250,7 +239,6 @@ - type: rcd id: MVCable - name: rcd-component-window-mv-cable category: Electrical sprite: /Textures/Interface/Radial/RCD/mv_coil.png mode: ConstructObject @@ -265,7 +253,6 @@ - type: rcd id: HVCable - name: rcd-component-window-hv-cable category: Electrical sprite: /Textures/Interface/Radial/RCD/hv_coil.png mode: ConstructObject @@ -280,7 +267,6 @@ - type: rcd id: CableTerminal - name: rcd-component-window-cable-terminal category: Electrical sprite: /Textures/Interface/Radial/RCD/cable_terminal.png mode: ConstructObject diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 12f5a80185a..79eec1186ca 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -39,6 +39,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: Beer @@ -55,6 +56,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.6 - type: reagent id: BlueCuracao @@ -459,6 +461,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.3 + fizziness: 0.8 # Mixed Alcohol @@ -676,6 +679,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + fizziness: 0.3 - type: reagent id: BlackRussian @@ -815,6 +819,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.2 - type: reagent id: DemonsBlood @@ -830,6 +835,7 @@ metamorphicMaxFillLevels: 4 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: DevilsKiss @@ -917,6 +923,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.15 - type: reagent id: GargleBlaster @@ -963,6 +970,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 # A little high, but it has fizz in the name - type: reagent id: GinTonic @@ -986,6 +994,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: Gildlager @@ -1063,6 +1072,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.6 - type: reagent id: IrishCarBomb @@ -1200,6 +1210,7 @@ metamorphicMaxFillLevels: 2 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.7 - type: reagent id: Margarita @@ -1253,6 +1264,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: Mojito @@ -1268,6 +1280,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.3 - type: reagent id: Moonshine @@ -1372,6 +1385,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.4 - type: reagent id: PinaColada @@ -1501,6 +1515,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: SuiDream @@ -1516,6 +1531,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.2 - type: reagent id: SyndicateBomb @@ -1531,6 +1547,7 @@ metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.6 - type: reagent id: TequilaSunrise @@ -1569,6 +1586,7 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.2 - type: reagent id: ThreeMileIsland @@ -1656,6 +1674,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: WhiskeyCola @@ -1679,6 +1698,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.3 - type: reagent id: WhiskeySoda @@ -1702,6 +1722,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.07 + fizziness: 0.4 - type: reagent id: WhiteGilgamesh @@ -1719,6 +1740,7 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + fizziness: 0.5 - type: reagent id: WhiteRussian diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml index 9984b4c0cf6..19a5e1bf8f1 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/base_drink.yml @@ -40,6 +40,7 @@ collection: FootstepSticky params: volume: 6 + fizziness: 0.5 - type: reagent id: BaseAlcohol @@ -75,4 +76,4 @@ footstepSound: collection: FootstepSticky params: - volume: 6 \ No newline at end of file + volume: 6 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 5c09b3c909b..71de67adb99 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -322,6 +322,7 @@ damage: types: Poison: 1 + fizziness: 0.5 - type: reagent id: SodaWater @@ -331,6 +332,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: fizzy color: "#619494" + fizziness: 0.8 - type: reagent id: SoyLatte @@ -373,6 +375,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: tonicwater color: "#0064C8" + fizziness: 0.4 - type: reagent id: Water @@ -467,6 +470,7 @@ effects: - !type:SatiateThirst factor: 1 + fizziness: 0.3 - type: reagent id: Posca @@ -491,6 +495,7 @@ metamorphicMaxFillLevels: 3 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.3 - type: reagent id: Rewriter @@ -506,6 +511,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0.3 - type: reagent id: Mopwata diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index ba5adc4f2ae..3dda5b5329a 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -59,6 +59,7 @@ - !type:AdjustReagent reagent: Theobromine amount: 0.05 + fizziness: 0.4 - type: reagent id: GrapeSoda @@ -84,6 +85,7 @@ metamorphicMaxFillLevels: 5 metamorphicFillBaseName: fill- metamorphicChangeColor: true + fizziness: 0 - type: reagent id: LemonLime @@ -102,6 +104,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: pwrgamesoda color: "#9385bf" + fizziness: 0.9 # gamers crave the fizz - type: reagent id: RootBeer @@ -132,6 +135,7 @@ metamorphicMaxFillLevels: 7 metamorphicFillBaseName: fill- metamorphicChangeColor: false + fizziness: 0.4 - type: reagent id: SolDry diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml index b3a7fe1bb0a..e47335b1b4a 100644 --- a/Resources/Prototypes/Reagents/elements.yml +++ b/Resources/Prototypes/Reagents/elements.yml @@ -72,7 +72,7 @@ Medicine: effects: - !type:ModifyBloodLevel - condition: + conditions: - !type:OrganType type: Arachnid shouldHave: true @@ -163,7 +163,7 @@ Medicine: effects: - !type:ModifyBloodLevel - condition: + conditions: - !type:OrganType type: Arachnid shouldHave: false diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index b3b5bcebb31..dfe96359e68 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -243,7 +243,7 @@ types: Asphyxiation: 1 Cold: 2 - groups: + groups: Brute: 0.5 - !type:Jitter conditions: diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index d6c645be4c8..27f16b85100 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -484,8 +484,8 @@ - !type:PopupMessage conditions: - !type:OrganType - type: Human - reagent: Protein + type: Animal + shouldHave: false type: Local visualType: MediumCaution messages: [ "generic-reagent-effect-sick" ] @@ -494,19 +494,21 @@ probability: 0.1 conditions: - !type:OrganType - type: Human + type: Animal + shouldHave: false - !type:HealthChange conditions: - !type:OrganType - type: Human + type: Animal + shouldHave: false damage: types: Poison: 1 - !type:AdjustReagent conditions: - !type:OrganType - type: Human - shouldHave: false + type: Animal + shouldHave: true reagent: Protein amount: 0.5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/noticeboard.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/noticeboard.yml new file mode 100644 index 00000000000..324745cbb9d --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/noticeboard.yml @@ -0,0 +1,26 @@ +- type: constructionGraph + id: NoticeBoard + start: start + graph: + - node: start + actions: + - !type:DestroyEntity {} + edges: + - to: noticeBoard + completed: + - !type:SnapToGrid { } + steps: + - material: WoodPlank + amount: 3 + doAfter: 2 + - node: noticeBoard + entity: NoticeBoard + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: MaterialWoodPlank + amount: 3 + steps: + - tool: Prying + doAfter: 3 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml index 5529514fdcb..0bb6b4b1ce4 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml @@ -121,7 +121,6 @@ actions: - !type:SetWiresPanelSecurity wiresAccessible: true - weldingAllowed: true edges: - to: glassElectronics conditions: @@ -162,7 +161,6 @@ actions: - !type:SetWiresPanelSecurity wiresAccessible: true - weldingAllowed: true edges: - to: wired conditions: @@ -201,7 +199,6 @@ actions: - !type:SetWiresPanelSecurity wiresAccessible: true - weldingAllowed: true edges: - to: medSecurityUnfinished conditions: @@ -225,7 +222,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level1 wiresAccessible: false - weldingAllowed: false edges: - to: glassAirlock completed: @@ -278,7 +274,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level2 wiresAccessible: false - weldingAllowed: false edges: - to: medSecurityUnfinished conditions: @@ -293,7 +288,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level3 wiresAccessible: false - weldingAllowed: false edges: - to: glassAirlock completed: @@ -346,7 +340,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level4 wiresAccessible: false - weldingAllowed: false edges: - to: highSecurityUnfinished conditions: @@ -369,7 +362,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level5 wiresAccessible: false - weldingAllowed: true edges: - to: highSecurity completed: @@ -397,7 +389,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level6 wiresAccessible: false - weldingAllowed: false edges: - to: maxSecurity completed: @@ -422,7 +413,6 @@ - !type:SetWiresPanelSecurity examine: wires-panel-component-on-examine-security-level7 wiresAccessible: false - weldingAllowed: false edges: - to: superMaxSecurityUnfinished conditions: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock_clockwork.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock_clockwork.yml index b0cfe30eb01..76b641a06d9 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock_clockwork.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock_clockwork.yml @@ -121,7 +121,6 @@ actions: - !type:SetWiresPanelSecurity wiresAccessible: true - weldingAllowed: true edges: - to: glassElectronics conditions: @@ -146,7 +145,6 @@ actions: - !type:SetWiresPanelSecurity wiresAccessible: true - weldingAllowed: true edges: - to: wired conditions: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/conveyor.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/conveyor.yml index ff0ecbc4ed1..43d2484bbd2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/conveyor.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/conveyor.yml @@ -23,7 +23,6 @@ - !type:SetAnchor value: true - !type:SnapToGrid - offset: Center edges: - to: item steps: @@ -31,4 +30,4 @@ doAfter: 3 completed: - !type:SetAnchor - value: false \ No newline at end of file + value: false diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/lighting.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/lighting.yml index 111d8ebcd72..f70a44efe3c 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/lighting.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/lighting.yml @@ -19,6 +19,11 @@ - material: Steel amount: 5 doAfter: 2.0 + - to: strobeLight + steps: + - material: Steel + amount: 1 + doAfter: 2.0 - node: tubeLight entity: PoweredlightEmpty edges: @@ -63,4 +68,19 @@ - !type:SpawnPrototype prototype: SheetSteel1 amount: 5 + - !type:DeleteEntity {} + - node: strobeLight + entity: PoweredStrobeLightEmpty + edges: + - to: start + conditions: + - !type:ContainerEmpty + container: "light_bulb" + steps: + - tool: Screwing + doAfter: 2.0 + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 1 - !type:DeleteEntity {} \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml index 0914ae46e56..922e8857c92 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml @@ -28,18 +28,15 @@ - to: solarpanel conditions: - !type:EntityAnchored - value: true steps: - material: Glass amount: 2 doAfter: 0.5 completed: - !type:SnapToGrid - offset: Center - to: solartracker conditions: - !type:EntityAnchored - value: true steps: - tag: SolarTrackerElectronics name: Solar Tracker Electronics @@ -52,7 +49,6 @@ doAfter: 2 completed: - !type:SnapToGrid - offset: Center - node: solarpanel entity: SolarPanel diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml index 381871f94af..7e4087b20a2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/wallmount_substation.yml @@ -26,7 +26,13 @@ steps: - material: Cable amount: 5 - doAfter: 2 + doAfter: 0.5 + - material: CableMV + amount: 5 + doAfter: 0.5 + - material: CableHV + amount: 5 + doAfter: 0.5 - tool: Screwing doAfter: 2 @@ -41,12 +47,34 @@ icon: sprite: "Objects/Misc/module.rsi" state: "charger_APC" - doAfter: 1 + doAfter: 0.5 + - anyTags: + - PowerCell + - PowerCellSmall + store: powercell + name: a powercell + icon: + sprite: "Objects/Power/power_cells.rsi" + state: "medium" + doAfter: 0.5 + - tag: CapacitorStockPart + name: a capacitor + store: capacitor + icon: + sprite: "Objects/Misc/stock_parts.rsi" + state: "capacitor" + doAfter: 0.5 - to: frame completed: - !type:GivePrototype prototype: CableApcStack1 amount: 5 + - !type:GivePrototype + prototype: CableMVStack1 + amount: 5 + - !type:GivePrototype + prototype: CableHVStack1 + amount: 5 steps: - tool: Cutting doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml index 6e1c682f475..f1efe63ff50 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml @@ -10,7 +10,7 @@ amount: 2 doAfter: 2 - material: Cable - amount: 2 + amount: 3 doAfter: 1 - tag: GlassShard name: Glass Shard @@ -33,7 +33,7 @@ amount: 2 doAfter: 2 - material: Cable - amount: 2 + amount: 3 doAfter: 1 - tag: ReinforcedGlassShard name: Reinforced Glass Shard @@ -56,7 +56,7 @@ amount: 2 doAfter: 2 - material: Cable - amount: 2 + amount: 3 doAfter: 1 - tag: PlasmaGlassShard name: Plasma Glass Shard @@ -79,7 +79,7 @@ amount: 2 doAfter: 2 - material: Cable - amount: 2 + amount: 3 doAfter: 1 - tag: UraniumGlassShard name: Uranium Glass Shard diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index cc343f9a4df..5129cb885f8 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -1,13 +1,13 @@ -# - type: construction # DeltaV - Prevent clowns from making the hardsuit -# name: clown hardsuit -# id: ClownHardsuit -# graph: ClownHardsuit -# startNode: start -# targetNode: clownHardsuit -# category: construction-category-clothing -# description: A modified hardsuit fit for a clown. -# icon: { sprite: Clothing/OuterClothing/Hardsuits/clown.rsi, state: icon } -# objectType: Item +- type: construction + name: clown hardsuit + id: ClownHardsuit + graph: ClownHardsuit + startNode: start + targetNode: clownHardsuit + category: construction-category-clothing + description: A modified hardsuit fit for a clown. + icon: { sprite: Clothing/OuterClothing/Hardsuits/clown.rsi, state: icon } + objectType: Item #- type: construction # DeltaV - No mimes either # name: mime hardsuit diff --git a/Resources/Prototypes/Recipes/Construction/furniture.yml b/Resources/Prototypes/Recipes/Construction/furniture.yml index a5cf53107db..5f7ec9c92d8 100644 --- a/Resources/Prototypes/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/Recipes/Construction/furniture.yml @@ -884,3 +884,21 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +- type: construction + id: NoticeBoard + name: notice board + description: Wooden notice board, can store paper inside itself. + graph: NoticeBoard + startNode: start + targetNode: noticeBoard + category: construction-category-furniture + icon: + sprite: Structures/Wallmounts/noticeboard.rsi + state: noticeboard + objectType: Structure + placementMode: SnapgridCenter + canRotate: true + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index a1f370cc1bd..46f61807f3f 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -1472,6 +1472,24 @@ conditions: - !type:TileNotBlocked +- type: construction + name: strobe light + id: LightStrobeFixture + graph: LightFixture + startNode: start + targetNode: strobeLight + category: construction-category-structures + description: A wall light fixture. Use light bulbs. + icon: + sprite: Structures/Wallmounts/Lighting/strobe_light.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canRotate: true + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + #conveyor - type: construction name: conveyor belt diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index a5620fd8efe..47a2841b6da 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -135,7 +135,7 @@ FoodBreadBun: 1 FoodMeat: 2 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodCabbage: 1 CrayonGreen: 1 Flare: 1 @@ -177,7 +177,7 @@ solids: FoodBreadBun: 1 FoodMeat: 1 - FoodChili: 3 + FoodChiliPepper: 3 - type: microwaveMealRecipe id: RecipeGhostBurger @@ -675,7 +675,7 @@ solids: FoodRiceBoiled: 1 FoodMeatCutlet: 3 - FoodChili: 2 + FoodChiliPepper: 2 - type: microwaveMealRecipe id: RecipeEggRice @@ -894,7 +894,7 @@ solids: FoodBowlBig: 1 FoodBungo: 2 - FoodChili: 1 + FoodChiliPepper: 1 #Pies @@ -965,7 +965,7 @@ time: 15 solids: FoodDoughPie: 1 - FoodChilly: 3 + FoodChillyPepper: 3 FoodPlateTin: 1 - type: microwaveMealRecipe @@ -1063,7 +1063,7 @@ solids: FoodDough: 1 FoodCheeseSlice: 2 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatFish: 2 - type: microwaveMealRecipe @@ -1504,7 +1504,7 @@ time: 20 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1537,7 +1537,7 @@ time: 30 solids: FoodBowlBig: 1 - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodOnionSlice: 1 FoodTomato: 1 @@ -1552,7 +1552,7 @@ #reagents: #blackpepper: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCheeseSlice: 2 - type: microwaveMealRecipe @@ -1572,7 +1572,7 @@ result: FoodMealEnchiladas time: 20 solids: - FoodChili: 2 + FoodChiliPepper: 2 FoodMeatCutlet: 1 FoodCorn: 1 @@ -1740,7 +1740,7 @@ result: FoodMeatHawaiianKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodMeatCutlet: 1 FoodPineappleSlice: 1 FoodKebabSkewer: 1 @@ -1751,7 +1751,7 @@ result: FoodMeatFiestaKebab time: 5 solids: - FoodChili: 1 + FoodChiliPepper: 1 FoodCorn: 1 FoodMeatCutlet: 1 FoodTomato: 1 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml index fa006a938bd..024a7c58763 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml @@ -8,24 +8,23 @@ steps: - material: MetalRod amount: 1 - - material: Cable - amount: 15 - - tag: DrinkSpaceGlue - name: Drink Space Glue - icon: - sprite: Objects/Consumable/Drinks/glue-tube.rsi - state: icon - tag: PowerCellSmall name: Power Cell Small icon: sprite: Objects/Power/power_cells.rsi state: small - - tag: CapacitorStockPart - name: Capacitor Stock Part + - tag: Handcuffs icon: - sprite: Objects/Misc/stock_parts.rsi - state: capacitor - doAfter: 20 + sprite: Objects/Misc/cablecuffs.rsi + state: cuff + color: red + name: cuffs + - tag: Igniter + name: Igniter + icon: + sprite: Objects/Devices/igniter.rsi + state: icon + doAfter: 15 - node: msstunprod entity: Stunprod diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml index e72c56ff44c..7e450513afe 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/tallbox.yml @@ -19,6 +19,8 @@ conditions: - !type:StorageWelded welded: false + - !type:Locked + locked: false completed: - !type:SpawnPrototype prototype: SheetSteel1 diff --git a/Resources/Prototypes/Recipes/Lathes/chemistry.yml b/Resources/Prototypes/Recipes/Lathes/chemistry.yml index 3a54bfe1b33..7ee8f1ed499 100644 --- a/Resources/Prototypes/Recipes/Lathes/chemistry.yml +++ b/Resources/Prototypes/Recipes/Lathes/chemistry.yml @@ -84,7 +84,7 @@ # - type: latheRecipe # DeltaV - Disable the Vape # id: Vape # icon: -# sprite: Objects/Consumable/Smokeables/Vapes/vape-standart.rsi +# sprite: Objects/Consumable/Smokeables/Vapes/vape-standard.rsi # state: icon # result: Vape # completetime: 2 diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 19b2fbb883c..729f20e9795 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -706,8 +706,16 @@ Durathread: 300 - type: latheRecipe - id: ClothingOuterWinterHoS - result: ClothingOuterWinterHoS + id: ClothingOuterWinterHoSUnarmored + result: ClothingOuterWinterHoSUnarmored + completetime: 3.2 + materials: + Cloth: 500 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterWinterWardenUnarmored + result: ClothingOuterWinterWardenUnarmored completetime: 3.2 materials: Cloth: 500 diff --git a/Resources/Prototypes/Recipes/Lathes/cooking.yml b/Resources/Prototypes/Recipes/Lathes/cooking.yml index a8836ff3926..577d8299dab 100644 --- a/Resources/Prototypes/Recipes/Lathes/cooking.yml +++ b/Resources/Prototypes/Recipes/Lathes/cooking.yml @@ -49,6 +49,13 @@ materials: Glass: 100 +- type: latheRecipe + id: CustomDrinkJug + result: CustomDrinkJug + completetime: 2 + materials: + Plastic: 200 + - type: latheRecipe id: FoodPlate result: FoodPlate diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index c4417f868b5..a6f3e6cece6 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -328,16 +328,6 @@ Glass: 900 Gold: 100 -- type: latheRecipe - id: TraversalDistorterMachineCircuitboard - result: TraversalDistorterMachineCircuitboard - category: Circuitry - completetime: 4 - materials: - Steel: 100 - Glass: 900 - Gold: 100 - - type: latheRecipe id: ArtifactCrusherMachineCircuitboard result: ArtifactCrusherMachineCircuitboard @@ -604,7 +594,7 @@ completetime: 4 materials: Steel: 50 - Glass: 350 + Glass: 450 - type: latheRecipe id: SMESMachineCircuitboard @@ -921,7 +911,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunPerforatorCircuitboard result: ShuttleGunPerforatorCircuitboard @@ -930,7 +920,7 @@ Steel: 100 Glass: 900 Gold: 100 - + - type: latheRecipe id: ShuttleGunKineticCircuitboard result: ShuttleGunKineticCircuitboard @@ -938,7 +928,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunFriendshipCircuitboard result: ShuttleGunFriendshipCircuitboard @@ -947,7 +937,7 @@ Steel: 100 Glass: 900 Gold: 50 - + - type: latheRecipe id: ShuttleGunDusterCircuitboard result: ShuttleGunDusterCircuitboard @@ -965,3 +955,11 @@ Steel: 100 Glass: 900 Gold: 100 + +- type: latheRecipe + id: JukeboxCircuitBoard + result: JukeboxCircuitBoard + completetime: 4 + materials: + Steel: 100 + Glass: 900 diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 342654c46d1..631829ed53b 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -49,7 +49,7 @@ - type: latheRecipe id: BodyBag - result: BodyBag_Folded + result: BodyBagFolded completetime: 2 materials: Plastic: 300 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index a1ca3ea38e2..60cb8a21f35 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -542,11 +542,8 @@ amount: 1 Silicon: amount: 1 - Benzene: - amount: 1 products: Insuzine: 3 - Ash: 1 - type: reaction id: Necrosol @@ -573,4 +570,4 @@ Sigynate: amount: 2 products: - Aloxadone: 4 + Aloxadone: 4 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 79dac275101..afb1f0ff503 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -70,6 +70,7 @@ - BorgModuleClowning - DawInstrumentMachineCircuitboard - MassMediaCircuitboard + - JukeboxCircuitBoard - type: technology id: RoboticCleanliness diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index e2a4b6d7848..ba410a86d43 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -87,13 +87,12 @@ id: AbnormalArtifactManipulation name: research-technology-abnormal-artifact-manipulation icon: - sprite: Structures/Machines/traversal_distorter.rsi - state: display + sprite: Structures/Machines/artifact_crusher.rsi + state: icon discipline: Experimental tier: 2 cost: 5000 recipeUnlocks: - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - type: technology diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 7375c02639c..c25133ff67c 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -7,6 +7,12 @@ requirements: - !type:OverallPlaytimeRequirement time: 108000 # DeltaV - 30 hours + - !type:DepartmentTimeRequirement # DeltaV - engi dept time requirement + department: Engineering + time: 7200 # DeltaV - 2 hours + - !type:RoleTimeRequirement # DeltaV - salvage time requirement + role: JobSalvageSpecialist + time: 7200 # DeltaV - 2 hours - !type:DepartmentTimeRequirement # DeltaV - Security dept time requirement department: Security time: 36000 # DeltaV - 10 hours diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 434a7c1083e..20439ce1bba 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -144,7 +144,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic mask: ClothingMaskGasSyndicate - eyes: ClothingEyesHudSyndicateMed # - Delta-V + eyes: ClothingEyesHudSyndicateAgent ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndieMedic diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index f151921b7ac..c10bfda49dc 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -26,7 +26,7 @@ ears: ClothingHeadsetMedical belt: ChemBag pocket1: HandLabeler - # the purple glasses? - innerClothingSkirt: ClothingUniformJumpskirtChemistry - satchel: ClothingBackpackSatchelChemistryFilled - duffelbag: ClothingBackpackDuffelChemistryFilled + eyes: ClothingEyesGlassesChemical + innerClothingSkirt: ClothingUniformJumpskirtChemistry + satchel: ClothingBackpackSatchelChemistryFilled + duffelbag: ClothingBackpackDuffelChemistryFilled diff --git a/Resources/Prototypes/StatusEffects/health.yml b/Resources/Prototypes/StatusEffects/health.yml index 562dbb336d8..6456ac6dc20 100644 --- a/Resources/Prototypes/StatusEffects/health.yml +++ b/Resources/Prototypes/StatusEffects/health.yml @@ -1,7 +1,7 @@ - type: statusIcon id: HealthIcon abstract: true - priority: 1 + priority: 3 locationPreference: Right isShaded: true diff --git a/Resources/Prototypes/StatusEffects/security.yml b/Resources/Prototypes/StatusEffects/security.yml index ca25f746f25..00119fb44d2 100644 --- a/Resources/Prototypes/StatusEffects/security.yml +++ b/Resources/Prototypes/StatusEffects/security.yml @@ -1,7 +1,7 @@ - type: statusIcon id: SecurityIcon abstract: true - priority: 2 + priority: 3 offset: 1 locationPreference: Right isShaded: true diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index da530a86d86..0dbdfce4f97 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -28,7 +28,7 @@ - type: statusIcon id: MindShieldIcon - priority: 1 + priority: 2 locationPreference: Right layer: Mod isShaded: true diff --git a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml index 18f3acfae30..911c1c2e88e 100644 --- a/Resources/Prototypes/XenoArch/Effects/utility_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/utility_effects.yml @@ -106,7 +106,6 @@ - type: SolutionTransfer canChangeTransferAmount: true - type: Drink - isOpen: true solution: beaker - type: artifactEffect diff --git a/Resources/Prototypes/floor_trap.yml b/Resources/Prototypes/floor_trap.yml new file mode 100644 index 00000000000..217dd9fca2d --- /dev/null +++ b/Resources/Prototypes/floor_trap.yml @@ -0,0 +1,116 @@ +- type: entity + id: CollideFloorTrap + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrap + - type: Fixtures + fixtures: + floortrap: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + hard: false + mask: + - ItemMask + layer: + - SlipLayer + - type: Physics + - type: Tag + tags: + - HideContextMenu + +- type: entity + parent: CollideFloorTrap + id: CollideFloorTrapSpawn + name: floor trap spawn + abstract: true + components: + - type: Sprite + sprite: Tiles/Misc/floortrap.rsi + state: floortrapspawn + +- type: entity + parent: CollideFloorTrap + id: FloorTrapExplosion + name: explosion floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + totalIntensity: 20.0 + intensitySlope: 5 + maxIntensity: 4 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrap + id: FloorTrapEMP + name: EMP floor trap + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: EmpOnTrigger + range: 2 + energyConsumption: 5000 + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapCarp + suffix: Carp + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobCarp + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapBear + suffix: Bear + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobBearSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapKangaroo + suffix: Kangaroo + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobKangarooSpace + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoDrone + suffix: Xeno. Drone + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXenoDrone + - type: DeleteOnTrigger + +- type: entity + parent: CollideFloorTrapSpawn + id: SpawnFloorTrapXenoBurrower + suffix: Xeno. Burrower + components: + - type: TriggerOnCollide + fixtureID: floortrap + - type: SpawnOnTrigger + proto: MobXeno + - type: DeleteOnTrigger diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 961912d6092..f6cedeb9377 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -261,9 +261,6 @@ - type: Tag id: CannonBall -- type: Tag - id: CannonRestrict - - type: Tag id: CannotSuicide @@ -523,6 +520,9 @@ - type: Tag id: DoorElectronics +- type: Tag + id: DoorElectronicsConfigurator + - type: Tag id: DrinkBottle @@ -1177,7 +1177,7 @@ - type: Tag id: SuitEVA - + - type: Tag id: Sunglasses diff --git a/Resources/Prototypes/themes.yml b/Resources/Prototypes/themes.yml index edd2681a624..3952687255a 100644 --- a/Resources/Prototypes/themes.yml +++ b/Resources/Prototypes/themes.yml @@ -12,6 +12,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14PlasmafireTheme path: /Textures/Interface/Plasmafire/ @@ -26,6 +28,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14SlimecoreTheme path: /Textures/Interface/Slimecore/ @@ -40,6 +44,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14ClockworkTheme path: /Textures/Interface/Clockwork/ @@ -54,6 +60,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14RetroTheme path: /Textures/Interface/Retro/ @@ -68,6 +76,8 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060404" + _itemstatus_content_margin_left: "#04060604" - type: uiTheme id: SS14MinimalistTheme path: /Textures/Interface/Minimalist/ @@ -82,6 +92,8 @@ concerningOrangeFore: "#A5762F" dangerousRedFore: "#BB3232" disabledFore: "#5A5A5A" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" - type: uiTheme id: SS14AshenTheme path: /Textures/Interface/Ashen/ @@ -96,3 +108,5 @@ concerningOrangeFore: "#FFF5EE" dangerousRedFore: "#FFF5EE" disabledFore: "#FFF5EE" + _itemstatus_content_margin_right: "#06060604" + _itemstatus_content_margin_left: "#06060604" diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml index a0e434dc772..927a56a5054 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Antagonists.xml @@ -8,5 +8,6 @@ Antagonists can take many forms, like: - Nuclear operatives, with the goal of infiltrating and destroying the station. - Traitors infiltrating the crew who can assassinate targets and steal high value items. + - Space Ninjas, masters of espionage and sabotage, who are equipped with special gear. - Several non-humanoid creatures, who usually just try to bring down as many crewmembers as they can. diff --git a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml index 7fed84da73e..f088b9f27b1 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/SpaceNinja.xml @@ -1,74 +1,80 @@ -# Space Ninja + # Space Ninja -The Space Ninja is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. + The [color=#66FF00]Space Ninja[/color] is a ghost role randomly available mid-late game. If you pick it you will be given your gear, your objectives and the greeting. -You are a ninja, but in space. The Spider Clan has sent you to the station to wreak all kinds of havoc, from bolting the armory open and killing the entire station to engaging in a slipping war with the clown and fighting in rage cages. + You are a ninja, but in space. [color=#66FF00]The Spider Clan[/color] has sent you to the station to wreak all kinds of havoc, and you are equipped to keep it silent-but-deadly. -# Equipment + Whether you mercilessly pick off the station's crew one by one, or assassinate the clown over and over, your discipline has taught you that [color=#66FF00]your objectives must be at least attempted[/color]. For honor! -You start with a microbomb implant, so if you get KIA or seppuku you will leave behind a nice crater and all your precious equipment is kept out of enemy hands. + # Equipment -Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. + You begin implanted with a [color=#a4885c]death acidifier[/color], so if you are KIA or decide to commit seppuku you will leave behind one final gift to the janitor and all your precious equipment is kept out of enemy hands. -You have a jetpack and pinpointer that will let you find the station. + Your bag is full of tools for more subtle sabotage, along with a survival box if you need a snack. - + You have a [color=#a4885c]jetpack[/color] and [color=#a4885c]pinpointer[/color] that will let you find the station. -## Ninja Suit + - + ## Ninja Suit -Your single most important item is your suit, without it none of your abilities would work. -Your suit requires power to function, its internal battery can be replaced by clicking on it **with a better one**. -You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. + -If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. + Your single most important item is [color=#66FF00]your suit[/color], without it none of your abilities would work. + Your suit requires power to function. Its [color=#a4885c]internal battery[/color] can be replaced by clicking on it with another one, and [color=#a4885c]higher capacity batteries[/color] mean a [color=#a4885c]highly effective ninja[/color]. + You can see the current charge by examining the suit or in a sweet battery alert at the top right of your screen. -## Ninja Gloves + If you run out of power and need to recharge your battery, just use your gloves to drain an APC, substation or a SMES. - + ## Ninja Gloves -These bad boys are your bread and butter. + -They are insulated so you can nom on wires in peace. Obviously they block your fingerprints from being left on things you touch. + [color=#66FF00]These bad boys are your bread and butter.[/color] -You have an action to toggle gloves. When the gloves are turned on, they allow you to use special abilities, which are triggered by interacting with things with an empty hand and with combat mode disabled. + They are made from [color=#a4885c]insulated nanomachines[/color] to assist you in gracefully breaking and entering into your destination without leaving behind fingerprints. -Your glove abilities include: -- Emagging an unlimited number of doors. -- Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. -- You can shock any mob, stunning and slightly damaging them. -- You can download technologies from a R&D server for one of your objectives. -- You can hack a communications console to call in a threat. + You have an action to toggle gloves. When the gloves are turned on, they allow you to use [color=#a4885c]special abilities[/color], which are triggered by interacting with things with an empty hand and with combat mode disabled. -## Energy Katana + Your glove abilities include: + - Emagging an unlimited number of doors. + - Draining power from transformers such as APCs, substations or SMESes. The higher the voltage, the more efficient the draining is. + - You can shock any mob, stunning and slightly damaging them. + - You can download technologies from a R&D server for one of your objectives. + - You can hack a communications console to call in a threat. - + ## Energy Katana -Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. -While in hand you can teleport to anywhere that you can see, meaning most doors and windows, but not past solid walls. -This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. + -## Spider Clan Charge + You have sworn yourself to the [color=#66FF00]sword[/color] and refuse to use firearms. + Deals a lot of damage and can be recalled at will, costing suit power proportional to the distance teleported. + + While in hand you can [color=#a4885c]teleport[/color] to anywhere that you can see, meaning most doors and windows, but not past solid walls. + This has a limited number of charges which regenerate slowly, so keep a charge or two spare incase you need a quick getaway. - + ## Spider Clan Charge -A modified C-4 explosive, you start with this in your pocket. Creates a large explosion but must be armed in your target area. -A random area on the map is selected for you to blow up, which is one of your objectives. It can't be activated manually, simply plant it on a wall or something. -Can't be unstuck once planted. + -## Ninja Shoes + [color=#66FF00]A modified C-4 explosive[/color], you start with this in your pocket. Creates a large explosion but must be armed in your target area. + A random area on the map is selected for you to blow up, which is one of your [color=#a4885c]objectives[/color]. -Special noslips that make you go really fast. -Energy not required. + It can't be activated manually, simply plant it on a wall or a particularly ugly piece of furniture. + Can't be unstuck once planted. -# Objectives + ## Ninja Shoes -- Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies -- Doorjack X doors on the station: Use your gloves to emag a number of doors. -- Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. -- Call in a threat: Use your gloves on a communications console. -- Survive: Don't die. + Special [color=#a4885c]noslips[/color] that keep you agile, swift and upright. + Energy not required. + + # Objectives + + - Download X research nodes: Use your gloves on an R&D server with a number of unlocked technologies + - Doorjack X doors on the station: Use your gloves to emag a number of doors. + - Detonate the spider clan charge: Plant your spider clan charge at a random location and watch it go boom. + - Call in a threat: Use your gloves on a communications console. + - Survive: Don't die. diff --git a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml index ef6e1a49e87..f70f43c8a8b 100644 --- a/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml +++ b/Resources/ServerInfo/Guidebook/Medical/Cryogenics.xml @@ -12,7 +12,7 @@ Cryogenics can be a bit daunting to understand, but hopefully, quick run through - + diff --git a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml index b7ba3d4c8b4..b010e20abce 100644 --- a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml +++ b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml @@ -1,25 +1,24 @@ -# Artifact Reports -A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: + # Artifact Reports + A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: -- [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. + - [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. -- [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. + - [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. -- [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. + - [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. -- [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. + - [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. -- [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. + - [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. -- [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. + - [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. -- [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. - -Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. - - - -To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. + - [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. + Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. + + + + To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. diff --git a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml b/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml deleted file mode 100644 index f46065c7440..00000000000 --- a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml +++ /dev/null @@ -1,18 +0,0 @@ - -# Traversal Distorter - -The traversal distorter is a late-game artifact machine that can aid in moving through the nodes of an artifact. - - - -Artifacts placed on top of a powered traversal distorter are subjected to a bias which affects which node they will move to after being activated. The bias can be set by clicking on the distorter. - -There are two types of biases: -- [color=#a4885c]In:[/color] favors nodes closer to the origin. Results in a decrease of depth. -- [color=#a4885c]Out:[/color] favors nodes farther away from the origin. Results in an increase of depth. - -Setting it to bias inwards allows you to return to the beginning of an artifact graph, if you've reached a dead end. - -Likewise, if you find yourself stuck at low depths, setting it to bias outward will help you find new nodes. In certain circumstances, toggling between the two allows you to repeatedly activate the same node. - - diff --git a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml index 8cd94e8526d..b42b8de5306 100644 --- a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml +++ b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml @@ -2,18 +2,28 @@ # Xenoarchaeology Xenoarchaeology is a epistemics subdepartment focused on researching and experimenting on alien artifacts. -## Artifacts +At the start of each shift, the Science department will usually have access to at least two artifacts to experiment on. You can buy more by talking to the Cargo department. + +By researching the unique things each artifact can do, you gain Research Points, increase the artifact's sale value, and potentially discover a useful ability or two that can help your department or the whole station! + +## Artifact Nodes -Artifacts consist of a randomly-generated graph structure. They consist of nodes connected to each other by edges, the traversal of which is the main goal of the scientists working on them. +Artifacts consist of a randomly-generated tree of nodes. These nodes have a "[color=#a4885c]depth[/color]", representing how dangerous the node is, and the number of other nodes connected to it, called "[color=#a4885c]edges[/color]", + +Artifacts always start at depth zero, the root of the tree. Travelling the tree to find as many nodes as possible is the main goal of the scientists working on them. Knowledge is extracted from nodes to gain Research Points and increase the artifact's sale value. + +Each node has two components: its [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. + +A stimulus is the external behavior that triggers the reaction. There's a variety of these, and higher depth nodes have more difficult to accomplish stimuli. Some stimuli will need improvisation to trigger, and you may need to talk to other departments to get everything you need. -Each node has two main components: a [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. A stimulus is the external behavior that triggers the reaction. Some reactions are instantaneous effects while others are permanent changes. Triggering the reaction causes the artifact to move to one of the node's edges. +Some reactions are instantaneous effects while others are permanent changes. Once an artifact is triggered, the reaction causes the artifact to randomly move to another node it is linked to. -With these basic principles, you can begin to grasp how the different nodes of an artifact are interconnected, and how one can move between them by repeatedly activating nodes. +With some experimental science, you can begin to grasp how the different nodes of an artifact are connected, and how to move between them by repeatedly activating nodes. -While it might seem random to an untrained eye, a skilled scientist can learn to understand the internal structure of any artifact. +All non-zero-depth nodes will have exactly one edge that leads up to its parent node. All other edges a node has lead down to the next depth. ## Artifact Analyzer and Analysis Console @@ -22,13 +32,26 @@ While it might seem random to an untrained eye, a skilled scientist can learn to The main equipment that you'll be using for Xenoarchaeology is the [color=#a4885c]artifact analyzer[/color] and the [color=#a4885c]analysis console[/color]. You can use these to create reports that contain valuable information about an artifact. -To set them up, simply link them with a network configurator, set an artifact on top of the analyzer, and press the [color=#a4885c]Scan[/color] button. +To set them up, simply link them with a network configurator and set an artifact on top of the analyzer. Every station has at least one of these machines already set up. -Using the console, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. The amount of points you extract is based on how many new nodes have been activated, since last extracting. You can extract multiple times, there is no reason not to!!! +Use the console's [color=#a4885c]scan[/color] button to discover what stimulus the artifact needs and what its reaction will do. Scanning takes thirty seconds. + +Use the [color=#a4885c]print[/color] button to save the scan result, so you can refer to it later. + +Once you've discovered a new node, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. ## Assembling Artifacts -It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, they usually find these while mining asteroids or on Expeditions. +It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, who usually find these while mining asteroids or on Expeditions. + +## Traversal Bias + + + +Artifacts placed on top of a powered artifact analyzer are subjected to a bias which affects which node they will move to after being activated. The bias can be set in the artifact console. +There are two types of biases: +- [color=#a4885c]Up:[/color] favors nodes closer to the origin. Results in a decrease of depth. +- [color=#a4885c]Down:[/color] favors nodes farther away from the origin. Results in an increase of depth. diff --git a/Resources/ServerInfo/Guidebook/Security/Forensics.xml b/Resources/ServerInfo/Guidebook/Security/Forensics.xml index 2189488c6b2..3eb53b1e9ac 100644 --- a/Resources/ServerInfo/Guidebook/Security/Forensics.xml +++ b/Resources/ServerInfo/Guidebook/Security/Forensics.xml @@ -1,4 +1,4 @@ - + # Forensics There are a lot of tools to help you gather and examine the evidence at your disposal @@ -40,7 +40,7 @@ ## Fibers Whenenever people wearing gloves touch anything on the station, they are bound to leave behind some fibers. This complicates things, but nothing is unsolvable for a real detective. - There are up to [color=red]16[/color] different types of fibers possible. Can that stop you from solving the case? + There are up to [color=red]25[/color] different types of fibers possible. Can that stop you from solving the case? diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png similarity index 76% rename from Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/equipped-EYES.png rename to Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png index 2c77698051d..84979d10972 100644 Binary files a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png similarity index 77% rename from Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/icon.png rename to Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png index e4f902d2b6c..900b438c7e2 100644 Binary files a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/icon.png and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png similarity index 62% rename from Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-left.png rename to Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png index 863c127f6a2..b888ce227ab 100644 Binary files a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-left.png and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png similarity index 61% rename from Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-right.png rename to Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png index fbffadd8e8b..0e248905fbf 100644 Binary files a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/inhand-right.png and b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json similarity index 80% rename from Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/meta.json rename to Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json index 1d01bc88809..f3acabcc544 100644 --- a/Resources/Textures/DeltaV/Clothing/Eyes/Hud/syndmed.rsi/meta.json +++ b/Resources/Textures/Clothing/Eyes/Hud/syndagent.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by IntegerTempest, medicalised by JoeHammad1844 (github)", + "copyright": "Made by IntegerTempest, edited by Golinth", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/equipped-HAND.png deleted file mode 100644 index 61a4591b67f..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/icon.png deleted file mode 100644 index 5904f18aff2..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-left.png deleted file mode 100644 index 6c05483432b..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-right.png deleted file mode 100644 index 1b786b19c77..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/equipped-HAND.png deleted file mode 100644 index 56cb86d5723..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/icon.png deleted file mode 100644 index 20d31294525..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-left.png deleted file mode 100644 index fe5f356b274..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-right.png deleted file mode 100644 index 535677138ae..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png similarity index 100% rename from Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/equipped-HAND.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/equipped-HAND.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/icon.png new file mode 100644 index 00000000000..d01ea7d9129 Binary files /dev/null and b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-left.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-left.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/inhand-right.png rename to Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/inhand-right.png diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json similarity index 89% rename from Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json rename to Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json index 88e3ebd509d..7a0bf77e1bf 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/blue.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/color.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/equipped-HAND.png deleted file mode 100644 index 92fd0f3d729..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/icon.png deleted file mode 100644 index 10fc55c579a..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-left.png deleted file mode 100644 index cfbe7a4066b..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-right.png deleted file mode 100644 index 1878f635198..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/equipped-HAND.png deleted file mode 100644 index 089be844882..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/icon.png deleted file mode 100644 index 9c84c803b92..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-left.png deleted file mode 100644 index 64a1ce54ca9..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-right.png deleted file mode 100644 index 1405a9195d6..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/equipped-HAND.png deleted file mode 100644 index e1a9bf6860e..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/icon.png deleted file mode 100644 index 09b2d39429f..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-left.png deleted file mode 100644 index 16e615d2224..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-right.png deleted file mode 100644 index 9ef6856a371..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json deleted file mode 100644 index 88e3ebd509d..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/lightbrown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/equipped-HAND.png deleted file mode 100644 index ebb73fed1b4..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/icon.png deleted file mode 100644 index b879d6144c1..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-left.png deleted file mode 100644 index 0ac2935cb13..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-right.png deleted file mode 100644 index e0241e65fed..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json deleted file mode 100644 index 88e3ebd509d..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/orange.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/equipped-HAND.png deleted file mode 100644 index 9c05f89fe26..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/icon.png deleted file mode 100644 index 04f8fb677df..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-left.png deleted file mode 100644 index 7440a5a458a..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-right.png deleted file mode 100644 index ceace967925..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json deleted file mode 100644 index 88e3ebd509d..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/purple.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/equipped-HAND.png deleted file mode 100644 index 72465e0ae47..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/icon.png deleted file mode 100644 index a7cf36f869e..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-left.png deleted file mode 100644 index a3e036119bb..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-right.png deleted file mode 100644 index f8ea1028064..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json deleted file mode 100644 index 88e3ebd509d..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/red.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/icon.png deleted file mode 100644 index a59b2c401dd..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json deleted file mode 100644 index 88e3ebd509d..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/white.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/equipped-HAND.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/equipped-HAND.png deleted file mode 100644 index 6d366273974..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/equipped-HAND.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/icon.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/icon.png deleted file mode 100644 index 1eca25df500..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-left.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-left.png deleted file mode 100644 index 5a4586c2f9d..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-right.png deleted file mode 100644 index c993e20080e..00000000000 Binary files a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json deleted file mode 100644 index dd95d954465..00000000000 --- a/Resources/Textures/Clothing/Hands/Gloves/ihscombat.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/55d823b97dda098a1b2ee9edfca7155c753e456e", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-HAND", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png new file mode 100644 index 00000000000..49e264e16ec Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png new file mode 100644 index 00000000000..16a2ce09cd0 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json new file mode 100644 index 00000000000..e82672f071c --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Terraspark's work", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "autism" + }, + { + "name": "autism-equipped", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png new file mode 100644 index 00000000000..39560cafa61 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png new file mode 100644 index 00000000000..22e9102e2ba Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json new file mode 100644 index 00000000000..6848744ab8a --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-NC-4.0", + "copyright": "Terraspark's work", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goldautism" + }, + { + "name": "goldautism-equipped", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index 57fab6a8ba5..46b04963997 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -6,69 +6,70 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "aro" - }, - { - "name": "aro-equipped", - "directions": 4 - }, - { - "name": "asex" - }, - { - "name": "asex-equipped", - "directions": 4 - }, - { - "name": "bi" - }, - { - "name": "bi-equipped", - "directions": 4 - }, - { - "name": "inter" - }, - { - "name": "inter-equipped", - "directions": 4 - }, - { - "name": "les" - }, - { - "name": "les-equipped", - "directions": 4 - }, - { - "name": "lgbt" - }, - { - "name": "lgbt-equipped", - "directions": 4 - }, - { - "name": "non" - }, - { - "name": "non-equipped", - "directions": 4 - }, - { - "name": "pan" - }, - { - "name": "pan-equipped", - "directions": 4 - }, - { - "name": "trans" - }, - { - "name": "trans-equipped", - "directions": 4 - } - ] + "states": [ + { + "name": "aro" + }, + { + "name": "aro-equipped", + "directions": 4 + }, + { + "name": "asex" + }, + { + "name": "asex-equipped", + "directions": 4 + }, + { + "name": "bi" + }, + { + "name": "bi-equipped", + "directions": 4 + }, + { + "name": "inter" + }, + { + "name": "inter-equipped", + "directions": 4 + }, + { + "name": "les" + }, + { + "name": "les-equipped", + "directions": 4 + }, + { + "name": "lgbt" + }, + { + "name": "lgbt-equipped", + "directions": 4 + }, + { + "name": "non" + }, + { + "name": "non-equipped", + "directions": 4 + }, + { + "name": "pan" + }, + { + "name": "pan-equipped", + "directions": 4 + }, + { + "name": "trans" + }, + { + "name": "trans-equipped", + "directions": 4 + } + ] } + diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..d279e92da28 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png new file mode 100644 index 00000000000..6f7573420d0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png new file mode 100644 index 00000000000..85a0b83457b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png new file mode 100644 index 00000000000..70ade34a8d1 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json similarity index 58% rename from Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json index 88e3ebd509d..4010520850d 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/green.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coathosarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd, recolored by Github user PursuitinAshes", "size": { "x": 32, "y": 32 @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "equipped-HAND", + "name": "equipped-OUTERCLOTHING", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png index 28cf03f49cc..baeeca8781a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png index eaf984f4378..854ea543e96 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png index df033631e9d..464c4bfc5e3 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png index 77baaca885f..d537128b824 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index c9f0d90ea13..154194f564a 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/77cff42b6c514e73881a885036be4b4dd2949f62, recolored by Github user Dutch-VanDerLinde.", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..28cf03f49cc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png new file mode 100644 index 00000000000..eaf984f4378 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png new file mode 100644 index 00000000000..df033631e9d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png new file mode 100644 index 00000000000..77baaca885f Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json similarity index 62% rename from Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json rename to Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json index 88e3ebd509d..c9f0d90ea13 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/gray.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", "size": { "x": 32, "y": 32 @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "equipped-HAND", + "name": "equipped-OUTERCLOTHING", "directions": 4 }, { @@ -23,4 +23,4 @@ "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET-vox.png deleted file mode 100644 index 583a818e53c..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET-vox.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET.png deleted file mode 100644 index 92f069be244..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/black.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/icon.png deleted file mode 100644 index bf2a91927bb..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/black.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-left.png deleted file mode 100644 index 0913bfe4dd6..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-right.png deleted file mode 100644 index d854fb1dc21..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/black.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json deleted file mode 100644 index 233691629aa..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/black.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", "size": {"x": 32, "y": 32}, "states": [{"name": "icon"}, {"name": "equipped-FEET", "directions": 4}, {"name": "inhand-left", "directions": 4}, {"name": "inhand-right", "directions": 4}, {"name": "equipped-FEET-vox", "directions": 4}]} diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/equipped-FEET.png deleted file mode 100644 index fdfd845fc96..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/icon.png deleted file mode 100644 index 5c9abb0963e..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-left.png deleted file mode 100644 index 5d844ce09e2..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-right.png deleted file mode 100644 index 4669e8771c5..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/blue.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/equipped-FEET.png deleted file mode 100644 index 6bf8932f146..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/icon.png deleted file mode 100644 index b2fb1eb6858..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-left.png deleted file mode 100644 index 9b18d407419..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-right.png deleted file mode 100644 index d1236d63068..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/brown.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/equipped-FEET.png deleted file mode 100644 index 95a66438695..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/green.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/icon.png deleted file mode 100644 index 6e2bb8cde48..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/green.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-left.png deleted file mode 100644 index 5d4b837a924..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-right.png deleted file mode 100644 index 15799306e80..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/green.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/green.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/equipped-FEET.png deleted file mode 100644 index 6e5b72b88d7..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/icon.png deleted file mode 100644 index 5adb5f2d6af..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-left.png deleted file mode 100644 index e509ec0c4f7..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-right.png deleted file mode 100644 index 3516a60cd88..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/orange.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/equipped-FEET.png deleted file mode 100644 index 9e52d381b4e..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/icon.png deleted file mode 100644 index a21acc31b7c..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-left.png deleted file mode 100644 index 056e73d94d4..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-right.png deleted file mode 100644 index 01230871716..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/purple.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/equipped-FEET.png deleted file mode 100644 index 61d3dd5026c..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/red.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/icon.png deleted file mode 100644 index b139627d8d4..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-left.png deleted file mode 100644 index 4ae9c7e5359..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-right.png deleted file mode 100644 index 73fbec68f5b..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/red.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/red.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/equipped-FEET.png deleted file mode 100644 index db8ec2d0bb1..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/white.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/icon.png deleted file mode 100644 index ac148524570..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-left.png deleted file mode 100644 index a47cde63313..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-right.png deleted file mode 100644 index 47119de2233..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/white.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/white.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/equipped-FEET.png deleted file mode 100644 index 083a41ec47a..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/equipped-FEET.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/icon.png deleted file mode 100644 index 2398b7f04a5..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-left.png deleted file mode 100644 index 082235b69c7..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-right.png deleted file mode 100644 index f95c6619390..00000000000 Binary files a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json deleted file mode 100644 index 54b1191d425..00000000000 --- a/Resources/Textures/Clothing/Shoes/Color/yellow.rsi/meta.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-FEET", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png new file mode 100644 index 00000000000..a7ebf25671f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET.png new file mode 100644 index 00000000000..0baedaa9c0c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png new file mode 100644 index 00000000000..d81e2314b68 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET.png new file mode 100644 index 00000000000..dd4df4b601c Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/icon.png b/Resources/Textures/Clothing/Shoes/color.rsi/icon.png new file mode 100644 index 00000000000..8e42e5c5ce8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/color.rsi/inhand-left.png new file mode 100644 index 00000000000..d3741e6b7b3 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/color.rsi/inhand-right.png new file mode 100644 index 00000000000..5a4e04ca31f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/meta.json b/Resources/Textures/Clothing/Shoes/color.rsi/meta.json new file mode 100644 index 00000000000..5e43acc0863 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/color.rsi/meta.json @@ -0,0 +1,57 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "equipped-FEET-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "soles-icon" + }, + { + "name": "soles-equipped-FEET", + "directions": 4 + }, + { + "name": "soles-equipped-FEET-vox", + "directions": 4 + }, + { + "name": "soles-inhand-left", + "directions": 4 + }, + { + "name": "soles-inhand-right", + "directions": 4 + }, + { + "name": "contrastedsoles-equipped-FEET", + "directions": 4 + }, + { + "name": "contrastedsoles-equipped-FEET-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png new file mode 100644 index 00000000000..0255ed7b786 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET.png new file mode 100644 index 00000000000..6d643f6f3be Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-icon.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-icon.png new file mode 100644 index 00000000000..ba918d282df Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-left.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-left.png new file mode 100644 index 00000000000..19945c1a590 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-right.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-right.png new file mode 100644 index 00000000000..a33bc4d825d Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 6a76cd35eff..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 8bf8b8906f0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/icon.png deleted file mode 100644 index d39607e94dd..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-left.png deleted file mode 100644 index 8ca0193cb17..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-right.png deleted file mode 100644 index f2a18bc4ebb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/black.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 4df69fee458..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index f453ae0427a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/icon.png deleted file mode 100644 index 0420b506db0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-left.png deleted file mode 100644 index 6aad4575267..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-right.png deleted file mode 100644 index b185b623967..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/blue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index a16b8908c21..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index fc7582154f9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/icon.png deleted file mode 100644 index 0c2d3ece6b6..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-left.png deleted file mode 100644 index d316b0400e1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-right.png deleted file mode 100644 index 6523d6ef6de..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/brown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 21e3f5f76c2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 3f010030040..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/icon.png deleted file mode 100644 index 97bd52cfe97..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-left.png deleted file mode 100644 index ea01f616e46..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-right.png deleted file mode 100644 index 2ef7181ab07..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkblue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 11a28280d7d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ae2631d0da8..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/icon.png deleted file mode 100644 index 5077680c75a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-left.png deleted file mode 100644 index 5456486c258..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-right.png deleted file mode 100644 index 23855a8759e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/darkgreen.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 161af53da25..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c5b151b4934..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/icon.png deleted file mode 100644 index 1407b79d7a3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-left.png deleted file mode 100644 index 5456486c258..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png deleted file mode 100644 index 23855a8759e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/green.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 7edf356ec60..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 5074896bfbe..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/icon.png deleted file mode 100644 index 3c0c3e0f9a4..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51ac..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/grey.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 4d274a22827..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d3fb22d4be0..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/icon.png deleted file mode 100644 index a240bfd7d7a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png deleted file mode 100644 index d316b0400e1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-right.png deleted file mode 100644 index 6523d6ef6de..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightbrown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 80854928bf1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 7dc954dd906..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/icon.png deleted file mode 100644 index 61fc966e588..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-left.png deleted file mode 100644 index 46be5288e60..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-right.png deleted file mode 100644 index f1911c7ec0b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/lightpurple.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 3df6ea0d92c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 6d92e3e4504..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/icon.png deleted file mode 100644 index 9be9ecf9d68..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-left.png deleted file mode 100644 index a703128c963..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-right.png deleted file mode 100644 index 8c73e1c7ce2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/maroon.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index fe4dcbe7f75..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index cef8a7c5f87..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/icon.png deleted file mode 100644 index 3f876a8b2a7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-left.png deleted file mode 100644 index 5e5c42697c3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-right.png deleted file mode 100644 index fee1dd85cd2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/orange.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 00e7198cc4c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 6698c719ff1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/icon.png deleted file mode 100644 index bef1f6a308f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-left.png deleted file mode 100644 index 9112f9b9802..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-right.png deleted file mode 100644 index d3df7bcb6b7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/pink.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 0e1f28b34f8..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 31cb581211a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/icon.png deleted file mode 100644 index 52ac071c077..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-left.png deleted file mode 100644 index 4cd9c955ae1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-right.png deleted file mode 100644 index ae5a124c663..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/red.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 04ea2792e8f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index f37256fe848..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/icon.png deleted file mode 100644 index b2757bc0905..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-left.png deleted file mode 100644 index 748bfb2e972..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-right.png deleted file mode 100644 index 4944e6fc0ba..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/teal.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 6c3ea56b531..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 8c7d6e406ce..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/icon.png deleted file mode 100644 index 0d2bf73ca83..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-left.png deleted file mode 100644 index 592cd94079c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-right.png deleted file mode 100644 index 3d3dd56f27e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/white.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 07673c8fa64..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d5575580811..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/icon.png deleted file mode 100644 index 15670841c25..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-left.png deleted file mode 100644 index 6959537bcea..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-right.png deleted file mode 100644 index 148b9812320..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/Color/yellow.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..3faba7285ff Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/icon.png new file mode 100644 index 00000000000..64642a11589 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-left.png new file mode 100644 index 00000000000..0b131234865 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-right.png new file mode 100644 index 00000000000..ba6769d59d5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json similarity index 50% rename from Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/meta.json rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json index 6a2ed232047..7e6832bd12c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.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", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 @@ -15,19 +15,41 @@ "directions": 4 }, { - "name": "equipped-INNERCLOTHING-monkey", + "name": "inhand-left", "directions": 4 }, { - "name": "equipped-INNERCLOTHING-vox", + "name": "inhand-right", "directions": 4 }, { - "name": "inhand-left", + "name": "trinkets-icon" + }, + { + "name": "trinkets-equipped-INNERCLOTHING", "directions": 4 }, { - "name": "inhand-right", + "name": "trinkets-inhand-left", + "directions": 4 + }, + { + "name": "trinkets-inhand-right", + "directions": 4 + }, + { + "name": "prisoner-icon" + }, + { + "name": "prisoner-inhand-left", + "directions": 4 + }, + { + "name": "prisoner-inhand-right", + "directions": 4 + }, + { + "name": "prisoner-equipped-INNERCLOTHING", "directions": 4 } ] diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..f5230c64000 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-icon.png new file mode 100644 index 00000000000..0cea666be50 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-left.png new file mode 100644 index 00000000000..f6ff6866ffc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-right.png new file mode 100644 index 00000000000..45393e81a66 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..cee5a50d2ca Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-icon.png new file mode 100644 index 00000000000..effb2ada73a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-left.png new file mode 100644 index 00000000000..9bbcac8268a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-right.png new file mode 100644 index 00000000000..cfd72583152 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index cf66060dca3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 1492d76a1d4..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/icon.png deleted file mode 100644 index e2cb52fdec7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-left.png deleted file mode 100644 index 0e029596526..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-right.png deleted file mode 100644 index cfbe848c3b2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json deleted file mode 100644 index 36ab573091a..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/prisoner.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index cb1a5eece64..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 445e8d01df4..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/icon.png deleted file mode 100644 index 8cf3cc9e901..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png deleted file mode 100644 index 8ca0193cb17..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png deleted file mode 100644 index f2a18bc4ebb..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/black.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 93c02f4b754..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ce33a56ae74..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/icon.png deleted file mode 100644 index 54266e7972d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-left.png deleted file mode 100644 index 6aad4575267..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png deleted file mode 100644 index b185b623967..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/blue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 38766b03b56..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 95090dd7525..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/icon.png deleted file mode 100644 index 9dcfac02b71..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-left.png deleted file mode 100644 index d316b0400e1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-right.png deleted file mode 100644 index 6523d6ef6de..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/brown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index a5bff74a25c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 74bab00422a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/icon.png deleted file mode 100644 index a054d2a82ef..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-left.png deleted file mode 100644 index ea01f616e46..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-right.png deleted file mode 100644 index 2ef7181ab07..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkblue.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index a48109bfba1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 4ae08467c95..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/icon.png deleted file mode 100644 index 5f9834bf8e2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-left.png deleted file mode 100644 index 5456486c258..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png deleted file mode 100644 index 23855a8759e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/darkgreen.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 947d515970f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 029f91d0d48..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/icon.png deleted file mode 100644 index c8b62b63ff1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png deleted file mode 100644 index 5456486c258..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png deleted file mode 100644 index 23855a8759e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/green.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index a1e1573d24b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-vox.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-vox.png deleted file mode 100644 index f312aac2977..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING-vox.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 56c385790ea..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/icon.png deleted file mode 100644 index 4b976a5ede7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7a..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51ac..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/grey.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 5989aa1d079..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index d77f8e18e13..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/icon.png deleted file mode 100644 index db1bf71e11d..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-left.png deleted file mode 100644 index d316b0400e1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-right.png deleted file mode 100644 index 6523d6ef6de..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightbrown.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 06d66a9b1ae..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index a7784172f72..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/icon.png deleted file mode 100644 index e3825ee3d11..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-left.png deleted file mode 100644 index 46be5288e60..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-right.png deleted file mode 100644 index f1911c7ec0b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/lightpurple.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 543da4f4e4f..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index ddab094d22b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/icon.png deleted file mode 100644 index 459de73286b..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png deleted file mode 100644 index a703128c963..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png deleted file mode 100644 index 8c73e1c7ce2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/maroon.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 3ac7ea5d022..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 71e32fc8ea6..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/icon.png deleted file mode 100644 index c443437f6ac..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png deleted file mode 100644 index 5e5c42697c3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-right.png deleted file mode 100644 index fee1dd85cd2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/orange.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index d69c0924ea7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index bb3294245a5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/icon.png deleted file mode 100644 index db1cba5d7ef..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-left.png deleted file mode 100644 index 9112f9b9802..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png deleted file mode 100644 index d3df7bcb6b7..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/pink.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index d1274a497a1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 27edb0b73ed..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/icon.png deleted file mode 100644 index 871e9e5e4ea..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png deleted file mode 100644 index 4cd9c955ae1..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png deleted file mode 100644 index ae5a124c663..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/red.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 77710536580..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 2c8be92e08e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/icon.png deleted file mode 100644 index d2156294af5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-left.png deleted file mode 100644 index 748bfb2e972..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png deleted file mode 100644 index 4944e6fc0ba..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/teal.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index c99223c4672..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index 1196f82db6e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/icon.png deleted file mode 100644 index 3cf289d5ac5..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png deleted file mode 100644 index 592cd94079c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png deleted file mode 100644 index 3d3dd56f27e..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/white.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 69166ef2e52..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index e884390be20..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/icon.png deleted file mode 100644 index 74cc6a4f8cc..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png deleted file mode 100644 index 6959537bcea..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png deleted file mode 100644 index 148b9812320..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/Color/yellow.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..5c333dfc118 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/icon.png new file mode 100644 index 00000000000..c0087d4d250 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-left.png new file mode 100644 index 00000000000..0b131234865 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-right.png new file mode 100644 index 00000000000..ba6769d59d5 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json new file mode 100644 index 00000000000..7e6832bd12c --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json @@ -0,0 +1,56 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "trinkets-icon" + }, + { + "name": "trinkets-equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "trinkets-inhand-left", + "directions": 4 + }, + { + "name": "trinkets-inhand-right", + "directions": 4 + }, + { + "name": "prisoner-icon" + }, + { + "name": "prisoner-inhand-left", + "directions": 4 + }, + { + "name": "prisoner-inhand-right", + "directions": 4 + }, + { + "name": "prisoner-equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..320db64b579 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-icon.png new file mode 100644 index 00000000000..faebe0e0550 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-left.png new file mode 100644 index 00000000000..f6ff6866ffc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-right.png new file mode 100644 index 00000000000..45393e81a66 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..e21afe8d4eb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-icon.png new file mode 100644 index 00000000000..c9e8398b47d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-left.png new file mode 100644 index 00000000000..9bbcac8268a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-right.png new file mode 100644 index 00000000000..cfd72583152 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING-monkey.png deleted file mode 100644 index 6c1672bd7f4..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index a4ec7058a13..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/icon.png deleted file mode 100644 index 69109945802..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png deleted file mode 100644 index 0e029596526..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png deleted file mode 100644 index cfbe848c3b2..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json deleted file mode 100644 index 1fb9cf1b666..00000000000 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/prisoner.rsi/meta.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "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", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-INNERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_leg_standart.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_leg_standard.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/base_leg_standart.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/base_leg_standard.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standart.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standard.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standart.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standard.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standart2.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standard2.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standart2.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/base_torso_standard2.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart1.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard1.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart1.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard1.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart2.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard2.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart2.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard2.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart3.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard3.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart3.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard3.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart4.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard4.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart4.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard4.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart5.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard5.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart5.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard5.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart6.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard6.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart6.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard6.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart7.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard7.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart7.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard7.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart8.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard8.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart8.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard8.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart9.png b/Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard9.png similarity index 100% rename from Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standart9.png rename to Resources/Textures/Clothing/Uniforms/procedural.rsi/decor_torso_standard9.png diff --git a/Resources/Textures/Clothing/Uniforms/procedural.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/procedural.rsi/meta.json index 08133fc00b0..545f209db9b 100644 --- a/Resources/Textures/Clothing/Uniforms/procedural.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/procedural.rsi/meta.json @@ -20,7 +20,7 @@ "directions": 4 }, { - "name": "base_leg_standart", + "name": "base_leg_standard", "directions": 4 }, { @@ -36,11 +36,11 @@ "directions": 4 }, { - "name": "base_torso_standart", + "name": "base_torso_standard", "directions": 4 }, { - "name": "base_torso_standart2", + "name": "base_torso_standard2", "directions": 4 }, { @@ -116,39 +116,39 @@ "directions": 4 }, { - "name": "decor_torso_standart1", + "name": "decor_torso_standard1", "directions": 4 }, { - "name": "decor_torso_standart2", + "name": "decor_torso_standard2", "directions": 4 }, { - "name": "decor_torso_standart3", + "name": "decor_torso_standard3", "directions": 4 }, { - "name": "decor_torso_standart4", + "name": "decor_torso_standard4", "directions": 4 }, { - "name": "decor_torso_standart5", + "name": "decor_torso_standard5", "directions": 4 }, { - "name": "decor_torso_standart6", + "name": "decor_torso_standard6", "directions": 4 }, { - "name": "decor_torso_standart7", + "name": "decor_torso_standard7", "directions": 4 }, { - "name": "decor_torso_standart8", + "name": "decor_torso_standard8", "directions": 4 }, { - "name": "decor_torso_standart9", + "name": "decor_torso_standard9", "directions": 4 }, { diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png deleted file mode 100644 index 2209a9ce837..00000000000 Binary files a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png and /dev/null differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json index 387949d4b31..c7bc1121c13 100644 --- a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json +++ b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json @@ -36,10 +36,6 @@ "name":"classic_ombre", "directions": 4 }, - { - "name":"classic_crewcut", - "directions": 4 - }, { "name":"classic_long", "directions": 4 diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/closed.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/closed.png new file mode 100644 index 00000000000..d2378dd7d1c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/closed.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-left.png new file mode 100644 index 00000000000..160fd7f68e2 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-right.png new file mode 100644 index 00000000000..6fede8b0373 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/meta.json new file mode 100644 index 00000000000..f9c76c2ea2e --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "open" + }, + { + "name": "closed" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/open.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/open.png new file mode 100644 index 00000000000..1ab682b7953 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/closed.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/closed.png new file mode 100644 index 00000000000..dde70af1800 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/closed.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-left.png new file mode 100644 index 00000000000..2101a8c94b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-right.png new file mode 100644 index 00000000000..4953a234bab Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/meta.json new file mode 100644 index 00000000000..f9c76c2ea2e --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "open" + }, + { + "name": "closed" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/open.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/open.png new file mode 100644 index 00000000000..8c6d21d23c1 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/closed.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/closed.png new file mode 100644 index 00000000000..b3b688720f2 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/closed.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/equipped-BELT.png new file mode 100644 index 00000000000..d49b6f112c0 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-left.png new file mode 100644 index 00000000000..160fd7f68e2 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-right.png new file mode 100644 index 00000000000..6fede8b0373 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/meta.json similarity index 56% rename from Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json rename to Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/meta.json index 88e3ebd509d..11810896d48 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/brown.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/meta.json @@ -1,18 +1,20 @@ -{ +{ "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", "size": { "x": 32, "y": 32 }, "states": [ { - "name": "icon" + "name": "closed" }, { - "name": "equipped-HAND", - "directions": 4 + "name": "open" + }, + { + "name": "trash" }, { "name": "inhand-left", @@ -21,6 +23,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/open.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/open.png new file mode 100644 index 00000000000..9db23a7d148 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/trash.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/trash.png new file mode 100644 index 00000000000..b1e4bb99b3b Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/trash.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/closed.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/closed.png new file mode 100644 index 00000000000..7af12a43d2e Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/closed.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/equipped-BELT.png new file mode 100644 index 00000000000..d49b6f112c0 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-left.png new file mode 100644 index 00000000000..2101a8c94b5 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-right.png new file mode 100644 index 00000000000..4953a234bab Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/meta.json new file mode 100644 index 00000000000..11810896d48 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "trash" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/open.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/open.png new file mode 100644 index 00000000000..da246d4c16f Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/open.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/trash.png b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/trash.png new file mode 100644 index 00000000000..1b183401caf Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/trash.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..5ac3c6c8c48 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json index 79adf10713d..1cc586fb83e 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Battery/energygun_carbine.rsi/meta.json @@ -39,6 +39,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..ce3d78d944d Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json index 702b7c61322..1ce1eef8e63 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Rifles/bbgun.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..96643008068 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/meta.json index 42a9fe9b970..42ffa80cc15 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/Adjutant.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } - ] + ] } \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..ab0cac8d096 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json index df70db984ba..963ae7ccb33 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..9d5dffa4499 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json index 23e8bc2ee0b..3df5f2ca034 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..688a7c48ebf Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json index 8056d6f865c..b842a0a2d0b 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/improvised_shotgun.rsi/meta.json @@ -27,6 +27,10 @@ }, { "name": "ishotgunstep2" + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..67a9de667a3 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index c1c901f2eb0..853b991b4cd 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..da66a1846ed Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json index 04f71999e15..02e5db5a39e 100644 --- a/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Weapons/Guns/Shotguns/sawn.rsi/meta.json @@ -24,6 +24,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Interface/Ashen/item_status_left.png b/Resources/Textures/Interface/Ashen/item_status_left.png new file mode 100644 index 00000000000..fb2bf2b9b4a Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_left_highlight.png b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png new file mode 100644 index 00000000000..91cd15dd4cf Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right.png b/Resources/Textures/Interface/Ashen/item_status_right.png new file mode 100644 index 00000000000..53f4f362d0a Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right.png differ diff --git a/Resources/Textures/Interface/Ashen/item_status_right_highlight.png b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png new file mode 100644 index 00000000000..ad16bab6d10 Binary files /dev/null and b/Resources/Textures/Interface/Ashen/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Ashen/template_small.png b/Resources/Textures/Interface/Ashen/template_small.png new file mode 100644 index 00000000000..f3a4379f76c Binary files /dev/null and b/Resources/Textures/Interface/Ashen/template_small.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left.png b/Resources/Textures/Interface/Clockwork/item_status_left.png new file mode 100644 index 00000000000..1ce950362d2 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png new file mode 100644 index 00000000000..f715e062765 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right.png b/Resources/Textures/Interface/Clockwork/item_status_right.png new file mode 100644 index 00000000000..5ea5ffcffad Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right.png differ diff --git a/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png new file mode 100644 index 00000000000..315d595c925 Binary files /dev/null and b/Resources/Textures/Interface/Clockwork/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left.png b/Resources/Textures/Interface/Default/item_status_left.png new file mode 100644 index 00000000000..6c980f226ec Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left.png differ diff --git a/Resources/Textures/Interface/Default/item_status_left_highlight.png b/Resources/Textures/Interface/Default/item_status_left_highlight.png new file mode 100644 index 00000000000..87dea5cf100 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right.png b/Resources/Textures/Interface/Default/item_status_right.png new file mode 100644 index 00000000000..82ad44b48c1 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right.png differ diff --git a/Resources/Textures/Interface/Default/item_status_right_highlight.png b/Resources/Textures/Interface/Default/item_status_right_highlight.png new file mode 100644 index 00000000000..0c1c3448486 Binary files /dev/null and b/Resources/Textures/Interface/Default/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left.png b/Resources/Textures/Interface/Minimalist/item_status_left.png new file mode 100644 index 00000000000..d70eca2fe92 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png new file mode 100644 index 00000000000..b69872cd89c Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right.png b/Resources/Textures/Interface/Minimalist/item_status_right.png new file mode 100644 index 00000000000..89171b9b478 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right.png differ diff --git a/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png new file mode 100644 index 00000000000..d1474cee120 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Minimalist/template_small.png b/Resources/Textures/Interface/Minimalist/template_small.png new file mode 100644 index 00000000000..eb0ee037fd5 Binary files /dev/null and b/Resources/Textures/Interface/Minimalist/template_small.png differ diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg b/Resources/Textures/Interface/Nano/item_status_left.svg deleted file mode 100644 index c97f8de0167..00000000000 --- a/Resources/Textures/Interface/Nano/item_status_left.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png deleted file mode 100644 index e058fa73747..00000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_left.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg b/Resources/Textures/Interface/Nano/item_status_middle.svg deleted file mode 100644 index a913981db11..00000000000 --- a/Resources/Textures/Interface/Nano/item_status_middle.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png deleted file mode 100644 index ce41106b20c..00000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_middle.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg b/Resources/Textures/Interface/Nano/item_status_right.svg deleted file mode 100644 index d898bb2ce09..00000000000 --- a/Resources/Textures/Interface/Nano/item_status_right.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png b/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png deleted file mode 100644 index fb7c4a9e6e6..00000000000 Binary files a/Resources/Textures/Interface/Nano/item_status_right.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left.png b/Resources/Textures/Interface/Plasmafire/item_status_left.png new file mode 100644 index 00000000000..d5d25c98091 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png new file mode 100644 index 00000000000..afe37513fd5 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right.png b/Resources/Textures/Interface/Plasmafire/item_status_right.png new file mode 100644 index 00000000000..ca97f81c8f5 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right.png differ diff --git a/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png new file mode 100644 index 00000000000..b95822b7373 Binary files /dev/null and b/Resources/Textures/Interface/Plasmafire/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left.png b/Resources/Textures/Interface/Retro/item_status_left.png new file mode 100644 index 00000000000..21b107b84df Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_left_highlight.png b/Resources/Textures/Interface/Retro/item_status_left_highlight.png new file mode 100644 index 00000000000..fdd5a4fe7d6 Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right.png b/Resources/Textures/Interface/Retro/item_status_right.png new file mode 100644 index 00000000000..5e7d54618d2 Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right.png differ diff --git a/Resources/Textures/Interface/Retro/item_status_right_highlight.png b/Resources/Textures/Interface/Retro/item_status_right_highlight.png new file mode 100644 index 00000000000..c6e12c41e69 Binary files /dev/null and b/Resources/Textures/Interface/Retro/item_status_right_highlight.png differ diff --git a/Resources/Textures/Interface/Retro/template_small.png b/Resources/Textures/Interface/Retro/template_small.png new file mode 100644 index 00000000000..7244b37f5c7 Binary files /dev/null and b/Resources/Textures/Interface/Retro/template_small.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left.png b/Resources/Textures/Interface/Slimecore/item_status_left.png new file mode 100644 index 00000000000..a7d940f401f Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png new file mode 100644 index 00000000000..322355b1358 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_left_highlight.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right.png b/Resources/Textures/Interface/Slimecore/item_status_right.png new file mode 100644 index 00000000000..77b53340a63 Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right.png differ diff --git a/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png new file mode 100644 index 00000000000..1e1a631db4b Binary files /dev/null and b/Resources/Textures/Interface/Slimecore/item_status_right_highlight.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardblindfold.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_blindfold.png similarity index 100% rename from Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardblindfold.png rename to Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_blindfold.png diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_foot_l.png similarity index 100% rename from Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_l.png rename to Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_foot_l.png diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_foot_r.png similarity index 100% rename from Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardfoot_r.png rename to Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_foot_r.png diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardlefteye.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_lefteye.png similarity index 100% rename from Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardlefteye.png rename to Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_lefteye.png diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardrighteye.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_righteye.png similarity index 100% rename from Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizardrighteye.png rename to Resources/Textures/Mobs/Customization/gauze.rsi/gauze_lizard_righteye.png diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_abdomen.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_abdomen.png new file mode 100644 index 00000000000..e8b42aca5ca Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_abdomen.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_blindfold.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_blindfold.png new file mode 100644 index 00000000000..499a3cb29d1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_blindfold.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_1.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_1.png new file mode 100644 index 00000000000..73ba4b1c50f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_1.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_2.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_2.png new file mode 100644 index 00000000000..a1c9a8f0922 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lefteye_2.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_l.png new file mode 100644 index 00000000000..df750d98199 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_r.png new file mode 100644 index 00000000000..f6504f8ca78 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_lowerleg_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_1.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_1.png new file mode 100644 index 00000000000..4c5ab639bb3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_1.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_2.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_2.png new file mode 100644 index 00000000000..563e692b8b2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_righteye_2.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_shoulder.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_shoulder.png new file mode 100644 index 00000000000..ba2c0f6032e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_shoulder.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_l.png new file mode 100644 index 00000000000..1587a75b99b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_r.png new file mode 100644 index 00000000000..19750a09d02 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperarm_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_l.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_l.png new file mode 100644 index 00000000000..7252c235156 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_l.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_r.png b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_r.png new file mode 100644 index 00000000000..2f09a4de3e6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/gauze.rsi/gauze_moth_upperleg_r.png differ diff --git a/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json index 232e7b0b22d..8d82ccab517 100644 --- a/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/gauze.rsi/meta.json @@ -72,23 +72,75 @@ "directions": 4 }, { - "name": "gauze_lizardblindfold", + "name": "gauze_lizard_blindfold", "directions": 4 }, { - "name": "gauze_lizardrighteye", + "name": "gauze_lizard_righteye", "directions": 4 }, { - "name": "gauze_lizardlefteye", + "name": "gauze_lizard_lefteye", "directions": 4 }, { - "name": "gauze_lizardfoot_r", + "name": "gauze_lizard_foot_r", "directions": 4 }, { - "name": "gauze_lizardfoot_l", + "name": "gauze_lizard_foot_l", + "directions": 4 + }, + { + "name": "gauze_moth_abdomen", + "directions": 4 + }, + { + "name": "gauze_moth_shoulder", + "directions": 4 + }, + { + "name": "gauze_moth_blindfold", + "directions": 4 + }, + { + "name": "gauze_moth_righteye_1", + "directions": 4 + }, + { + "name": "gauze_moth_righteye_2", + "directions": 4 + }, + { + "name": "gauze_moth_lefteye_1", + "directions": 4 + }, + { + "name": "gauze_moth_lefteye_2", + "directions": 4 + }, + { + "name": "gauze_moth_upperarm_r", + "directions": 4 + }, + { + "name": "gauze_moth_upperarm_l", + "directions": 4 + }, + { + "name": "gauze_moth_upperleg_r", + "directions": 4 + }, + { + "name": "gauze_moth_upperleg_l", + "directions": 4 + }, + { + "name": "gauze_moth_lowerleg_r", + "directions": 4 + }, + { + "name": "gauze_moth_lowerleg_l", "directions": 4 } ] diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png index f7f54acdaed..d61b60824c9 100644 Binary files a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/frills_axolotl.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 8eaac10cd94..de7b26ad6c9 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC.", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas. Body_underbelly made by Nairod(github) for SS14. Large drawn by Ubaser. Wagging tail by SonicDC. Splotch modified from Sharp by KittenColony(github)", "size": { "x": 32, "y": 32 @@ -600,6 +600,14 @@ { "name": "body_backspikes", "directions": 4 - } + }, + { + "name": "snout_splotch_primary", + "directions": 4 + }, + { + "name": "snout_splotch_secondary", + "directions": 4 + } ] } diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png new file mode 100644 index 00000000000..0098822db90 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_primary.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png new file mode 100644 index 00000000000..5a982ed3546 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/snout_splotch_secondary.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png new file mode 100644 index 00000000000..5f459d518b5 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png new file mode 100644 index 00000000000..4b3ee970a0c Binary files /dev/null and b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json new file mode 100644 index 00000000000..57e4c7351f8 --- /dev/null +++ b/Resources/Textures/Mobs/Demons/tomatokiller.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": " taken from TG on commit https://github.com/tgstation/tgstation/commit/7e5f13f558253e76865e81c9641b7ec68e57754b", + "states": [ + { + "name": "alive", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "dead" + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball-shine.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball-shine.png new file mode 100644 index 00000000000..b9251d97787 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball-shine.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball.png index 655a614af6d..430f9bb8959 100644 Binary files a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball.png and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/gumball.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-ball.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-ball.png new file mode 100644 index 00000000000..61eb3ad0c7d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-ball.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK-vulpkanin.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK-vulpkanin.png new file mode 100644 index 00000000000..0e34410352e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK.png new file mode 100644 index 00000000000..bf5c3bac25a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-equipped-MASK.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-stickandshine.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-stickandshine.png new file mode 100644 index 00000000000..3bd0ee81499 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/lollipop-stickandshine.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/meta.json index a2e6123c153..a81452e8c26 100644 --- a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.rsi/meta.json +++ b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/candy.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, made colorable by pissdemon, equip sprites made by pissdemon based on cigarette.rsi taken from tgstation and paradise (see attributions in Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi)", "size": { "x": 32, "y": 32 @@ -10,8 +10,25 @@ { "name": "gumball" }, + { + "name": "gumball-shine" + }, { "name": "lollipop" + }, + { + "name": "lollipop-ball" + }, + { + "name": "lollipop-stickandshine" + }, + { + "name": "lollipop-equipped-MASK", + "directions": 4 + }, + { + "name": "lollipop-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-left.png index 294f3267803..dd6bc0b0f2f 100644 Binary files a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-left.png and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-right.png index 3a4e9e8f9d2..7f00423dc37 100644 Binary files a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-right.png and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-left.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-left.png index e8bfce8645c..2cb9f2bbfc2 100644 Binary files a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-left.png and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-right.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-right.png index 4635cb206cd..a0645041abf 100644 Binary files a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-right.png and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standart.rsi/icon.png b/Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standard.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standart.rsi/icon.png rename to Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standard.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standart.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standard.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standart.rsi/meta.json rename to Resources/Textures/Objects/Consumable/Smokeables/Vapes/vape-standard.rsi/meta.json diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png new file mode 100644 index 00000000000..ce20b5eeeed Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png new file mode 100644 index 00000000000..2d3863145b9 Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png new file mode 100644 index 00000000000..1704b9c3c11 Binary files /dev/null and b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json new file mode 100644 index 00000000000..3eb42e9e6fa --- /dev/null +++ b/Resources/Textures/Objects/Devices/chameleon_projector.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at ", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png new file mode 100644 index 00000000000..e04554ef299 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png new file mode 100644 index 00000000000..a3a7a186080 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced-inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png b/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png new file mode 100644 index 00000000000..2383bf5e213 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/advanced.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png new file mode 100644 index 00000000000..011508c4d1c Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png new file mode 100644 index 00000000000..751ae9080b7 Binary files /dev/null and b/Resources/Textures/Objects/Devices/signaller.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/meta.json b/Resources/Textures/Objects/Devices/signaller.rsi/meta.json index cefaeebebfd..97bbc401624 100644 --- a/Resources/Textures/Objects/Devices/signaller.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/signaller.rsi/meta.json @@ -1,21 +1,33 @@ { - "version": 1, - - "license": "CC-BY-SA-3.0", - "copyright": "Taken from Goonstation at commit https://github.com/goonstation/goonstation/commit/354d9635460c296dc7dce23ab39481dc4de6dc00, signaller2 created by TheShuEd", - - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "signaller state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/2c980a1f423f26e990a578bae057d1eca19675ec. inhands & advanced made by Flaregy for Space Station 14. advanced is modified from signaller", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "signaller" }, - "states": [ - { - "name": "signaller", - "directions": 1 - }, - { - "name": "signaller2", - "directions": 1 - } - ] -} \ No newline at end of file + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "advanced" + }, + { + "name": "advanced-inhand-left", + "directions": 4 + }, + { + "name": "advanced-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png b/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png index 37a47342a6a..68ff28ad161 100644 Binary files a/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png and b/Resources/Textures/Objects/Devices/signaller.rsi/signaller.png differ diff --git a/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png b/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png deleted file mode 100644 index 799a7be6ea9..00000000000 Binary files a/Resources/Textures/Objects/Devices/signaller.rsi/signaller2.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png index 5033cdecc75..873f89e1811 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chili.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png index 45ea8a32f5b..b2c59dc31a1 100644 Binary files a/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png and b/Resources/Textures/Objects/Specific/Hydroponics/chilly.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png new file mode 100644 index 00000000000..0051c4dc737 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png new file mode 100644 index 00000000000..46a3b389827 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json new file mode 100644 index 00000000000..84a4237a603 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png new file mode 100644 index 00000000000..110dc64a4f7 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png new file mode 100644 index 00000000000..0b1d58de9de Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png new file mode 100644 index 00000000000..6225f0c62d3 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/tomatokiller.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/bounty.png b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/bounty.png new file mode 100644 index 00000000000..5db87e61825 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/bounty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/captains_paper.png b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/captains_paper.png new file mode 100644 index 00000000000..87ee739fa2f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/captains_paper.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/invoice.png b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/invoice.png new file mode 100644 index 00000000000..508a6b12e6f Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/invoice.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/meta.json index b6feb49959f..e8727873146 100644 --- a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/39659000f380583c35fb814ee2fadab24c2f8076", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/39659000f380583c35fb814ee2fadab24c2f8076, additional label sprites by Vermidia", "size": { "x": 32, "y": 32 @@ -14,10 +14,19 @@ "name": "bag_folded" }, { - "name": "label_overlay" + "name": "paper" }, { "name": "open_overlay" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/label_overlay.png b/Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/paper.png similarity index 100% rename from Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/label_overlay.png rename to Resources/Textures/Objects/Specific/Medical/Morgue/bodybags.rsi/paper.png diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..585f2279403 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json index 49209bf2dcd..421037eac37 100644 --- a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json @@ -32,6 +32,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..648fff08e4c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json index 383ea777d27..5a18552d2e0 100644 --- a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json @@ -32,6 +32,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..e194aff0a62 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json index 383ea777d27..5a18552d2e0 100644 --- a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json @@ -32,6 +32,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..cb8ff3d7441 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json index 49209bf2dcd..421037eac37 100644 --- a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json @@ -32,6 +32,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..fc03f154a4a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json index 383ea777d27..5a18552d2e0 100644 --- a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json @@ -32,6 +32,10 @@ { "name": "equipped-BACKPACK", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png new file mode 100644 index 00000000000..af5f78e3683 Binary files /dev/null and b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json index dc0d23c539e..279bc73ec72 100644 --- a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/meta.json @@ -7,6 +7,9 @@ "y": 64 }, "states": [ + { + "name": "icon" + }, { "name": "glass" }, diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json b/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json new file mode 100644 index 00000000000..f447b26ddf5 --- /dev/null +++ b/Resources/Textures/Structures/Machines/jukebox.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at f349b842c84f500399bd5673e5e34a6bc45b001a, direct dmi link https://github.com/tgstation/tgstation/blob/f349b842c84f500399bd5673e5e34a6bc45b001a/icons/obj/stationobjs.dmi", + "states": [ + { + "name": "on" + }, + { + "name": "off" + }, + { + "name": "select", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/off.png b/Resources/Textures/Structures/Machines/jukebox.rsi/off.png new file mode 100644 index 00000000000..f3c24b1c569 Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/on.png b/Resources/Textures/Structures/Machines/jukebox.rsi/on.png new file mode 100644 index 00000000000..b397adc16ae Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/on.png differ diff --git a/Resources/Textures/Structures/Machines/jukebox.rsi/select.png b/Resources/Textures/Structures/Machines/jukebox.rsi/select.png new file mode 100644 index 00000000000..0dd6d813734 Binary files /dev/null and b/Resources/Textures/Structures/Machines/jukebox.rsi/select.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/bounty.png b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/bounty.png new file mode 100644 index 00000000000..ee32a8211ea Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/bounty.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/captains_paper.png b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/captains_paper.png new file mode 100644 index 00000000000..57f9a909507 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/captains_paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/invoice.png b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/invoice.png new file mode 100644 index 00000000000..ed4951d12a8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/invoice.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/meta.json index 7a17f38fa5c..1a535ab97c4 100644 --- a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/meta.json @@ -1,32 +1,44 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from baystation at commit https://github.com/Baystation12/Baystation12/commit/a929584d9db319eb7484113221be25cfa1d5dc09", - "states": [ - { - "name": "artifact_container" - }, - { - "name": "artifact_container_door" - }, - { - "name": "artifact_container_open" - }, - { - "name": "artifact_container_icon" - }, - { - "name": "locked" - }, - { - "name": "unlocked" - }, - { - "name": "welded" - } - ] + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from baystation at commit https://github.com/Baystation12/Baystation12/commit/a929584d9db319eb7484113221be25cfa1d5dc09. Label sprites by Vermidia.", + "states": [ + { + "name": "artifact_container" + }, + { + "name": "artifact_container_door" + }, + { + "name": "artifact_container_open" + }, + { + "name": "artifact_container_icon" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "welded" + }, + { + "name": "paper" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" + } + ] } \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Crates/artifact.rsi/paper.png b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/paper.png new file mode 100644 index 00000000000..6cf41f02c8b Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/artifact.rsi/paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/bounty.png b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/bounty.png new file mode 100644 index 00000000000..54a2f0fbd03 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/bounty.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/captains_paper.png b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/captains_paper.png new file mode 100644 index 00000000000..7265057446c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/captains_paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/invoice.png b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/invoice.png new file mode 100644 index 00000000000..e0efa6e950d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/invoice.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/meta.json index 610ea0183c0..7908408cd3f 100644 --- a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/coffin.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/32c8d0abc573d7370eb145d8ce74176d59b7eea3", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/32c8d0abc573d7370eb145d8ce74176d59b7eea3. Label sprites by Vermidia.", "size": { "x": 32, "y": 32 @@ -15,6 +15,18 @@ }, { "name": "closed" + }, + { + "name": "paper" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" } ] } diff --git a/Resources/Textures/Structures/Storage/Crates/coffin.rsi/paper.png b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/paper.png new file mode 100644 index 00000000000..630ffe8e10c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/coffin.rsi/paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/labels.rsi/bounty.png b/Resources/Textures/Structures/Storage/Crates/labels.rsi/bounty.png new file mode 100644 index 00000000000..52e515e39b8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/labels.rsi/bounty.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/labels.rsi/captains_paper.png b/Resources/Textures/Structures/Storage/Crates/labels.rsi/captains_paper.png new file mode 100644 index 00000000000..961991bf349 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/labels.rsi/captains_paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/labels.rsi/invoice.png b/Resources/Textures/Structures/Storage/Crates/labels.rsi/invoice.png new file mode 100644 index 00000000000..3e00e7d8068 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/labels.rsi/invoice.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/labels.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/labels.rsi/meta.json new file mode 100644 index 00000000000..c180604984c --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/labels.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by Vermidia.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "paper" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Crates/labels.rsi/paper.png b/Resources/Textures/Structures/Storage/Crates/labels.rsi/paper.png new file mode 100644 index 00000000000..8daf7770832 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/labels.rsi/paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/bounty.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/bounty.png new file mode 100644 index 00000000000..d7bd7f29eef Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/bounty.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/captains_paper.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/captains_paper.png new file mode 100644 index 00000000000..4fd4bf0503f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/captains_paper.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/invoice.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/invoice.png new file mode 100644 index 00000000000..aacd2ca7681 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/invoice.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json index 082564ccfb0..9c0d876c501 100644 --- a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood118 (github) for ss14", + "copyright": "Made by brainfood118 (github) for ss14. Label Sprites by Vermidia.", "size": { "x": 32, "y": 32 @@ -20,21 +20,33 @@ "name": "crate_icon" }, { - "name": "sparking", - "directions": 1, - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] + "name": "sparking", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 ] + ] }, { "name": "crate_open" + }, + { + "name": "paper" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Crates/toybox.rsi/paper.png b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/paper.png new file mode 100644 index 00000000000..f0c91659d3e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/toybox.rsi/paper.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json index cf0c204447b..c52bc13540e 100644 --- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github)", + "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github), n2_door state modified by Flareguy from fire_door, using sprites from /vg/station at https://github.com/vgstation-coders/vgstation13/commit/02b9f6894af4419c9f7e699a22c402b086d8067e", "license": "CC-BY-SA-3.0", "states": [ { @@ -398,6 +398,9 @@ { "name": "mixed_door" }, + { + "name": "n2_door" + }, { "name": "oldcloset" }, diff --git a/Resources/Textures/Structures/Storage/closet.rsi/n2_door.png b/Resources/Textures/Structures/Storage/closet.rsi/n2_door.png new file mode 100644 index 00000000000..f6d9499f10a Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/n2_door.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/base.png b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/base.png new file mode 100644 index 00000000000..a68dfc9d877 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/base.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/broken.png b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/broken.png new file mode 100644 index 00000000000..e2a4ab462c2 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/empty.png b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/empty.png new file mode 100644 index 00000000000..b48cc5ab9e0 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/empty.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/glow.png b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/glow.png new file mode 100644 index 00000000000..0e8645bd9aa Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/glow.png differ diff --git a/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/meta.json new file mode 100644 index 00000000000..865473f5450 --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/Lighting/strobe_light.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Ko4erga (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base", + "directions": 4 + }, + { + "name": "empty", + "directions": 4 + }, + { + "name": "glow", + "directions": 4 + }, + { + "name": "broken", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png new file mode 100644 index 00000000000..1505c892b8e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png new file mode 100644 index 00000000000..e0d5a4d39ea Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png new file mode 100644 index 00000000000..1505c892b8e Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png new file mode 100644 index 00000000000..e0d5a4d39ea Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png new file mode 100644 index 00000000000..38cb4115083 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png new file mode 100644 index 00000000000..b863e36b8ce Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png new file mode 100644 index 00000000000..38cb4115083 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png new file mode 100644 index 00000000000..88ffa378d2a Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_buy_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png new file mode 100644 index 00000000000..136a48087b5 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_0.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png new file mode 100644 index 00000000000..06fb688c5bd Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_1.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png new file mode 100644 index 00000000000..136a48087b5 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_2.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png new file mode 100644 index 00000000000..06fb688c5bd Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_3.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png new file mode 100644 index 00000000000..80a85ef2383 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_4.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png new file mode 100644 index 00000000000..4a194d7fb1f Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_5.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png new file mode 100644 index 00000000000..80a85ef2383 Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_6.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png new file mode 100644 index 00000000000..88ffa378d2a Binary files /dev/null and b/Resources/Textures/Structures/cargo_pallets.rsi/cargo_pallet_sell_7.png differ diff --git a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json index 4751d95b9b5..c32fcfefd05 100644 --- a/Resources/Textures/Structures/cargo_pallets.rsi/meta.json +++ b/Resources/Textures/Structures/cargo_pallets.rsi/meta.json @@ -10,8 +10,72 @@ { "name": "cargo_pallet_buy" }, + { + "name": "cargo_pallet_buy_0", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_1", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_2", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_3", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_4", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_5", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_6", + "directions": 4 + }, + { + "name": "cargo_pallet_buy_7", + "directions": 4 + }, { "name": "cargo_pallet_sell" + }, + { + "name": "cargo_pallet_sell_0", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_1", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_2", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_3", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_4", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_5", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_6", + "directions": 4 + }, + { + "name": "cargo_pallet_sell_7", + "directions": 4 } ] } diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png new file mode 100644 index 00000000000..391437064e5 Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrap.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png new file mode 100644 index 00000000000..764a0fed152 Binary files /dev/null and b/Resources/Textures/Tiles/Misc/floortrap.rsi/floortrapspawn.png differ diff --git a/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json new file mode 100644 index 00000000000..586fad6d231 --- /dev/null +++ b/Resources/Textures/Tiles/Misc/floortrap.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "floortrap" + }, + { + "name": "floortrapspawn" + } + ] +} diff --git a/Resources/Textures/Tiles/glass.png b/Resources/Textures/Tiles/glass.png index 37adc67679e..bc782a9c6c3 100644 Binary files a/Resources/Textures/Tiles/glass.png and b/Resources/Textures/Tiles/glass.png differ diff --git a/Resources/Textures/Tiles/rglass.png b/Resources/Textures/Tiles/rglass.png index bae2908132b..6dd3bb59172 100644 Binary files a/Resources/Textures/Tiles/rglass.png and b/Resources/Textures/Tiles/rglass.png differ diff --git a/RobustToolbox b/RobustToolbox index 6764ed56b06..4e87d930097 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 6764ed56b06309b56bd35c8ebffdf64882d4c4c1 +Subproject commit 4e87d93009748778c27ae835b16297596e5b1563