diff --git a/Content.Client/Actions/UI/ActionAlertTooltip.cs b/Content.Client/Actions/UI/ActionAlertTooltip.cs index f805f6643d2fad..2425cdefb916cc 100644 --- a/Content.Client/Actions/UI/ActionAlertTooltip.cs +++ b/Content.Client/Actions/UI/ActionAlertTooltip.cs @@ -101,7 +101,7 @@ protected override void FrameUpdate(FrameEventArgs args) { var duration = Cooldown.Value.End - Cooldown.Value.Start; - if (!FormattedMessage.TryFromMarkup($"[color=#a10505]{(int) duration.TotalSeconds} sec cooldown ({(int) timeLeft.TotalSeconds + 1} sec remaining)[/color]", out var markup)) + if (!FormattedMessage.TryFromMarkup(Loc.GetString("ui-actionslot-duration", ("duration", (int)duration.TotalSeconds), ("timeLeft", (int)timeLeft.TotalSeconds + 1)), out var markup)) return; _cooldownLabel.SetMessage(markup); diff --git a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs index 7cb32b43df59f3..615f1434df229d 100644 --- a/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs +++ b/Content.Client/Administration/UI/SetOutfit/SetOutfitMenu.xaml.cs @@ -1,14 +1,13 @@ +using System.Linq; using System.Numerics; using Content.Client.UserInterface.Controls; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; using Robust.Client.AutoGenerated; using Robust.Client.Console; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Localization; using Robust.Shared.Prototypes; namespace Content.Client.Administration.UI.SetOutfit @@ -65,9 +64,18 @@ private void SearchBarOnOnTextChanged(LineEdit.LineEditEventArgs obj) PopulateByFilter(SearchBar.Text); } + private IEnumerable GetPrototypes() + { + // Filter out any StartingGearPrototypes that belong to loadouts + var loadouts = _prototypeManager.EnumeratePrototypes(); + var loadoutGears = loadouts.Select(l => l.StartingGear); + return _prototypeManager.EnumeratePrototypes() + .Where(p => !loadoutGears.Contains(p.ID)); + } + private void PopulateList() { - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { OutfitList.Add(GetItem(gear, OutfitList)); } @@ -76,7 +84,7 @@ private void PopulateList() private void PopulateByFilter(string filter) { OutfitList.Clear(); - foreach (var gear in _prototypeManager.EnumeratePrototypes()) + foreach (var gear in GetPrototypes()) { if (!string.IsNullOrEmpty(filter) && gear.ID.ToLowerInvariant().Contains(filter.Trim().ToLowerInvariant())) diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs new file mode 100644 index 00000000000000..3c97b8b37d1545 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUi.cs @@ -0,0 +1,30 @@ +using Content.Client.UserInterface.Fragments; +using Content.Shared.CartridgeLoader.Cartridges; +using Robust.Client.UserInterface; + +namespace Content.Client.CartridgeLoader.Cartridges; + +public sealed partial class WantedListUi : UIFragment +{ + private WantedListUiFragment? _fragment; + + public override Control GetUIFragmentRoot() + { + return _fragment!; + } + + public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner) + { + _fragment = new WantedListUiFragment(); + } + + public override void UpdateState(BoundUserInterfaceState state) + { + switch (state) + { + case WantedListUiState cast: + _fragment?.UpdateState(cast.Records); + break; + } + } +} diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs new file mode 100644 index 00000000000000..4137f6c2af0cc0 --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs @@ -0,0 +1,240 @@ +using System.Linq; +using Content.Client.UserInterface.Controls; +using Content.Shared.CriminalRecords.Systems; +using Content.Shared.Security; +using Content.Shared.StatusIcon; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Input; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.CartridgeLoader.Cartridges; + +[GenerateTypedNameReferences] +public sealed partial class WantedListUiFragment : BoxContainer +{ + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + private readonly SpriteSystem _spriteSystem; + + private string? _selectedTargetName; + private List _wantedRecords = new(); + + public WantedListUiFragment() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _spriteSystem = _entitySystem.GetEntitySystem(); + + SearchBar.OnTextChanged += OnSearchBarTextChanged; + } + + private void OnSearchBarTextChanged(LineEdit.LineEditEventArgs args) + { + var found = !String.IsNullOrWhiteSpace(args.Text) + ? _wantedRecords.FindAll(r => + r.TargetInfo.Name.Contains(args.Text) || + r.Status.ToString().Contains(args.Text, StringComparison.OrdinalIgnoreCase)) + : _wantedRecords; + + UpdateState(found, false); + } + + public void UpdateState(List records, bool refresh = true) + { + if (records.Count == 0) + { + NoRecords.Visible = true; + RecordsList.Visible = false; + RecordUnselected.Visible = false; + PersonContainer.Visible = false; + + _selectedTargetName = null; + if (refresh) + _wantedRecords.Clear(); + + RecordsList.PopulateList(new List()); + + return; + } + + NoRecords.Visible = false; + RecordsList.Visible = true; + RecordUnselected.Visible = true; + PersonContainer.Visible = false; + + var dataList = records.Select(r => new StatusListData(r)).ToList(); + + RecordsList.GenerateItem = GenerateItem; + RecordsList.ItemPressed = OnItemSelected; + RecordsList.PopulateList(dataList); + + if (refresh) + _wantedRecords = records; + } + + private void OnItemSelected(BaseButton.ButtonEventArgs args, ListData data) + { + if (data is not StatusListData(var record)) + return; + + FormattedMessage GetLoc(string fluentId, params (string,object)[] args) + { + var msg = new FormattedMessage(); + var fluent = Loc.GetString(fluentId, args); + msg.AddMarkupPermissive(fluent); + return msg; + } + + // Set personal info + PersonName.Text = record.TargetInfo.Name; + TargetAge.SetMessage(GetLoc( + "wanted-list-age-label", + ("age", record.TargetInfo.Age) + )); + TargetJob.SetMessage(GetLoc( + "wanted-list-job-label", + ("job", record.TargetInfo.JobTitle.ToLower()) + )); + TargetSpecies.SetMessage(GetLoc( + "wanted-list-species-label", + ("species", record.TargetInfo.Species.ToLower()) + )); + TargetGender.SetMessage(GetLoc( + "wanted-list-gender-label", + ("gender", record.TargetInfo.Gender) + )); + + // Set reason + WantedReason.SetMessage(GetLoc( + "wanted-list-reason-label", + ("reason", record.Reason ?? Loc.GetString("wanted-list-unknown-reason-label")) + )); + + // Set status + PersonState.SetMessage(GetLoc( + "wanted-list-status-label", + ("status", record.Status.ToString().ToLower()) + )); + + // Set initiator + InitiatorName.SetMessage(GetLoc( + "wanted-list-initiator-label", + ("initiator", record.Initiator ?? Loc.GetString("wanted-list-unknown-initiator-label")) + )); + + // History table + // Clear table if it exists + HistoryTable.RemoveAllChildren(); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-time-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-reason-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + HorizontalExpand = true, + }); + + HistoryTable.AddChild(new Label() + { + Text = Loc.GetString("wanted-list-history-table-initiator-col"), + StyleClasses = { "LabelSmall" }, + HorizontalAlignment = HAlignment.Center, + }); + + if (record.History.Count > 0) + { + HistoryTable.Visible = true; + + foreach (var history in record.History.OrderByDescending(h => h.AddTime)) + { + HistoryTable.AddChild(new Label() + { + Text = $"{history.AddTime.Hours:00}:{history.AddTime.Minutes:00}:{history.AddTime.Seconds:00}", + StyleClasses = { "LabelSmall" }, + VerticalAlignment = VAlignment.Top, + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.Crime}[/color]", + HorizontalExpand = true, + VerticalAlignment = VAlignment.Top, + StyleClasses = { "LabelSubText" }, + Margin = new(10f, 0f), + }); + + HistoryTable.AddChild(new RichTextLabel() + { + Text = $"[color=white]{history.InitiatorName}[/color]", + StyleClasses = { "LabelSubText" }, + VerticalAlignment = VAlignment.Top, + }); + } + } + + RecordUnselected.Visible = false; + PersonContainer.Visible = true; + + // Save selected item + _selectedTargetName = record.TargetInfo.Name; + } + + private void GenerateItem(ListData data, ListContainerButton button) + { + if (data is not StatusListData(var record)) + return; + + var box = new BoxContainer() { Orientation = LayoutOrientation.Horizontal, HorizontalExpand = true }; + var label = new Label() { Text = record.TargetInfo.Name }; + var rect = new TextureRect() + { + TextureScale = new(2.2f), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Margin = new(0f, 0f, 6f, 0f), + }; + + if (record.Status is not SecurityStatus.None) + { + var proto = "SecurityIcon" + record.Status switch + { + SecurityStatus.Detained => "Incarcerated", + _ => record.Status.ToString(), + }; + + if (_prototypeManager.TryIndex(proto, out var prototype)) + { + rect.Texture = _spriteSystem.Frame0(prototype.Icon); + } + } + + box.AddChild(rect); + box.AddChild(label); + button.AddChild(box); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + + if (record.TargetInfo.Name.Equals(_selectedTargetName)) + { + button.Pressed = true; + // For some reason the event is not called when `Pressed` changed, call it manually. + OnItemSelected( + new(button, new(new(), BoundKeyState.Down, new(), false, new(), new())), + data); + } + } +} + +internal record StatusListData(WantedRecord Record) : ListData; diff --git a/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml new file mode 100644 index 00000000000000..7b5d116ad74b8e --- /dev/null +++ b/Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.xaml @@ -0,0 +1,50 @@ + + + + + + + diff --git a/Content.Client/Explosion/ExplosionSystem.cs b/Content.Client/Explosion/ExplosionSystem.cs index a2ed2d50e0d1ef..692782ded4b77b 100644 --- a/Content.Client/Explosion/ExplosionSystem.cs +++ b/Content.Client/Explosion/ExplosionSystem.cs @@ -2,7 +2,4 @@ namespace Content.Client.Explosion.EntitySystems; -public sealed class ExplosionSystem : SharedExplosionSystem -{ - -} +public sealed class ExplosionSystem : SharedExplosionSystem; diff --git a/Content.Client/Flash/FlashOverlay.cs b/Content.Client/Flash/FlashOverlay.cs index 046be2aa62142c..8e41c382dd7e7c 100644 --- a/Content.Client/Flash/FlashOverlay.cs +++ b/Content.Client/Flash/FlashOverlay.cs @@ -16,6 +16,7 @@ public sealed class FlashOverlay : Overlay [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _timing = default!; + private readonly SharedFlashSystem _flash; private readonly StatusEffectsSystem _statusSys; public override OverlaySpace Space => OverlaySpace.WorldSpace; @@ -27,6 +28,7 @@ public FlashOverlay() { IoCManager.InjectDependencies(this); _shader = _prototypeManager.Index("FlashedEffect").InstanceUnique(); + _flash = _entityManager.System(); _statusSys = _entityManager.System(); } @@ -41,7 +43,7 @@ protected override void FrameUpdate(FrameEventArgs args) || !_entityManager.TryGetComponent(playerEntity, out var status)) return; - if (!_statusSys.TryGetTime(playerEntity.Value, SharedFlashSystem.FlashedKey, out var time, status)) + if (!_statusSys.TryGetTime(playerEntity.Value, _flash.FlashedKey, out var time, status)) return; var curTime = _timing.CurTime; diff --git a/Content.Client/Mapping/MappingScreen.xaml b/Content.Client/Mapping/MappingScreen.xaml index b64136084788ac..9cc3e734f0e9ee 100644 --- a/Content.Client/Mapping/MappingScreen.xaml +++ b/Content.Client/Mapping/MappingScreen.xaml @@ -78,6 +78,7 @@ ToolTip="Pick (Hold 5)" /> + diff --git a/Content.Client/Mapping/MappingScreen.xaml.cs b/Content.Client/Mapping/MappingScreen.xaml.cs index b2ad2fd83fbb8d..46c0e51fad69b4 100644 --- a/Content.Client/Mapping/MappingScreen.xaml.cs +++ b/Content.Client/Mapping/MappingScreen.xaml.cs @@ -96,6 +96,22 @@ public MappingScreen() Pick.Texture.TexturePath = "/Textures/Interface/eyedropper.svg.png"; Delete.Texture.TexturePath = "/Textures/Interface/eraser.svg.png"; + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + Flip.OnPressed += args => FlipSides(); + } + + public void FlipSides() + { + ScreenContainer.Flip(); + + if (SpawnContainer.GetPositionInParent() == 0) + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; + } + else + { + Flip.Texture.TexturePath = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; + } } private void OnDecalColorPicked(Color color) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml index 660f2e5e11f5ed..dd40749d33b2bd 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml @@ -15,6 +15,9 @@ + + departmentSens // Populate departments foreach (var sensor in departmentSensors) { + if (!string.IsNullOrEmpty(SearchLineEdit.Text) + && !sensor.Name.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase) + && !sensor.Job.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase)) + continue; + var coordinates = _entManager.GetCoordinates(sensor.Coordinates); // Add a button that will hold a username and other details diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index 64ead32586d27e..2674343e059144 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -199,7 +199,9 @@ protected override void Draw(DrawingHandleScreen handle) var gridMatrix = _transform.GetWorldMatrix(gUid); var matty = Matrix3x2.Multiply(gridMatrix, ourWorldMatrixInvert); - var color = _shuttles.GetIFFColor(grid, self: false, iff); + + var labelColor = _shuttles.GetIFFColor(grid, self: false, iff); + var coordColor = new Color(labelColor.R * 0.8f, labelColor.G * 0.8f, labelColor.B * 0.8f, 0.5f); // Others default: // Color.FromHex("#FFC000FF") @@ -213,25 +215,52 @@ protected override void Draw(DrawingHandleScreen handle) var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); gridCentre.Y = -gridCentre.Y; + var distance = gridCentre.Length(); var labelText = Loc.GetString("shuttle-console-iff-label", ("name", labelName), ("distance", $"{distance:0.0}")); + var mapCoords = _transform.GetWorldPosition(gUid); + var coordsText = $"({mapCoords.X:0.0}, {mapCoords.Y:0.0})"; + // yes 1.0 scale is intended here. var labelDimensions = handle.GetDimensions(Font, labelText, 1f); + var coordsDimensions = handle.GetDimensions(Font, coordsText, 0.7f); // y-offset the control to always render below the grid (vertically) var yOffset = Math.Max(gridBounds.Height, gridBounds.Width) * MinimapScale / 1.8f; - // The actual position in the UI. We offset the matrix position to render it off by half its width - // plus by the offset. - var uiPosition = ScalePosition(gridCentre)- new Vector2(labelDimensions.X / 2f, -yOffset); + // The actual position in the UI. We centre the label by offsetting the matrix position + // by half the label's width, plus the y-offset + var gridScaledPosition = ScalePosition(gridCentre) - new Vector2(0, -yOffset); - // Look this is uggo so feel free to cleanup. We just need to clamp the UI position to within the viewport. - uiPosition = new Vector2(Math.Clamp(uiPosition.X, 0f, PixelWidth - labelDimensions.X ), - Math.Clamp(uiPosition.Y, 0f, PixelHeight - labelDimensions.Y)); + // Normalize the grid position if it exceeds the viewport bounds + // normalizing it instead of clamping it preserves the direction of the vector and prevents corner-hugging + var gridOffset = gridScaledPosition / PixelSize - new Vector2(0.5f, 0.5f); + var offsetMax = Math.Max(Math.Abs(gridOffset.X), Math.Abs(gridOffset.Y)) * 2f; + if (offsetMax > 1) + { + gridOffset = new Vector2(gridOffset.X / offsetMax, gridOffset.Y / offsetMax); + + gridScaledPosition = (gridOffset + new Vector2(0.5f, 0.5f)) * PixelSize; + } - handle.DrawString(Font, uiPosition, labelText, color); + var labelUiPosition = gridScaledPosition - new Vector2(labelDimensions.X / 2f, 0); + var coordUiPosition = gridScaledPosition - new Vector2(coordsDimensions.X / 2f, -labelDimensions.Y); + + // clamp the IFF label's UI position to within the viewport extents so it hugs the edges of the viewport + // coord label intentionally isn't clamped so we don't get ugly clutter at the edges + var controlExtents = PixelSize - new Vector2(labelDimensions.X, labelDimensions.Y); //new Vector2(labelDimensions.X * 2f, labelDimensions.Y); + labelUiPosition = Vector2.Clamp(labelUiPosition, Vector2.Zero, controlExtents); + + // draw IFF label + handle.DrawString(Font, labelUiPosition, labelText, labelColor); + + // only draw coords label if close enough + if (offsetMax < 1) + { + handle.DrawString(Font, coordUiPosition, coordsText, 0.7f, coordColor); + } } // Detailed view @@ -241,7 +270,7 @@ protected override void Draw(DrawingHandleScreen handle) if (!gridAABB.Intersects(viewAABB)) continue; - DrawGrid(handle, matty, grid, color); + DrawGrid(handle, matty, grid, labelColor); DrawDocks(handle, gUid, matty); } } diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index 0bd75003a209fe..ccd36c35e82be3 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -695,6 +695,18 @@ public StyleNano(IResourceCache resCache) : base(resCache) new StyleProperty("font-color", Color.FromHex("#E5E5E581")), }), + // ItemStatus for hands + Element() + .Class(StyleClassItemStatusNotHeld) + .Prop("font", notoSansItalic10) + .Prop("font-color", ItemStatusNotHeldColor) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + + Element() + .Class(StyleClassItemStatus) + .Prop(nameof(RichTextLabel.LineHeightScale), 0.7f) + .Prop(nameof(Control.Margin), new Thickness(4, 0, 0, 2)), + // Context Menu window Element().Class(ContextMenuPopup.StyleClassContextMenuPopup) .Prop(PanelContainer.StylePropertyPanel, contextMenuBackground), diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs index f50aca581bdf35..733dbe326583a8 100644 --- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs +++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs @@ -87,6 +87,9 @@ public DialogWindow(string title, List entries, bool ok = true Prompts.AddChild(box); } + // Grab keyboard focus for the first dialog entry + _promptLines[0].Item2.GrabKeyboardFocus(); + OkButton.OnPressed += _ => Confirm(); CancelButton.OnPressed += _ => diff --git a/Content.Client/Wires/UI/WiresMenu.cs b/Content.Client/Wires/UI/WiresMenu.cs index eccc548297cd8c..77fc3accceb34a 100644 --- a/Content.Client/Wires/UI/WiresMenu.cs +++ b/Content.Client/Wires/UI/WiresMenu.cs @@ -584,17 +584,10 @@ public StatusLight(StatusLightData data, IResourceCache resourceCache) private sealed class HelpPopup : Popup { - private const string Text = "Click on the gold contacts with a multitool in hand to pulse their wire.\n" + - "Click on the wires with a pair of wirecutters in hand to cut/mend them.\n\n" + - "The lights at the top show the state of the machine, " + - "messing with wires will probably do stuff to them.\n" + - "Wire layouts are different each round, " + - "but consistent between machines of the same type."; - public HelpPopup() { var label = new RichTextLabel(); - label.SetMessage(Text); + label.SetMessage(Loc.GetString("wires-menu-help-popup")); AddChild(new PanelContainer { StyleClasses = {ExamineSystem.StyleClassEntityTooltip}, diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs new file mode 100644 index 00000000000000..d9cce764ab7dba --- /dev/null +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.Interact.cs @@ -0,0 +1,108 @@ +using Content.Shared.Buckle; +using Content.Shared.Buckle.Components; +using Content.Shared.Interaction; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Buckle; + +public sealed partial class BuckleTest +{ + [Test] + public async Task BuckleInteractUnbuckleOther() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + var buckleSystem = entMan.System(); + + EntityUid user = default; + EntityUid victim = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + victim = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(victim, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle victim to chair + Assert.That(buckleSystem.TryBuckle(victim, user, chair, buckle)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(victim), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle victim + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(victim)); + }); + }); + + await pair.CleanReturnAsync(); + } + + [Test] + public async Task BuckleInteractBuckleUnbuckleSelf() + { + await using var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var entMan = server.ResolveDependency(); + + EntityUid user = default; + EntityUid chair = default; + BuckleComponent buckle = null; + StrapComponent strap = null; + + await server.WaitAssertion(() => + { + user = entMan.SpawnEntity(BuckleDummyId, MapCoordinates.Nullspace); + chair = entMan.SpawnEntity(StrapDummyId, MapCoordinates.Nullspace); + + Assert.That(entMan.TryGetComponent(user, out buckle)); + Assert.That(entMan.TryGetComponent(chair, out strap)); + +#pragma warning disable RA0002 + buckle.Delay = TimeSpan.Zero; +#pragma warning restore RA0002 + + // Buckle user to chair + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.EqualTo(chair), "Victim did not get buckled to the chair."); + Assert.That(buckle.Buckled, "Victim is not buckled."); + Assert.That(strap.BuckledEntities, Does.Contain(user), "Chair does not have victim buckled to it."); + }); + + // InteractHand with chair to unbuckle + entMan.EventBus.RaiseLocalEvent(chair, new InteractHandEvent(user, chair)); + Assert.Multiple(() => + { + Assert.That(buckle.BuckledTo, Is.Null); + Assert.That(buckle.Buckled, Is.False); + Assert.That(strap.BuckledEntities, Does.Not.Contain(user)); + }); + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs index 156f42aac333c4..1b31fe38c2899d 100644 --- a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs +++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs @@ -15,7 +15,7 @@ namespace Content.IntegrationTests.Tests.Buckle [TestFixture] [TestOf(typeof(BuckleComponent))] [TestOf(typeof(StrapComponent))] - public sealed class BuckleTest + public sealed partial class BuckleTest { private const string BuckleDummyId = "BuckleDummy"; private const string StrapDummyId = "StrapDummy"; diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index ff4d34705a6c08..9240e7b91b666f 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -4,11 +4,15 @@ using Content.Server.Preferences.Managers; using Content.Shared.Access.Components; using Content.Shared.Administration; +using Content.Shared.Clothing; using Content.Shared.Hands.Components; +using Content.Shared.Humanoid; using Content.Shared.Inventory; using Content.Shared.PDA; using Content.Shared.Preferences; +using Content.Shared.Preferences.Loadouts; using Content.Shared.Roles; +using Content.Shared.Station; using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -82,9 +86,11 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit return false; HumanoidCharacterProfile? profile = null; + ICommonSession? session = null; // Check if we are setting the outfit of a player to respect the preferences if (entityManager.TryGetComponent(target, out ActorComponent? actorComponent)) { + session = actorComponent.PlayerSession; var userId = actorComponent.PlayerSession.UserId; var preferencesManager = IoCManager.Resolve(); var prefs = preferencesManager.GetPreferences(userId); @@ -128,6 +134,36 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } } + // See if this starting gear is associated with a job + var jobs = prototypeManager.EnumeratePrototypes(); + foreach (var job in jobs) + { + if (job.StartingGear != gear) + continue; + + var jobProtoId = LoadoutSystem.GetJobPrototype(job.ID); + if (!prototypeManager.TryIndex(jobProtoId, out var jobProto)) + break; + + // Don't require a player, so this works on Urists + profile ??= entityManager.TryGetComponent(target, out var comp) + ? HumanoidCharacterProfile.DefaultWithSpecies(comp.Species) + : new HumanoidCharacterProfile(); + // Try to get the user's existing loadout for the role + profile.Loadouts.TryGetValue(jobProtoId, out var roleLoadout); + + if (roleLoadout == null) + { + // If they don't have a loadout for the role, make a default one + roleLoadout = new RoleLoadout(jobProtoId); + roleLoadout.SetDefault(profile, session, prototypeManager); + } + + // Equip the target with the job loadout + var stationSpawning = entityManager.System(); + stationSpawning.EquipRoleLoadout(target, roleLoadout, jobProto); + } + return true; } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index db952237338f79..a03f27b561ae90 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -1,19 +1,21 @@ using Content.Server.Atmos.Components; -using Content.Server.Atmos.Reactions; +using Content.Server.Decals; using Content.Shared.Atmos; using Content.Shared.Atmos.Components; using Content.Shared.Atmos.Reactions; -using Content.Shared.Audio; using Content.Shared.Database; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Server.Atmos.EntitySystems { public sealed partial class AtmosphereSystem { + [Dependency] private readonly DecalSystem _decalSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + private const int HotspotSoundCooldownCycles = 200; private int _hotspotSoundCooldown = 0; @@ -56,7 +58,30 @@ private void ProcessHotspot( if (tile.Hotspot.Bypassing) { tile.Hotspot.State = 3; - // TODO ATMOS: Burn tile here + + var gridUid = ent.Owner; + var tilePos = tile.GridIndices; + + // Get the existing decals on the tile + var tileDecals = _decalSystem.GetDecalsInRange(gridUid, tilePos); + + // Count the burnt decals on the tile + var tileBurntDecals = 0; + + foreach (var set in tileDecals) + { + if (Array.IndexOf(_burntDecals, set.Decal.Id) == -1) + continue; + + tileBurntDecals++; + + if (tileBurntDecals > 4) + break; + } + + // Add a random burned decal to the tile only if there are less than 4 of them + if (tileBurntDecals < 4) + _decalSystem.TryAddDecal(_burntDecals[_random.Next(_burntDecals.Length)], new EntityCoordinates(gridUid, tilePos), out _, cleanable: true); if (tile.Air.Temperature > Atmospherics.FireMinimumTemperatureToSpread) { diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs index 44bfa4cc10c751..13d8f73dc56bd8 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Fluids.EntitySystems; using Content.Server.NodeContainer.EntitySystems; using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Decals; using Content.Shared.Doors.Components; using Content.Shared.Maps; using JetBrains.Annotations; @@ -12,7 +13,9 @@ using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Physics.Systems; +using Robust.Shared.Prototypes; using Robust.Shared.Random; +using System.Linq; namespace Content.Server.Atmos.EntitySystems; @@ -36,6 +39,7 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly TileSystem _tile = default!; [Dependency] private readonly MapSystem _map = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] public readonly PuddleSystem Puddle = default!; private const float ExposedUpdateDelay = 1f; @@ -47,6 +51,8 @@ public sealed partial class AtmosphereSystem : SharedAtmosphereSystem private EntityQuery _firelockQuery; private HashSet _entSet = new(); + private string[] _burntDecals = []; + public override void Initialize() { base.Initialize(); @@ -66,7 +72,9 @@ public override void Initialize() _firelockQuery = GetEntityQuery(); SubscribeLocalEvent(OnTileChanged); + SubscribeLocalEvent(OnPrototypesReloaded); + CacheDecals(); } public override void Shutdown() @@ -81,6 +89,12 @@ private void OnTileChanged(ref TileChangedEvent ev) InvalidateTile(ev.NewTile.GridUid, ev.NewTile.GridIndices); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheDecals(); + } + public override void Update(float frameTime) { base.Update(frameTime); @@ -107,4 +121,9 @@ public override void Update(float frameTime) _exposedTimer -= ExposedUpdateDelay; } + + private void CacheDecals() + { + _burntDecals = _prototypeManager.EnumeratePrototypes().Where(x => x.Tags.Contains("burnt")).Select(x => x.ID).ToArray(); + } } diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index dd89ba2f72e825..cd4aa4a0981aac 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -239,6 +239,7 @@ public void HandleEnterCryostorage(Entity ent, Ne Loc.GetString( "earlyleave-cryo-announcement", ("character", name), + ("entity", ent.Owner), ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName)) ), Loc.GetString("earlyleave-cryo-sender"), playDefaultSound: false diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index cd422328c3e183..7caec6150ede0f 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -340,6 +340,9 @@ protected override void OnItemInserted(EntityUid uid, CartridgeLoaderComponent l if (args.Container.ID != InstalledContainerId && args.Container.ID != loader.CartridgeSlot.ID) return; + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = uid; + RaiseLocalEvent(args.Entity, new CartridgeAddedEvent(uid)); base.OnItemInserted(uid, loader, args); } @@ -360,6 +363,9 @@ protected override void OnItemRemoved(EntityUid uid, CartridgeLoaderComponent lo if (deactivate) RaiseLocalEvent(args.Entity, new CartridgeDeactivatedEvent(uid)); + if (TryComp(args.Entity, out CartridgeComponent? cartridge)) + cartridge.LoaderUid = null; + RaiseLocalEvent(args.Entity, new CartridgeRemovedEvent(uid)); base.OnItemRemoved(uid, loader, args); diff --git a/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs new file mode 100644 index 00000000000000..08eef62379abae --- /dev/null +++ b/Content.Server/CartridgeLoader/Cartridges/WantedListCartridge.cs @@ -0,0 +1,8 @@ +using Content.Shared.Security; + +namespace Content.Server.CartridgeLoader.Cartridges; + +[RegisterComponent] +public sealed partial class WantedListCartridgeComponent : Component +{ +} diff --git a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs index 23bf6b215736e3..03c0ffe0c1ae9d 100644 --- a/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs +++ b/Content.Server/Chemistry/Components/SolutionRegenerationComponent.cs @@ -14,31 +14,31 @@ public sealed partial class SolutionRegenerationComponent : Component /// /// The name of the solution to add to. /// - [DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField("solution", required: true)] public string SolutionName = string.Empty; /// /// The solution to add reagents to. /// - [DataField("solutionRef")] - public Entity? Solution = null; + [DataField] + public Entity? SolutionRef = null; /// /// The reagent(s) to be regenerated in the solution. /// - [DataField("generated", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true)] public Solution Generated = default!; /// /// How long it takes to regenerate once. /// - [DataField("duration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public TimeSpan Duration = TimeSpan.FromSeconds(1); /// /// The time when the next regeneration will occur. /// - [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField("nextChargeTime", customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextRegenTime = TimeSpan.FromSeconds(0); } diff --git a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs index 6a600628572dce..bccd5947069643 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionRegenerationSystem.cs @@ -24,7 +24,7 @@ public override void Update(float frameTime) // timer ignores if its full, it's just a fixed cycle regen.NextRegenTime = _timing.CurTime + regen.Duration; - if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.Solution, out var solution)) + if (_solutionContainer.ResolveSolution((uid, manager), regen.SolutionName, ref regen.SolutionRef, out var solution)) { var amount = FixedPoint2.Min(solution.AvailableVolume, regen.Generated.Volume); if (amount <= FixedPoint2.Zero) @@ -41,7 +41,7 @@ public override void Update(float frameTime) generated = regen.Generated.Clone().SplitSolution(amount); } - _solutionContainer.TryAddSolution(regen.Solution.Value, generated); + _solutionContainer.TryAddSolution(regen.SolutionRef.Value, generated); } } } diff --git a/Content.Server/Construction/Completions/GivePrototype.cs b/Content.Server/Construction/Completions/GivePrototype.cs index f45bd5ba105287..f05feb70c0346d 100644 --- a/Content.Server/Construction/Completions/GivePrototype.cs +++ b/Content.Server/Construction/Completions/GivePrototype.cs @@ -1,44 +1,50 @@ using Content.Server.Stack; using Content.Shared.Construction; +using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Prototypes; using Content.Shared.Stacks; using JetBrains.Annotations; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -namespace Content.Server.Construction.Completions +namespace Content.Server.Construction.Completions; + +[UsedImplicitly] +[DataDefinition] +public sealed partial class GivePrototype : IGraphAction { - [UsedImplicitly] - [DataDefinition] - public sealed partial class GivePrototype : IGraphAction + [DataField] + public EntProtoId Prototype { get; private set; } = string.Empty; + + [DataField] + public int Amount { get; private set; } = 1; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { - [DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer))] - public string Prototype { get; private set; } = string.Empty; - [DataField("amount")] - public int Amount { get; private set; } = 1; + if (string.IsNullOrEmpty(Prototype)) + return; - public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + if (EntityPrototypeHelpers.HasComponent(Prototype)) { - if (string.IsNullOrEmpty(Prototype)) - return; + var stackSystem = entityManager.EntitySysManager.GetEntitySystem(); + var stacks = stackSystem.SpawnMultiple(Prototype, Amount, userUid ?? uid); - var coordinates = entityManager.GetComponent(userUid ?? uid).Coordinates; + if (userUid is null || !entityManager.TryGetComponent(userUid, out HandsComponent? handsComp)) + return; - if (EntityPrototypeHelpers.HasComponent(Prototype)) + foreach (var item in stacks) { - var stackEnt = entityManager.SpawnEntity(Prototype, coordinates); - var stack = entityManager.GetComponent(stackEnt); - entityManager.EntitySysManager.GetEntitySystem().SetCount(stackEnt, Amount, stack); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, stackEnt); + stackSystem.TryMergeToHands(item, userUid.Value, hands: handsComp); } - else + } + else + { + var handsSystem = entityManager.EntitySysManager.GetEntitySystem(); + var handsComp = userUid is not null ? entityManager.GetComponent(userUid.Value) : null; + for (var i = 0; i < Amount; i++) { - for (var i = 0; i < Amount; i++) - { - var item = entityManager.SpawnEntity(Prototype, coordinates); - entityManager.EntitySysManager.GetEntitySystem().PickupOrDrop(userUid, item); - } + var item = entityManager.SpawnNextToOrDrop(Prototype, userUid ?? uid); + handsSystem.PickupOrDrop(userUid, item, handsComp: handsComp); } } } diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs index c5f1d159f31c43..ca1d45e6449466 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs @@ -68,6 +68,13 @@ private void OnFiltersChanged(Entity ent, ref S } } + private void GetOfficer(EntityUid uid, out string officer) + { + var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, uid); + RaiseLocalEvent(tryGetIdentityShortInfoEvent); + officer = tryGetIdentityShortInfoEvent.Title ?? Loc.GetString("criminal-records-console-unknown-officer"); + } + private void OnChangeStatus(Entity ent, ref CriminalRecordChangeStatus msg) { // prevent malf client violating wanted/reason nullability @@ -90,29 +97,22 @@ private void OnChangeStatus(Entity ent, ref Cri return; } + var oldStatus = record.Status; + + var name = _records.RecordName(key.Value); + GetOfficer(mob.Value, out var officer); + // when arresting someone add it to history automatically // fallback exists if the player was not set to wanted beforehand if (msg.Status == SecurityStatus.Detained) { var oldReason = record.Reason ?? Loc.GetString("criminal-records-console-unspecified-reason"); var history = Loc.GetString("criminal-records-console-auto-history", ("reason", oldReason)); - _criminalRecords.TryAddHistory(key.Value, history); + _criminalRecords.TryAddHistory(key.Value, history, officer); } - var oldStatus = record.Status; - // will probably never fail given the checks above - _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason); - - var name = _records.RecordName(key.Value); - var officer = Loc.GetString("criminal-records-console-unknown-officer"); - - var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value); - RaiseLocalEvent(tryGetIdentityShortInfoEvent); - if (tryGetIdentityShortInfoEvent.Title != null) - { - officer = tryGetIdentityShortInfoEvent.Title; - } + _criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason, officer); (string, object)[] args; if (reason != null) @@ -152,14 +152,16 @@ private void OnChangeStatus(Entity ent, ref Cri private void OnAddHistory(Entity ent, ref CriminalRecordAddHistory msg) { - if (!CheckSelected(ent, msg.Actor, out _, out var key)) + if (!CheckSelected(ent, msg.Actor, out var mob, out var key)) return; var line = msg.Line.Trim(); if (line.Length < 1 || line.Length > ent.Comp.MaxStringLength) return; - if (!_criminalRecords.TryAddHistory(key.Value, line)) + GetOfficer(mob.Value, out var officer); + + if (!_criminalRecords.TryAddHistory(key.Value, line, officer)) return; // no radio message since its not crucial to officers patrolling diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs index a65fb0be9e1a70..7c65ce8c248c58 100644 --- a/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs +++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsSystem.cs @@ -1,10 +1,15 @@ -using System.Diagnostics.CodeAnalysis; +using System.Linq; +using Content.Server.CartridgeLoader; +using Content.Server.CartridgeLoader.Cartridges; using Content.Server.StationRecords.Systems; using Content.Shared.CriminalRecords; using Content.Shared.CriminalRecords.Systems; using Content.Shared.Security; using Content.Shared.StationRecords; using Content.Server.GameTicking; +using Content.Server.Station.Systems; +using Content.Shared.CartridgeLoader; +using Content.Shared.CartridgeLoader.Cartridges; namespace Content.Server.CriminalRecords.Systems; @@ -20,12 +25,18 @@ public sealed class CriminalRecordsSystem : SharedCriminalRecordsSystem { [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly StationRecordsSystem _records = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly CartridgeLoaderSystem _cartridge = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGeneralRecordCreated); + SubscribeLocalEvent(OnRecordChanged); + SubscribeLocalEvent(OnCartridgeUiReady); + SubscribeLocalEvent(OnHistoryAdded); + SubscribeLocalEvent(OnHistoryRemoved); } private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) @@ -39,14 +50,14 @@ private void OnGeneralRecordCreated(AfterGeneralRecordCreatedEvent ev) /// Reason should only be passed if status is Wanted, nullability isn't checked. /// /// True if the status is changed, false if not - public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason) + public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? reason, string? initiatorName = null) { // don't do anything if its the same status if (!_records.TryGetRecord(key, out var record) || status == record.Status) return false; - OverwriteStatus(key, record, status, reason); + OverwriteStatus(key, record, status, reason, initiatorName); return true; } @@ -54,16 +65,24 @@ public bool TryChangeStatus(StationRecordKey key, SecurityStatus status, string? /// /// Sets the status without checking previous status or reason nullability. /// - public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason) + public void OverwriteStatus(StationRecordKey key, CriminalRecord record, SecurityStatus status, string? reason, string? initiatorName = null) { record.Status = status; record.Reason = reason; + record.InitiatorName = initiatorName; var name = _records.RecordName(key); if (name != string.Empty) UpdateCriminalIdentity(name, status); _records.Synchronize(key); + + var args = new CriminalRecordChangedEvent(record); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } } /// @@ -76,15 +95,23 @@ public bool TryAddHistory(StationRecordKey key, CrimeHistory entry) return false; record.History.Add(entry); + + var args = new CriminalHistoryAddedEvent(entry); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } /// /// Creates and tries to add a history entry using the current time. /// - public bool TryAddHistory(StationRecordKey key, string line) + public bool TryAddHistory(StationRecordKey key, string line, string? initiatorName = null) { - var entry = new CrimeHistory(_ticker.RoundDuration(), line); + var entry = new CrimeHistory(_ticker.RoundDuration(), line, initiatorName); return TryAddHistory(key, entry); } @@ -100,7 +127,58 @@ public bool TryDeleteHistory(StationRecordKey key, uint index) if (index >= record.History.Count) return false; + var history = record.History[(int)index]; record.History.RemoveAt((int) index); + + var args = new CriminalHistoryRemovedEvent(history); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var readerUid, out _)) + { + RaiseLocalEvent(readerUid, ref args); + } + return true; } + + private void OnRecordChanged(Entity ent, ref CriminalRecordChangedEvent args) => + StateChanged(ent); + + private void OnHistoryAdded(Entity ent, ref CriminalHistoryAddedEvent args) => + StateChanged(ent); + + private void OnHistoryRemoved(Entity ent, ref CriminalHistoryRemovedEvent args) => + StateChanged(ent); + + private void StateChanged(Entity ent) + { + if (Comp(ent).LoaderUid is not { } loaderUid) + return; + + UpdateReaderUi(ent, loaderUid); + } + + private void OnCartridgeUiReady(Entity ent, ref CartridgeUiReadyEvent args) + { + UpdateReaderUi(ent, args.Loader); + } + + private void UpdateReaderUi(Entity ent, EntityUid loaderUid) + { + if (_station.GetOwningStation(ent) is not { } station) + return; + + var records = _records.GetRecordsOfType(station) + .Where(cr => cr.Item2.Status is not SecurityStatus.None || cr.Item2.History.Count > 0) + .Select(cr => + { + var (i, r) = cr; + var key = new StationRecordKey(i, station); + // Hopefully it will work smoothly..... + _records.TryGetRecord(key, out GeneralStationRecord? generalRecord); + return new WantedRecord(generalRecord!, r.Status, r.Reason, r.InitiatorName, r.History); + }); + var state = new WantedListUiState(records.ToList()); + + _cartridge.UpdateCartridgeUiState(loaderUid, state); + } } diff --git a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs index 5166aaccabba41..08c7c8f068f81e 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/SolutionExplosionBehavior.cs @@ -1,4 +1,4 @@ -using Content.Server.Explosion.Components; +using Content.Shared.Explosion.Components; using JetBrains.Annotations; namespace Content.Server.Destructible.Thresholds.Behaviors diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs index 4b59c8f1c48f8f..6fa553bc8b60d6 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Airtight.cs @@ -6,9 +6,10 @@ using Content.Shared.Explosion.EntitySystems; using Content.Shared.FixedPoint; using Robust.Shared.Map.Components; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly DestructibleSystem _destructibleSystem = default!; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs index ce98f89de7af4a..5af06ef93684af 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.CVars.cs @@ -1,8 +1,8 @@ using Content.Shared.CCVar; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public int MaxIterations { get; private set; } public int MaxArea { get; private set; } diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs index 75bb606441a424..29477c16b28e33 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.GridMap.cs @@ -12,7 +12,7 @@ namespace Content.Server.Explosion.EntitySystems; // A good portion of it is focused around keeping track of what tile-indices on a grid correspond to tiles that border // space. AFAIK no other system currently needs to track these "edge-tiles". If they do, this should probably be a // property of the grid itself? -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// Set of tiles of each grid that are directly adjacent to space, along with the directions that face space. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index 6d0cbcf2794c27..97d52e436a8f7e 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -22,9 +22,10 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; + namespace Content.Server.Explosion.EntitySystems; -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { [Dependency] private readonly FlammableSystem _flammableSystem = default!; @@ -218,7 +219,7 @@ internal bool ExplodeTile(BroadphaseComponent lookup, // get the entities on a tile. Note that we cannot process them directly, or we get // enumerator-changed-while-enumerating errors. List<(EntityUid, TransformComponent)> list = new(); - var state = (list, processed, _transformQuery); + var state = (list, processed, EntityManager.TransformQuery); // get entities: lookup.DynamicTree.QueryAabb(ref state, GridQueryCallback, gridBox, true); @@ -317,7 +318,7 @@ internal void ExplodeSpace(BroadphaseComponent lookup, var gridBox = Box2.FromDimensions(tile * DefaultTileSize, new Vector2(DefaultTileSize, DefaultTileSize)); var worldBox = spaceMatrix.TransformBox(gridBox); var list = new List<(EntityUid, TransformComponent)>(); - var state = (list, processed, invSpaceMatrix, lookup.Owner, _transformQuery, gridBox, _transformSystem); + var state = (list, processed, invSpaceMatrix, lookup.Owner, EntityManager.TransformQuery, gridBox, _transformSystem); // get entities: lookup.DynamicTree.QueryAabb(ref state, SpaceQueryCallback, worldBox, true); diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs index 8c3229e06eef53..7b73490d9467f5 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.TileFill.cs @@ -7,13 +7,13 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; -using Content.Shared.Explosion.EntitySystems; + namespace Content.Server.Explosion.EntitySystems; // This partial part of the explosion system has all of the functions used to create the actual explosion map. // I.e, to get the sets of tiles & intensity values that describe an explosion. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { /// /// This is the main explosion generating function. diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs index 219dba4bdeb8f8..57323e4de7093e 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Visuals.cs @@ -5,10 +5,11 @@ using Robust.Server.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Map; + namespace Content.Server.Explosion.EntitySystems; // This part of the system handled send visual / overlay data to clients. -public sealed partial class ExplosionSystem : SharedExplosionSystem +public sealed partial class ExplosionSystem { public void InitVisuals() { diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index cd0ca1c22eb2fa..818953ed4b478b 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -12,6 +12,8 @@ using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Explosion; +using Content.Shared.Explosion.Components; +using Content.Shared.Explosion.EntitySystems; using Content.Shared.GameTicking; using Content.Shared.Inventory; using Content.Shared.Projectiles; @@ -53,7 +55,6 @@ public sealed partial class ExplosionSystem : SharedExplosionSystem [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly SharedMapSystem _map = default!; - private EntityQuery _transformQuery; private EntityQuery _flammableQuery; private EntityQuery _physicsQuery; private EntityQuery _projectileQuery; @@ -103,7 +104,6 @@ public override void Initialize() InitAirtightMap(); InitVisuals(); - _transformQuery = GetEntityQuery(); _flammableQuery = GetEntityQuery(); _physicsQuery = GetEntityQuery(); _projectileQuery = GetEntityQuery(); @@ -141,15 +141,8 @@ private void OnGetResistance(EntityUid uid, ExplosionResistanceComponent compone args.DamageCoefficient *= modifier; } - /// - /// Given an entity with an explosive component, spawn the appropriate explosion. - /// - /// - /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not - /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a - /// solution in a reaction). - /// - public void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + /// + public override void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) { // log missing: false, because some entities (e.g. liquid tanks) attempt to trigger explosions when damaged, // but may not actually be explosive. diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index ccb58e94f81426..fb449a372cd499 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -152,7 +152,7 @@ public void Flash(EntityUid target, } } - public void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) + public override 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 = Transform(source); var mapPosition = _transform.GetMapCoordinates(transform); diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index be34a80fe34850..48814e7ba3c10f 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -1,5 +1,7 @@ using Content.Server.Objectives.Components; using Content.Server.Objectives.Components.Targets; +using Content.Shared.CartridgeLoader; +using Content.Shared.Interaction; using Content.Shared.Mind; using Content.Shared.Objectives.Components; using Content.Shared.Objectives.Systems; @@ -20,11 +22,14 @@ public sealed class StealConditionSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; private EntityQuery _containerQuery; + private HashSet> _nearestEnts = new(); + public override void Initialize() { base.Initialize(); @@ -102,15 +107,19 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) //check stealAreas if (condition.CheckStealAreas) { - var areasQuery = AllEntityQuery(); - while (areasQuery.MoveNext(out var uid, out var area)) + var areasQuery = AllEntityQuery(); + while (areasQuery.MoveNext(out var uid, out var area, out var xform)) { if (!area.Owners.Contains(mind.Owner)) continue; - var nearestEnt = _lookup.GetEntitiesInRange(uid, area.Range); - foreach (var ent in nearestEnt) + _nearestEnts.Clear(); + _lookup.GetEntitiesInRange(xform.Coordinates, area.Range, _nearestEnts); + foreach (var ent in _nearestEnts) { + if (!_interaction.InRangeUnobstructed((uid, xform), (ent, ent.Comp), range: area.Range)) + continue; + CheckEntity(ent, condition, ref containerStack, ref count); } } @@ -172,6 +181,11 @@ private int CheckStealTarget(EntityUid entity, StealConditionComponent condition if (target.StealGroup != condition.StealGroup) return 0; + // check if cartridge is installed + if (TryComp(entity, out var cartridge) && + cartridge.InstallationStatus is not InstallationStatus.Cartridge) + return 0; + // check if needed target alive if (condition.CheckAlive) { diff --git a/Content.Server/Power/Generation/Teg/TegSystem.cs b/Content.Server/Power/Generation/Teg/TegSystem.cs index 9fb7d5ff1f649b..027f2570402370 100644 --- a/Content.Server/Power/Generation/Teg/TegSystem.cs +++ b/Content.Server/Power/Generation/Teg/TegSystem.cs @@ -102,10 +102,6 @@ private void GeneratorExamined(EntityUid uid, TegGeneratorComponent component, E private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref AtmosDeviceUpdateEvent args) { - var tegGroup = GetNodeGroup(uid); - if (tegGroup is not { IsFullyBuilt: true }) - return; - var supplier = Comp(uid); var powerReceiver = Comp(uid); if (!powerReceiver.Powered) @@ -114,6 +110,10 @@ private void GeneratorUpdate(EntityUid uid, TegGeneratorComponent component, ref return; } + var tegGroup = GetNodeGroup(uid); + if (tegGroup is not { IsFullyBuilt: true }) + return; + var circA = tegGroup.CirculatorA!.Owner; var circB = tegGroup.CirculatorB!.Owner; diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 82bdb78816f0c7..bb5934f3f08d12 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -125,7 +125,7 @@ public bool IsRoundEndRequested() return _countdownTokenSource != null; } - public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { var duration = DefaultCountdownDuration; @@ -143,7 +143,7 @@ public void RequestRoundEnd(EntityUid? requester = null, bool checkCooldown = tr RequestRoundEnd(duration, requester, checkCooldown, text, name); } - public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "Station") + public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, bool checkCooldown = true, string text = "round-end-system-shuttle-called-announcement", string name = "round-end-system-shuttle-sender-announcement") { if (_gameTicker.RunLevel != GameRunLevel.InRound) return; @@ -183,7 +183,7 @@ public void RequestRoundEnd(TimeSpan countdownTime, EntityUid? requester = null, _chatSystem.DispatchGlobalAnnouncement(Loc.GetString(text, ("time", time), ("units", Loc.GetString(units))), - name, + Loc.GetString(name), false, null, Color.Gold); diff --git a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs index 05262f2999629b..6d97c8ccb3ddc7 100644 --- a/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs +++ b/Content.Server/Singularity/EntitySystems/ContainmentFieldGeneratorSystem.cs @@ -37,6 +37,7 @@ public override void Initialize() SubscribeLocalEvent(OnUnanchorAttempt); SubscribeLocalEvent(OnComponentRemoved); SubscribeLocalEvent(PreventBreach); + SubscribeLocalEvent(OnMapInit); } public override void Update(float frameTime) @@ -61,6 +62,12 @@ public override void Update(float frameTime) #region Events + private void OnMapInit(Entity generator, ref MapInitEvent args) + { + if (generator.Comp.Enabled) + ChangeFieldVisualizer(generator); + } + /// /// A generator receives power from a source colliding with it. /// diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 7f6c39eafc0679..8b35f677f1856d 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -268,7 +268,7 @@ private bool CanBuckle(EntityUid buckleUid, return false; } - if (buckleComp.Buckled) + if (buckleComp.Buckled && !TryUnbuckle(buckleUid, user, buckleComp)) { if (popup) { diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs index 7677e800fe9678..1a15e52a3c4311 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Interaction.cs @@ -1,5 +1,5 @@ +using System.Linq; using Content.Shared.Buckle.Components; -using Content.Shared.Cuffs.Components; using Content.Shared.DoAfter; using Content.Shared.DragDrop; using Content.Shared.IdentityManagement; @@ -84,15 +84,29 @@ private void OnStrapInteractHand(EntityUid uid, StrapComponent component, Intera if (!TryComp(args.User, out BuckleComponent? buckle)) return; - if (buckle.BuckledTo == null && component.BuckleOnInteractHand) + // Buckle self + if (buckle.BuckledTo == null && component.BuckleOnInteractHand && StrapHasSpace(uid, buckle, component)) + { TryBuckle(args.User, args.User, uid, buckle, popup: true); - else if (buckle.BuckledTo == uid) - TryUnbuckle(args.User, args.User, buckle, popup: true); - else + args.Handled = true; + return; + } + + // Unbuckle self + if (buckle.BuckledTo == uid && TryUnbuckle(args.User, args.User, buckle, popup: true)) + { + args.Handled = true; return; + } + + // Unbuckle others + if (component.BuckledEntities.TryFirstOrNull(out var buckled) && TryUnbuckle(buckled.Value, args.User)) + { + args.Handled = true; + return; + } // TODO BUCKLE add out bool for whether a pop-up was generated or not. - args.Handled = true; } private void OnBuckleInteractHand(Entity ent, ref InteractHandEvent args) diff --git a/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs new file mode 100644 index 00000000000000..9d55e0c1636821 --- /dev/null +++ b/Content.Shared/CartridgeLoader/Cartridges/WantedListUiState.cs @@ -0,0 +1,11 @@ +using Content.Shared.CriminalRecords; +using Content.Shared.CriminalRecords.Systems; +using Robust.Shared.Serialization; + +namespace Content.Shared.CartridgeLoader.Cartridges; + +[Serializable, NetSerializable] +public sealed class WantedListUiState(List records) : BoundUserInterfaceState +{ + public List Records = records; +} diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index f41fa2b22d2c53..f25273f40394c1 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -359,39 +359,76 @@ public bool TryInsertFromHand(EntityUid uid, ItemSlot slot, EntityUid user, Hand /// Useful for predicted interactions /// /// False if failed to insert item - public bool TryInsertEmpty(Entity ent, EntityUid item, EntityUid? user, bool excludeUserAudio = false) + public bool TryInsertEmpty(Entity ent, + EntityUid item, + EntityUid? user, + bool excludeUserAudio = false) { + if (!Resolve(ent, ref ent.Comp, false)) + return false; + + TryComp(user, out HandsComponent? handsComp); + + if (!TryGetAvailableSlot(ent, + item, + user == null ? null : (user.Value, handsComp), + out var itemSlot, + emptyOnly: true)) + return false; + + if (user != null && !_handsSystem.TryDrop(user.Value, item, handsComp: handsComp)) + return false; + + Insert(ent, itemSlot, item, user, excludeUserAudio: excludeUserAudio); + return true; + } + + /// + /// Tries to get any slot that the can be inserted into. + /// + /// Entity that is being inserted into. + /// Entity being inserted into . + /// Entity inserting into . + /// The ItemSlot on to insert into. + /// True only returns slots that are empty. + /// False returns any slot that is able to receive . + /// True when a slot is found. Otherwise, false. + public bool TryGetAvailableSlot(Entity ent, + EntityUid item, + Entity? userEnt, + [NotNullWhen(true)] out ItemSlot? itemSlot, + bool emptyOnly = false) + { + itemSlot = null; + + if (userEnt is { } user + && Resolve(user, ref user.Comp) + && _handsSystem.IsHolding(user, item)) + { + if (!_handsSystem.CanDrop(user, item, user.Comp)) + return false; + } + if (!Resolve(ent, ref ent.Comp, false)) return false; var slots = new List(); foreach (var slot in ent.Comp.Slots.Values) { - if (slot.ContainerSlot?.ContainedEntity != null) + if (emptyOnly && slot.ContainerSlot?.ContainedEntity != null) continue; - if (CanInsert(ent, item, user, slot)) + if (CanInsert(ent, item, userEnt, slot)) slots.Add(slot); } if (slots.Count == 0) return false; - if (user != null && _handsSystem.IsHolding(user.Value, item)) - { - if (!_handsSystem.TryDrop(user.Value, item)) - return false; - } - slots.Sort(SortEmpty); - foreach (var slot in slots) - { - if (TryInsert(ent, slot, item, user, excludeUserAudio: excludeUserAudio)) - return true; - } - - return false; + itemSlot = slots[0]; + return true; } private static int SortEmpty(ItemSlot a, ItemSlot b) diff --git a/Content.Shared/CriminalRecords/CriminalRecord.cs b/Content.Shared/CriminalRecords/CriminalRecord.cs index 0fe23d4395419b..5a023a9188c63b 100644 --- a/Content.Shared/CriminalRecords/CriminalRecord.cs +++ b/Content.Shared/CriminalRecords/CriminalRecord.cs @@ -23,6 +23,12 @@ public sealed record CriminalRecord [DataField] public string? Reason; + /// + /// The name of the person who changed the status. + /// + [DataField] + public string? InitiatorName; + /// /// Criminal history of the person. /// This should have charges and time served added after someone is detained. @@ -35,4 +41,4 @@ public sealed record CriminalRecord /// A line of criminal activity and the time it was added at. /// [Serializable, NetSerializable] -public record struct CrimeHistory(TimeSpan AddTime, string Crime); +public record struct CrimeHistory(TimeSpan AddTime, string Crime, string? InitiatorName); diff --git a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs index 96b33ab91bd308..d665d32f1ed21d 100644 --- a/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs +++ b/Content.Shared/CriminalRecords/Systems/SharedCriminalRecordsSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.IdentityManagement.Components; using Content.Shared.Security; using Content.Shared.Security.Components; +using Content.Shared.StationRecords; +using Robust.Shared.Serialization; namespace Content.Shared.CriminalRecords.Systems; @@ -50,3 +52,22 @@ public void SetCriminalIcon(string name, SecurityStatus status, EntityUid charac Dirty(characterUid, record); } } + +[Serializable, NetSerializable] +public struct WantedRecord(GeneralStationRecord targetInfo, SecurityStatus status, string? reason, string? initiator, List history) +{ + public GeneralStationRecord TargetInfo = targetInfo; + public SecurityStatus Status = status; + public string? Reason = reason; + public string? Initiator = initiator; + public List History = history; +}; + +[ByRefEvent] +public record struct CriminalRecordChangedEvent(CriminalRecord Record); + +[ByRefEvent] +public record struct CriminalHistoryAddedEvent(CrimeHistory History); + +[ByRefEvent] +public record struct CriminalHistoryRemovedEvent(CrimeHistory History); diff --git a/Content.Server/Explosion/Components/ExplosiveComponent.cs b/Content.Shared/Explosion/Components/ExplosiveComponent.cs similarity index 76% rename from Content.Server/Explosion/Components/ExplosiveComponent.cs rename to Content.Shared/Explosion/Components/ExplosiveComponent.cs index 2b27a89d9db78f..bab7f5a7d6785c 100644 --- a/Content.Server/Explosion/Components/ExplosiveComponent.cs +++ b/Content.Shared/Explosion/Components/ExplosiveComponent.cs @@ -1,8 +1,7 @@ -using Content.Server.Explosion.EntitySystems; -using Content.Shared.Explosion; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Content.Shared.Explosion.EntitySystems; +using Robust.Shared.Prototypes; -namespace Content.Server.Explosion.Components; +namespace Content.Shared.Explosion.Components; /// /// Specifies an explosion that can be spawned by this entity. The explosion itself is spawned via -[RegisterComponent] +[RegisterComponent, Access(typeof(SharedExplosionSystem))] public sealed partial class ExplosiveComponent : Component { - /// /// The explosion prototype. This determines the damage types, the tile-break chance, and some visual /// information (e.g., the light that the explosion gives off). /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("explosionType", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ExplosionType = default!; + [DataField(required: true)] + public ProtoId ExplosionType = default!; /// /// The maximum intensity the explosion can have on a single tile. This limits the maximum damage and tile /// break chance the explosion can achieve at any given location. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxIntensity")] + [DataField] public float MaxIntensity = 4; /// /// How quickly the intensity drops off as you move away from the epicenter. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("intensitySlope")] + [DataField] public float IntensitySlope = 1; /// @@ -47,38 +42,34 @@ public sealed partial class ExplosiveComponent : Component /// This number can be overridden by passing optional argument to . /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("totalIntensity")] + [DataField] public float TotalIntensity = 10; /// /// Factor used to scale the explosion intensity when calculating tile break chances. Allows for stronger /// explosives that don't space tiles, without having to create a new explosion-type prototype. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("tileBreakScale")] + [DataField] public float TileBreakScale = 1f; /// /// Maximum number of times that an explosive can break a tile. Currently, for normal space stations breaking a /// tile twice will generally result in a vacuum. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maxTileBreak")] + [DataField] public int MaxTileBreak = int.MaxValue; /// /// Whether this explosive should be able to create a vacuum by breaking tiles. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("canCreateVacuum")] + [DataField] public bool CanCreateVacuum = true; /// /// An override for whether or not the entity should be deleted after it explodes. /// If null, the system calling the explode method handles it. /// - [DataField("deleteAfterExplosion")] + [DataField] public bool? DeleteAfterExplosion; /// diff --git a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs index 1d926dd0b67d6b..f29825580784b6 100644 --- a/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs +++ b/Content.Shared/Explosion/EntitySystems/SharedExplosionSystem.cs @@ -1,25 +1,40 @@ -using Content.Shared.Explosion.Components; using Content.Shared.Armor; +using Content.Shared.Explosion.Components; namespace Content.Shared.Explosion.EntitySystems; +/// +/// Lets code in shared trigger explosions and handles explosion resistance examining. +/// All processing is still done clientside. +/// public abstract class SharedExplosionSystem : EntitySystem { - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnArmorExamine); } - private void OnArmorExamine(EntityUid uid, ExplosionResistanceComponent component, ref ArmorExamineEvent args) + private void OnArmorExamine(Entity ent, ref ArmorExamineEvent args) { - var value = MathF.Round((1f - component.DamageCoefficient) * 100, 1); + var value = MathF.Round((1f - ent.Comp.DamageCoefficient) * 100, 1); if (value == 0) return; args.Msg.PushNewline(); - args.Msg.AddMarkupOrThrow(Loc.GetString(component.Examine, ("value", value))); + args.Msg.AddMarkupOrThrow(Loc.GetString(ent.Comp.Examine, ("value", value))); + } + + /// + /// Given an entity with an explosive component, spawn the appropriate explosion. + /// + /// + /// Also accepts radius or intensity arguments. This is useful for explosives where the intensity is not + /// specified in the yaml / by the component, but determined dynamically (e.g., by the quantity of a + /// solution in a reaction). + /// + public virtual void TriggerExplosive(EntityUid uid, ExplosiveComponent? explosive = null, bool delete = true, float? totalIntensity = null, float? radius = null, EntityUid? user = null) + { } } diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index f83f02a310586b..b7788098870b1f 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -1,10 +1,15 @@ +using Content.Shared.Flash.Components; using Content.Shared.StatusEffect; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; -namespace Content.Shared.Flash +namespace Content.Shared.Flash; + +public abstract class SharedFlashSystem : EntitySystem { - public abstract class SharedFlashSystem : EntitySystem + public ProtoId FlashedKey = "Flashed"; + + public virtual void FlashArea(Entity source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, float probability = 1f, SoundSpecifier? sound = null) { - [ValidatePrototypeId] - public const string FlashedKey = "Flashed"; } } diff --git a/Content.Shared/Fluids/Components/DrainComponent.cs b/Content.Shared/Fluids/Components/DrainComponent.cs index 4fb4fe9438335c..50cb5f51958192 100644 --- a/Content.Shared/Fluids/Components/DrainComponent.cs +++ b/Content.Shared/Fluids/Components/DrainComponent.cs @@ -23,14 +23,14 @@ public sealed partial class DrainComponent : Component [DataField] public Entity? Solution = null; - [DataField("accumulator")] + [DataField] public float Accumulator = 0f; /// /// Does this drain automatically absorb surrouding puddles? Or is it a drain designed to empty - /// solutions in it manually? + /// solutions in it manually? /// - [DataField("autoDrain"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public bool AutoDrain = true; /// @@ -38,47 +38,47 @@ public sealed partial class DrainComponent : Component /// Divided by puddles, so if there are 5 puddles this will take 1/5 from each puddle. /// This will stay fixed to 1 second no matter what DrainFrequency is. /// - [DataField("unitsPerSecond")] + [DataField] public float UnitsPerSecond = 6f; /// /// How many units are ejected from the buffer per second. /// - [DataField("unitsDestroyedPerSecond")] + [DataField] public float UnitsDestroyedPerSecond = 3f; /// /// How many (unobstructed) tiles away the drain will /// drain puddles from. /// - [DataField("range"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Range = 2f; /// /// How often in seconds the drain checks for puddles around it. /// If the EntityQuery seems a bit unperformant this can be increased. /// - [DataField("drainFrequency")] + [DataField] public float DrainFrequency = 1f; /// /// How much time it takes to unclog it with a plunger /// - [DataField("unclogDuration"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogDuration = 1f; /// /// What's the probability of uncloging on each try /// - [DataField("unclogProbability"), ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UnclogProbability = 0.75f; - [DataField("manualDrainSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier ManualDrainSound = new SoundPathSpecifier("/Audio/Effects/Fluids/slosh.ogg"); - [DataField("plungerSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier PlungerSound = new SoundPathSpecifier("/Audio/Items/Janitor/plunger.ogg"); - [DataField("unclogSound"), ViewVariables(VVAccess.ReadOnly)] + [DataField] public SoundSpecifier UnclogSound = new SoundPathSpecifier("/Audio/Effects/Fluids/glug.ogg"); } diff --git a/Content.Shared/Interaction/Events/InteractionFailureEvent.cs b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs new file mode 100644 index 00000000000000..a820048104d0f5 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionFailureEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when failing to pet/hug something. +/// +[ByRefEvent] +public readonly record struct InteractionFailureEvent(EntityUid User); diff --git a/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs new file mode 100644 index 00000000000000..da4f9e43d7d263 --- /dev/null +++ b/Content.Shared/Interaction/Events/InteractionSuccessEvent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.Interaction.Events; + +/// +/// Raised on the target when successfully petting/hugging something. +/// +[ByRefEvent] +public readonly record struct InteractionSuccessEvent(EntityUid User); diff --git a/Content.Shared/Interaction/InteractionPopupSystem.cs b/Content.Shared/Interaction/InteractionPopupSystem.cs index 2a742d4211b6cf..20c079dfd8c8d0 100644 --- a/Content.Shared/Interaction/InteractionPopupSystem.cs +++ b/Content.Shared/Interaction/InteractionPopupSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Bed.Sleep; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Components; +using Content.Shared.Interaction.Events; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Popups; @@ -100,6 +101,9 @@ private void SharedInteract( if (component.InteractSuccessSpawn != null) Spawn(component.InteractSuccessSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionSuccessEvent(user); + RaiseLocalEvent(target, ref ev); } else { @@ -111,6 +115,9 @@ private void SharedInteract( if (component.InteractFailureSpawn != null) Spawn(component.InteractFailureSpawn, _transform.GetMapCoordinates(uid)); + + var ev = new InteractionFailureEvent(user); + RaiseLocalEvent(target, ref ev); } if (!string.IsNullOrEmpty(component.MessagePerceivedByOthers)) diff --git a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs index a9a9390a6e0e98..c332064ea38eae 100644 --- a/Content.Shared/Placeable/PlaceableSurfaceSystem.cs +++ b/Content.Shared/Placeable/PlaceableSurfaceSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Storage; using Content.Shared.Storage.Components; namespace Content.Shared.Placeable; @@ -8,12 +9,16 @@ namespace Content.Shared.Placeable; public sealed class PlaceableSurfaceSystem : EntitySystem { [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnAfterInteractUsing); + SubscribeLocalEvent(OnStorageInteractUsingAttempt); + SubscribeLocalEvent(OnStorageAfterOpen); + SubscribeLocalEvent(OnStorageAfterClose); } public void SetPlaceable(EntityUid uid, bool isPlaceable, PlaceableSurfaceComponent? surface = null) @@ -21,6 +26,9 @@ public void SetPlaceable(EntityUid uid, bool isPlaceable, PlaceableSurfaceCompon if (!Resolve(uid, ref surface, false)) return; + if (surface.IsPlaceable == isPlaceable) + return; + surface.IsPlaceable = isPlaceable; Dirty(uid, surface); } @@ -59,11 +67,24 @@ private void OnAfterInteractUsing(EntityUid uid, PlaceableSurfaceComponent surfa if (!_handsSystem.TryDrop(args.User, args.Used)) return; - if (surface.PlaceCentered) - Transform(args.Used).LocalPosition = Transform(uid).LocalPosition + surface.PositionOffset; - else - Transform(args.Used).Coordinates = args.ClickLocation; + _transformSystem.SetCoordinates(args.Used, + surface.PlaceCentered ? Transform(uid).Coordinates.Offset(surface.PositionOffset) : args.ClickLocation); args.Handled = true; } + + private void OnStorageInteractUsingAttempt(Entity ent, ref StorageInteractUsingAttemptEvent args) + { + args.Cancelled = true; + } + + private void OnStorageAfterOpen(Entity ent, ref StorageAfterOpenEvent args) + { + SetPlaceable(ent.Owner, true, ent.Comp); + } + + private void OnStorageAfterClose(Entity ent, ref StorageAfterCloseEvent args) + { + SetPlaceable(ent.Owner, false, ent.Comp); + } } diff --git a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs index 938b34f354a6e0..6b09edfa1f0068 100644 --- a/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs +++ b/Content.Shared/Singularity/Components/ContainmentFieldGeneratorComponent.cs @@ -79,7 +79,7 @@ public int PowerBuffer /// /// Is the generator toggled on? /// - [ViewVariables] + [DataField] public bool Enabled; /// diff --git a/Content.Shared/StatusEffect/StatusEffectsSystem.cs b/Content.Shared/StatusEffect/StatusEffectsSystem.cs index 9806077f9bb87f..95abea63db0dec 100644 --- a/Content.Shared/StatusEffect/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffect/StatusEffectsSystem.cs @@ -14,6 +14,7 @@ public sealed class StatusEffectsSystem : EntitySystem [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; + private List _toRemove = new(); public override void Initialize() { @@ -32,18 +33,28 @@ public override void Update(float frameTime) var curTime = _gameTiming.CurTime; var enumerator = EntityQueryEnumerator(); + _toRemove.Clear(); while (enumerator.MoveNext(out var uid, out _, out var status)) { - foreach (var state in status.ActiveEffects.ToArray()) + if (status.ActiveEffects.Count == 0) + { + // This shouldn't happen, but just in case something sneaks through + _toRemove.Add(uid); + continue; + } + + foreach (var state in status.ActiveEffects) { - // if we're past the end point of the effect if (curTime > state.Value.Cooldown.Item2) - { TryRemoveStatusEffect(uid, state.Key, status); - } } } + + foreach (var uid in _toRemove) + { + RemComp(uid); + } } private void OnGetState(EntityUid uid, StatusEffectsComponent component, ref ComponentGetState args) @@ -62,29 +73,21 @@ private void OnHandleState(EntityUid uid, StatusEffectsComponent component, ref component.AllowedEffects.AddRange(state.AllowedEffects); // Remove non-existent effects. - foreach (var effect in component.ActiveEffects.Keys) + foreach (var key in component.ActiveEffects.Keys) { - if (!state.ActiveEffects.ContainsKey(effect)) - { - TryRemoveStatusEffect(uid, effect, component, remComp: false); - } + if (!state.ActiveEffects.ContainsKey(key)) + component.ActiveEffects.Remove(key); } foreach (var (key, effect) in state.ActiveEffects) { - // don't bother with anything if we already have it - if (component.ActiveEffects.ContainsKey(key)) - { - component.ActiveEffects[key] = new(effect); - continue; - } - - var time = effect.Cooldown.Item2 - effect.Cooldown.Item1; - - TryAddStatusEffect(uid, key, time, true, component, effect.Cooldown.Item1); - component.ActiveEffects[key].RelevantComponent = effect.RelevantComponent; - // state handling should not add networked components, that is handled separately by the client game state manager. + component.ActiveEffects[key] = new(effect); } + + if (component.ActiveEffects.Count == 0) + RemComp(uid); + else + EnsureComp(uid); } private void OnRejuvenate(EntityUid uid, StatusEffectsComponent component, RejuvenateEvent args) @@ -109,18 +112,16 @@ public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool if (!Resolve(uid, ref status, false)) return false; - if (TryAddStatusEffect(uid, key, time, refresh, status)) - { - // If they already have the comp, we just won't bother updating anything. - if (!EntityManager.HasComponent(uid)) - { - var comp = EntityManager.AddComponent(uid); - status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(comp.GetType()); - } + if (!TryAddStatusEffect(uid, key, time, refresh, status)) + return false; + + if (HasComp(uid)) return true; - } - return false; + EntityManager.AddComponent(uid); + status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(); + return true; + } public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, string component, @@ -162,8 +163,12 @@ public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool re /// If the effect already exists, it will simply replace the cooldown with the new one given. /// If you want special 'effect merging' behavior, do it your own damn self! /// - public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, - StatusEffectsComponent? status = null, TimeSpan? startTime = null) + public bool TryAddStatusEffect(EntityUid uid, + string key, + TimeSpan time, + bool refresh, + StatusEffectsComponent? status = null, + TimeSpan? startTime = null) { if (!Resolve(uid, ref status, false)) return false; @@ -334,8 +339,7 @@ public bool HasStatusEffect(EntityUid uid, string key, /// The entity to check on. /// The status effect ID to check for /// The status effect component, should you already have it. - public bool CanApplyEffect(EntityUid uid, string key, - StatusEffectsComponent? status = null) + public bool CanApplyEffect(EntityUid uid, string key, StatusEffectsComponent? status = null) { // don't log since stuff calling this prolly doesn't care if we don't actually have it if (!Resolve(uid, ref status, false)) diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 4932613d0e640d..309ac0a2e09358 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -487,9 +487,6 @@ private void ModifyComponents(EntityUid uid, SharedEntityStorageComponent? compo } } - if (TryComp(uid, out var surface)) - _placeableSurface.SetPlaceable(uid, component.Open, surface); - _appearance.SetData(uid, StorageVisuals.Open, component.Open); _appearance.SetData(uid, StorageVisuals.HasContents, component.Contents.ContainedEntities.Count > 0); } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index def9d797c4833c..d6fde292a14786 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -364,7 +364,9 @@ private void OnInteractUsing(EntityUid uid, StorageComponent storageComp, Intera if (args.Handled || !CanInteract(args.User, (uid, storageComp), storageComp.ClickInsert, false)) return; - if (HasComp(uid)) + var attemptEv = new StorageInteractUsingAttemptEvent(); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) return; PlayerInsertHeldEntity((uid, storageComp), args.User); diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index a666169f529481..d2c607e57f7656 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -238,6 +238,9 @@ public AnimateInsertingEntitiesEvent(NetEntity storage, List storedEn [ByRefEvent] public record struct StorageInteractAttemptEvent(bool Silent, bool Cancelled = false); + [ByRefEvent] + public record struct StorageInteractUsingAttemptEvent(bool Cancelled = false); + [NetSerializable] [Serializable] public enum StorageVisuals : byte diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 11609a0efc96a3..76b01c427fbb43 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,108 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now drop food and drinks to stop consuming it. - type: Fix - id: 6891 - time: '2024-07-09T23:12:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29854 -- author: Boaz1111 - changes: - - message: Guitars can now be worn in the suit storage slot - type: Add - id: 6892 - time: '2024-07-09T23:28:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29048 -- author: Winkarst-cpu - changes: - - message: Fixed popup spam when trying to open borg's UI while the borg is locked. - type: Fix - id: 6893 - time: '2024-07-09T23:48:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29861 -- author: Lokachop - changes: - - message: Scarves now count as warm clothing for the warm clothing cargo bounty. - type: Tweak - id: 6894 - time: '2024-07-10T05:26:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29779 -- author: Aquif - changes: - - message: It is now possible to "lock" admin faxes such that they cannot be edited - by cybersun pens or any other IC means. - type: Add - id: 6895 - time: '2024-07-10T05:28:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28972 -- author: Ghagliiarghii - changes: - - message: The Librarian's Books Bag can now hold D&D related items such as dice - and battlemats. - type: Tweak - id: 6896 - time: '2024-07-10T05:51:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29863 -- author: Beck Thompson, Tayrtahn - changes: - - message: Typing indicators now correctly stack and will not overwrite your default - species indicator. - type: Fix - id: 6897 - time: '2024-07-10T05:51:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29492 -- author: Winkarst-cpu - changes: - - message: Now confirmation popup is displayed and item panel status is updated - after setting a custom solution transfer volume. - type: Fix - id: 6898 - time: '2024-07-10T10:32:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29852 -- author: Winkarst-cpu - changes: - - message: Added exit confirmation for character setup menu with unsaved changes. - type: Add - id: 6899 - time: '2024-07-11T00:24:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29875 -- author: ShadowCommander - changes: - - message: Players can now use melee attacks and shoves while dragging an entity - in their active hand. - type: Tweak - id: 6900 - time: '2024-07-11T04:48:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29703 -- author: Cojoke-dot - changes: - - message: You can no longer shoot out of crates with guns - type: Fix - id: 6901 - time: '2024-07-11T05:14:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28961 -- author: Cojoke-dot - changes: - - message: The Spray Painter can now be used to paint glass airlocks to look like - regular glass airlocks. - type: Tweak - id: 6902 - time: '2024-07-11T05:33:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29869 -- author: MFMessage - changes: - - message: Picking a ghost role as an admin will now deadmin. - type: Fix - id: 6903 - time: '2024-07-11T05:53:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29790 -- author: Winkarst-cpu - changes: - - message: Admin notes popups are now more readable. - type: Tweak - id: 6904 - time: '2024-07-11T14:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29909 - author: jonathanargo changes: - message: Muskets are now wieldable. @@ -3917,3 +3813,112 @@ id: 7390 time: '2024-09-17T22:09:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31951 +- author: Calecute + changes: + - message: Corrected cake batter recipe in guidebook + type: Fix + id: 7391 + time: '2024-09-18T15:15:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32276 +- author: Beck Thompson + changes: + - message: Recycler no longer allows basic materials to be inserted into it. + type: Fix + id: 7392 + time: '2024-09-18T21:58:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32144 +- author: deltanedas + changes: + - message: Epinephrine now adds Adrenaline, because it is. + type: Tweak + id: 7393 + time: '2024-09-18T23:00:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32076 +- author: ShadowCommander + changes: + - message: Fixed clicking on chairs and beds with an entity buckled to them not + unbuckling them. + type: Fix + id: 7394 + time: '2024-09-18T23:55:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29998 +- author: Winkarst-cpu + changes: + - message: Now fire leaves burn marks on the tiles that were affected by it. + type: Add + id: 7395 + time: '2024-09-19T00:23:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31939 +- author: ArchRBX + changes: + - message: Mass scanners and shuttle consoles now display coordinates beneath IFF + labels + type: Add + - message: IFF labels that are beyond the viewport extents maintain their heading + and don't hug corners + type: Fix + id: 7396 + time: '2024-09-19T01:25:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31501 +- author: coffeeware + changes: + - message: a powered TEG won't produce infinite power when destroyed + type: Fix + id: 7397 + time: '2024-09-19T02:15:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29972 +- author: Boaz1111 + changes: + - message: Added plasma and uranium arrows. + type: Add + id: 7398 + time: '2024-09-19T08:41:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31241 +- author: Ertanic + changes: + - message: Wanted list program and its cartridge. + type: Add + - message: The cartridge has been added to the HOS locker. + type: Add + - message: Added target to thief on wanted list cartridge. + type: Add + id: 7399 + time: '2024-09-19T10:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31223 +- author: Errant + changes: + - message: Crew monitor list can now be filtered by name and job. + type: Add + id: 7400 + time: '2024-09-19T10:23:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31659 +- author: deltanedas + changes: + - message: Removed the flare blueprint from salvage, it's now unlocked roundstart + in autolathes. + type: Remove + id: 7401 + time: '2024-09-19T13:45:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32303 +- author: deltanedas + changes: + - message: Increased the thieving beacon's range to 2 tiles. + type: Tweak + id: 7402 + time: '2024-09-19T13:55:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31340 +- author: Winkarst-cpu + changes: + - message: The first editable line in the dialog window now grabs the keyboard focus + once it's open. + type: Fix + id: 7403 + time: '2024-09-19T14:01:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31294 +- author: Plykiya + changes: + - message: You can now transfer someone from a rollerbed to a bed directly. + type: Tweak + id: 7404 + time: '2024-09-19T14:08:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32089 diff --git a/Resources/Locale/en-US/actions/ui/actionslot.ftl b/Resources/Locale/en-US/actions/ui/actionslot.ftl index 332054f10e9d16..c0deaad248c2c0 100644 --- a/Resources/Locale/en-US/actions/ui/actionslot.ftl +++ b/Resources/Locale/en-US/actions/ui/actionslot.ftl @@ -1,2 +1,2 @@ ui-actionslot-charges = Uses left: {$charges} - +ui-actionslot-duration = [color=#a10505] {$duration} sec cooldown ({$timeLeft} sec remaining)[/color] diff --git a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl index 500a5305621297..7d1c07944356ed 100644 --- a/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/en-US/bed/cryostorage/cryogenic-storage.ftl @@ -2,5 +2,5 @@ ### Announcement earlyleave-cryo-job-unknown = Unknown -earlyleave-cryo-announcement = {$character} ({$job}) has entered cryogenic storage! +earlyleave-cryo-announcement = {$character} ({$job}) { CONJUGATE-HAVE($entity) } entered cryogenic storage! earlyleave-cryo-sender = Station diff --git a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl index f5cda2f2a18b21..2db27f5be09aec 100644 --- a/Resources/Locale/en-US/cartridge-loader/cartridges.ftl +++ b/Resources/Locale/en-US/cartridge-loader/cartridges.ftl @@ -19,3 +19,32 @@ log-probe-scan = Downloaded logs from {$device}! log-probe-label-time = Time log-probe-label-accessor = Accessed by log-probe-label-number = # + +# Wanted list cartridge +wanted-list-program-name = Wanted list +wanted-list-label-no-records = It's all right, cowboy +wanted-list-search-placeholder = Search by name and status + +wanted-list-age-label = [color=darkgray]Age:[/color] [color=white]{$age}[/color] +wanted-list-job-label = [color=darkgray]Job:[/color] [color=white]{$job}[/color] +wanted-list-species-label = [color=darkgray]Species:[/color] [color=white]{$species}[/color] +wanted-list-gender-label = [color=darkgray]Gender:[/color] [color=white]{$gender}[/color] + +wanted-list-reason-label = [color=darkgray]Reason:[/color] [color=white]{$reason}[/color] +wanted-list-unknown-reason-label = unknown reason + +wanted-list-initiator-label = [color=darkgray]Initiator:[/color] [color=white]{$initiator}[/color] +wanted-list-unknown-initiator-label = unknown initiator + +wanted-list-status-label = [color=darkgray]status:[/color] {$status -> + [suspected] [color=yellow]suspected[/color] + [wanted] [color=red]wanted[/color] + [detained] [color=#b18644]detained[/color] + [paroled] [color=green]paroled[/color] + [discharged] [color=green]discharged[/color] + *[other] none + } + +wanted-list-history-table-time-col = Time +wanted-list-history-table-reason-col = Crime +wanted-list-history-table-initiator-col = Initiator diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl index 6d6a97300c2397..2a7c09912fae1a 100644 --- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl +++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl @@ -39,7 +39,7 @@ criminal-records-console-released = {$name} has been released by {$officer}. criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name}. criminal-records-console-paroled = {$name} has been released on parole by {$officer}. criminal-records-console-not-parole = {$officer} cleared the parole status of {$name}. -criminal-records-console-unknown-officer = +criminal-records-console-unknown-officer = ## Filters diff --git a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl index 7fd7f4608e16e9..601c45e4e22303 100644 --- a/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl +++ b/Resources/Locale/en-US/medical/components/crew-monitoring-component.ftl @@ -2,6 +2,8 @@ crew-monitoring-user-interface-title = Crew Monitoring Console +crew-monitor-filter-line-placeholder = Filter + crew-monitoring-user-interface-name = Name crew-monitoring-user-interface-job = Job crew-monitoring-user-interface-status = Status diff --git a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl index 91b3c92b1c333c..689e2e7808eb98 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl @@ -40,6 +40,7 @@ steal-target-groups-clothing-eyes-hud-beer = beer goggles steal-target-groups-bible = bible steal-target-groups-clothing-neck-goldmedal = gold medal of crewmanship steal-target-groups-clothing-neck-clownmedal = clown medal +steal-target-groups-wanted-list-cartridge = wanted list cartridge # Thief structures steal-target-groups-teg = teg generator part diff --git a/Resources/Locale/en-US/round-end/round-end-system.ftl b/Resources/Locale/en-US/round-end/round-end-system.ftl index f86851506bc5ea..30069f71713903 100644 --- a/Resources/Locale/en-US/round-end/round-end-system.ftl +++ b/Resources/Locale/en-US/round-end/round-end-system.ftl @@ -4,6 +4,7 @@ round-end-system-shuttle-called-announcement = An emergency shuttle has been sen round-end-system-shuttle-already-called-announcement = An emergency shuttle has already been sent. round-end-system-shuttle-auto-called-announcement = An automatic crew shift change shuttle has been sent. ETA: {$time} {$units}. Recall the shuttle to extend the shift. round-end-system-shuttle-recalled-announcement = The emergency shuttle has been recalled. +round-end-system-shuttle-sender-announcement = Station round-end-system-round-restart-eta-announcement = Restarting the round in {$time} {$units}... eta-units-minutes = minutes diff --git a/Resources/Locale/en-US/wires/components/wires-component.ftl b/Resources/Locale/en-US/wires/components/wires-component.ftl index be27c270bb4d58..e98e5c21cab286 100644 --- a/Resources/Locale/en-US/wires/components/wires-component.ftl +++ b/Resources/Locale/en-US/wires/components/wires-component.ftl @@ -10,3 +10,9 @@ wires-component-ui-on-receive-message-cannot-mend-uncut-wire = You can't mend a wires-menu-name-label = Wires wires-menu-dead-beef-text = DEAD-BEEF +wires-menu-help-popup = + Click on the gold contacts with a multitool in hand to pulse their wire. + Click on the wires with a pair of wirecutters in hand to cut/mend them. + + The lights at the top show the state of the machine, messing with wires will probably do stuff to them. + Wire layouts are different each round, but consistent between machines of the same type. diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index bc5742dfac7a94..7915d9cef0289e 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -80,7 +80,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: EgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,0: ind: -1,0 @@ -92,7 +92,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAA + tiles: OQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAOQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -100,7 +100,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAACYAAAAAACYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAD version: 6 -2,-1: ind: -2,-1 @@ -176,19 +176,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA + tiles: YAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAYAAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAACgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAYAAAAAADYAAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAYAAAAAABgQAAAAAABwAAAAAABwAAAAAAAwAAAAAAAgAAAAAABwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABAwAAAAAAgQAAAAAAYAAAAAACBwAAAAAAYAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAABYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfQAAAAACgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAA version: 6 2,0: ind: 2,0 - tiles: gQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAAwAAAAAABwAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAABBwAAAAAAYAAAAAABYAAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAAgAAAAAAAwAAAAAAgQAAAAAAAgAAAAABBwAAAAAAAgAAAAABBwAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAABwAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAABwAAAAAAYAAAAAABYAAAAAABgQAAAAAAYAAAAAABgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAAwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYAAAAAAAAwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-2: ind: 2,-2 @@ -212,7 +212,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAABYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAA version: 6 3,-4: ind: 3,-4 @@ -228,7 +228,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfQAAAAAAfQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAfQAAAAAAfQAAAAADYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAADfQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAfQAAAAABfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAACwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAUQAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAA version: 6 4,-2: ind: 4,-2 @@ -236,23 +236,23 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAABYAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA version: 6 1,1: ind: 1,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAgAAAAABAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAADgAAAAACYAAAAAADYAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAAAYAAAAAADAgAAAAAAYAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgAAAAAAAgQAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADgQAAAAAAgAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAA version: 6 0,1: ind: 0,1 @@ -296,11 +296,11 @@ entities: version: 6 3,0: ind: 3,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAEgAAAAAAcAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAcAAAAAAACwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAACwAAAAAACwAAAAAAgQAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 3,1: ind: 3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABYAAAAAADYAAAAAABAgAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAwAAAAACBwAAAAAAAgAAAAABAgAAAAABgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABgQAAAAAAIAAAAAACIAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -320,7 +320,7 @@ entities: version: 6 4,3: ind: 4,3 - tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgAAAAAAAYAAAAAADYAAAAAABCwAAAAAACwAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAADAAAAAABgQAAAAAASgAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAACAAAAAADYAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgAAAAAAACAAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -336,11 +336,11 @@ entities: version: 6 2,3: ind: 2,3 - tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAACYAAAAAACQgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAADQgAAAAAAgQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACFQAAAAADgQAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAABgQAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACFQAAAAADIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAABgQAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAFQAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAAAFQAAAAACgQAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAACgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAFQAAAAABgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAADQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAADQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAYAAAAAAAAgAAAAABYAAAAAACAwAAAAAAYAAAAAAAgQAAAAAAgQAAAAAADQAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAgQAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA + tiles: gQAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAADIAAAAAABIAAAAAAAEwAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAADEwAAAAACEwAAAAACEwAAAAADEwAAAAAAIAAAAAABIAAAAAACIAAAAAADgQAAAAAAfQAAAAAAfQAAAAAAQgAAAAAAgQAAAAAAEwAAAAABEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAABEwAAAAADEwAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAADEwAAAAABEwAAAAABgQAAAAAAIAAAAAAAIAAAAAABIAAAAAABgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEwAAAAADEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAAAEwAAAAACIAAAAAADIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAADEwAAAAABgQAAAAAAIAAAAAABIAAAAAABIAAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACgQAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAFQAAAAABFQAAAAADFQAAAAABFQAAAAACgQAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAYAAAAAABYAAAAAACYAAAAAACgQAAAAAACwAAAAAAFQAAAAACFQAAAAACFQAAAAABFQAAAAACFQAAAAAAFQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAFQAAAAAAFQAAAAABFQAAAAACFQAAAAABFQAAAAACFQAAAAADFQAAAAACgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAFQAAAAACFQAAAAADFQAAAAACFQAAAAACFQAAAAADFQAAAAABFQAAAAADgQAAAAAAYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAFQAAAAACFQAAAAAAFQAAAAACFQAAAAADFQAAAAABFQAAAAAAFQAAAAADgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAgQAAAAAAFQAAAAACFQAAAAACFQAAAAADFQAAAAADFQAAAAABFQAAAAABgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAcAAAAAAACwAAAAAAgQAAAAAAcAAAAAAA version: 6 0,3: ind: 0,3 @@ -424,19 +424,19 @@ entities: version: 6 4,0: ind: 4,0 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAA version: 6 4,1: ind: 4,1 - tiles: gAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: gAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -466,6 +466,10 @@ entities: ind: -5,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 5,1: + ind: 5,1 + tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -487,11 +491,26 @@ entities: version: 2 nodes: - node: + angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 5498: 61,-4 - 5499: 62,-4 + 8241: 30,2 + 8242: 30,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 7781: 77,0 + 8243: 29,5 + 8313: 77,8 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 7788: 68,9 + 8312: 76,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -500,6 +519,21 @@ entities: 2955: 64,44 6205: 7,-43 6206: 4,-43 + 7783: 67,0 + 7789: 67,8 + 7989: 20,1 + 7990: 20,-1 + 7991: 20,-3 + 7992: 20,-5 + 7993: 20,-7 + 7994: 20,-9 + 7995: 20,-11 + 8201: 30,-3 + 8204: 26,-17 + 8205: 18,-17 + 8206: 45,-1 + 8364: 35.78848,-2.4661767 + 8365: 40,-1 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -507,12 +541,11 @@ entities: decals: 2960: 49,63 2961: 52,64 - 4654: 60,2 - 4655: 62,2 - 4656: 64,2 - 4657: 66,2 - 4658: 68,2 5198: 12.964991,13.606268 + 7784: 68,-1 + 7785: 76,-1 + 8199: 30,-15 + 8200: 30,-9 - node: color: '#FFFFFFFF' id: Basalt1 @@ -614,20 +647,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 5475: 53,-7 - 5476: 54,-7 - 5477: 55,-7 - 5478: 56,-7 - 5479: 57,-7 - 5480: 58,-7 - 5481: 57,-4 - 5482: 58,-4 - 5483: 55,-5 - 5484: 54,-5 - 5485: 53,-5 - 5486: 53,-4 - 5487: 54,-4 - 5488: 55,-4 + 8245: 31,2 + 8246: 31,3 + 8247: 31,4 - node: color: '#FFFFFFFF' id: Bot @@ -668,7 +690,6 @@ entities: 1436: -24,-32 1437: -25,-32 1438: -23,-32 - 1439: -42,-21 1440: -43,-24 1441: -49,-27 1442: -49,-23 @@ -690,7 +711,6 @@ entities: 2047: -15,-9 2048: -13,-7 2049: -26,2 - 2082: -1,-12 2089: -32,11 2090: -29,11 2091: -29,7 @@ -753,8 +773,6 @@ entities: 4343: -46,-50 4344: -46,-47 4345: -35,-38 - 4494: 17,0 - 4497: 25,0 4498: 33,-42 4523: 45,43 4524: 46,43 @@ -774,7 +792,6 @@ entities: 4543: -20,4 4544: -20,14 4545: -23,31 - 4635: 54,2 4713: 15,58 5020: 3,43 5047: 42,56 @@ -793,22 +810,14 @@ entities: 5799: -2,-4 6198: 3,-46 6200: 3,-40 - 6233: 11,-4 6258: 58,-27 6337: -11,2 - 6493: 51,4 - 6494: 52,4 - 6495: 53,4 6519: 45,2 - 6627: 17,-14 - 6628: 25,-14 6630: 20,-19 6631: 23,-19 6632: 16,-17 6633: 28,-17 6634: 33,-14 - 6635: 30,2 - 6636: 13,-14 6652: -24,-8 6654: -25,-11 6655: -25,-12 @@ -829,17 +838,37 @@ entities: 6793: 61,-19 6794: 62,-19 6795: 63,-19 - 6803: 35,-2 7202: 3,-61 7203: 3,-60 7204: -8,-69 7205: -17,-59 7521: 3,70 7522: 5,70 - 7552: 52,1 7598: -26,47 7599: -31,46 7600: -9,-36 + 7700: 3,-21 + 7701: 4,-21 + 7704: 3,-19 + 7705: 4,-19 + 7726: 24,7 + 7764: 50,-2 + 7765: 50,-1 + 7766: 58,0 + 7767: 58,8 + 7768: 62,9 + 7769: 60,-4 + 7770: 58,-5 + 7771: 57,12 + 7772: 68,0 + 7774: 76,8 + 8016: 20,-15 + 8196: 31,-3 + 8197: 42,-2 + 8198: 42,-1 + 8209: 39,4 + 8210: 40,4 + 8253: 31,6 - node: zIndex: 1 color: '#FFFFFFFF' @@ -878,17 +907,69 @@ entities: 2957: 50,59 2958: 48,65 2959: 50,65 - 6207: 18,7 + 7790: 76,0 + 7822: 68,8 + 7999: 8,-9 + - node: + color: '#000000FF' + id: BotGreyscale + decals: + 7721: 27,9 + - node: + color: '#0096FFFF' + id: BotGreyscale + decals: + 7712: 26,12 + 7713: 27,12 + 7714: 27,11 + - node: + color: '#90BBFFFF' + id: BotGreyscale + decals: + 7725: 25,8 + - node: + color: '#FF0000FF' + id: BotGreyscale + decals: + 7709: 26,11 + 7710: 25,11 + 7711: 25,12 - node: color: '#FF00FFFF' id: BotGreyscale decals: 6801: 2,59 + - node: + color: '#FF4DFFFF' + id: BotGreyscale + decals: + 7720: 24,8 + - node: + color: '#FFA500FF' + id: BotGreyscale + decals: + 7716: 27,6 + 7717: 27,7 + - node: + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7715: 27,8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFF00FF' + id: BotGreyscale + decals: + 7996: 10,-12 + 7997: 11,-12 + 7998: 12,-12 - node: color: '#FFFFFFFF' id: BotGreyscale decals: 6802: 2,58 + 7718: 25,9 + 7719: 25,10 - node: color: '#FFFFFFFF' id: Box @@ -908,16 +989,24 @@ entities: id: Box decals: 6702: 3,-6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Box + decals: + 7791: 64,8 + 7792: 64,0 + 7793: 68,-4 + 7794: 76,-4 + 7795: 80,0 + 7796: 76,12 + 7798: 80,8 + 7821: 68,12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 4659: 60,2 - 4660: 62,2 - 4661: 64,2 - 4662: 66,2 - 4663: 68,2 5199: 13,13 - node: color: '#3EB38896' @@ -998,6 +1087,9 @@ entities: 5582: -46,72 5583: -46,67 6692: 0,-15 + 7848: 53,4 + 7849: 53,5 + 7850: 53,6 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1026,6 +1118,8 @@ entities: 7361: -12,-13 7362: -11,-15 7519: 59,58 + 7940: 57,-1 + 7974: 61,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -1040,6 +1134,8 @@ entities: 7332: -13,21 7337: -21,24 7518: 57,58 + 7939: 54,-1 + 7973: 58,5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -1056,6 +1152,8 @@ entities: 7335: -20,19 7365: -11,-16 7366: -19,-16 + 7935: 57,-4 + 7971: 61,3 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw @@ -1075,6 +1173,8 @@ entities: 7358: -20,-16 7359: -13,-16 7517: 57,52 + 7936: 54,-4 + 7972: 58,3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -1176,6 +1276,9 @@ entities: 7514: 59,57 7515: 59,56 7516: 59,53 + 7945: 57,-3 + 7946: 57,-2 + 7980: 61,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1228,6 +1331,10 @@ entities: 7328: -11,21 7367: -20,-11 7510: 75,54 + 7943: 55,-1 + 7944: 56,-1 + 7977: 59,5 + 7978: 60,5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1278,6 +1385,10 @@ entities: 7330: -11,19 7374: -12,-16 7504: 67,43 + 7937: 55,-4 + 7938: 56,-4 + 7975: 59,3 + 7976: 60,3 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -1317,6 +1428,9 @@ entities: 7511: 57,56 7512: 57,57 7513: 57,53 + 7941: 54,-3 + 7942: 54,-2 + 7979: 58,4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -1533,6 +1647,8 @@ entities: id: Caution decals: 5282: 60,-15 + 7799: 64,2 + 7800: 64,6 - node: cleanable: True color: '#3C44AAFF' @@ -1547,6 +1663,12 @@ entities: 4347: -44.25874,-48.932568 4357: -43.14474,-50.673935 4358: -44.534176,-46.580185 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 8244: 29,6 - node: color: '#FFFFFFFF' id: Delivery @@ -1556,7 +1678,6 @@ entities: 1270: 54,-23 1273: 62,-15 1276: 54,-37 - 1355: 19,3 1781: 33,35 1782: 33,36 1783: 33,37 @@ -1596,6 +1717,19 @@ entities: 6661: -30,-7 6666: -22,-3 7523: 3,68 + 8358: 24,-15 + 8359: 25,-15 + 8360: 26,-15 + 8362: 60,12 + 8363: 59,12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 7818: 62,3 + 7819: 62,4 + 7820: 62,5 - node: cleanable: True color: '#B02E26FF' @@ -1652,7 +1786,6 @@ entities: 6614: 39,24 6615: 51,18 6616: 45,8 - 6617: 45,0 7048: -38,-59 7049: -37,-57 7087: -35,-57 @@ -1700,6 +1833,11 @@ entities: 7498: -66,-20 7499: -65,-20 7500: -61,-31 + 8175: 3,-21 + 8176: 4,-19 + 8320: 36,1 + 8321: 37,-3 + 8322: 31,0 - node: cleanable: True zIndex: 1 @@ -1717,7 +1855,6 @@ entities: 6943: 39,7 6944: 40,6 6945: 41,6 - 6946: 43,1 6947: 44,-4 6948: 42,-5 6949: 43,-7 @@ -1740,6 +1877,11 @@ entities: 7034: 40,31 7035: 30,10 7036: 28,14 + 8099: 29,6 + 8129: 44,-1 + 8130: 47,-4 + 8168: 42,4 + 8169: 45,0 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1791,25 +1933,14 @@ entities: 1461: -10,-23 1466: 16,3 1467: 15,3 - 1468: 15,4 - 1469: 16,4 - 1470: 16,5 - 1471: 15,5 1481: 19,5 1482: 22,5 - 1483: 21,2 1484: 19,6 - 1485: 27,3 - 1486: 25,3 - 1487: 35,-3 - 1488: 33,-2 1489: 31,-12 1490: 30,-14 1491: 32,-16 1492: 27,-18 - 1493: 25,-16 1494: 21,-18 - 1495: 19,-17 1496: 32,-24 1497: 30,-22 1498: 23,-23 @@ -2007,20 +2138,9 @@ entities: 4272: 10,16 4273: 14,15 4274: 11,17 - 4275: 10,-6 - 4276: 7,-4 - 4277: 8,-3 - 4278: 9,-2 - 4279: 8,1 - 4280: 8,1 4282: 19,5 4283: 25,5 4284: 28,3 - 4285: 29,2 - 4289: 36,-2 - 4290: 36,-1 - 4291: 34,1 - 4292: 34,-2 4293: 13,-28 4294: 17,-27 4295: 20,-28 @@ -2133,41 +2253,9 @@ entities: 4908: -13,-28 4910: -22,-29 4911: -25,-29 - 4912: 13,-11 - 4913: 9,-11 - 4914: 10,-11 - 4915: 9,-9 - 4916: 8,-10 - 4917: 13,-9 - 4918: 11,-7 - 4919: 12,-7 - 4921: 8,-4 - 4922: 8,-2 - 4923: 10,-2 - 4925: 9,-4 - 4928: 7,5 - 4929: 8,5 4930: 11,4 - 4931: 12,3 - 4934: 27,3 4935: 27,4 4936: 28,3 - 5096: 64,-2 - 5097: 61,0 - 5098: 66,1 - 5099: 69,-2 - 5100: 73,0 - 5101: 70,1 - 5102: 73,6 - 5103: 71,-2 - 5104: 63,-3 - 5105: 56,-1 - 5106: 53,2 - 5107: 55,5 - 5108: 54,6 - 5109: 69,2 - 5110: 60,-3 - 5111: 62,-3 5112: 47,8 5113: 48,8 5114: 48,8 @@ -2230,19 +2318,6 @@ entities: 5402: 48,-19 5403: 52,-15 5404: 48,-15 - 5405: 78,5 - 5406: 78,8 - 5407: 78,11 - 5408: 75,11 - 5409: 73,12 - 5410: 71,11 - 5411: 74,12 - 5412: 71,12 - 5413: 69,12 - 5414: 66,12 - 5415: 64,12 - 5416: 61,12 - 5417: 57,12 5418: 55,12 5419: 54,11 5420: 54,10 @@ -2253,7 +2328,6 @@ entities: 5425: 51,8 5426: 50,8 5427: 48,8 - 5428: 54,4 5430: 45,8 5431: 5,-24 5432: -1,-24 @@ -2484,7 +2558,6 @@ entities: 6520: 41,-1 6521: 41,0 6522: 41,1 - 6523: 44,0 6524: 45,2 6525: 46,3 6526: 45,4 @@ -2494,15 +2567,8 @@ entities: 6530: 42,7 6531: 43,4 6532: 43,3 - 6533: 44,-2 - 6534: 45,-2 6535: 44,-5 6536: 44,-6 - 6537: 40,-3 - 6538: 40,-3 - 6539: 37,-3 - 6540: 35,0 - 6541: 31,-3 6542: 29,-4 6543: 29,-1 6544: 31,-9 @@ -2520,31 +2586,9 @@ entities: 6556: 40,-13 6557: 42,-14 6558: 43,-13 - 6559: 54,-7 - 6560: 56,-4 - 6561: 57,-6 - 6562: 54,-5 - 6563: 57,-5 6564: 55,-6 - 6565: 61,-5 - 6566: 63,-4 - 6567: 65,-5 - 6568: 68,-3 - 6569: 70,-5 - 6570: 72,-4 - 6571: 73,-5 - 6572: 71,-3 - 6573: 68,-5 - 6574: 68,0 - 6575: 66,0 - 6576: 63,-1 6577: 53,-2 - 6578: 48,-1 6579: 47,-1 - 6580: 45,-1 - 6581: 44,0 - 6582: 45,0 - 6583: 44,-2 6584: 44,-3 6585: 45,-3 6586: 46,-3 @@ -2698,6 +2742,14 @@ entities: 7494: -66,-30 7495: -65,-29 7496: -63,-29 + 8170: 4,-21 + 8171: 2,-20 + 8172: 3,-19 + 8173: 1,-21 + 8174: 1,-19 + 8317: 34,-2 + 8318: 40,-3 + 8319: 38,-2 - node: cleanable: True zIndex: 1 @@ -2720,11 +2772,79 @@ entities: 6975: 43,-6 6976: 42,-4 6977: 43,-4 - 6978: 43,-2 - 6979: 43,0 - 6980: 42,1 6981: 43,4 6982: 43,6 + 8075: 17,-11 + 8076: 10,-7 + 8077: 9,-12 + 8078: 20,-14 + 8080: 19,-11 + 8081: 12,-7 + 8082: 15,-5 + 8083: 16,-9 + 8084: 11,-10 + 8085: 17,-9 + 8086: 17,-6 + 8087: 9,-5 + 8088: 10,1 + 8089: 8,3 + 8090: 9,5 + 8091: 11,6 + 8092: 19,2 + 8093: 18,-3 + 8094: 16,-1 + 8095: 30,-5 + 8096: 25,6 + 8097: 27,10 + 8098: 26,11 + 8100: 29,12 + 8101: 29,10 + 8102: 30,9 + 8103: 30,8 + 8104: 31,8 + 8105: 31,7 + 8106: 31,6 + 8107: 31,5 + 8108: 30,4 + 8109: 30,4 + 8111: 29,2 + 8112: 29,6 + 8113: 34,4 + 8114: 35,4 + 8115: 37,4 + 8116: 40,4 + 8117: 40,2 + 8118: 40,1 + 8119: 39,0 + 8120: 39,0 + 8121: 45,-2 + 8122: 45,-1 + 8123: 43,-2 + 8124: 47,-2 + 8125: 48,-1 + 8126: 44,-1 + 8127: 43,1 + 8128: 42,2 + 8131: 56,-6 + 8132: 54,-5 + 8133: 58,-2 + 8134: 53,1 + 8135: 53,-1 + 8136: 56,0 + 8137: 61,2 + 8138: 58,4 + 8139: 61,6 + 8140: 62,4 + 8141: 54,4 + 8142: 55,6 + 8143: 58,8 + 8144: 57,10 + 8146: 62,8 + 8148: 62,12 + 8151: 72,12 + 8152: 64,4 + 8153: 64,-1 + 8154: 58,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -3180,17 +3300,8 @@ entities: 3410: 64,42 3411: 47,10 3412: 43,7 - 3413: 36,-3 - 3415: 30,2 - 3417: 25,3 - 3418: 21,2 - 3423: 9,-2 - 3424: 9,-3 - 3425: 8,-4 3426: 10,0 - 3427: 11,-8 3430: 13,-16 - 3431: 12,-14 3432: 11,-16 3433: 9,-21 3434: 10,-22 @@ -3738,6 +3849,8 @@ entities: 7041: 27,16 7042: 27,17 7043: 27,16 + 8159: 55,-2 + 8160: 56,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -3750,8 +3863,6 @@ entities: 1455: -8,-23 1456: -7,-23 1457: -7,-24 - 1476: 14,5 - 1477: 14,4 1642: 41,24 1643: 41,25 1644: 40,23 @@ -3887,7 +3998,6 @@ entities: 7000: 40,8 7001: 42,4 7002: 42,2 - 7003: 42,-3 7004: 44,-5 7005: 43,-5 7006: 42,-6 @@ -3914,6 +4024,20 @@ entities: 7027: 40,-29 7028: 37,-27 7029: 37,-23 + 8065: 16,-11 + 8066: 11,-9 + 8067: 15,-6 + 8068: 16,-1 + 8069: 18,-5 + 8070: 14,-9 + 8071: 11,-6 + 8072: 19,-5 + 8073: 18,2 + 8074: 15,-1 + 8155: 62,-1 + 8156: 61,0 + 8157: 58,-4 + 8158: 56,-2 - node: cleanable: True color: '#FFFFFFFF' @@ -3955,6 +4079,29 @@ entities: 7128: -5,-69 7129: 0,-66 7196: 4,-61 + 8323: 40,0 + 8324: 40,-1 + 8325: 38,-3 + 8326: 34,-2 + 8327: 40,-2 + 8328: 40,-1 + 8329: 39,-2 + 8330: 36,-3 + 8331: 40,3 + 8332: 39,2 + 8333: 36,1 + 8334: 35,1 + 8335: 34,2 + 8336: 35,3 + 8337: 35,3 + 8338: 34,3 + 8339: 35,4 + 8340: 37,3 + 8341: 36,2 + 8342: 34,0 + 8343: 33,1 + 8344: 34,2 + 8345: 35,3 - node: cleanable: True zIndex: 1 @@ -3967,6 +4114,13 @@ entities: 6986: 33,19 6987: 32,23 6988: 33,25 + 8161: 42,-8 + 8162: 42,1 + 8163: 43,0 + 8164: 42,4 + 8165: 42,4 + 8166: 42,4 + 8167: 42,4 - node: cleanable: True color: '#B02E26FF' @@ -4263,17 +4417,13 @@ entities: 692: 30,-19 693: 31,-19 703: 34,-22 - 832: 35,-2 847: 29,-14 848: 29,-13 849: 29,-12 - 864: 20,3 1360: 12,-25 1361: 13,-25 2825: 45,46 5767: 35,-8 - 6216: 17,4 - 6217: 17,5 - node: color: '#FFFFFFFF' id: Grassa2 @@ -4456,12 +4606,11 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale decals: - 4632: 55,2 - 4633: 53,2 - 4634: 52,2 - 5489: 56,-4 - 6487: 53,6 - 6488: 52,6 + 8037: 19,7 + 8038: 20,7 + 8039: 21,7 + 8040: 22,7 + 8251: 30,6 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -4788,7 +4937,6 @@ entities: 777: 12,-20 778: 13,-20 801: 27,-16 - 837: 35,-3 858: 26,-21 1364: 32,-14 1393: -24,-3 @@ -4818,8 +4966,6 @@ entities: 4729: -13,-22 4730: -12,-22 4731: -11,-22 - 4957: 11,5 - 4958: 12,5 5048: 13,-26 5049: 12,-26 5050: 11,-26 @@ -4834,16 +4980,19 @@ entities: 5059: 5,-26 5276: 31,-26 5277: 30,-26 - 6208: 13,5 - 6209: 14,5 - 6210: 15,5 - 6231: 21,4 6622: 17,-16 6623: 18,-16 - 6624: 24,-16 - 6625: 25,-16 - 6626: 26,-16 6629: 27,-26 + 7844: 48,-1 + 7863: 53,2 + 7865: 57,0 + 7866: 56,0 + 7929: 56,-4 + 8048: 58,12 + 8220: 35,-2 + 8221: 36,-2 + 8222: 37,-2 + 8346: 38,-2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale @@ -4880,6 +5029,12 @@ entities: 6448: -23,26 6449: -21,26 6450: -20,26 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale180 + decals: + 8008: 17,-14 + 8009: 18,-14 - node: color: '#43990996' id: HalfTileOverlayGreyscale180 @@ -5230,7 +5385,6 @@ entities: 812: 18,-18 817: 24,-18 859: 26,-24 - 868: 21,1 1362: 30,-17 1363: 31,-17 1391: -23,-8 @@ -5240,17 +5394,23 @@ entities: 2785: 44,47 2809: 32,45 2810: 31,45 - 4966: 8,0 6038: 30,45 6040: 33,45 6041: 34,45 - 6213: 15,4 - 6214: 14,4 - 6222: 23,3 6651: -24,-13 - 7403: 34,2 - 7404: 35,2 - 7405: 36,2 + 7823: 48,-2 + 7824: 46,-2 + 7825: 45,-2 + 7826: 44,-2 + 7851: 57,-7 + 7852: 56,-7 + 7853: 55,-7 + 7854: 54,-7 + 7912: 55,-1 + 8216: 37,-3 + 8217: 36,-3 + 8347: 38,-3 + 8348: 39,-3 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -5286,8 +5446,12 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale270 decals: - 5492: 53,-6 - 6492: 51,5 + 8024: 8,-12 + 8025: 8,-11 + 8026: 8,-10 + 8248: 29,2 + 8249: 29,3 + 8250: 29,4 - node: color: '#43990996' id: HalfTileOverlayGreyscale270 @@ -5541,10 +5705,8 @@ entities: 780: 8,-21 781: 8,-22 782: 8,-23 - 829: 37,-1 856: 25,-23 857: 25,-22 - 865: 20,2 1933: -18,-7 1934: -18,-6 1935: -18,-5 @@ -5564,23 +5726,34 @@ entities: 4305: 48,61 4306: 48,62 4307: 48,63 - 4964: 7,1 - 4965: 7,2 - 4968: 9,-8 - 4969: 9,-7 5787: 29,-5 5788: 29,-4 5789: 29,-3 5790: 29,-2 5791: 29,-1 5792: 29,0 - 6218: 18,4 - 6219: 18,5 - 6220: 18,6 6514: 45,4 6518: 45,3 - 6804: 37,0 - 6805: 37,1 + 7832: 42,-7 + 7833: 42,-6 + 7834: 42,-4 + 7836: 42,0 + 7837: 42,1 + 7855: 53,-6 + 7856: 53,-5 + 7857: 53,-4 + 7870: 52,1 + 7930: 57,-3 + 7950: 57,2 + 7951: 57,3 + 7952: 57,4 + 7953: 57,5 + 7954: 57,6 + 8054: 57,8 + 8055: 57,9 + 8223: 39,-1 + 8224: 39,0 + 8236: 39,2 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -5606,12 +5779,8 @@ entities: color: '#3EB38896' id: HalfTileOverlayGreyscale90 decals: - 4639: 55,4 - 4640: 55,5 - 5490: 58,-6 - 5491: 58,-5 - 6491: 55,6 7571: -50,30 + 8252: 31,5 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 @@ -5916,12 +6085,8 @@ entities: 790: 18,-23 791: 18,-22 805: 28,-18 - 840: 33,-1 - 841: 33,0 - 842: 33,1 854: 27,-23 855: 27,-22 - 867: 22,2 1397: -20,-4 1398: -20,-5 1399: -20,-6 @@ -5934,17 +6099,10 @@ entities: 4310: 58,62 4311: 58,63 4312: 58,64 - 4950: 13,-11 - 4951: 13,-10 - 4952: 13,-9 - 4953: 13,-8 - 4954: 13,-7 5793: 31,-1 5794: 31,0 - 5795: 31,-3 5796: 31,-4 5797: 31,-5 - 6230: 22,3 6471: -27,-3 6472: -27,-5 6473: -27,-6 @@ -5956,6 +6114,19 @@ entities: 6649: -23,-11 6650: -23,-10 7572: -50,27 + 7827: 43,-3 + 7828: 43,-4 + 7829: 43,-6 + 7839: 43,2 + 7867: 55,1 + 7911: 54,-2 + 7947: 55,4 + 7948: 55,5 + 7949: 55,6 + 8230: 40,0 + 8234: 40,2 + 8235: 40,3 + 8237: 10,-19 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -5967,11 +6138,16 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1357: 22,-1 - 1358: 20,-1 - 1359: 21,-1 6106: -27,-28 6108: -26,-28 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 7815: 64,5 + 7816: 64,4 + 7817: 64,3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -5984,6 +6160,11 @@ entities: id: MiniTileBoxOverlay decals: 245: -44,-21 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 7727: -42,-21 - node: color: '#D381C996' id: MiniTileWhiteLineW @@ -6069,8 +6250,13 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale decals: - 4653: 56,2 - 5495: 57,-6 + 8012: 23,-17 + 8017: 22,-17 + 8018: 21,-17 + 8019: 20,-17 + 8020: 19,-17 + 8022: 24,-17 + 8023: 24,-16 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale @@ -6289,13 +6475,9 @@ entities: id: QuarterTileOverlayGreyscale decals: 712: 30,-21 - 833: 36,-3 - 838: 37,-2 2813: 40,43 2814: 50,45 2840: 44,49 - 4980: 12,-7 - 4981: 13,-7 6478: -28,-11 6479: -28,-10 6480: -28,-9 @@ -6305,6 +6487,17 @@ entities: 6484: -28,-5 6485: -28,-4 6486: -28,-3 + 7830: 42,-8 + 7846: 49,-1 + 7847: 44,0 + 7917: 57,-4 + 7923: 56,-2 + 7924: 55,-4 + 7926: 57,-2 + 7934: 55,-3 + 8225: 39,-2 + 8232: 33,-2 + 8233: 34,-2 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale @@ -6334,12 +6527,11 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale180 decals: - 4648: 56,1 - 4649: 56,0 - 4650: 56,-1 - 4651: 56,-2 - 4652: 56,2 - 5494: 56,-5 + 8021: 18,-16 + 8032: 27,5 + 8033: 26,5 + 8034: 25,5 + 8036: 24,5 - node: color: '#43990996' id: QuarterTileOverlayGreyscale180 @@ -6548,22 +6740,21 @@ entities: 1368: 31,-12 1369: 31,-13 1389: -21,-7 - 4972: 11,-3 - 4973: 11,-2 - 4979: 11,-6 5768: 31,-10 5769: 31,-9 5770: 31,-7 - 6215: 13,4 - 6234: 11,-5 - 6637: 12,-2 - 6638: 13,-2 - 6639: 13,-1 - 6640: 13,0 - 6641: 13,1 - 6642: 13,2 - 6643: 13,3 - 7406: 33,2 + 7840: 43,-2 + 7914: 54,-1 + 7918: 56,-1 + 7920: 54,-3 + 7928: 56,-2 + 7933: 55,-3 + 7955: 59,2 + 7956: 60,2 + 7957: 61,2 + 7958: 62,2 + 8219: 34,-3 + 8229: 33,-3 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 @@ -6588,11 +6779,6 @@ entities: 6468: -12,27 6469: -11,27 6470: -10,27 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 - decals: - 5496: 57,-5 - node: color: '#52B4E956' id: QuarterTileOverlayGreyscale270 @@ -6781,17 +6967,15 @@ entities: 5777: 29,-8 5778: 29,-7 6620: 19,-18 - 7407: 37,2 + 7838: 42,3 + 7845: 49,-2 + 7931: 57,-1 + 8056: 57,10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 5737: -2,-8 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale90 - decals: - 5497: 56,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -6927,8 +7111,6 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 701: 32,-23 - 834: 34,-3 - 839: 33,-2 1936: -12,13 1937: -12,14 1938: -11,14 @@ -6985,8 +7167,15 @@ entities: 2608: 20,68 2609: 21,68 2610: 22,69 - 4955: 13,-12 5046: 28,43 + 7831: 43,-8 + 7841: 43,0 + 7868: 55,0 + 7932: 54,-4 + 7959: 59,6 + 7960: 60,6 + 7961: 61,6 + 8238: 10,-20 - node: color: '#FFFFFFFF' id: Rock01 @@ -7066,11 +7255,6 @@ entities: id: SpaceStationSign7 decals: 1867: -19,9 - - node: - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6490: 51,6 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale @@ -7172,14 +7356,15 @@ entities: 698: 30,-20 699: 29,-21 772: 8,-19 - 835: 36,-2 850: 25,-21 1388: -25,-3 2827: 44,53 2828: 43,49 - 6228: 20,4 6512: 45,5 6621: 16,-16 + 7860: 52,2 + 8042: 53,-3 + 8043: 59,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -7275,17 +7460,21 @@ entities: 774: 18,-24 806: 28,-19 853: 27,-24 - 863: 22,1 1385: -21,-8 1386: -20,-7 2830: 48,47 6039: 35,45 - 6211: 16,4 + 8231: 40,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: 199: -26,-45 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 8004: 16,-14 - node: color: '#43990996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7370,13 +7559,12 @@ entities: 792: 16,-18 793: 25,-19 852: 25,-24 - 862: 20,1 1384: -25,-8 2826: 43,47 - 4963: 7,0 6037: 29,45 - 6221: 18,3 6619: 19,-19 + 7859: 53,-7 + 8041: 52,0 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 @@ -7479,13 +7667,12 @@ entities: 700: 35,-23 775: 18,-21 798: 28,-16 - 836: 34,-2 851: 27,-21 1387: -20,-3 2829: 48,53 - 6212: 16,5 - 6229: 22,4 6516: 46,5 + 7864: 55,2 + 8044: 60,-3 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -7501,17 +7688,19 @@ entities: color: '#000000FF' id: WarnBox decals: - 5192: 66,50 5194: -26,-51 5966: 37,19 5967: 43,14 + - node: + color: '#439909FF' + id: WarnBox + decals: + 8058: 39,53 - node: color: '#52B4E9FF' id: WarnBox decals: - 4099: 67,50 4100: 59,52 - 4104: 39,51 - node: color: '#DE3A3AFF' id: WarnBox @@ -7551,7 +7740,6 @@ entities: color: '#52B4E9FF' id: WarnBoxGreyscale decals: - 5193: 66,50 5195: -26,-51 - node: color: '#8C347FFF' @@ -7560,35 +7748,46 @@ entities: 5968: 37,19 5969: 43,14 - node: + zIndex: 1 color: '#52B4E9FF' + id: WarnCornerGreyscaleSW + decals: + 8064: 66,50 + - node: + color: '#439909FF' id: WarnCornerNE decals: - 4102: 25,56 + 8057: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 923: 36,1 2688: 22,66 2697: 12,84 2698: 25,84 2699: 26,82 + 8185: 35,3 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 922: 34,1 1429: -37,-10 2687: 21,66 2700: 10,82 2701: 11,84 2742: 24,84 + 8184: 33,3 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerNW decals: 542: -6,-50 + - node: + color: '#439909FF' + id: WarnCornerSE + decals: + 8059: 67,50 - node: color: '#DE3A3AFF' id: WarnCornerSE @@ -7600,21 +7799,26 @@ entities: decals: 22: -41,-44 23: -47,-28 - 917: 36,-1 2686: 22,65 2693: 12,72 2694: 25,72 2695: 26,77 + 8177: 35,1 + - node: + color: '#000000FF' + id: WarnCornerSW + decals: + 8063: 66,50 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 916: 34,-1 2689: 21,65 2690: 23,73 2691: 24,72 2692: 11,72 2696: 10,77 + 8183: 33,1 - node: color: '#334E6DFF' id: WarnCornerSmallGreyscaleNE @@ -7640,23 +7844,16 @@ entities: id: WarnCornerSmallNE decals: 886: 13,-22 - 891: 19,-17 - 892: 21,-17 902: 10,-17 2746: 25,82 2767: 54,61 - 4941: 10,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 885: 18,-22 - 889: 23,-17 - 890: 21,-17 2743: 11,82 2766: 58,61 - 3932: 26,3 - 4948: 10,-6 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -7668,8 +7865,6 @@ entities: 1260: 57,-37 2745: 25,77 2771: 52,64 - 3935: 29,4 - 4940: 10,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -7677,7 +7872,6 @@ entities: 905: 9,-15 1253: 57,-25 2744: 11,77 - 4949: 10,-1 - node: color: '#FFFFFFFF' id: WarnFull @@ -7713,11 +7907,9 @@ entities: 877: 23,-21 878: 13,-21 879: 13,-20 - 894: 20,-15 895: 10,-16 896: 10,-15 897: 10,-14 - 920: 36,0 1259: 57,-38 2069: -15,5 2070: -15,6 @@ -7764,13 +7956,10 @@ entities: 2770: 52,63 2946: 59,55 2947: 59,54 - 3930: 29,2 - 3931: 29,3 4606: 59,-49 4616: 59,-50 - 4942: 10,-11 - 4943: 10,-10 5598: -35,62 + 8195: 35,2 - node: color: '#334E6DFF' id: WarnLineGreyscaleE @@ -7818,7 +8007,6 @@ entities: 576: -4,-44 577: 0,-44 906: 8,-15 - 918: 35,-1 973: -1,-14 1244: 59,-15 1252: 56,-25 @@ -7837,6 +8025,15 @@ entities: 5522: -29,66 5523: -28,66 5524: -27,66 + 8192: 34,1 + 8297: 13,-12 + 8298: 14,-12 + 8299: 15,-12 + 8300: 16,-12 + 8301: 17,-12 + 8302: 18,-12 + 8303: 19,-12 + 8304: 20,-12 - node: zIndex: 2 color: '#FFFFFFFF' @@ -7864,10 +8061,8 @@ entities: 872: 20,-22 873: 20,-21 884: 18,-21 - 893: 22,-15 903: 9,-17 904: 9,-16 - 921: 34,0 1431: -37,-11 1715: 36,17 2060: -13,5 @@ -7914,13 +8109,8 @@ entities: 2762: 58,64 2944: 57,54 2945: 57,55 - 3928: 26,4 - 3929: 26,5 - 4944: 10,-5 - 4945: 10,-4 - 4946: 10,-3 - 4947: 10,-2 5597: -36,62 + 8193: 33,2 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7952,13 +8142,10 @@ entities: 881: 16,-22 882: 15,-22 883: 17,-22 - 887: 20,-17 - 888: 22,-17 898: 11,-17 899: 12,-17 900: 13,-17 901: 14,-17 - 919: 35,1 974: -1,-14 1249: 59,-15 1417: -32,-10 @@ -7973,8 +8160,14 @@ entities: 2757: 55,61 2758: 56,61 2759: 57,61 - 3933: 24,3 - 3934: 25,3 + 8194: 34,3 + 8305: 14,4 + 8306: 15,4 + 8307: 16,4 + 8308: 17,4 + 8309: 18,4 + 8310: 19,4 + 8311: 20,4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8299,52 +8492,53 @@ entities: 1,3: 0: 65524 1,0: - 2: 9830 - 0: 34952 + 2: 26214 1,1: - 2: 8738 - 0: 2184 + 2: 30438 1,4: 0: 65535 1,-1: - 2: 26208 + 2: 58976 0: 2186 2,0: - 0: 40445 + 1: 30576 2,1: - 0: 955 - 2: 32768 + 2: 8337 + 1: 3680 2,2: - 2: 65535 + 2: 65523 2,3: 0: 65520 + 2,-1: + 2: 36864 + 1: 24576 + 0: 239 2,4: 0: 65535 - 2,-1: - 0: 52701 3,0: - 0: 48051 - 1: 8 + 2: 4369 + 0: 52428 3,1: - 0: 33023 + 2: 4113 + 1: 256 + 0: 51404 3,2: - 2: 16368 - 0: 32768 + 2: 13105 + 0: 36040 3,3: 0: 65464 3,-1: - 0: 13063 - 1: 34952 + 2: 4096 + 0: 52479 3,4: 0: 65535 4,0: - 1: 71 - 0: 53520 + 0: 65535 4,1: - 0: 56831 + 0: 43775 4,2: - 0: 1 - 2: 53232 + 0: 816 + 2: 52416 4,3: 0: 1 1: 26112 @@ -8445,42 +8639,35 @@ entities: 1,-2: 0: 41718 1,-4: - 0: 17510 + 0: 17638 1,-3: 0: 25668 1,-5: - 0: 26214 + 0: 25687 2,-4: 0: 4095 2,-3: 0: 65535 2,-2: - 0: 56574 + 0: 61183 2,-5: 0: 62079 3,-4: - 0: 9079 - 1: 32768 + 0: 57463 3,-3: - 0: 13107 - 1: 34952 + 0: 65535 3,-2: - 0: 8243 - 1: 34952 + 0: 65535 3,-5: 0: 63247 4,-4: - 0: 7 - 1: 63232 + 0: 63239 4,-3: - 2: 18 - 1: 13032 + 0: 65535 4,-2: - 2: 754 - 1: 12288 + 0: 65535 4,-1: - 2: 528 - 1: 63714 + 0: 65535 -4,-8: 0: 63347 -4,-9: @@ -8531,18 +8718,17 @@ entities: 0,-7: 0: 4095 0,-6: - 0: 255 - 2: 8192 + 0: 57599 0,-9: 0: 57297 0,-5: - 2: 3170 + 0: 238 1,-8: 0: 3002 1,-7: 0: 12287 1,-6: - 0: 28279 + 0: 23671 1,-9: 0: 41710 2,-8: @@ -9119,8 +9305,8 @@ entities: 5,-9: 0: 63231 5,-4: - 0: 1365 - 1: 61440 + 0: 5461 + 2: 49152 6,-8: 0: 61678 6,-7: @@ -9130,8 +9316,9 @@ entities: 6,-6: 0: 61166 6,-4: - 0: 15 - 1: 63232 + 0: 127 + 1: 12288 + 2: 49152 6,-9: 0: 60637 7,-8: @@ -9155,25 +9342,31 @@ entities: 8,-5: 0: 3839 5,-3: - 2: 8818 - 1: 136 + 0: 4369 + 2: 17476 5,-2: - 2: 10231 + 0: 4369 + 2: 17476 5,-1: - 2: 626 - 1: 63616 + 0: 4369 + 2: 17476 + 5,0: + 0: 4369 + 2: 50244 6,-3: - 1: 60088 - 2: 66 + 3: 48 + 4: 12288 + 2: 34952 6,-2: - 2: 626 - 1: 59528 + 5: 48 + 1: 12288 + 2: 34952 6,-1: - 1: 63674 - 2: 576 + 1: 12336 + 2: 34952 6,0: - 1: 15 - 0: 65280 + 2: 51336 + 1: 12336 7,-3: 0: 61166 7,-2: @@ -9181,7 +9374,7 @@ entities: 7,-1: 0: 61166 7,0: - 0: 30542 + 0: 61006 8,-4: 0: 36795 8,-3: @@ -9190,50 +9383,43 @@ entities: 8,-2: 0: 61167 8,-1: - 0: 61408 + 0: 4080 4,4: 1: 6 0: 4352 2: 49152 - 5,0: - 0: 63344 5,1: - 0: 2047 + 0: 32753 5,2: - 2: 65014 + 2: 64880 5,3: 2: 30583 5,4: 2: 32767 6,1: - 0: 255 - 2: 32768 + 0: 65520 6,2: - 2: 32760 + 0: 61167 6,3: - 2: 1092 + 0: 14 + 2: 1024 7,1: - 0: 19 - 2: 65224 + 0: 36606 7,2: - 2: 287 - 0: 17408 + 0: 26478 7,3: - 0: 18271 + 0: 18254 6,4: 0: 200 2: 49971 7,4: 0: 26230 - 8,0: - 0: 4078 - 8,1: - 2: 15 - 0: 28160 8,2: 0: 63270 8,3: 0: 47935 + 8,0: + 0: 61166 9,-4: 0: 65535 9,-3: @@ -9242,15 +9428,15 @@ entities: 9,-2: 0: 57297 9,-1: - 0: 48944 + 0: 36848 9,0: - 0: 33723 + 0: 64443 10,-4: 0: 56797 10,-3: 0: 56543 10,-1: - 0: 64972 + 0: 65500 10,0: 0: 56797 10,-2: @@ -9263,9 +9449,8 @@ entities: 0: 57565 11,-2: 0: 13070 - 2: 32768 11,-1: - 0: 64497 + 0: 65439 11,-5: 0: 56797 11,0: @@ -9277,15 +9462,16 @@ entities: 2: 34816 12,-2: 0: 11 - 2: 65152 + 2: 61056 12,-1: - 0: 61440 + 0: 65280 2: 110 + 8,1: + 0: 28174 8,4: 0: 48059 9,1: - 2: 1 - 0: 65294 + 0: 65291 9,2: 0: 63343 9,3: @@ -9303,7 +9489,7 @@ entities: 11,1: 0: 14574 11,2: - 0: 65295 + 0: 65423 11,3: 0: 4063 11,4: @@ -9314,7 +9500,7 @@ entities: 12,1: 0: 3003 12,2: - 0: 48911 + 0: 48927 12,3: 0: 44943 8,-9: @@ -9463,8 +9649,8 @@ entities: 14,-8: 0: 65535 15,-9: - 0: 4147 - 2: 52428 + 0: 4351 + 2: 52224 15,-13: 0: 4352 15,-8: @@ -9474,7 +9660,8 @@ entities: 16,-10: 2: 65520 16,-9: - 2: 8191 + 0: 255 + 2: 7936 13,-16: 2: 36608 13,-15: @@ -9531,41 +9718,40 @@ entities: 0: 4335 2: 57344 13,-1: - 0: 64270 + 0: 65518 13,-2: 0: 61152 + 13,0: + 0: 20479 14,-3: 0: 16503 2: 45056 14,-2: - 0: 65392 + 0: 29488 + 2: 136 14,-1: - 0: 65303 - 13,0: - 0: 20472 + 0: 30719 14,0: - 0: 4095 + 0: 60999 15,-3: - 2: 21840 - 0: 8736 + 2: 12832 15,-2: - 2: 13 - 0: 65282 + 2: 4082 15,-1: - 0: 65535 + 0: 28767 15,0: - 0: 4095 + 0: 30471 16,-4: 0: 257 16,-2: - 0: 65280 + 2: 4080 16,-1: - 0: 65535 + 2: 8947 + 0: 4104 19,-8: 0: 61183 19,-9: - 0: 61952 - 2: 255 + 0: 62207 19,-7: 0: 14 20,-8: @@ -9576,67 +9762,76 @@ entities: 17,-10: 2: 65520 17,-9: - 2: 4095 + 0: 255 + 2: 3840 18,-10: 2: 32624 1: 32896 18,-9: - 2: 2047 + 0: 255 + 2: 1792 19,-10: 1: 65520 20,-10: 1: 13104 2: 34824 20,-9: - 2: 35071 - 0: 12544 + 0: 12799 + 2: 34816 21,-10: - 2: 65391 + 2: 3951 + 0: 61440 21,-9: - 2: 4095 - 1: 28672 + 0: 4027 + 2: 28672 21,-8: - 1: 34 - 2: 1368 + 2: 1402 22,-10: - 2: 4112 + 2: 16 + 0: 4096 22,-9: - 2: 273 + 0: 273 16,0: - 0: 4095 + 0: 4377 + 2: 8806 17,-2: - 0: 65280 + 2: 4080 17,-1: - 0: 65535 + 0: 4111 + 2: 33776 17,0: - 0: 4095 + 0: 19 + 2: 37132 18,-2: - 0: 30464 + 2: 4080 18,-1: - 0: 30591 + 0: 15 + 2: 14832 18,0: - 0: 1919 + 2: 12567 + 0: 8 19,-2: - 0: 20480 - 2: 35840 + 2: 4080 19,-1: - 0: 4113 - 2: 17612 + 0: 4099 + 2: 35320 19,0: - 0: 8465 - 2: 21572 + 0: 19 + 2: 47564 20,-2: - 2: 4352 + 2: 53232 20,-1: - 2: 21873 + 2: 61183 + 0: 4096 4,5: - 2: 30716 + 0: 17 + 2: 29900 + 3,5: + 0: 255 + 2: 61440 4,6: 2: 4371 0: 52224 - 3,5: - 2: 61440 - 0: 119 3,6: 2: 65535 4,7: @@ -10025,47 +10220,38 @@ entities: 13,1: 0: 20479 13,2: - 0: 24015 + 0: 56783 13,3: - 0: 4381 + 0: 4383 2: 3072 13,4: 0: 4437 1: 49152 + 14,2: + 0: 65262 14,3: - 0: 15 - 2: 3840 + 2: 65504 + 0: 14 14,1: - 2: 8750 - 3: 34816 - 14,2: - 2: 50722 - 3: 8 - 0: 2048 + 0: 20206 15,1: - 2: 15 - 4: 8704 - 5: 34816 + 0: 18295 15,2: - 0: 768 - 2: 64512 - 4: 2 - 5: 8 + 0: 21606 15,3: - 0: 15 - 2: 7936 + 0: 13 + 2: 65520 15,4: - 2: 15 + 2: 1 16,1: - 2: 15 - 1: 43520 + 0: 4369 + 2: 25134 16,2: - 2: 61696 - 1: 10 - 0: 3584 + 0: 25 + 2: 61990 16,3: - 0: 15 - 2: 12032 + 2: 65523 + 0: 8 12,8: 0: 65534 13,5: @@ -10077,8 +10263,6 @@ entities: 0: 61166 13,8: 0: 65535 - 14,4: - 2: 15 14,5: 2: 4383 14,6: @@ -10092,8 +10276,6 @@ entities: 2: 68 15,5: 2: 31 - 16,4: - 2: 15 16,5: 2: 47 12,9: @@ -10805,44 +10987,62 @@ entities: 2: 1092 -5,18: 0: 631 + 16,4: + 2: 2 17,1: - 2: 8751 - 1: 34816 + 2: 415 + 0: 4096 17,2: - 2: 8162 - 0: 32768 + 0: 19 + 2: 62348 17,3: 0: 15 - 2: 53120 + 2: 65520 17,4: - 2: 7 + 2: 4 18,1: - 2: 34959 - 1: 13056 + 2: 4415 18,2: - 2: 4088 - 0: 61440 + 2: 63799 + 0: 8 18,3: - 0: 7 - 2: 65408 + 0: 15 + 2: 65520 19,1: - 2: 13107 - 0: 17476 + 2: 51647 + 0: 4096 19,2: - 2: 819 - 0: 29764 + 0: 19 + 2: 63884 19,3: - 2: 61680 + 0: 3843 + 2: 61688 + 18,4: + 2: 8 20,0: - 2: 22357 + 0: 4369 + 2: 61166 20,1: - 2: 30037 + 0: 4369 + 2: 61166 20,2: - 2: 21845 + 0: 17 + 2: 65262 20,3: - 2: 30039 + 2: 64767 + 0: 512 17,5: 2: 71 + 20,4: + 2: 1 + 21,0: + 2: 16 + 21,1: + 2: 256 + 21,2: + 2: 4096 + 21,-1: + 2: 1 -14,-4: 0: 65520 -4,-18: @@ -10909,7 +11109,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -10921,11 +11120,12 @@ entities: - 0 - 0 - 0 + - 0 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -11035,12 +11235,6 @@ entities: parent: 5895 - type: InstantAction container: 5895 - - uid: 6214 - components: - - type: Transform - parent: 6212 - - type: InstantAction - container: 6212 - uid: 9079 components: - type: Transform @@ -11083,6 +11277,30 @@ entities: parent: 27129 - type: InstantAction container: 27129 + - uid: 28700 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 + - uid: 28706 + components: + - type: Transform + parent: 28705 + - type: InstantAction + container: 28705 + - uid: 28708 + components: + - type: Transform + parent: 28707 + - type: InstantAction + container: 28707 + - uid: 28710 + components: + - type: Transform + parent: 28709 + - type: InstantAction + container: 28709 - uid: 30712 components: - type: Transform @@ -11101,6 +11319,14 @@ entities: parent: 30713 - type: InstantAction container: 30713 +- proto: ActionToggleJetpack + entities: + - uid: 28699 + components: + - type: Transform + parent: 28698 + - type: InstantAction + container: 28698 - proto: ActionToggleLight entities: - uid: 5596 @@ -11209,20 +11435,6 @@ entities: - 2762 - 3994 - 28345 - - uid: 447 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 12 - - type: DeviceList - devices: - - 4786 - - 4738 - - 9994 - - 9995 - - 5310 - - 4685 - - 9294 - uid: 448 components: - type: Transform @@ -11230,10 +11442,8 @@ entities: parent: 12 - type: DeviceList devices: - - 10001 + - 10811 - 5298 - - 5294 - - 5409 - 9485 - 9303 - 23891 @@ -11387,6 +11597,17 @@ entities: - 2100 - 1250 - 2081 + - uid: 2682 + components: + - type: Transform + pos: 35.5,5.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 2684 + - 26415 + - 4787 - uid: 2852 components: - type: Transform @@ -11437,16 +11658,11 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 12 - - type: DeviceList - devices: - - 9995 - - 5310 - - 4685 - - 4744 - - 4742 - - 4738 - - 9994 - - 27305 + - uid: 3983 + components: + - type: Transform + pos: 16.5,6.5 + parent: 12 - uid: 4418 components: - type: Transform @@ -11461,7 +11677,7 @@ entities: - 7389 - 7388 - 7390 - - 26311 + - 19173 - 26312 - 28364 - 29393 @@ -11474,10 +11690,24 @@ entities: devices: - 28375 - 9321 - - 9294 - 5255 - 10027 - 5305 + - uid: 4906 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 12 + - type: DeviceList + devices: + - 26593 + - 9303 + - 10811 + - 5298 + - 6709 + - 5011 + - 2679 + - 28904 - uid: 6833 components: - type: Transform @@ -11531,17 +11761,6 @@ entities: - 2909 - 346 - 8673 - - uid: 8910 - components: - - type: Transform - pos: 55.5,-2.5 - parent: 12 - - type: DeviceList - devices: - - 26637 - - 5128 - - 26457 - - 27003 - uid: 8914 components: - type: Transform @@ -11678,21 +11897,6 @@ entities: - 3533 - 2762 - 3584 - - uid: 10017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 12 - - type: DeviceList - devices: - - 10001 - - 5298 - - 5294 - - 10000 - - 5409 - - 10002 - - 5281 - uid: 10018 components: - type: Transform @@ -11716,13 +11920,25 @@ entities: - 9315 - 9314 - 9318 - - 9319 - 9305 - 9310 - 9311 - 5280 - 10003 - 10026 + - uid: 11505 + components: + - type: Transform + pos: 30.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 12232 + - 12231 + - 31515 + - 23891 + - 31516 + - 31517 - uid: 12032 components: - type: Transform @@ -12305,37 +12521,16 @@ entities: - 2201 - 19749 - 4153 - - uid: 26937 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - - type: DeviceList - devices: - - 27162 - - 26780 - - uid: 26938 + - uid: 26792 components: - type: Transform - pos: 56.5,3.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - type: DeviceList devices: - - 26924 - - 26639 - - 26940 - - 26979 - - 26441 - - 26928 - - 26949 - - 20793 - - 26923 - - 26941 - - 26931 - - 26935 - - 26932 - - 26933 - - 26934 + - 6212 + - 28752 - uid: 27296 components: - type: Transform @@ -12360,6 +12555,57 @@ entities: - 27280 - 4009 - 4011 + - uid: 27311 + components: + - type: Transform + pos: 52.5,3.5 + parent: 12 + - type: DeviceList + devices: + - 26949 + - 2021 + - 2020 + - 26923 + - 609 + - 2034 + - 26790 + - 15130 + - uid: 27312 + components: + - type: Transform + pos: 52.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 26923 + - 7789 + - 27005 + - 20793 + - uid: 27313 + components: + - type: Transform + pos: 59.5,13.5 + parent: 12 + - type: DeviceList + devices: + - 27309 + - 19292 + - 19188 + - 7807 + - 2359 + - uid: 27314 + components: + - type: Transform + pos: 61.5,7.5 + parent: 12 + - type: DeviceList + devices: + - 7547 + - 5887 + - 9717 + - 27310 + - 2359 + - 2020 - uid: 28270 components: - type: Transform @@ -12662,33 +12908,6 @@ entities: - 9321 - 29981 - 29982 - - uid: 28377 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 27305 - - 4742 - - 4744 - - 9994 - - 4738 - - 9666 - - 2779 - - uid: 28378 - components: - - type: Transform - pos: 25.5,6.5 - parent: 12 - - type: DeviceList - devices: - - 7787 - - 6766 - - 9666 - - 4949 - - 23891 - - 2779 - uid: 28381 components: - type: Transform @@ -12805,11 +13024,6 @@ entities: - 29820 - 29651 - 29784 - - uid: 29868 - components: - - type: Transform - pos: 15.5,20.5 - parent: 12 - uid: 30349 components: - type: Transform @@ -12892,14 +13106,28 @@ entities: devices: - 7357 - 2674 - - 31757 + - 2679 - 31758 - - 31756 + - 19555 - 7806 - 31760 - 31759 - 25681 - 2324 + - 28904 + - uid: 31894 + components: + - type: Transform + pos: 15.5,22.5 + parent: 12 + - type: DeviceList + devices: + - 29872 + - 3954 + - 9560 + - 9488 + - 29869 + - 29870 - proto: AirAlarmVox entities: - uid: 7822 @@ -12954,6 +13182,11 @@ entities: - type: Transform pos: 81.5,-30.5 parent: 12 + - uid: 9787 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 12 - uid: 10982 components: - type: Transform @@ -12989,15 +13222,20 @@ entities: - type: Transform pos: -20.5,61.5 parent: 12 - - uid: 26913 + - uid: 26544 components: - type: Transform - pos: 55.5,-3.5 + pos: 25.5,10.5 parent: 12 - - uid: 28943 + - uid: 26590 components: - type: Transform - pos: 5.5,-18.5 + pos: 2.5,-18.5 + parent: 12 + - uid: 26686 + components: + - type: Transform + pos: 25.5,9.5 parent: 12 - uid: 29112 components: @@ -13084,28 +13322,26 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,52.5 parent: 12 -- proto: AirlockAtmosphericsLocked +- proto: AirlockAtmosphericsGlassLocked entities: - - uid: 5886 - components: - - type: Transform - pos: 56.5,-2.5 - parent: 12 - - uid: 5891 + - uid: 24654 components: - type: Transform - pos: 59.5,-5.5 + rot: 3.141592653589793 rad + pos: 23.5,5.5 parent: 12 - - uid: 5892 + - uid: 25466 components: - type: Transform - pos: 59.5,-4.5 + rot: 3.141592653589793 rad + pos: 23.5,6.5 parent: 12 - - uid: 5921 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 2181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-3.5 + pos: 30.5,1.5 parent: 12 - uid: 7129 components: @@ -13113,11 +13349,32 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-33.5 parent: 12 - - uid: 26623 + - uid: 7224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,3.5 + pos: 20.5,-15.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 22526: + - DoorStatus: DoorBolt + - uid: 22526 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7224: + - DoorStatus: DoorBolt + - uid: 29964 + components: + - type: Transform + pos: 28.5,5.5 parent: 12 - proto: AirlockBarLocked entities: @@ -13381,8 +13638,20 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,29.5 parent: 12 +- proto: AirlockEngineering + entities: + - uid: 26624 + components: + - type: Transform + pos: 17.5,6.5 + parent: 12 - proto: AirlockEngineeringGlassLocked entities: + - uid: 1346 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 12 - uid: 5096 components: - type: Transform @@ -13406,21 +13675,16 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-24.5 parent: 12 - - uid: 5538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - uid: 9127 + - uid: 11005 components: - type: Transform - pos: 17.5,4.5 + pos: 32.5,-1.5 parent: 12 - - uid: 26162 + - uid: 27383 components: - type: Transform - pos: 17.5,5.5 + rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 12 - proto: AirlockEngineeringLocked entities: @@ -13441,12 +13705,6 @@ entities: - type: Transform pos: 32.5,-11.5 parent: 12 - - uid: 2874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 12 - uid: 2891 components: - type: Transform @@ -13470,45 +13728,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 12 - - uid: 4617 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 12 - - uid: 5103 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2010: - - DoorStatus: DoorBolt - 1700: - - DoorStatus: DoorBolt - - uid: 5104 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 1700: - - DoorStatus: DoorBolt - 2010: - - DoorStatus: DoorBolt - uid: 5253 components: - type: Transform @@ -13557,18 +13776,40 @@ entities: - type: Transform pos: 39.5,-36.5 parent: 12 + - uid: 6707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 12 - uid: 7824 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-9.5 parent: 12 + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 12 - uid: 10667 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,14.5 parent: 12 + - uid: 11006 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 12 + - uid: 11007 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 12 - uid: 11351 components: - type: Transform @@ -13581,6 +13822,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,26.5 parent: 12 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 12 + - uid: 15008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,1.5 + parent: 12 - uid: 15705 components: - type: Transform @@ -13613,11 +13866,11 @@ entities: - type: Transform pos: -23.5,58.5 parent: 12 - - uid: 25674 + - uid: 26470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-1.5 + pos: 58.5,7.5 parent: 12 - uid: 27457 components: @@ -13635,6 +13888,12 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 12 + - uid: 29098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 12 - uid: 31074 components: - type: Transform @@ -13661,20 +13920,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 12 -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 27153: - - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 1085 @@ -13713,34 +13958,6 @@ entities: linkedPorts: 1537: - DoorStatus: DoorBolt - - uid: 1700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5103: - - DoorStatus: DoorBolt - 5104: - - DoorStatus: DoorBolt - - uid: 2010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 5104: - - DoorStatus: DoorBolt - 5103: - - DoorStatus: DoorBolt - uid: 2291 components: - type: Transform @@ -13753,47 +13970,6 @@ entities: linkedPorts: 1085: - DoorStatus: DoorBolt - - uid: 3524 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 9176: - - DoorStatus: DoorBolt - 3628: - - DoorStatus: DoorBolt - - uid: 3628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 3524: - - DoorStatus: DoorBolt - 3627: - - DoorStatus: DoorBolt - uid: 6350 components: - type: Transform @@ -13818,128 +13994,124 @@ entities: linkedPorts: 6350: - DoorStatus: DoorBolt - - uid: 7889 + - uid: 11322 components: - type: Transform - pos: 12.5,-3.5 + pos: 7.5,20.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10165: + 12687: - DoorStatus: DoorBolt - - uid: 9176 + - uid: 11379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,1.5 + pos: 63.5,-3.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 8 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 3627: - - DoorStatus: DoorBolt - 9609: + 11390: - DoorStatus: DoorBolt - 3524: - - DoorStatus: DoorBolt - - uid: 9609 + - uid: 11390 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,8.5 + pos: 61.5,-3.5 parent: 12 - type: DeviceLinkSink - invokeCounter: 7 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10657: - - DoorStatus: DoorBolt - 9176: + 11379: - DoorStatus: DoorBolt - - uid: 10165 + - uid: 12687 components: - type: Transform - pos: 14.5,-3.5 + pos: 7.5,22.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7889: + 11322: - DoorStatus: DoorBolt - - uid: 10657 + - uid: 14260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: 31.5,66.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 9609: + 14261: - DoorStatus: DoorBolt - - uid: 11322 + - uid: 14261 components: - type: Transform - pos: 7.5,20.5 + rot: -1.5707963267948966 rad + pos: 31.5,68.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 12687: + 14260: - DoorStatus: DoorBolt - - uid: 12687 + - uid: 19020 components: - type: Transform - pos: 7.5,22.5 + rot: -1.5707963267948966 rad + pos: -53.5,46.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11322: + 19019: - DoorStatus: DoorBolt - - uid: 14260 + - uid: 19663 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,66.5 + pos: 63.5,12.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14261: + 24445: - DoorStatus: DoorBolt - - uid: 14261 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,68.5 + pos: 62.5,10.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14260: + 19663: - DoorStatus: DoorBolt - - uid: 19020 + - uid: 26625 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,46.5 + pos: 15.5,6.5 + parent: 12 + - uid: 26626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 19019: - - DoorStatus: DoorBolt - uid: 31108 components: - type: Transform @@ -14108,62 +14280,49 @@ entities: parent: 12 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 4390 + - uid: 4947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,6.5 + pos: 7.5,-1.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10841: + 7250: - DoorStatus: DoorBolt - - uid: 10841 + - uid: 5024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,4.5 + pos: 22.5,-13.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4390: + 7562: - DoorStatus: DoorBolt - - uid: 26624 + - uid: 7250 components: - type: Transform - pos: 75.5,0.5 + pos: 8.5,-3.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 27137: + 4947: - DoorStatus: DoorBolt - - uid: 27137 + - uid: 7562 components: - type: Transform - pos: 76.5,2.5 + pos: 22.5,-15.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 26624: - - DoorStatus: DoorBolt - - uid: 27153 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 3 - - type: DeviceLinkSource - linkedPorts: - 638: + 5024: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: @@ -14244,30 +14403,6 @@ entities: linkedPorts: 11931: - DoorStatus: DoorBolt - - uid: 2676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7322: - - DoorStatus: DoorBolt - - uid: 7322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2676: - - DoorStatus: DoorBolt - uid: 10785 components: - type: Transform @@ -14718,6 +14853,12 @@ entities: rot: 3.141592653589793 rad pos: -15.5,4.5 parent: 12 + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 12 - uid: 549 components: - type: Transform @@ -14728,6 +14869,12 @@ entities: - type: Transform pos: -13.5,-23.5 parent: 12 + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 12 - uid: 918 components: - type: Transform @@ -14805,11 +14952,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 12 - - uid: 7811 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 12 - uid: 7847 components: - type: Transform @@ -14821,11 +14963,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-25.5 parent: 12 - - uid: 12288 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - uid: 13068 components: - type: Transform @@ -15155,12 +15292,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-32.5 parent: 12 - - uid: 2970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 12 - uid: 3037 components: - type: Transform @@ -15217,10 +15348,23 @@ entities: parent: 12 - proto: AirlockMaintAtmoLocked entities: - - uid: 20776 + - uid: 5070 components: - type: Transform - pos: 54.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 12 + - uid: 11016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - uid: 25481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 parent: 12 - proto: AirlockMaintCargoLocked entities: @@ -15241,11 +15385,22 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 12 - - uid: 28529 + - uid: 7829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 + pos: 7.5,-14.5 + parent: 12 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,11.5 parent: 12 - proto: AirlockMaintGlassLocked entities: @@ -15629,12 +15784,6 @@ entities: - type: Transform pos: 8.5,60.5 parent: 12 - - uid: 25573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - uid: 25595 components: - type: Transform @@ -16607,15 +16756,24 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 4949 + - uid: 4787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,5.5 + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 2682 + - uid: 5011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 - uid: 7350 components: - type: Transform @@ -16632,6 +16790,15 @@ entities: - type: DeviceNetwork deviceLists: - 28363 + - uid: 7547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 7558 components: - type: Transform @@ -16641,6 +16808,24 @@ entities: - type: DeviceNetwork deviceLists: - 70 + - uid: 7789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27312 + - uid: 7807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 - uid: 8916 components: - type: Transform @@ -16800,35 +16985,12 @@ entities: - type: DeviceNetwork deviceLists: - 1699 - - uid: 9995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - uid: 10000 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - uid: 10001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - uid: 10002 components: - type: Transform @@ -16837,7 +16999,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - uid: 10003 components: @@ -17423,48 +17584,15 @@ entities: - type: DeviceNetwork deviceLists: - 20784 - - uid: 26940 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26941 - components: - - type: Transform - pos: 54.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 27003 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 27162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - - uid: 27305 + - uid: 26790 components: - type: Transform - pos: 11.5,2.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 3224 - - 28377 + - 27311 - uid: 27889 components: - type: Transform @@ -17641,6 +17769,15 @@ entities: - type: DeviceNetwork deviceLists: - 28383 + - uid: 28752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 29111 components: - type: Transform @@ -17690,6 +17827,9 @@ entities: - type: Transform pos: 10.5,16.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 30446 components: - type: Transform @@ -17716,6 +17856,15 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 31517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31759 components: - type: Transform @@ -17777,20 +17926,6 @@ entities: actions: !type:Container ents: - 4142 - - uid: 6212 - components: - - type: Transform - parent: 6209 - - type: GasTank - toggleActionEntity: 6214 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6214 - uid: 22527 components: - type: Transform @@ -17816,6 +17951,20 @@ entities: - type: Transform pos: 55.478806,-34.59952 parent: 12 + - uid: 28705 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.361034,9.478294 + parent: 12 + - type: GasTank + toggleActionEntity: 28706 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28706 - uid: 30709 components: - type: Transform @@ -17846,11 +17995,11 @@ entities: parent: 12 - proto: AlwaysPoweredLightExterior entities: - - uid: 22155 + - uid: 3205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,2.5 + pos: 83.5,6.5 parent: 12 - uid: 22157 components: @@ -17858,12 +18007,17 @@ entities: rot: 3.141592653589793 rad pos: 70.5,15.5 parent: 12 + - uid: 31887 + components: + - type: Transform + pos: 74.5,-6.5 + parent: 12 - proto: AmeController entities: - - uid: 2242 + - uid: 4915 components: - type: Transform - pos: 33.5,-2.5 + pos: 36.5,2.5 parent: 12 - proto: AnomalyVesselCircuitboard entities: @@ -17890,6 +18044,12 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 12 - uid: 853 components: - type: Transform @@ -17971,12 +18131,6 @@ entities: - type: Transform pos: 54.5,13.5 parent: 12 - - uid: 4697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 12 - uid: 4868 components: - type: Transform @@ -18001,6 +18155,18 @@ entities: - type: Transform pos: 13.5,-36.5 parent: 12 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 12 + - uid: 7825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 12 - uid: 7899 components: - type: Transform @@ -18033,12 +18199,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 12 - - uid: 9717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 12 - uid: 9899 components: - type: Transform @@ -18328,17 +18488,23 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 12 - - uid: 27295 + - uid: 26652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-36.5 + pos: 51.5,0.5 parent: 12 - - uid: 27326 + - uid: 26780 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,0.5 + pos: 24.5,9.5 + parent: 12 + - uid: 27295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-36.5 parent: 12 - uid: 27355 components: @@ -18352,6 +18518,17 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-52.5 parent: 12 + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 12 + - uid: 28720 + components: + - type: Transform + pos: 59.5,7.5 + parent: 12 - uid: 28969 components: - type: Transform @@ -18467,6 +18644,14 @@ entities: - type: Transform pos: 41.52228,-39.638065 parent: 12 +- proto: ArtistCircuitBoard + entities: + - uid: 28850 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.622931,-15.409775 + parent: 12 - proto: Ashtray entities: - uid: 6886 @@ -18499,6 +18684,14 @@ entities: - type: Transform pos: 11.456245,57.051254 parent: 12 +- proto: AsimovCircuitBoard + entities: + - uid: 28848 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6072965,-1.5317864 + parent: 12 - proto: AsteroidRock entities: - uid: 31015 @@ -18981,16 +19174,36 @@ entities: - type: Transform pos: 22.5,23.5 parent: 12 - - uid: 1352 + - uid: 1351 components: - type: Transform - pos: 26.5,-13.5 + pos: 9.5,5.5 + parent: 12 + - uid: 1700 + components: + - type: Transform + pos: 9.5,-0.5 parent: 12 - uid: 2137 components: - type: Transform pos: 21.5,22.5 parent: 12 + - uid: 2160 + components: + - type: Transform + pos: 7.5,3.5 + parent: 12 + - uid: 2162 + components: + - type: Transform + pos: 7.5,2.5 + parent: 12 + - uid: 2163 + components: + - type: Transform + pos: 7.5,1.5 + parent: 12 - uid: 2178 components: - type: Transform @@ -19006,21 +19219,11 @@ entities: - type: Transform pos: 20.5,24.5 parent: 12 - - uid: 2184 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 12 - uid: 2881 components: - type: Transform pos: 19.5,14.5 parent: 12 - - uid: 2928 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 12 - uid: 2992 components: - type: Transform @@ -19031,305 +19234,130 @@ entities: - type: Transform pos: 18.5,16.5 parent: 12 - - uid: 5030 - components: - - type: Transform - pos: 17.5,15.5 - parent: 12 - - uid: 5418 - components: - - type: Transform - pos: 18.5,15.5 - parent: 12 - - uid: 5544 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 12 - - uid: 5996 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 7198 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 7199 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 7200 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 7201 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 7202 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 7203 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 7204 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 7205 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 7206 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 7207 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 7208 + - uid: 4706 components: - type: Transform - pos: 15.5,-9.5 + pos: 8.5,2.5 parent: 12 - - uid: 7209 + - uid: 4722 components: - type: Transform - pos: 15.5,-10.5 + pos: 9.5,3.5 parent: 12 - - uid: 7210 + - uid: 4730 components: - type: Transform - pos: 15.5,-11.5 + pos: 8.5,1.5 parent: 12 - - uid: 7211 + - uid: 4733 components: - type: Transform - pos: 15.5,-12.5 + pos: 24.5,-0.5 parent: 12 - - uid: 7212 + - uid: 4735 components: - type: Transform - pos: 16.5,-12.5 + pos: 9.5,2.5 parent: 12 - - uid: 7213 + - uid: 4737 components: - type: Transform - pos: 17.5,-12.5 + pos: 10.5,3.5 parent: 12 - - uid: 7214 + - uid: 4738 components: - type: Transform - pos: 18.5,-12.5 + pos: 10.5,1.5 parent: 12 - - uid: 7215 + - uid: 4740 components: - type: Transform - pos: 19.5,-12.5 + pos: 10.5,2.5 parent: 12 - - uid: 7216 + - uid: 4741 components: - type: Transform - pos: 20.5,-12.5 + pos: 25.5,1.5 parent: 12 - - uid: 7217 + - uid: 4742 components: - type: Transform - pos: 21.5,-12.5 + pos: 24.5,1.5 parent: 12 - - uid: 7218 + - uid: 4801 components: - type: Transform - pos: 22.5,-12.5 + pos: 25.5,-4.5 parent: 12 - - uid: 7219 + - uid: 4852 components: - type: Transform - pos: 23.5,-12.5 + pos: 25.5,3.5 parent: 12 - - uid: 7220 + - uid: 4853 components: - type: Transform - pos: 24.5,-12.5 + pos: 24.5,3.5 parent: 12 - - uid: 7221 + - uid: 4865 components: - type: Transform pos: 25.5,-12.5 parent: 12 - - uid: 7222 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 7223 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 7224 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 7225 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 7226 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 7227 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 7228 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 7229 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 7230 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 7231 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 7232 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 7233 - components: - - type: Transform - pos: 27.5,-1.5 - parent: 12 - - uid: 7234 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 7235 - components: - - type: Transform - pos: 27.5,0.5 - parent: 12 - - uid: 7236 + - uid: 4872 components: - type: Transform - pos: 26.5,0.5 + pos: 24.5,-4.5 parent: 12 - - uid: 7237 + - uid: 4873 components: - type: Transform - pos: 25.5,0.5 + pos: 25.5,-2.5 parent: 12 - - uid: 7238 + - uid: 4874 components: - type: Transform - pos: 24.5,0.5 + pos: 24.5,-2.5 parent: 12 - - uid: 7241 + - uid: 4878 components: - type: Transform - pos: 26.5,-0.5 + pos: 8.5,3.5 parent: 12 - - uid: 7242 + - uid: 5026 components: - type: Transform pos: 25.5,-0.5 parent: 12 - - uid: 7243 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 7244 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 7245 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 7246 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 7247 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 7248 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 7249 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 7250 + - uid: 5030 components: - type: Transform - pos: 17.5,-0.5 + pos: 17.5,15.5 parent: 12 - - uid: 7251 + - uid: 5191 components: - type: Transform - pos: 16.5,-0.5 + pos: 24.5,-12.5 parent: 12 - - uid: 7252 + - uid: 5192 components: - type: Transform - pos: 16.5,0.5 + pos: 10.5,5.5 parent: 12 - - uid: 7253 + - uid: 5418 components: - type: Transform - pos: 17.5,0.5 + pos: 18.5,15.5 parent: 12 - - uid: 7254 + - uid: 5812 components: - type: Transform - pos: 18.5,0.5 + pos: 9.5,1.5 parent: 12 - - uid: 7255 + - uid: 5819 components: - type: Transform - pos: 18.5,1.5 + pos: 10.5,-0.5 parent: 12 - uid: 7261 components: @@ -19580,26 +19608,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,16.5 parent: 12 - - uid: 21601 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - - uid: 21616 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 12 - - uid: 23985 - components: - - type: Transform - pos: 67.5,7.5 - parent: 12 - - uid: 24006 - components: - - type: Transform - pos: 67.5,6.5 - parent: 12 - uid: 26206 components: - type: Transform @@ -19610,215 +19618,25 @@ entities: - type: Transform pos: 55.5,19.5 parent: 12 - - uid: 26761 - components: - - type: Transform - pos: 73.5,6.5 - parent: 12 - - uid: 26762 - components: - - type: Transform - pos: 73.5,7.5 - parent: 12 - - uid: 26763 - components: - - type: Transform - pos: 73.5,8.5 - parent: 12 - - uid: 26764 - components: - - type: Transform - pos: 72.5,6.5 - parent: 12 - - uid: 26765 - components: - - type: Transform - pos: 72.5,7.5 - parent: 12 - - uid: 26766 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - - uid: 26767 - components: - - type: Transform - pos: 71.5,6.5 - parent: 12 - - uid: 26768 - components: - - type: Transform - pos: 71.5,8.5 - parent: 12 - - uid: 26769 - components: - - type: Transform - pos: 71.5,7.5 - parent: 12 - - uid: 27052 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 12 - - uid: 27177 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27178 - components: - - type: Transform - pos: 65.5,6.5 - parent: 12 - - uid: 27179 - components: - - type: Transform - pos: 65.5,7.5 - parent: 12 - - uid: 27180 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 28425 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - - uid: 28903 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 28904 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 28905 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 28906 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 12 - - uid: 28907 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 12 - - uid: 28908 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 12 - - uid: 28909 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 12 - - uid: 28910 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 12 - - uid: 28911 - components: - - type: Transform - pos: 17.5,-3.5 - parent: 12 - - uid: 28912 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 12 - - uid: 28913 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 12 - - uid: 28914 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 12 - - uid: 28915 - components: - - type: Transform - pos: 19.5,-1.5 - parent: 12 - - uid: 28916 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 12 - - uid: 28917 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 12 - - uid: 28918 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 12 - - uid: 28919 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 12 - - uid: 28920 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 12 - - uid: 28921 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 12 - - uid: 28922 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 12 - - uid: 28923 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 12 - - uid: 28924 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 12 - - uid: 28925 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 12 - - uid: 28926 + - uid: 28746 components: - type: Transform - pos: 23.5,-10.5 + pos: 9.5,6.5 parent: 12 - - uid: 28927 + - uid: 28747 components: - type: Transform - pos: 19.5,-10.5 + pos: 10.5,6.5 parent: 12 - - uid: 28928 + - uid: 28748 components: - type: Transform - pos: 18.5,-10.5 + pos: 11.5,6.5 parent: 12 - - uid: 28998 + - uid: 28749 components: - type: Transform - pos: 26.5,-4.5 + pos: 12.5,6.5 parent: 12 - proto: AtmosFixFreezerMarker entities: @@ -19884,54 +19702,39 @@ entities: parent: 12 - proto: AtmosFixNitrogenMarker entities: - - uid: 26956 - components: - - type: Transform - pos: 59.5,7.5 - parent: 12 - - uid: 26959 + - uid: 4881 components: - type: Transform - pos: 59.5,8.5 + pos: 25.5,-8.5 parent: 12 - - uid: 26968 + - uid: 4883 components: - type: Transform - pos: 59.5,6.5 + pos: 24.5,-8.5 parent: 12 - proto: AtmosFixOxygenMarker entities: - - uid: 26960 - components: - - type: Transform - pos: 61.5,6.5 - parent: 12 - - uid: 26963 + - uid: 4885 components: - type: Transform - pos: 61.5,7.5 + pos: 25.5,-10.5 parent: 12 - - uid: 26975 + - uid: 4888 components: - type: Transform - pos: 61.5,8.5 + pos: 24.5,-10.5 parent: 12 - proto: AtmosFixPlasmaMarker entities: - - uid: 26737 - components: - - type: Transform - pos: 63.5,6.5 - parent: 12 - - uid: 26974 + - uid: 4877 components: - type: Transform - pos: 63.5,7.5 + pos: 24.5,-6.5 parent: 12 - - uid: 27025 + - uid: 4886 components: - type: Transform - pos: 63.5,8.5 + pos: 25.5,-6.5 parent: 12 - proto: AtmosFixVoxMarker entities: @@ -20020,6 +19823,11 @@ entities: - type: Transform pos: 18.5,-25.5 parent: 12 + - uid: 5542 + components: + - type: Transform + pos: 44.5,0.5 + parent: 12 - proto: BannerGreen entities: - uid: 4944 @@ -20186,11 +19994,11 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-50.5 parent: 12 - - uid: 26822 + - uid: 9418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-5.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 12 - proto: BeachBall entities: @@ -20751,25 +20559,15 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 12 - - uid: 5225 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 12 - - uid: 5226 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 12 - - uid: 5238 + - uid: 5199 components: - type: Transform - pos: 9.5,-4.5 + pos: 7.5,1.5 parent: 12 - - uid: 5528 + - uid: 7554 components: - type: Transform - pos: 9.5,-1.5 + pos: 7.5,2.5 parent: 12 - uid: 7778 components: @@ -20816,20 +20614,25 @@ entities: - type: Transform pos: 59.5,-13.5 parent: 12 - - uid: 27214 + - uid: 26072 components: - type: Transform - pos: 73.5,8.5 + pos: 61.5,1.5 parent: 12 - - uid: 27216 + - uid: 26537 components: - type: Transform - pos: 72.5,8.5 + pos: 60.5,1.5 parent: 12 - - uid: 27217 + - uid: 26580 components: - type: Transform - pos: 71.5,8.5 + pos: 7.5,3.5 + parent: 12 + - uid: 26594 + components: + - type: Transform + pos: 62.5,1.5 parent: 12 - proto: BlastDoorOpen entities: @@ -21079,13 +20882,12 @@ entities: parent: 12 - proto: BookAtmosAirAlarms entities: - - uid: 6287 + - uid: 29962 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -2.6867397195928788E-14 rad + pos: 31.427582,-0.63683224 + parent: 12 - uid: 31837 components: - type: Transform @@ -21094,13 +20896,11 @@ entities: canCollide: False - proto: BookAtmosDistro entities: - - uid: 6260 + - uid: 20542 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.610678,-2.4266233 + parent: 12 - uid: 31834 components: - type: Transform @@ -21109,13 +20909,11 @@ entities: canCollide: False - proto: BookAtmosVentsMore entities: - - uid: 6259 + - uid: 29961 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 31.687996,-0.33453882 + parent: 12 - uid: 31835 components: - type: Transform @@ -21124,13 +20922,11 @@ entities: canCollide: False - proto: BookAtmosWaste entities: - - uid: 6261 + - uid: 29960 components: - type: Transform - parent: 102 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 29.346788,-2.2505753 + parent: 12 - uid: 31836 components: - type: Transform @@ -21601,16 +21397,6 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 12 - - uid: 21976 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 12 - - uid: 21977 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 12 - uid: 22189 components: - type: Transform @@ -21644,6 +21430,11 @@ entities: - type: Transform pos: 11.5,63.5 parent: 12 + - uid: 28846 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 12 - uid: 29122 components: - type: Transform @@ -21670,8 +21461,8 @@ entities: - uid: 2071 components: - type: Transform - rot: 6.283185307179586 rad - pos: -4.4788017,-12.486532 + rot: -18.84955592153876 rad + pos: -4.4606214,-12.385475 parent: 12 - proto: BorgModuleGPS entities: @@ -21694,6 +21485,12 @@ entities: parent: 12 - proto: BorgModuleRadiationDetection entities: + - uid: 22075 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 58.524303,12.480953 + parent: 12 - uid: 28441 components: - type: Transform @@ -22210,16 +22007,10 @@ entities: - uid: 15386 components: - type: Transform - pos: 42.45081,53.59018 + pos: 41.534676,52.435265 parent: 12 - proto: ButtonFrameCaution entities: - - uid: 2253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - uid: 17549 components: - type: Transform @@ -22248,23 +22039,17 @@ entities: rot: 3.141592653589793 rad pos: -36.5,21.5 parent: 12 - - uid: 27211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - uid: 27215 + - uid: 27246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 parent: 12 - - uid: 27246 + - uid: 28721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-28.5 + pos: 56.5,3.5 parent: 12 - uid: 29835 components: @@ -22362,18 +22147,18 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,54.5 parent: 12 - - uid: 25199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26380 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 + - uid: 26789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 - uid: 28554 components: - type: Transform @@ -22385,6 +22170,17 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-19.5 parent: 12 + - uid: 28722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - uid: 28740 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 - uid: 29345 components: - type: Transform @@ -22474,6 +22270,16 @@ entities: - type: Transform pos: 52.5,-11.5 parent: 12 + - uid: 194 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 12 + - uid: 253 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 335 components: - type: Transform @@ -22494,6 +22300,21 @@ entities: - type: Transform pos: 9.5,-34.5 parent: 12 + - uid: 356 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 408 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 447 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 456 components: - type: Transform @@ -22504,6 +22325,11 @@ entities: - type: Transform pos: -45.5,1.5 parent: 12 + - uid: 501 + components: + - type: Transform + pos: 15.5,21.5 + parent: 12 - uid: 628 components: - type: Transform @@ -22539,6 +22365,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 + - uid: 924 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 12 - uid: 961 components: - type: Transform @@ -22549,6 +22380,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1074 + components: + - type: Transform + pos: 24.5,11.5 + parent: 12 - uid: 1077 components: - type: Transform @@ -22559,6 +22395,11 @@ entities: - type: Transform pos: 37.5,6.5 parent: 12 + - uid: 1091 + components: + - type: Transform + pos: 24.5,12.5 + parent: 12 - uid: 1315 components: - type: Transform @@ -23679,40 +23520,10 @@ entities: - type: Transform pos: -43.5,-14.5 parent: 12 - - uid: 2034 - components: - - type: Transform - pos: 8.5,4.5 - parent: 12 - - uid: 2039 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 12 - - uid: 2052 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2053 - components: - - type: Transform - pos: 10.5,-4.5 - parent: 12 - - uid: 2086 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 12 - - uid: 2087 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 2105 + - uid: 2136 components: - type: Transform - pos: 25.5,-12.5 + pos: 24.5,3.5 parent: 12 - uid: 2142 components: @@ -23734,70 +23545,30 @@ entities: - type: Transform pos: -25.5,10.5 parent: 12 - - uid: 2149 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 12 - - uid: 2150 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 2152 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - uid: 2153 components: - type: Transform - pos: 78.5,7.5 + pos: 25.5,9.5 parent: 12 - uid: 2155 components: - type: Transform - pos: 78.5,6.5 + pos: 24.5,9.5 parent: 12 - uid: 2156 components: - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 2157 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 2158 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 2159 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 2160 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 2162 - components: - - type: Transform - pos: 61.5,12.5 + pos: 24.5,10.5 parent: 12 - - uid: 2163 + - uid: 2170 components: - type: Transform - pos: 62.5,12.5 + pos: 27.5,-0.5 parent: 12 - - uid: 2164 + - uid: 2183 components: - type: Transform - pos: 10.5,-5.5 + pos: 25.5,-12.5 parent: 12 - uid: 2202 components: @@ -23984,6 +23755,16 @@ entities: - type: Transform pos: 67.5,44.5 parent: 12 + - uid: 2338 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 12 + - uid: 2342 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 12 - uid: 2346 components: - type: Transform @@ -23994,6 +23775,11 @@ entities: - type: Transform pos: 39.5,-1.5 parent: 12 + - uid: 2509 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 12 - uid: 2544 components: - type: Transform @@ -24064,6 +23850,11 @@ entities: - type: Transform pos: -4.5,-40.5 parent: 12 + - uid: 2779 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 2796 components: - type: Transform @@ -24109,36 +23900,16 @@ entities: - type: Transform pos: 0.5,-36.5 parent: 12 - - uid: 2981 - components: - - type: Transform - pos: 22.5,4.5 - parent: 12 - uid: 3017 components: - type: Transform pos: 10.5,-38.5 parent: 12 - - uid: 3019 - components: - - type: Transform - pos: 22.5,2.5 - parent: 12 - - uid: 3020 - components: - - type: Transform - pos: 23.5,2.5 - parent: 12 - uid: 3034 components: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 3089 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3102 components: - type: Transform @@ -24159,10 +23930,15 @@ entities: - type: Transform pos: 54.5,-21.5 parent: 12 - - uid: 3127 + - uid: 3129 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 12 + - uid: 3130 components: - type: Transform - pos: 66.5,2.5 + pos: 11.5,-11.5 parent: 12 - uid: 3157 components: @@ -25129,21 +24905,56 @@ entities: - type: Transform pos: -23.5,-1.5 parent: 12 - - uid: 3690 + - uid: 3524 components: - type: Transform - pos: 16.5,8.5 + pos: 12.5,-11.5 parent: 12 - - uid: 3691 + - uid: 3553 components: - type: Transform - pos: 16.5,7.5 + pos: 9.5,-11.5 + parent: 12 + - uid: 3556 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 12 + - uid: 3626 + components: + - type: Transform + pos: 27.5,0.5 + parent: 12 + - uid: 3627 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 12 + - uid: 3709 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 + - uid: 3713 + components: + - type: Transform + pos: 26.5,6.5 + parent: 12 + - uid: 3777 + components: + - type: Transform + pos: 14.5,5.5 parent: 12 - uid: 3892 components: - type: Transform pos: 51.5,12.5 parent: 12 + - uid: 3895 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 - uid: 3901 components: - type: Transform @@ -25154,6 +24965,16 @@ entities: - type: Transform pos: 40.5,3.5 parent: 12 + - uid: 3978 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 12 + - uid: 3980 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 12 - uid: 4000 components: - type: Transform @@ -25164,6 +24985,11 @@ entities: - type: Transform pos: 10.5,-46.5 parent: 12 + - uid: 4064 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 12 - uid: 4119 components: - type: Transform @@ -25484,6 +25310,26 @@ entities: - type: Transform pos: 1.5,-27.5 parent: 12 + - uid: 4388 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 4410 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 12 + - uid: 4411 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 4414 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 - uid: 4560 components: - type: Transform @@ -25494,6 +25340,36 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 12 + - uid: 4567 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 12 + - uid: 4569 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 12 + - uid: 4572 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 12 + - uid: 4578 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 + - uid: 4583 + components: + - type: Transform + pos: 27.5,3.5 + parent: 12 + - uid: 4586 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 12 - uid: 4587 components: - type: Transform @@ -25504,15 +25380,40 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 4721 + - uid: 4590 components: - type: Transform - pos: 10.5,-37.5 + pos: 26.5,-12.5 parent: 12 - - uid: 4730 + - uid: 4597 components: - type: Transform - pos: 10.5,-1.5 + pos: 21.5,-10.5 + parent: 12 + - uid: 4599 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 12 + - uid: 4603 + components: + - type: Transform + pos: 23.5,3.5 + parent: 12 + - uid: 4612 + components: + - type: Transform + pos: 22.5,3.5 + parent: 12 + - uid: 4619 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 4721 + components: + - type: Transform + pos: 10.5,-37.5 parent: 12 - uid: 4739 components: @@ -25524,40 +25425,55 @@ entities: - type: Transform pos: 6.5,-20.5 parent: 12 - - uid: 4795 + - uid: 4786 components: - type: Transform - pos: 10.5,0.5 + pos: 25.5,3.5 + parent: 12 + - uid: 4788 + components: + - type: Transform + pos: 11.5,1.5 parent: 12 - uid: 4857 components: - type: Transform pos: 57.5,58.5 parent: 12 - - uid: 4865 + - uid: 4903 + components: + - type: Transform + pos: -1.5,2.5 + parent: 12 + - uid: 4908 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 12 + - uid: 5013 components: - type: Transform pos: 11.5,3.5 parent: 12 - - uid: 4886 + - uid: 5014 components: - type: Transform - pos: 11.5,2.5 + pos: 12.5,1.5 parent: 12 - - uid: 4903 + - uid: 5022 components: - type: Transform - pos: -1.5,2.5 + pos: 22.5,-11.5 parent: 12 - - uid: 4908 + - uid: 5029 components: - type: Transform - pos: -23.5,-11.5 + pos: 13.5,0.5 parent: 12 - - uid: 4976 + - uid: 5032 components: - type: Transform - pos: 63.5,-5.5 + pos: 21.5,-9.5 parent: 12 - uid: 5038 components: @@ -25569,15 +25485,35 @@ entities: - type: Transform pos: -28.5,8.5 parent: 12 + - uid: 5080 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 + - uid: 5081 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 12 + - uid: 5082 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 12 - uid: 5083 components: - type: Transform - pos: 24.5,4.5 + pos: 11.5,2.5 parent: 12 - - uid: 5109 + - uid: 5091 components: - type: Transform - pos: 10.5,1.5 + pos: 29.5,2.5 + parent: 12 + - uid: 5118 + components: + - type: Transform + pos: 4.5,-19.5 parent: 12 - uid: 5133 components: @@ -25609,15 +25545,25 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 12 - - uid: 5221 + - uid: 5184 components: - type: Transform - pos: 8.5,3.5 + pos: 29.5,5.5 parent: 12 - - uid: 5230 + - uid: 5188 components: - type: Transform - pos: 10.5,2.5 + pos: 21.5,-3.5 + parent: 12 + - uid: 5222 + components: + - type: Transform + pos: 14.5,4.5 + parent: 12 + - uid: 5226 + components: + - type: Transform + pos: 21.5,2.5 parent: 12 - uid: 5249 components: @@ -25629,15 +25575,45 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 + - uid: 5363 + components: + - type: Transform + pos: 29.5,3.5 + parent: 12 + - uid: 5377 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 12 + - uid: 5404 + components: + - type: Transform + pos: 37.5,2.5 + parent: 12 + - uid: 5429 + components: + - type: Transform + pos: 27.5,1.5 + parent: 12 + - uid: 5481 + components: + - type: Transform + pos: 34.5,0.5 + parent: 12 + - uid: 5503 + components: + - type: Transform + pos: 36.5,4.5 + parent: 12 - uid: 5535 components: - type: Transform pos: 40.5,0.5 parent: 12 - - uid: 5547 + - uid: 5544 components: - type: Transform - pos: 27.5,-1.5 + pos: 26.5,3.5 parent: 12 - uid: 5554 components: @@ -25649,6 +25625,36 @@ entities: - type: Transform pos: 51.5,10.5 parent: 12 + - uid: 5598 + components: + - type: Transform + pos: 27.5,2.5 + parent: 12 + - uid: 5601 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 12 + - uid: 5627 + components: + - type: Transform + pos: 12.5,3.5 + parent: 12 + - uid: 5631 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 12 + - uid: 5632 + components: + - type: Transform + pos: 25.5,5.5 + parent: 12 + - uid: 5633 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 - uid: 5643 components: - type: Transform @@ -25749,95 +25755,35 @@ entities: - type: Transform pos: 35.5,-0.5 parent: 12 - - uid: 5664 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 5665 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 5666 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 5667 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 5668 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - uid: 5669 components: - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 5670 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5671 - components: - - type: Transform - pos: 27.5,-3.5 + pos: 5.5,-19.5 parent: 12 - uid: 5672 components: - type: Transform - pos: 27.5,-4.5 + pos: 10.5,-1.5 parent: 12 - uid: 5673 components: - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5674 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5675 - components: - - type: Transform - pos: 27.5,-7.5 + pos: 12.5,-1.5 parent: 12 - uid: 5676 components: - type: Transform - pos: 27.5,-8.5 + pos: 21.5,-7.5 parent: 12 - uid: 5677 components: - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5678 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5679 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 5680 - components: - - type: Transform - pos: 27.5,-12.5 + pos: 11.5,-1.5 parent: 12 - uid: 5681 components: - type: Transform - pos: 28.5,-10.5 + pos: 13.5,1.5 parent: 12 - uid: 5683 components: @@ -25960,64 +25906,14 @@ entities: pos: 30.5,-16.5 parent: 12 - uid: 5708 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 12 - - uid: 5710 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 12 - - uid: 5711 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 5712 components: - type: Transform pos: 23.5,-12.5 parent: 12 - - uid: 5713 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 5714 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 5715 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - uid: 5716 components: - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 5717 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 5718 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 12 - - uid: 5719 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 5720 - components: - - type: Transform - pos: 15.5,-12.5 + pos: 21.5,-6.5 parent: 12 - uid: 5721 components: @@ -26204,11 +26100,6 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 12 - - uid: 5759 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 5760 components: - type: Transform @@ -26379,120 +26270,15 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 12 - - uid: 5795 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 12 - - uid: 5796 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 12 - - uid: 5797 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - - uid: 5798 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5799 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5800 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5801 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5802 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5804 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 5806 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 5808 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 5809 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 5810 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 5811 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 5812 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - uid: 5813 components: - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 5814 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 5815 - components: - - type: Transform - pos: 15.5,0.5 + pos: 28.5,5.5 parent: 12 - uid: 5816 components: - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 5817 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 5818 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 5819 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 5820 - components: - - type: Transform - pos: 15.5,5.5 + pos: 27.5,5.5 parent: 12 - uid: 5821 components: @@ -26524,110 +26310,40 @@ entities: - type: Transform pos: 21.5,5.5 parent: 12 - - uid: 5830 - components: - - type: Transform - pos: 24.5,3.5 - parent: 12 - - uid: 5831 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 5832 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - - uid: 5833 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 5835 - components: - - type: Transform - pos: 14.5,5.5 - parent: 12 - uid: 5837 components: - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 5838 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 5839 - components: - - type: Transform - pos: 18.5,-0.5 + pos: 21.5,-1.5 parent: 12 - uid: 5840 components: - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5841 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - - uid: 5842 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - - uid: 5843 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - - uid: 5844 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 12 - - uid: 5845 - components: - - type: Transform - pos: 9.5,-10.5 + pos: 26.5,5.5 parent: 12 - uid: 5846 components: - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 5847 - components: - - type: Transform - pos: 9.5,-6.5 + pos: 21.5,-4.5 parent: 12 - uid: 5849 components: - type: Transform - pos: 9.5,-4.5 - parent: 12 - - uid: 5850 - components: - - type: Transform - pos: 9.5,-3.5 + pos: 21.5,1.5 parent: 12 - - uid: 5851 + - uid: 5855 components: - type: Transform - pos: 9.5,-2.5 + pos: 24.5,-12.5 parent: 12 - - uid: 5852 + - uid: 5859 components: - type: Transform - pos: 9.5,-1.5 + pos: 21.5,-5.5 parent: 12 - - uid: 5922 + - uid: 5860 components: - type: Transform - pos: 67.5,2.5 + pos: 15.5,-3.5 parent: 12 - uid: 5927 components: @@ -26639,30 +26355,20 @@ entities: - type: Transform pos: 39.5,4.5 parent: 12 - - uid: 6006 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 6007 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6009 + - uid: 6020 components: - type: Transform - pos: 20.5,3.5 + pos: 37.5,1.5 parent: 12 - - uid: 6010 + - uid: 6029 components: - type: Transform - pos: 20.5,1.5 + pos: 37.5,0.5 parent: 12 - - uid: 6011 + - uid: 6033 components: - type: Transform - pos: 21.5,1.5 + pos: 22.5,-12.5 parent: 12 - uid: 6034 components: @@ -26764,10 +26470,10 @@ entities: - type: Transform pos: 14.5,-37.5 parent: 12 - - uid: 6707 + - uid: 6708 components: - type: Transform - pos: 54.5,-5.5 + pos: 35.5,0.5 parent: 12 - uid: 6838 components: @@ -26784,6 +26490,11 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 12 + - uid: 6899 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 12 - uid: 6906 components: - type: Transform @@ -27119,6 +26830,26 @@ entities: - type: Transform pos: 32.5,-38.5 parent: 12 + - uid: 7202 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 7213 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 12 + - uid: 7217 + components: + - type: Transform + pos: 21.5,0.5 + parent: 12 + - uid: 7223 + components: + - type: Transform + pos: 37.5,3.5 + parent: 12 - uid: 7258 components: - type: Transform @@ -27134,6 +26865,11 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 7354 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 - uid: 7355 components: - type: Transform @@ -27174,26 +26910,6 @@ entities: - type: Transform pos: -42.5,52.5 parent: 12 - - uid: 7549 - components: - - type: Transform - pos: 56.5,2.5 - parent: 12 - - uid: 7554 - components: - - type: Transform - pos: 58.5,2.5 - parent: 12 - - uid: 7555 - components: - - type: Transform - pos: 60.5,2.5 - parent: 12 - - uid: 7556 - components: - - type: Transform - pos: 63.5,2.5 - parent: 12 - uid: 7564 components: - type: Transform @@ -27204,21 +26920,6 @@ entities: - type: Transform pos: 5.5,-26.5 parent: 12 - - uid: 7766 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 7767 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 7768 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - uid: 7777 components: - type: Transform @@ -27229,20 +26930,15 @@ entities: - type: Transform pos: 54.5,12.5 parent: 12 - - uid: 7782 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 7783 + - uid: 7827 components: - type: Transform - pos: 72.5,12.5 + pos: 13.5,-3.5 parent: 12 - - uid: 7786 + - uid: 7830 components: - type: Transform - pos: 69.5,12.5 + pos: 12.5,-3.5 parent: 12 - uid: 7902 components: @@ -28449,11 +28145,6 @@ entities: - type: Transform pos: 43.5,-9.5 parent: 12 - - uid: 8439 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - uid: 8463 components: - type: Transform @@ -28574,6 +28265,11 @@ entities: - type: Transform pos: 10.5,-45.5 parent: 12 + - uid: 8979 + components: + - type: Transform + pos: 33.5,0.5 + parent: 12 - uid: 8995 components: - type: Transform @@ -28724,11 +28420,6 @@ entities: - type: Transform pos: 42.5,-35.5 parent: 12 - - uid: 9168 - components: - - type: Transform - pos: 23.5,4.5 - parent: 12 - uid: 9170 components: - type: Transform @@ -28909,6 +28600,16 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 12 + - uid: 9294 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 12 + - uid: 9300 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 12 - uid: 9376 components: - type: Transform @@ -28949,41 +28650,11 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 12 - - uid: 9424 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 9430 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 9432 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 9436 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - uid: 9438 components: - type: Transform pos: 22.5,5.5 parent: 12 - - uid: 9468 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9481 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - uid: 9520 components: - type: Transform @@ -29024,11 +28695,6 @@ entities: - type: Transform pos: 10.5,22.5 parent: 12 - - uid: 9588 - components: - - type: Transform - pos: 28.5,2.5 - parent: 12 - uid: 9616 components: - type: Transform @@ -29044,11 +28710,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 12 - - uid: 9684 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - uid: 9723 components: - type: Transform @@ -29229,16 +28890,6 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 12 - - uid: 10025 - components: - - type: Transform - pos: 10.5,-0.5 - parent: 12 - - uid: 10306 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 10328 components: - type: Transform @@ -29404,15 +29055,65 @@ entities: - type: Transform pos: -27.5,-0.5 parent: 12 + - uid: 10796 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 12 + - uid: 10797 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 12 + - uid: 10798 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 12 + - uid: 10799 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 12 + - uid: 10800 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 12 + - uid: 10801 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 12 + - uid: 10804 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 + - uid: 10805 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 + - uid: 10806 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 12 - uid: 10807 components: - type: Transform pos: 13.5,20.5 parent: 12 - - uid: 11016 + - uid: 10809 components: - type: Transform - pos: 8.5,2.5 + pos: 8.5,-7.5 + parent: 12 + - uid: 10824 + components: + - type: Transform + pos: 8.5,-6.5 parent: 12 - uid: 11129 components: @@ -29429,11 +29130,6 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 12 - - uid: 11276 - components: - - type: Transform - pos: 8.5,1.5 - parent: 12 - uid: 11282 components: - type: Transform @@ -29474,6 +29170,11 @@ entities: - type: Transform pos: 43.5,26.5 parent: 12 + - uid: 11388 + components: + - type: Transform + pos: 26.5,8.5 + parent: 12 - uid: 11399 components: - type: Transform @@ -30074,21 +29775,71 @@ entities: - type: Transform pos: 12.5,22.5 parent: 12 + - uid: 12288 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 12 + - uid: 12310 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 12 + - uid: 12315 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 12 + - uid: 12322 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 12 - uid: 12636 components: - type: Transform pos: 52.5,12.5 parent: 12 + - uid: 12646 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 12 + - uid: 12698 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 12 - uid: 12714 components: - type: Transform pos: 3.5,16.5 parent: 12 + - uid: 12722 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 12 + - uid: 12724 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 12 - uid: 12910 components: - type: Transform pos: 30.5,19.5 parent: 12 + - uid: 12912 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 12 + - uid: 12913 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 12 - uid: 12926 components: - type: Transform @@ -30264,11 +30015,6 @@ entities: - type: Transform pos: -14.5,-1.5 parent: 12 - - uid: 13169 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 12 - uid: 13224 components: - type: Transform @@ -33764,11 +33510,6 @@ entities: - type: Transform pos: 4.5,27.5 parent: 12 - - uid: 16415 - components: - - type: Transform - pos: 72.5,8.5 - parent: 12 - uid: 16425 components: - type: Transform @@ -33809,26 +33550,6 @@ entities: - type: Transform pos: -12.5,-5.5 parent: 12 - - uid: 16658 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 16660 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 16663 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 16664 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - uid: 16842 components: - type: Transform @@ -34579,10 +34300,10 @@ entities: - type: Transform pos: -28.5,7.5 parent: 12 - - uid: 17772 + - uid: 17843 components: - type: Transform - pos: 11.5,4.5 + pos: 23.5,4.5 parent: 12 - uid: 17934 components: @@ -35119,11 +34840,6 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 12 - - uid: 18304 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 18305 components: - type: Transform @@ -35564,11 +35280,6 @@ entities: - type: Transform pos: 37.5,-1.5 parent: 12 - - uid: 18758 - components: - - type: Transform - pos: 68.5,2.5 - parent: 12 - uid: 18898 components: - type: Transform @@ -35774,36 +35485,6 @@ entities: - type: Transform pos: -45.5,22.5 parent: 12 - - uid: 19173 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 19175 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 19176 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 19188 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 19189 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 19195 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - uid: 19556 components: - type: Transform @@ -35899,6 +35580,11 @@ entities: - type: Transform pos: -19.5,-62.5 parent: 12 + - uid: 20552 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 20570 components: - type: Transform @@ -36074,10 +35760,10 @@ entities: - type: Transform pos: -39.5,55.5 parent: 12 - - uid: 20606 + - uid: 20607 components: - type: Transform - pos: 73.5,11.5 + pos: 17.5,-11.5 parent: 12 - uid: 20608 components: @@ -36909,11 +36595,6 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 12 - - uid: 20876 - components: - - type: Transform - pos: 64.5,2.5 - parent: 12 - uid: 20882 components: - type: Transform @@ -37614,21 +37295,6 @@ entities: - type: Transform pos: -46.5,53.5 parent: 12 - - uid: 22158 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - - uid: 22160 - components: - - type: Transform - pos: 76.5,0.5 - parent: 12 - - uid: 22163 - components: - - type: Transform - pos: 75.5,0.5 - parent: 12 - uid: 22217 components: - type: Transform @@ -37684,11 +37350,6 @@ entities: - type: Transform pos: 33.5,-6.5 parent: 12 - - uid: 22289 - components: - - type: Transform - pos: 8.5,5.5 - parent: 12 - uid: 22298 components: - type: Transform @@ -37714,10 +37375,10 @@ entities: - type: Transform pos: -2.5,34.5 parent: 12 - - uid: 22528 + - uid: 23137 components: - type: Transform - pos: 8.5,6.5 + pos: 21.5,4.5 parent: 12 - uid: 23154 components: @@ -39544,6 +39205,21 @@ entities: - type: Transform pos: -26.5,61.5 parent: 12 + - uid: 25463 + components: + - type: Transform + pos: 30.5,4.5 + parent: 12 + - uid: 25465 + components: + - type: Transform + pos: 33.5,4.5 + parent: 12 + - uid: 25483 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 - uid: 25514 components: - type: Transform @@ -39694,140 +39370,155 @@ entities: - type: Transform pos: 59.5,-48.5 parent: 12 - - uid: 26442 + - uid: 26425 components: - type: Transform - pos: 55.5,-5.5 + pos: 1.5,-21.5 + parent: 12 + - uid: 26434 + components: + - type: Transform + pos: 51.5,0.5 + parent: 12 + - uid: 26444 + components: + - type: Transform + pos: 17.5,0.5 parent: 12 - uid: 26446 components: - type: Transform pos: 56.5,-2.5 parent: 12 - - uid: 26453 + - uid: 26456 components: - type: Transform - pos: 56.5,-5.5 + pos: 17.5,3.5 parent: 12 - - uid: 26455 + - uid: 26457 components: - type: Transform - pos: 65.5,8.5 + pos: 17.5,1.5 parent: 12 - uid: 26458 components: - type: Transform - pos: 61.5,-5.5 + pos: 17.5,2.5 parent: 12 - uid: 26459 components: - type: Transform - pos: 57.5,-4.5 + pos: 12.5,-10.5 parent: 12 - uid: 26460 components: - type: Transform - pos: 59.5,-5.5 + pos: 12.5,-9.5 parent: 12 - - uid: 26461 + - uid: 26467 components: - type: Transform - pos: 62.5,2.5 + pos: 26.5,10.5 parent: 12 - - uid: 26462 + - uid: 26468 components: - type: Transform - pos: 57.5,2.5 + pos: 55.5,2.5 parent: 12 - - uid: 26463 + - uid: 26500 components: - type: Transform - pos: 59.5,2.5 + pos: 31.5,4.5 parent: 12 - - uid: 26464 + - uid: 26501 components: - type: Transform - pos: 66.5,-5.5 + pos: 26.5,11.5 parent: 12 - - uid: 26468 + - uid: 26502 components: - type: Transform - pos: 55.5,2.5 + pos: 35.5,4.5 parent: 12 - - uid: 26470 + - uid: 26503 components: - type: Transform - pos: 56.5,-3.5 + pos: 34.5,4.5 parent: 12 - - uid: 26551 + - uid: 26505 components: - type: Transform - pos: 65.5,6.5 + pos: 31.5,5.5 parent: 12 - - uid: 26559 + - uid: 26507 components: - type: Transform - pos: 9.5,1.5 + pos: 31.5,6.5 parent: 12 - - uid: 26580 + - uid: 26508 components: - type: Transform - pos: 65.5,7.5 + pos: 31.5,8.5 parent: 12 - - uid: 26698 + - uid: 26509 components: - type: Transform - pos: 65.5,5.5 + pos: 31.5,7.5 parent: 12 - - uid: 26699 + - uid: 26574 components: - type: Transform - pos: 65.5,4.5 + pos: 15.5,7.5 parent: 12 - - uid: 26700 + - uid: 26589 components: - type: Transform - pos: 65.5,3.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26701 + - uid: 26599 components: - type: Transform - pos: 65.5,2.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26702 + - uid: 26600 components: - type: Transform - pos: 61.5,2.5 + pos: 2.5,-21.5 parent: 12 - - uid: 26703 + - uid: 26615 components: - type: Transform - pos: 61.5,3.5 + pos: 17.5,-10.5 parent: 12 - - uid: 26704 + - uid: 26649 components: - type: Transform - pos: 61.5,4.5 + pos: 17.5,6.5 parent: 12 - - uid: 26705 + - uid: 26674 components: - type: Transform - pos: 61.5,5.5 + pos: 26.5,7.5 parent: 12 - - uid: 26706 + - uid: 26766 components: - type: Transform - pos: 61.5,6.5 + pos: 30.5,10.5 parent: 12 - - uid: 26707 + - uid: 26767 components: - type: Transform - pos: 61.5,7.5 + pos: 30.5,8.5 parent: 12 - - uid: 26708 + - uid: 26768 components: - type: Transform - pos: 61.5,8.5 + pos: 27.5,10.5 + parent: 12 + - uid: 26769 + components: + - type: Transform + pos: 30.5,9.5 parent: 12 - uid: 26770 components: @@ -39854,30 +39545,20 @@ entities: - type: Transform pos: 54.5,5.5 parent: 12 - - uid: 26794 - components: - - type: Transform - pos: 74.5,1.5 - parent: 12 - - uid: 26795 - components: - - type: Transform - pos: 74.5,0.5 - parent: 12 - - uid: 26796 + - uid: 26776 components: - type: Transform - pos: 74.5,-0.5 + pos: 29.5,10.5 parent: 12 - - uid: 26797 + - uid: 26777 components: - type: Transform - pos: 72.5,2.5 + pos: 28.5,10.5 parent: 12 - - uid: 26807 + - uid: 26804 components: - type: Transform - pos: 62.5,-5.5 + pos: 16.5,20.5 parent: 12 - uid: 26812 components: @@ -39894,11 +39575,6 @@ entities: - type: Transform pos: 56.5,-1.5 parent: 12 - - uid: 26815 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - uid: 26817 components: - type: Transform @@ -39924,140 +39600,465 @@ entities: - type: Transform pos: 51.5,-0.5 parent: 12 - - uid: 26823 + - uid: 26838 components: - type: Transform - pos: 74.5,-1.5 + pos: -41.5,52.5 parent: 12 - - uid: 26824 + - uid: 26858 components: - type: Transform - pos: 72.5,3.5 + pos: 57.5,-3.5 parent: 12 - - uid: 26825 + - uid: 26859 components: - type: Transform - pos: 72.5,4.5 + pos: 61.5,-3.5 parent: 12 - - uid: 26826 + - uid: 26860 components: - type: Transform - pos: 72.5,5.5 + pos: 62.5,-3.5 parent: 12 - - uid: 26827 + - uid: 26861 components: - type: Transform - pos: 72.5,6.5 + pos: 58.5,-3.5 parent: 12 - - uid: 26828 + - uid: 26862 + components: + - type: Transform + pos: 59.5,-3.5 + parent: 12 + - uid: 26863 components: - type: Transform - pos: 72.5,7.5 + pos: 60.5,-3.5 parent: 12 - - uid: 26838 + - uid: 26864 components: - type: Transform - pos: -41.5,52.5 + pos: 63.5,-3.5 + parent: 12 + - uid: 26865 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 26867 + components: + - type: Transform + pos: 65.5,-3.5 + parent: 12 + - uid: 26868 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 26869 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26870 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26871 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 + - uid: 26872 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26873 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26874 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 26875 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 26876 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 26877 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 26878 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 26880 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 + - uid: 26883 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 12 + - uid: 26884 + components: + - type: Transform + pos: 77.5,-2.5 parent: 12 - uid: 26886 components: - type: Transform - pos: 60.5,-5.5 + pos: 78.5,-2.5 parent: 12 - uid: 26887 components: - type: Transform - pos: 73.5,-5.5 + pos: 79.5,-2.5 + parent: 12 + - uid: 26888 + components: + - type: Transform + pos: 79.5,-1.5 parent: 12 - uid: 26889 components: - type: Transform - pos: 74.5,-4.5 + pos: 79.5,-0.5 + parent: 12 + - uid: 26890 + components: + - type: Transform + pos: 79.5,0.5 parent: 12 - uid: 26891 components: - type: Transform - pos: 69.5,-5.5 + pos: 79.5,1.5 parent: 12 - - uid: 27000 + - uid: 26895 components: - type: Transform - pos: 65.5,-5.5 + pos: 79.5,2.5 parent: 12 - - uid: 27046 + - uid: 26896 components: - type: Transform - pos: 9.5,31.5 + pos: 79.5,3.5 parent: 12 - - uid: 27109 + - uid: 26897 components: - type: Transform - pos: 41.5,22.5 + pos: 79.5,4.5 parent: 12 - - uid: 27131 + - uid: 26901 components: - type: Transform - pos: 8.5,31.5 + pos: 79.5,5.5 parent: 12 - - uid: 27134 + - uid: 26902 components: - type: Transform - pos: 70.5,-5.5 + pos: 79.5,6.5 parent: 12 - - uid: 27158 + - uid: 26903 components: - type: Transform - pos: 48.5,-8.5 + pos: 79.5,7.5 parent: 12 - - uid: 27159 + - uid: 26904 components: - type: Transform - pos: 48.5,-7.5 + pos: 79.5,8.5 parent: 12 - - uid: 27181 + - uid: 26905 components: - type: Transform - pos: 74.5,-3.5 + pos: 79.5,9.5 parent: 12 - - uid: 27185 + - uid: 26906 components: - type: Transform - pos: 75.5,-3.5 + pos: 79.5,10.5 parent: 12 - - uid: 27186 + - uid: 26907 components: - type: Transform - pos: 67.5,-5.5 + pos: 14.5,21.5 parent: 12 - - uid: 27204 + - uid: 26908 components: - type: Transform - pos: 74.5,-5.5 + pos: 79.5,11.5 parent: 12 - - uid: 27205 + - uid: 26909 components: - type: Transform - pos: 71.5,-5.5 + pos: 78.5,11.5 parent: 12 - - uid: 27206 + - uid: 26910 components: - type: Transform - pos: 72.5,-5.5 + pos: 77.5,11.5 parent: 12 - - uid: 27240 + - uid: 26911 components: - type: Transform - pos: 58.5,-5.5 + pos: 76.5,11.5 parent: 12 - - uid: 27241 + - uid: 26912 components: - type: Transform - pos: 58.5,-4.5 + pos: 75.5,11.5 parent: 12 - - uid: 27242 + - uid: 26913 components: - type: Transform - pos: 64.5,-5.5 + pos: 74.5,11.5 + parent: 12 + - uid: 26914 + components: + - type: Transform + pos: 73.5,11.5 + parent: 12 + - uid: 26915 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 + - uid: 26916 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 + - uid: 26917 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 26918 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 26919 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 26920 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 26921 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 26922 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 26924 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 26928 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 26931 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 26932 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 26933 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 26934 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 26935 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 26936 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26937 + components: + - type: Transform + pos: 65.5,1.5 + parent: 12 + - uid: 26938 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26940 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26942 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26943 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 + - uid: 26945 + components: + - type: Transform + pos: 64.5,12.5 + parent: 12 + - uid: 26950 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 + - uid: 26951 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 + - uid: 26952 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 26953 + components: + - type: Transform + pos: 62.5,10.5 + parent: 12 + - uid: 26954 + components: + - type: Transform + pos: 62.5,8.5 + parent: 12 + - uid: 26956 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26957 + components: + - type: Transform + pos: 62.5,6.5 + parent: 12 + - uid: 26958 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26959 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 + - uid: 26960 + components: + - type: Transform + pos: 62.5,4.5 + parent: 12 + - uid: 26961 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 26962 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 + - uid: 26963 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 + - uid: 26967 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 26968 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 26969 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 + - uid: 26970 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26974 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 27046 + components: + - type: Transform + pos: 9.5,31.5 + parent: 12 + - uid: 27109 + components: + - type: Transform + pos: 41.5,22.5 + parent: 12 + - uid: 27131 + components: + - type: Transform + pos: 8.5,31.5 + parent: 12 + - uid: 27158 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 12 + - uid: 27159 + components: + - type: Transform + pos: 48.5,-7.5 parent: 12 - uid: 27257 components: @@ -40534,16 +40535,6 @@ entities: - type: Transform pos: -54.5,-16.5 parent: 12 - - uid: 27830 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27836 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 12 - uid: 27848 components: - type: Transform @@ -40839,16 +40830,6 @@ entities: - type: Transform pos: 1.5,-22.5 parent: 12 - - uid: 28493 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 12 - - uid: 28494 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 12 - uid: 28495 components: - type: Transform @@ -40924,11 +40905,6 @@ entities: - type: Transform pos: -5.5,9.5 parent: 12 - - uid: 28535 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - uid: 28556 components: - type: Transform @@ -40999,110 +40975,215 @@ entities: - type: Transform pos: 46.5,8.5 parent: 12 - - uid: 28858 - components: - - type: Transform - pos: 74.5,-2.5 - parent: 12 - - uid: 28859 - components: - - type: Transform - pos: 69.5,2.5 - parent: 12 - - uid: 28860 - components: - - type: Transform - pos: 70.5,2.5 - parent: 12 - - uid: 28861 + - uid: 28672 components: - type: Transform - pos: 71.5,2.5 + pos: 59.5,7.5 parent: 12 - - uid: 28862 + - uid: 28678 components: - type: Transform - pos: 73.5,2.5 + pos: 56.5,-3.5 parent: 12 - - uid: 28863 + - uid: 28679 components: - type: Transform - pos: 74.5,2.5 + pos: 59.5,5.5 parent: 12 - - uid: 28864 + - uid: 28680 components: - type: Transform - pos: 73.5,-1.5 + pos: 59.5,6.5 parent: 12 - - uid: 28865 + - uid: 28681 components: - type: Transform - pos: 72.5,-1.5 + pos: 59.5,-1.5 parent: 12 - uid: 28866 components: - type: Transform - pos: 71.5,-1.5 + pos: 57.5,-4.5 parent: 12 - uid: 28867 components: - type: Transform - pos: 70.5,-1.5 + pos: 57.5,-5.5 parent: 12 - uid: 28868 components: - type: Transform - pos: 69.5,-1.5 + pos: 57.5,-6.5 parent: 12 - uid: 28869 components: - type: Transform - pos: 68.5,-1.5 + pos: 56.5,-6.5 parent: 12 - uid: 28870 components: - type: Transform - pos: 67.5,-1.5 + pos: 55.5,-6.5 parent: 12 - uid: 28871 components: - type: Transform - pos: 66.5,-1.5 + pos: 54.5,-6.5 parent: 12 - uid: 28872 components: - type: Transform - pos: 64.5,-1.5 + pos: 53.5,-6.5 parent: 12 - uid: 28873 components: - type: Transform - pos: 63.5,-1.5 + pos: 53.5,-5.5 parent: 12 - uid: 28874 components: - type: Transform - pos: 62.5,-1.5 + pos: 53.5,-4.5 parent: 12 - uid: 28875 components: - type: Transform - pos: 61.5,-1.5 + pos: 53.5,-3.5 parent: 12 - uid: 28876 components: - type: Transform - pos: 65.5,-1.5 + pos: 53.5,-2.5 parent: 12 - uid: 28877 components: - type: Transform - pos: 59.5,-1.5 + pos: 53.5,-1.5 parent: 12 - uid: 28878 components: - type: Transform - pos: 60.5,-1.5 + pos: 59.5,2.5 + parent: 12 + - uid: 28879 + components: + - type: Transform + pos: 60.5,2.5 + parent: 12 + - uid: 28880 + components: + - type: Transform + pos: 61.5,2.5 + parent: 12 + - uid: 28881 + components: + - type: Transform + pos: 61.5,1.5 + parent: 12 + - uid: 28882 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - uid: 28883 + components: + - type: Transform + pos: 61.5,0.5 + parent: 12 + - uid: 28884 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 + - uid: 28885 + components: + - type: Transform + pos: 53.5,5.5 + parent: 12 + - uid: 28887 + components: + - type: Transform + pos: 55.5,5.5 + parent: 12 + - uid: 28890 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 + - uid: 28903 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 28905 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 28906 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 28907 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28908 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 28909 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 28910 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 28911 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 28912 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 28913 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 28914 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 28915 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 28916 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 12 + - uid: 28917 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 12 + - uid: 28918 + components: + - type: Transform + pos: 3.5,-19.5 parent: 12 - uid: 28949 components: @@ -42999,6 +43080,16 @@ entities: - type: Transform pos: -7.5,-55.5 parent: 12 + - uid: 31893 + components: + - type: Transform + pos: 16.5,21.5 + parent: 12 + - uid: 31909 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 - proto: CableApcStack entities: - uid: 16561 @@ -43021,6 +43112,12 @@ entities: - type: Transform pos: -22.691366,-9.292267 parent: 12 + - uid: 28714 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.502815,-6.30376 + parent: 12 - proto: CableApcStack1 entities: - uid: 340 @@ -43091,6 +43188,11 @@ entities: parent: 12 - proto: CableHV entities: + - uid: 16 + components: + - type: Transform + pos: 54.5,7.5 + parent: 12 - uid: 21 components: - type: Transform @@ -43101,11 +43203,21 @@ entities: - type: Transform pos: -9.5,-0.5 parent: 12 + - uid: 105 + components: + - type: Transform + pos: 53.5,8.5 + parent: 12 - uid: 108 components: - type: Transform pos: 5.5,3.5 parent: 12 + - uid: 153 + components: + - type: Transform + pos: 54.5,6.5 + parent: 12 - uid: 192 components: - type: Transform @@ -43116,11 +43228,36 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 12 + - uid: 254 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 - uid: 355 components: - type: Transform pos: 36.5,-1.5 parent: 12 + - uid: 361 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 + - uid: 384 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 12 + - uid: 405 + components: + - type: Transform + pos: 21.5,5.5 + parent: 12 + - uid: 407 + components: + - type: Transform + pos: 58.5,2.5 + parent: 12 - uid: 759 components: - type: Transform @@ -43164,22 +43301,12 @@ entities: - uid: 896 components: - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 920 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - uid: 923 - components: - - type: Transform - pos: 11.5,-2.5 + pos: 18.5,-12.5 parent: 12 - - uid: 924 + - uid: 899 components: - type: Transform - pos: 16.5,4.5 + pos: 39.5,3.5 parent: 12 - uid: 938 components: @@ -43221,6 +43348,11 @@ entities: - type: Transform pos: 7.5,11.5 parent: 12 + - uid: 1170 + components: + - type: Transform + pos: 58.5,4.5 + parent: 12 - uid: 1283 components: - type: Transform @@ -43366,20 +43498,20 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 12 - - uid: 1346 + - uid: 1348 components: - type: Transform - pos: 22.5,-15.5 + pos: -15.5,-30.5 parent: 12 - - uid: 1348 + - uid: 1350 components: - type: Transform - pos: -15.5,-30.5 + pos: 13.5,-12.5 parent: 12 - uid: 1353 components: - type: Transform - pos: 25.5,-15.5 + pos: 19.5,10.5 parent: 12 - uid: 1358 components: @@ -43406,6 +43538,11 @@ entities: - type: Transform pos: -15.5,-25.5 parent: 12 + - uid: 1482 + components: + - type: Transform + pos: 59.5,4.5 + parent: 12 - uid: 1703 components: - type: Transform @@ -43416,6 +43553,31 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 12 + - uid: 1997 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2053 + components: + - type: Transform + pos: 60.5,4.5 + parent: 12 + - uid: 2055 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - uid: 2087 + components: + - type: Transform + pos: 61.5,4.5 + parent: 12 + - uid: 2090 + components: + - type: Transform + pos: 40.5,4.5 + parent: 12 - uid: 2122 components: - type: Transform @@ -43446,25 +43608,30 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 12 - - uid: 2136 + - uid: 2167 components: - type: Transform - pos: 6.5,-6.5 + pos: 48.5,8.5 parent: 12 - - uid: 2181 + - uid: 2176 components: - type: Transform - pos: 33.5,-0.5 + pos: 46.5,8.5 parent: 12 - uid: 2188 components: - type: Transform pos: 2.5,-7.5 parent: 12 - - uid: 2246 + - uid: 2239 components: - type: Transform - pos: 29.5,8.5 + pos: 47.5,8.5 + parent: 12 + - uid: 2255 + components: + - type: Transform + pos: 19.5,-12.5 parent: 12 - uid: 2301 components: @@ -43476,25 +43643,20 @@ entities: - type: Transform pos: 15.5,10.5 parent: 12 - - uid: 2357 - components: - - type: Transform - pos: 37.5,10.5 - parent: 12 - - uid: 2359 + - uid: 2604 components: - type: Transform - pos: 39.5,8.5 + pos: 79.5,0.5 parent: 12 - uid: 2669 components: - type: Transform pos: 39.5,-1.5 parent: 12 - - uid: 2781 + - uid: 2874 components: - type: Transform - pos: 19.5,4.5 + pos: 16.5,-12.5 parent: 12 - uid: 2887 components: @@ -43506,6 +43668,21 @@ entities: - type: Transform pos: -10.5,-23.5 parent: 12 + - uid: 2926 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 12 + - uid: 2927 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 + - uid: 2968 + components: + - type: Transform + pos: 19.5,5.5 + parent: 12 - uid: 2975 components: - type: Transform @@ -43516,10 +43693,10 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 12 - - uid: 3022 + - uid: 3077 components: - type: Transform - pos: 23.5,4.5 + pos: 37.5,3.5 parent: 12 - uid: 3147 components: @@ -43701,45 +43878,15 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 12 - - uid: 3198 - components: - - type: Transform - pos: 37.5,2.5 - parent: 12 - - uid: 3556 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - - uid: 3586 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - uid: 3630 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 12 - - uid: 3631 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - uid: 3632 components: - type: Transform pos: 16.5,5.5 parent: 12 - - uid: 3824 - components: - - type: Transform - pos: 26.5,-4.5 - parent: 12 - - uid: 3978 + - uid: 3894 components: - type: Transform - pos: 28.5,8.5 + pos: 54.5,-3.5 parent: 12 - uid: 3985 components: @@ -43749,7 +43896,7 @@ entities: - uid: 4046 components: - type: Transform - pos: 11.5,1.5 + pos: 13.5,-11.5 parent: 12 - uid: 4058 components: @@ -43781,11 +43928,6 @@ entities: - type: Transform pos: -10.5,-27.5 parent: 12 - - uid: 4185 - components: - - type: Transform - pos: 36.5,2.5 - parent: 12 - uid: 4199 components: - type: Transform @@ -43811,11 +43953,6 @@ entities: - type: Transform pos: 12.5,-18.5 parent: 12 - - uid: 4479 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 12 - uid: 4480 components: - type: Transform @@ -44011,11 +44148,6 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 12 - - uid: 4542 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - uid: 4544 components: - type: Transform @@ -44036,345 +44168,135 @@ entities: - type: Transform pos: 14.5,-16.5 parent: 12 - - uid: 4548 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 12 - uid: 4549 components: - type: Transform pos: 12.5,-16.5 parent: 12 - - uid: 4597 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 4598 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 4599 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 4600 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 4601 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 4603 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 12 - - uid: 4604 + - uid: 4565 components: - type: Transform - pos: 8.5,-6.5 + pos: 53.5,-5.5 parent: 12 - uid: 4605 components: - type: Transform - pos: 9.5,-6.5 - parent: 12 - - uid: 4606 - components: - - type: Transform - pos: 10.5,-6.5 + pos: 53.5,-6.5 parent: 12 - uid: 4607 components: - type: Transform - pos: 11.5,-6.5 - parent: 12 - - uid: 4608 - components: - - type: Transform - pos: 12.5,-6.5 + pos: 6.5,-6.5 parent: 12 - uid: 4609 components: - type: Transform - pos: 13.5,-6.5 - parent: 12 - - uid: 4610 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - uid: 4611 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 4612 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 4619 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4620 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 4621 - components: - - type: Transform - pos: 15.5,-10.5 + pos: 22.5,5.5 parent: 12 - - uid: 4622 + - uid: 4617 components: - type: Transform - pos: 15.5,-9.5 + pos: 17.5,-12.5 parent: 12 - uid: 4623 components: - type: Transform - pos: 15.5,-8.5 + pos: 16.5,-16.5 parent: 12 - uid: 4624 components: - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 4625 - components: - - type: Transform - pos: 15.5,-6.5 + pos: 15.5,-16.5 parent: 12 - uid: 4626 components: - type: Transform - pos: 15.5,-5.5 + pos: 7.5,-6.5 parent: 12 - uid: 4627 components: - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 4628 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 4629 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 4630 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 4631 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 4633 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 12 - - uid: 4634 - components: - - type: Transform - pos: 17.5,-0.5 - parent: 12 - - uid: 4635 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 12 - - uid: 4636 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 4637 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 12 - - uid: 4638 - components: - - type: Transform - pos: 21.5,-0.5 - parent: 12 - - uid: 4639 - components: - - type: Transform - pos: 22.5,-0.5 - parent: 12 - - uid: 4640 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 12 - - uid: 4641 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 12 - - uid: 4642 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 12 - - uid: 4643 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 12 - - uid: 4644 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 12 - - uid: 4645 - components: - - type: Transform - pos: 27.5,-1.5 + pos: 8.5,-6.5 parent: 12 - uid: 4646 components: - type: Transform - pos: 27.5,-2.5 + pos: 71.5,9.5 parent: 12 - - uid: 4647 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 4648 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 4649 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 4650 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 4651 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 4652 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 4653 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 4654 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 4655 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4656 + - uid: 4657 components: - type: Transform - pos: 27.5,-12.5 + pos: 18.5,10.5 parent: 12 - - uid: 4657 + - uid: 4665 components: - type: Transform - pos: 26.5,-12.5 + pos: 21.5,-16.5 parent: 12 - - uid: 4658 + - uid: 4668 components: - type: Transform - pos: 25.5,-12.5 + pos: 74.5,11.5 parent: 12 - - uid: 4659 + - uid: 4679 components: - type: Transform - pos: 24.5,-12.5 + pos: 26.5,5.5 parent: 12 - - uid: 4660 + - uid: 4680 components: - type: Transform - pos: 23.5,-12.5 + pos: 75.5,11.5 parent: 12 - - uid: 4661 + - uid: 4681 components: - type: Transform - pos: 22.5,-12.5 + pos: 77.5,11.5 parent: 12 - - uid: 4662 + - uid: 4691 components: - type: Transform - pos: 21.5,-12.5 + pos: -14.5,-23.5 parent: 12 - - uid: 4663 + - uid: 4692 components: - type: Transform - pos: 20.5,-12.5 + pos: 76.5,11.5 parent: 12 - - uid: 4664 + - uid: 4713 components: - type: Transform - pos: 19.5,-12.5 + pos: -10.5,-22.5 parent: 12 - - uid: 4665 + - uid: 4745 components: - type: Transform - pos: 18.5,-12.5 + pos: 25.5,5.5 parent: 12 - - uid: 4666 + - uid: 4755 components: - type: Transform - pos: 17.5,-12.5 + pos: 79.5,7.5 parent: 12 - - uid: 4667 + - uid: 4756 components: - type: Transform - pos: 16.5,-12.5 + pos: 79.5,4.5 parent: 12 - - uid: 4691 + - uid: 4766 components: - type: Transform - pos: -14.5,-23.5 + pos: 79.5,1.5 parent: 12 - - uid: 4713 + - uid: 4785 components: - type: Transform - pos: -10.5,-22.5 + pos: 14.5,-12.5 parent: 12 - - uid: 4735 + - uid: 4799 components: - type: Transform - pos: 14.5,-7.5 + pos: 25.5,-16.5 parent: 12 - uid: 4858 components: @@ -44406,155 +44328,185 @@ entities: - type: Transform pos: 40.5,0.5 parent: 12 + - uid: 4895 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 + - uid: 4917 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 - uid: 4919 components: - type: Transform pos: 34.5,-1.5 parent: 12 - - uid: 4970 + - uid: 4929 components: - type: Transform - pos: 42.5,-0.5 + pos: 75.5,-2.5 parent: 12 - - uid: 5059 + - uid: 4935 components: - type: Transform - pos: -11.5,-30.5 + pos: 77.5,-2.5 parent: 12 - - uid: 5071 + - uid: 4953 components: - type: Transform - pos: -10.5,-30.5 + pos: 73.5,-2.5 parent: 12 - - uid: 5113 + - uid: 4957 components: - type: Transform - pos: 33.5,-1.5 + pos: 35.5,-0.5 parent: 12 - - uid: 5114 + - uid: 4958 components: - type: Transform - pos: 32.5,-1.5 + pos: 65.5,12.5 parent: 12 - - uid: 5115 + - uid: 4970 components: - type: Transform - pos: 31.5,-1.5 + pos: 42.5,-0.5 parent: 12 - - uid: 5116 + - uid: 4974 components: - type: Transform - pos: 30.5,-1.5 + pos: 64.5,12.5 parent: 12 - - uid: 5129 + - uid: 4976 components: - type: Transform - pos: 76.5,-2.5 + pos: 30.5,4.5 parent: 12 - - uid: 5174 + - uid: 4994 components: - type: Transform - pos: -25.5,-55.5 + pos: 8.5,-8.5 parent: 12 - - uid: 5179 + - uid: 4995 components: - type: Transform - pos: 17.5,-27.5 + pos: 8.5,-9.5 parent: 12 - - uid: 5180 + - uid: 4996 components: - type: Transform - pos: 18.5,-27.5 + pos: 8.5,-10.5 parent: 12 - - uid: 5181 + - uid: 4998 components: - type: Transform - pos: 19.5,-27.5 + pos: 8.5,-11.5 parent: 12 - - uid: 5182 + - uid: 4999 components: - type: Transform - pos: 20.5,-27.5 + pos: 9.5,-11.5 parent: 12 - - uid: 5183 + - uid: 5000 components: - type: Transform - pos: 20.5,-26.5 + pos: 12.5,-11.5 parent: 12 - - uid: 5184 + - uid: 5001 components: - type: Transform - pos: 20.5,-25.5 + pos: 11.5,-11.5 parent: 12 - - uid: 5185 + - uid: 5002 components: - type: Transform - pos: 20.5,-24.5 + pos: 10.5,-11.5 parent: 12 - - uid: 5186 + - uid: 5008 components: - type: Transform - pos: 20.5,-23.5 + pos: 28.5,5.5 parent: 12 - - uid: 5187 + - uid: 5046 components: - type: Transform - pos: 20.5,-22.5 + pos: 20.5,-14.5 parent: 12 - - uid: 5188 + - uid: 5059 components: - type: Transform - pos: 20.5,-21.5 + pos: -11.5,-30.5 parent: 12 - - uid: 5189 + - uid: 5071 components: - type: Transform - pos: 20.5,-20.5 + pos: -10.5,-30.5 parent: 12 - - uid: 5190 + - uid: 5109 components: - type: Transform - pos: 20.5,-19.5 + pos: 63.5,12.5 parent: 12 - - uid: 5191 + - uid: 5113 components: - type: Transform - pos: 20.5,-18.5 + pos: 33.5,-1.5 parent: 12 - - uid: 5192 + - uid: 5114 components: - type: Transform - pos: 20.5,-17.5 + pos: 32.5,-1.5 parent: 12 - - uid: 5193 + - uid: 5115 components: - type: Transform - pos: 20.5,-16.5 + pos: 31.5,-1.5 parent: 12 - - uid: 5195 + - uid: 5116 components: - type: Transform - pos: 22.5,-16.5 + pos: 30.5,-1.5 parent: 12 - - uid: 5196 + - uid: 5174 components: - type: Transform - pos: 23.5,-16.5 + pos: -25.5,-55.5 parent: 12 - - uid: 5197 + - uid: 5179 components: - type: Transform - pos: 24.5,-16.5 + pos: 17.5,-27.5 parent: 12 - - uid: 5198 + - uid: 5180 components: - type: Transform - pos: 43.5,0.5 + pos: 18.5,-27.5 parent: 12 - - uid: 5199 + - uid: 5181 components: - type: Transform - pos: 26.5,-16.5 + pos: 19.5,-27.5 + parent: 12 + - uid: 5182 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 12 + - uid: 5193 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 12 + - uid: 5195 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 12 + - uid: 5196 + components: + - type: Transform + pos: 23.5,-16.5 parent: 12 - uid: 5200 components: @@ -44616,6 +44568,11 @@ entities: - type: Transform pos: 33.5,-11.5 parent: 12 + - uid: 5230 + components: + - type: Transform + pos: 23.5,5.5 + parent: 12 - uid: 5231 components: - type: Transform @@ -44631,36 +44588,66 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 5368 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - uid: 5407 + components: + - type: Transform + pos: 62.5,12.5 + parent: 12 - uid: 5421 components: - type: Transform pos: 1.5,15.5 parent: 12 - - uid: 5478 + - uid: 5638 components: - type: Transform - pos: 22.5,-13.5 + pos: 27.5,5.5 parent: 12 - - uid: 5479 + - uid: 5640 components: - type: Transform - pos: 22.5,-14.5 + pos: 18.5,5.5 parent: 12 - - uid: 5487 + - uid: 5667 components: - type: Transform - pos: 26.5,-15.5 + pos: 15.5,-12.5 parent: 12 - - uid: 5923 + - uid: 5671 components: - type: Transform - pos: 66.5,-5.5 + pos: 17.5,-16.5 + parent: 12 + - uid: 5759 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 5842 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 12 + - uid: 5868 + components: + - type: Transform + pos: 17.5,7.5 parent: 12 - uid: 5989 components: - type: Transform pos: -0.5,-4.5 parent: 12 + - uid: 6013 + components: + - type: Transform + pos: 17.5,5.5 + parent: 12 - uid: 6414 components: - type: Transform @@ -45336,60 +45323,45 @@ entities: - type: Transform pos: 47.5,-54.5 parent: 12 - - uid: 6704 - components: - - type: Transform - pos: 11.5,5.5 - parent: 12 - - uid: 6708 - components: - - type: Transform - pos: 33.5,2.5 - parent: 12 - - uid: 6709 - components: - - type: Transform - pos: 35.5,2.5 - parent: 12 - uid: 6717 components: - type: Transform pos: -52.5,21.5 parent: 12 - - uid: 6728 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 12 - uid: 6735 components: - type: Transform pos: 1.5,18.5 parent: 12 - - uid: 6748 + - uid: 6741 components: - type: Transform - pos: 14.5,4.5 + pos: 37.5,0.5 parent: 12 - uid: 6768 components: - type: Transform pos: -48.5,25.5 parent: 12 - - uid: 6855 + - uid: 7187 components: - type: Transform - pos: 21.5,4.5 + pos: -0.5,-5.5 parent: 12 - - uid: 7187 + - uid: 7231 components: - type: Transform - pos: -0.5,-5.5 + pos: 29.5,5.5 parent: 12 - - uid: 7262 + - uid: 7233 components: - type: Transform - pos: 11.5,4.5 + pos: 63.5,-3.5 + parent: 12 + - uid: 7278 + components: + - type: Transform + pos: 65.5,-3.5 parent: 12 - uid: 7283 components: @@ -45411,35 +45383,35 @@ entities: - type: Transform pos: 1.5,14.5 parent: 12 - - uid: 7546 + - uid: 7356 components: - type: Transform - pos: 71.5,-5.5 + pos: 60.5,-3.5 parent: 12 - - uid: 7547 + - uid: 7366 components: - type: Transform - pos: 70.5,-5.5 + pos: 62.5,10.5 parent: 12 - - uid: 7548 + - uid: 7546 components: - type: Transform - pos: 60.5,-5.5 + pos: 62.5,8.5 parent: 12 - - uid: 7557 + - uid: 7549 components: - type: Transform - pos: 61.5,-5.5 + pos: 62.5,9.5 parent: 12 - - uid: 7562 + - uid: 7556 components: - type: Transform - pos: 20.5,4.5 + pos: 62.5,-3.5 parent: 12 - - uid: 7580 + - uid: 7557 components: - type: Transform - pos: 13.5,4.5 + pos: 61.5,-3.5 parent: 12 - uid: 7724 components: @@ -45451,61 +45423,6 @@ entities: - type: Transform pos: -38.5,-52.5 parent: 12 - - uid: 7807 - components: - - type: Transform - pos: 40.5,8.5 - parent: 12 - - uid: 7825 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 12 - - uid: 7826 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 12 - - uid: 7827 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 12 - - uid: 7828 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 12 - - uid: 7829 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 12 - - uid: 7830 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - - uid: 7831 - components: - - type: Transform - pos: 37.5,-13.5 - parent: 12 - - uid: 7832 - components: - - type: Transform - pos: 38.5,-13.5 - parent: 12 - - uid: 7833 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 12 - - uid: 7834 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 12 - uid: 7835 components: - type: Transform @@ -45806,110 +45723,60 @@ entities: - type: Transform pos: 30.5,16.5 parent: 12 - - uid: 8494 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 12 - - uid: 8853 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 12 - - uid: 8860 - components: - - type: Transform - pos: 10.5,16.5 - parent: 12 - - uid: 8918 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 8937 - components: - - type: Transform - pos: 73.5,-5.5 - parent: 12 - - uid: 8957 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 12 - - uid: 9003 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 12 - - uid: 9004 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 12 - - uid: 9005 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 12 - - uid: 9006 - components: - - type: Transform - pos: 43.5,-16.5 - parent: 12 - - uid: 9007 + - uid: 8440 components: - type: Transform - pos: 43.5,-17.5 + pos: 73.5,9.5 parent: 12 - - uid: 9008 + - uid: 8441 components: - type: Transform - pos: 43.5,-18.5 + pos: 34.5,0.5 parent: 12 - - uid: 9009 + - uid: 8443 components: - type: Transform - pos: 43.5,-19.5 + pos: 73.5,11.5 parent: 12 - - uid: 9010 + - uid: 8494 components: - type: Transform - pos: 43.5,-20.5 + pos: 10.5,-39.5 parent: 12 - - uid: 9011 + - uid: 8853 components: - type: Transform - pos: 43.5,-21.5 + pos: 10.5,-45.5 parent: 12 - - uid: 9012 + - uid: 8860 components: - type: Transform - pos: 43.5,-22.5 + pos: 10.5,16.5 parent: 12 - - uid: 9013 + - uid: 8910 components: - type: Transform - pos: 43.5,-23.5 + pos: 79.5,3.5 parent: 12 - - uid: 9014 + - uid: 8937 components: - type: Transform - pos: 43.5,-24.5 + pos: 78.5,-2.5 parent: 12 - - uid: 9015 + - uid: 8957 components: - type: Transform - pos: 42.5,-24.5 + pos: 10.5,-46.5 parent: 12 - - uid: 9016 + - uid: 9000 components: - type: Transform - pos: 42.5,-25.5 + pos: 77.5,3.5 parent: 12 - - uid: 9017 + - uid: 9003 components: - type: Transform - pos: 42.5,-26.5 + pos: 76.5,-2.5 parent: 12 - uid: 9018 components: @@ -46021,35 +45888,100 @@ entities: - type: Transform pos: 30.5,12.5 parent: 12 + - uid: 9142 + components: + - type: Transform + pos: 71.5,11.5 + parent: 12 - uid: 9328 components: - type: Transform pos: -0.5,-6.5 parent: 12 + - uid: 9407 + components: + - type: Transform + pos: 79.5,5.5 + parent: 12 + - uid: 9408 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 9410 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 12 + - uid: 9411 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 12 + - uid: 9412 + components: + - type: Transform + pos: 79.5,2.5 + parent: 12 + - uid: 9422 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 + - uid: 9424 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 + - uid: 9426 + components: + - type: Transform + pos: 15.5,9.5 + parent: 12 + - uid: 9434 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 9437 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 - uid: 9449 components: - type: Transform - pos: 16.5,-4.5 + pos: 79.5,6.5 parent: 12 - - uid: 9451 + - uid: 9450 components: - type: Transform - pos: 18.5,4.5 + pos: 79.5,9.5 parent: 12 - uid: 9453 components: - type: Transform - pos: 22.5,4.5 + pos: 79.5,10.5 parent: 12 - - uid: 9456 + - uid: 9457 components: - type: Transform - pos: 24.5,3.5 + pos: 79.5,-2.5 parent: 12 - - uid: 9457 + - uid: 9458 components: - type: Transform - pos: 24.5,2.5 + pos: 73.5,-0.5 + parent: 12 + - uid: 9460 + components: + - type: Transform + pos: 79.5,8.5 + parent: 12 + - uid: 9468 + components: + - type: Transform + pos: 71.5,-0.5 parent: 12 - uid: 9519 components: @@ -46091,40 +46023,55 @@ entities: - type: Transform pos: 1.5,19.5 parent: 12 - - uid: 9612 + - uid: 9631 components: - type: Transform - pos: 24.5,4.5 + pos: 30.5,8.5 parent: 12 - - uid: 9628 + - uid: 9649 components: - type: Transform - pos: 74.5,-5.5 + pos: 9.5,-37.5 parent: 12 - - uid: 9631 + - uid: 9657 components: - type: Transform - pos: 30.5,8.5 + pos: 10.5,-38.5 parent: 12 - - uid: 9649 + - uid: 9658 components: - type: Transform - pos: 9.5,-37.5 + pos: 80.5,2.5 parent: 12 - - uid: 9650 + - uid: 9663 components: - type: Transform - pos: 16.5,10.5 + pos: 72.5,-3.5 parent: 12 - - uid: 9657 + - uid: 9664 components: - type: Transform - pos: 10.5,-38.5 + pos: 74.5,-3.5 parent: 12 - - uid: 9671 + - uid: 9666 components: - type: Transform - pos: 32.5,-0.5 + pos: 70.5,-3.5 + parent: 12 + - uid: 9670 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 9676 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 + - uid: 9785 + components: + - type: Transform + pos: 29.5,10.5 parent: 12 - uid: 9810 components: @@ -46151,31 +46098,11 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 9860 - components: - - type: Transform - pos: 26.5,-8.5 - parent: 12 - uid: 9861 components: - type: Transform pos: 10.5,-41.5 parent: 12 - - uid: 9862 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 12 - - uid: 10284 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 12 - - uid: 10305 - components: - - type: Transform - pos: 67.5,-5.5 - parent: 12 - uid: 10319 components: - type: Transform @@ -46476,106 +46403,11 @@ entities: - type: Transform pos: -3.5,13.5 parent: 12 - - uid: 10790 - components: - - type: Transform - pos: 43.5,-12.5 - parent: 12 - - uid: 10791 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - - uid: 10792 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 12 - - uid: 10793 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 12 - - uid: 10794 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 12 - - uid: 10795 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 12 - - uid: 10796 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 12 - - uid: 10797 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 12 - - uid: 10798 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 12 - - uid: 10799 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - - uid: 10800 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 10801 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - uid: 10802 components: - type: Transform pos: 43.5,-0.5 parent: 12 - - uid: 10804 - components: - - type: Transform - pos: 43.5,1.5 - parent: 12 - - uid: 10805 - components: - - type: Transform - pos: 43.5,2.5 - parent: 12 - - uid: 10806 - components: - - type: Transform - pos: 43.5,3.5 - parent: 12 - - uid: 10810 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 10811 - components: - - type: Transform - pos: 39.5,4.5 - parent: 12 - - uid: 10812 - components: - - type: Transform - pos: 38.5,4.5 - parent: 12 - - uid: 10813 - components: - - type: Transform - pos: 37.5,4.5 - parent: 12 - uid: 10814 components: - type: Transform @@ -46596,11 +46428,6 @@ entities: - type: Transform pos: 33.5,4.5 parent: 12 - - uid: 10818 - components: - - type: Transform - pos: 32.5,4.5 - parent: 12 - uid: 10819 components: - type: Transform @@ -46626,21 +46453,6 @@ entities: - type: Transform pos: 31.5,8.5 parent: 12 - - uid: 10824 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10825 - components: - - type: Transform - pos: 20.5,9.5 - parent: 12 - - uid: 10826 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - uid: 10827 components: - type: Transform @@ -46676,11 +46488,6 @@ entities: - type: Transform pos: 5.5,-5.5 parent: 12 - - uid: 10840 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 10843 components: - type: Transform @@ -46806,16 +46613,6 @@ entities: - type: Transform pos: 27.5,10.5 parent: 12 - - uid: 10869 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - - uid: 10870 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - uid: 10878 components: - type: Transform @@ -46856,21 +46653,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 10900 - components: - - type: Transform - pos: 37.5,9.5 - parent: 12 - uid: 10913 components: - type: Transform pos: 24.5,10.5 parent: 12 - - uid: 10914 - components: - - type: Transform - pos: 25.5,10.5 - parent: 12 - uid: 10928 components: - type: Transform @@ -46901,6 +46688,11 @@ entities: - type: Transform pos: 22.5,17.5 parent: 12 + - uid: 11020 + components: + - type: Transform + pos: 52.5,8.5 + parent: 12 - uid: 11055 components: - type: Transform @@ -47016,6 +46808,16 @@ entities: - type: Transform pos: 21.5,24.5 parent: 12 + - uid: 11376 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 12 + - uid: 11377 + components: + - type: Transform + pos: 35.5,0.5 + parent: 12 - uid: 11395 components: - type: Transform @@ -47061,6 +46863,16 @@ entities: - type: Transform pos: 32.5,17.5 parent: 12 + - uid: 11591 + components: + - type: Transform + pos: 40.5,3.5 + parent: 12 + - uid: 11646 + components: + - type: Transform + pos: 38.5,3.5 + parent: 12 - uid: 11866 components: - type: Transform @@ -47221,36 +47033,11 @@ entities: - type: Transform pos: 36.5,11.5 parent: 12 - - uid: 12224 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 12 - - uid: 12261 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 12 - - uid: 12641 - components: - - type: Transform - pos: 33.5,1.5 - parent: 12 - - uid: 12711 - components: - - type: Transform - pos: 37.5,0.5 - parent: 12 - uid: 12894 components: - type: Transform pos: 41.5,-11.5 parent: 12 - - uid: 12999 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 13080 components: - type: Transform @@ -48161,6 +47948,81 @@ entities: - type: Transform pos: -6.5,36.5 parent: 12 + - uid: 16357 + components: + - type: Transform + pos: 65.5,5.5 + parent: 12 + - uid: 16415 + components: + - type: Transform + pos: 65.5,7.5 + parent: 12 + - uid: 16420 + components: + - type: Transform + pos: 65.5,8.5 + parent: 12 + - uid: 16421 + components: + - type: Transform + pos: 65.5,9.5 + parent: 12 + - uid: 16435 + components: + - type: Transform + pos: 65.5,3.5 + parent: 12 + - uid: 16445 + components: + - type: Transform + pos: 65.5,4.5 + parent: 12 + - uid: 16446 + components: + - type: Transform + pos: 65.5,10.5 + parent: 12 + - uid: 16447 + components: + - type: Transform + pos: 65.5,11.5 + parent: 12 + - uid: 16448 + components: + - type: Transform + pos: 65.5,6.5 + parent: 12 + - uid: 16449 + components: + - type: Transform + pos: 66.5,11.5 + parent: 12 + - uid: 16450 + components: + - type: Transform + pos: 67.5,11.5 + parent: 12 + - uid: 16493 + components: + - type: Transform + pos: 68.5,11.5 + parent: 12 + - uid: 16520 + components: + - type: Transform + pos: 69.5,11.5 + parent: 12 + - uid: 16521 + components: + - type: Transform + pos: 70.5,11.5 + parent: 12 + - uid: 16533 + components: + - type: Transform + pos: 72.5,11.5 + parent: 12 - uid: 16640 components: - type: Transform @@ -48961,6 +48823,16 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 12 + - uid: 18307 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 12 + - uid: 18315 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 18383 components: - type: Transform @@ -50176,6 +50048,11 @@ entities: - type: Transform pos: -38.5,59.5 parent: 12 + - uid: 19548 + components: + - type: Transform + pos: 25.5,10.5 + parent: 12 - uid: 19617 components: - type: Transform @@ -50191,6 +50068,11 @@ entities: - type: Transform pos: 2.5,22.5 parent: 12 + - uid: 19836 + components: + - type: Transform + pos: 21.5,9.5 + parent: 12 - uid: 19840 components: - type: Transform @@ -50266,15 +50148,25 @@ entities: - type: Transform pos: -49.5,46.5 parent: 12 - - uid: 20607 + - uid: 21077 components: - type: Transform - pos: 76.5,2.5 + pos: 10.5,-44.5 parent: 12 - - uid: 21077 + - uid: 21078 components: - type: Transform - pos: 10.5,-44.5 + pos: 54.5,1.5 + parent: 12 + - uid: 21601 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - uid: 21648 + components: + - type: Transform + pos: 54.5,8.5 parent: 12 - uid: 21859 components: @@ -50346,6 +50238,11 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 12 + - uid: 21925 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 21937 components: - type: Transform @@ -50386,20 +50283,60 @@ entities: - type: Transform pos: 31.5,-7.5 parent: 12 - - uid: 22078 + - uid: 22094 components: - type: Transform - pos: 15.5,1.5 + pos: 57.5,11.5 parent: 12 - - uid: 22712 + - uid: 22095 components: - type: Transform - pos: -49.5,25.5 + pos: 54.5,10.5 parent: 12 - - uid: 22857 + - uid: 22109 components: - type: Transform - pos: 40.5,3.5 + pos: 26.5,-16.5 + parent: 12 + - uid: 22126 + components: + - type: Transform + pos: 55.5,11.5 + parent: 12 + - uid: 22136 + components: + - type: Transform + pos: 54.5,5.5 + parent: 12 + - uid: 22140 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - uid: 22141 + components: + - type: Transform + pos: 56.5,11.5 + parent: 12 + - uid: 22148 + components: + - type: Transform + pos: 17.5,10.5 + parent: 12 + - uid: 22160 + components: + - type: Transform + pos: 58.5,11.5 + parent: 12 + - uid: 22528 + components: + - type: Transform + pos: 17.5,8.5 + parent: 12 + - uid: 22712 + components: + - type: Transform + pos: -49.5,25.5 parent: 12 - uid: 23101 components: @@ -50411,6 +50348,16 @@ entities: - type: Transform pos: 41.5,-0.5 parent: 12 + - uid: 23127 + components: + - type: Transform + pos: 56.5,-0.5 + parent: 12 + - uid: 23163 + components: + - type: Transform + pos: 17.5,9.5 + parent: 12 - uid: 23265 components: - type: Transform @@ -50896,6 +50843,11 @@ entities: - type: Transform pos: -37.5,-51.5 parent: 12 + - uid: 23984 + components: + - type: Transform + pos: 54.5,9.5 + parent: 12 - uid: 24478 components: - type: Transform @@ -50951,6 +50903,21 @@ entities: - type: Transform pos: 9.5,65.5 parent: 12 + - uid: 25199 + components: + - type: Transform + pos: 58.5,9.5 + parent: 12 + - uid: 25200 + components: + - type: Transform + pos: 58.5,8.5 + parent: 12 + - uid: 25201 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 25305 components: - type: Transform @@ -50961,11 +50928,31 @@ entities: - type: Transform pos: -31.5,59.5 parent: 12 + - uid: 25416 + components: + - type: Transform + pos: 43.5,0.5 + parent: 12 - uid: 25451 components: - type: Transform pos: -22.5,59.5 parent: 12 + - uid: 25460 + components: + - type: Transform + pos: 43.5,6.5 + parent: 12 + - uid: 25461 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 + - uid: 25462 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 - uid: 25535 components: - type: Transform @@ -51216,6 +51203,11 @@ entities: - type: Transform pos: -25.5,-54.5 parent: 12 + - uid: 25888 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 - uid: 26079 components: - type: Transform @@ -51261,110 +51253,150 @@ entities: - type: Transform pos: -56.5,21.5 parent: 12 - - uid: 26131 + - uid: 26101 components: - type: Transform - pos: 11.5,0.5 + pos: 58.5,-2.5 parent: 12 - - uid: 26132 + - uid: 26102 components: - type: Transform - pos: 11.5,2.5 + pos: 59.5,-3.5 parent: 12 - - uid: 26153 + - uid: 26156 components: - type: Transform - pos: 15.5,3.5 + pos: 74.5,12.5 parent: 12 - - uid: 26154 + - uid: 26417 components: - type: Transform - pos: 15.5,4.5 + pos: 30.5,10.5 parent: 12 - - uid: 26155 + - uid: 26441 components: - type: Transform - pos: 11.5,-3.5 + pos: 54.5,0.5 parent: 12 - - uid: 26156 + - uid: 26452 components: - type: Transform - pos: 11.5,-4.5 + pos: 57.5,-3.5 parent: 12 - - uid: 26157 + - uid: 26464 components: - type: Transform - pos: 11.5,-5.5 + pos: 28.5,10.5 parent: 12 - - uid: 26158 + - uid: 26493 components: - type: Transform - pos: 16.5,7.5 + pos: 43.5,4.5 parent: 12 - - uid: 26159 + - uid: 26494 components: - type: Transform - pos: 16.5,9.5 + pos: 43.5,7.5 parent: 12 - - uid: 26160 + - uid: 26495 components: - type: Transform - pos: 16.5,8.5 + pos: 43.5,8.5 parent: 12 - - uid: 26465 + - uid: 26496 components: - type: Transform - pos: 72.5,-5.5 + pos: 43.5,3.5 parent: 12 - - uid: 26467 + - uid: 26497 components: - type: Transform - pos: 62.5,-5.5 + pos: 43.5,1.5 parent: 12 - - uid: 26469 + - uid: 26498 components: - type: Transform - pos: 69.5,-5.5 + pos: 43.5,2.5 + parent: 12 + - uid: 26499 + components: + - type: Transform + pos: 43.5,5.5 + parent: 12 + - uid: 26520 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 + - uid: 26521 + components: + - type: Transform + pos: 58.5,1.5 + parent: 12 + - uid: 26523 + components: + - type: Transform + pos: 80.5,6.5 + parent: 12 + - uid: 26524 + components: + - type: Transform + pos: 70.5,12.5 + parent: 12 + - uid: 26525 + components: + - type: Transform + pos: 72.5,12.5 parent: 12 - uid: 26543 components: - type: Transform pos: -9.5,-19.5 parent: 12 + - uid: 26551 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 - uid: 26561 components: - type: Transform pos: 47.5,3.5 parent: 12 - - uid: 26583 + - uid: 26562 components: - type: Transform - pos: 30.5,-2.5 + pos: 80.5,4.5 parent: 12 - - uid: 26615 + - uid: 26576 components: - type: Transform - pos: 55.5,-1.5 + pos: 54.5,11.5 parent: 12 - - uid: 26633 + - uid: 26583 components: - type: Transform - pos: 74.5,-1.5 + pos: 30.5,-2.5 parent: 12 - - uid: 26634 + - uid: 26606 components: - type: Transform - pos: 74.5,-0.5 + pos: 51.5,8.5 parent: 12 - - uid: 26635 + - uid: 26622 components: - type: Transform - pos: 74.5,0.5 + pos: 74.5,-2.5 parent: 12 - - uid: 26638 + - uid: 26636 components: - type: Transform - pos: 76.5,0.5 + pos: 65.5,1.5 + parent: 12 + - uid: 26643 + components: + - type: Transform + pos: 20.5,9.5 parent: 12 - uid: 26646 components: @@ -51431,15 +51463,125 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 12 - - uid: 26800 + - uid: 26671 components: - type: Transform - pos: 56.5,-3.5 + pos: 70.5,-2.5 parent: 12 - - uid: 26801 + - uid: 26683 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 + - uid: 26684 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 12 + - uid: 26690 + components: + - type: Transform + pos: 36.5,3.5 + parent: 12 + - uid: 26700 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 26701 + components: + - type: Transform + pos: 65.5,-1.5 + parent: 12 + - uid: 26702 + components: + - type: Transform + pos: 65.5,2.5 + parent: 12 + - uid: 26704 + components: + - type: Transform + pos: 65.5,0.5 + parent: 12 + - uid: 26717 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 12 + - uid: 26719 + components: + - type: Transform + pos: 65.5,-0.5 + parent: 12 + - uid: 26721 + components: + - type: Transform + pos: 65.5,-2.5 + parent: 12 + - uid: 26728 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 12 + - uid: 26731 + components: + - type: Transform + pos: 58.5,0.5 + parent: 12 + - uid: 26732 components: - type: Transform - pos: 56.5,-4.5 + pos: 62.5,4.5 + parent: 12 + - uid: 26735 + components: + - type: Transform + pos: 54.5,4.5 + parent: 12 + - uid: 26736 + components: + - type: Transform + pos: 54.5,3.5 + parent: 12 + - uid: 26737 + components: + - type: Transform + pos: 54.5,2.5 + parent: 12 + - uid: 26742 + components: + - type: Transform + pos: 49.5,8.5 + parent: 12 + - uid: 26743 + components: + - type: Transform + pos: 50.5,8.5 + parent: 12 + - uid: 26744 + components: + - type: Transform + pos: 44.5,8.5 + parent: 12 + - uid: 26745 + components: + - type: Transform + pos: 45.5,8.5 + parent: 12 + - uid: 26756 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 26757 + components: + - type: Transform + pos: 62.5,5.5 + parent: 12 + - uid: 26803 + components: + - type: Transform + pos: 62.5,6.5 parent: 12 - uid: 26805 components: @@ -51461,145 +51603,445 @@ entities: - type: Transform pos: 30.5,-4.5 parent: 12 - - uid: 26897 + - uid: 27028 components: - type: Transform - pos: 63.5,-5.5 + pos: 43.5,-24.5 parent: 12 - - uid: 26906 + - uid: 27029 components: - type: Transform - pos: 75.5,0.5 + pos: 43.5,-25.5 parent: 12 - - uid: 27002 + - uid: 27051 components: - type: Transform - pos: 68.5,-5.5 + pos: 43.5,-26.5 parent: 12 - - uid: 27042 + - uid: 27052 components: - type: Transform - pos: 37.5,1.5 + pos: 43.5,-23.5 + parent: 12 + - uid: 27055 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 12 + - uid: 27057 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 12 + - uid: 27079 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 12 + - uid: 27080 + components: + - type: Transform + pos: 43.5,-19.5 + parent: 12 + - uid: 27081 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 12 + - uid: 27082 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 12 + - uid: 27087 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 12 + - uid: 27088 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 12 + - uid: 27090 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 12 + - uid: 27092 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 12 + - uid: 27105 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 12 + - uid: 27107 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 + - uid: 27132 + components: + - type: Transform + pos: 51.5,-40.5 parent: 12 - uid: 27133 components: - type: Transform - pos: 75.5,-3.5 + pos: 52.5,-40.5 parent: 12 - - uid: 27210 + - uid: 27134 components: - type: Transform - pos: 10.5,18.5 + pos: 53.5,-40.5 parent: 12 - - uid: 27235 + - uid: 27135 components: - type: Transform - pos: 56.5,-2.5 + pos: 54.5,-40.5 parent: 12 - - uid: 27250 + - uid: 27136 components: - type: Transform - pos: 74.5,-2.5 + pos: 55.5,-40.5 parent: 12 - - uid: 27339 + - uid: 27137 components: - type: Transform - pos: -29.5,-34.5 + pos: 56.5,-40.5 parent: 12 - - uid: 27340 + - uid: 27138 components: - type: Transform - pos: -29.5,-33.5 + pos: 56.5,-39.5 parent: 12 - - uid: 27342 + - uid: 27139 components: - type: Transform - pos: -29.5,-31.5 + pos: 56.5,-38.5 parent: 12 - - uid: 27343 + - uid: 27140 components: - type: Transform - pos: -29.5,-32.5 + pos: 56.5,-37.5 parent: 12 - - uid: 27344 + - uid: 27141 components: - type: Transform - pos: -29.5,-30.5 + pos: 56.5,-36.5 parent: 12 - - uid: 27345 + - uid: 27142 components: - type: Transform - pos: -29.5,-29.5 + pos: 56.5,-35.5 parent: 12 - - uid: 27346 + - uid: 27143 components: - type: Transform - pos: -29.5,-26.5 + pos: 56.5,-34.5 parent: 12 - - uid: 27347 + - uid: 27144 components: - type: Transform - pos: -29.5,-27.5 + pos: 56.5,-33.5 parent: 12 - - uid: 27348 + - uid: 27145 components: - type: Transform - pos: -29.5,-28.5 + pos: 56.5,-32.5 parent: 12 - - uid: 27349 + - uid: 27146 components: - type: Transform - pos: -30.5,-26.5 + pos: 56.5,-31.5 parent: 12 - - uid: 27353 + - uid: 27149 components: - type: Transform - pos: 26.5,-6.5 + pos: 56.5,-30.5 parent: 12 - - uid: 27354 + - uid: 27151 components: - type: Transform - pos: 16.5,-6.5 + pos: 56.5,-29.5 parent: 12 - - uid: 27376 + - uid: 27153 components: - type: Transform - pos: 13.5,-16.5 + pos: 56.5,-28.5 parent: 12 - - uid: 27382 + - uid: 27160 components: - type: Transform - pos: 12.5,-10.5 + pos: 55.5,-28.5 parent: 12 - - uid: 27383 + - uid: 27162 components: - type: Transform - pos: 11.5,-10.5 + pos: 54.5,-28.5 parent: 12 - - uid: 27384 + - uid: 27163 components: - type: Transform - pos: 10.5,-10.5 + pos: 53.5,-28.5 parent: 12 - - uid: 27385 + - uid: 27164 components: - type: Transform - pos: 9.5,-10.5 + pos: 52.5,-28.5 parent: 12 - - uid: 27386 + - uid: 27165 components: - type: Transform - pos: 8.5,-10.5 + pos: 51.5,-28.5 parent: 12 - - uid: 27387 + - uid: 27166 components: - type: Transform - pos: 9.5,-11.5 + pos: 50.5,-28.5 parent: 12 - - uid: 27388 + - uid: 27167 components: - type: Transform - pos: 8.5,-11.5 + pos: 49.5,-28.5 + parent: 12 + - uid: 27168 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 12 + - uid: 27171 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 12 + - uid: 27177 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 12 + - uid: 27178 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 12 + - uid: 27179 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 12 + - uid: 27180 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 12 + - uid: 27181 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 12 + - uid: 27182 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 12 + - uid: 27183 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 12 + - uid: 27185 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 12 + - uid: 27186 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 12 + - uid: 27190 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 12 + - uid: 27191 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 12 + - uid: 27192 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 12 + - uid: 27193 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 12 + - uid: 27194 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 12 + - uid: 27195 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 12 + - uid: 27196 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 12 + - uid: 27197 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 12 + - uid: 27198 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 12 + - uid: 27199 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 12 + - uid: 27200 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 12 + - uid: 27201 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 12 + - uid: 27202 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 12 + - uid: 27204 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 12 + - uid: 27205 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 12 + - uid: 27206 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 12 + - uid: 27207 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 12 + - uid: 27208 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 12 + - uid: 27210 + components: + - type: Transform + pos: 10.5,18.5 + parent: 12 + - uid: 27211 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 12 + - uid: 27212 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 12 + - uid: 27213 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 12 + - uid: 27214 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 12 + - uid: 27215 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 12 + - uid: 27235 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 12 + - uid: 27339 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 12 + - uid: 27340 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 12 + - uid: 27342 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 12 + - uid: 27343 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 12 + - uid: 27344 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 12 + - uid: 27345 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 12 + - uid: 27346 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 12 + - uid: 27347 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 12 + - uid: 27348 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 12 + - uid: 27349 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 12 + - uid: 27376 + components: + - type: Transform + pos: 13.5,-16.5 parent: 12 - uid: 27459 components: @@ -52371,26 +52813,6 @@ entities: - type: Transform pos: -37.5,-30.5 parent: 12 - - uid: 27893 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - - uid: 27904 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - - uid: 27905 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - - uid: 27907 - components: - - type: Transform - pos: 65.5,-5.5 - parent: 12 - uid: 27923 components: - type: Transform @@ -52731,295 +53153,10 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 12 - - uid: 28648 - components: - - type: Transform - pos: 25.5,3.5 - parent: 12 - - uid: 28649 - components: - - type: Transform - pos: 27.5,3.5 - parent: 12 - - uid: 28650 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - uid: 28668 - components: - - type: Transform - pos: 76.5,3.5 - parent: 12 - - uid: 28669 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - - uid: 28670 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 28671 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 28672 - components: - - type: Transform - pos: 78.5,5.5 - parent: 12 - - uid: 28673 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 28674 - components: - - type: Transform - pos: 78.5,7.5 - parent: 12 - - uid: 28675 - components: - - type: Transform - pos: 78.5,8.5 - parent: 12 - - uid: 28676 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - uid: 28677 components: - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28678 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28679 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28680 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28681 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28682 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28683 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28684 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28685 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28686 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28687 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28688 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28689 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28690 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28691 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28692 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28693 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28694 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28695 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 28696 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 28697 - components: - - type: Transform - pos: 59.5,12.5 - parent: 12 - - uid: 28698 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28699 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - - uid: 28700 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - - uid: 28701 - components: - - type: Transform - pos: 58.5,12.5 - parent: 12 - - uid: 28702 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 28703 - components: - - type: Transform - pos: 54.5,12.5 - parent: 12 - - uid: 28704 - components: - - type: Transform - pos: 54.5,11.5 - parent: 12 - - uid: 28705 - components: - - type: Transform - pos: 54.5,10.5 - parent: 12 - - uid: 28706 - components: - - type: Transform - pos: 54.5,9.5 - parent: 12 - - uid: 28707 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 28708 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 28709 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - - uid: 28710 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - - uid: 28711 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - - uid: 28712 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - - uid: 28713 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 28714 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - - uid: 28715 - components: - - type: Transform - pos: 46.5,8.5 - parent: 12 - - uid: 28716 - components: - - type: Transform - pos: 45.5,8.5 - parent: 12 - - uid: 28717 - components: - - type: Transform - pos: 44.5,8.5 - parent: 12 - - uid: 28718 - components: - - type: Transform - pos: 43.5,8.5 - parent: 12 - - uid: 28719 - components: - - type: Transform - pos: 43.5,4.5 - parent: 12 - - uid: 28720 - components: - - type: Transform - pos: 43.5,5.5 - parent: 12 - - uid: 28721 - components: - - type: Transform - pos: 43.5,6.5 - parent: 12 - - uid: 28722 - components: - - type: Transform - pos: 43.5,7.5 + pos: 55.5,-3.5 parent: 12 - uid: 28723 components: @@ -53091,66 +53228,11 @@ entities: - type: Transform pos: 41.5,11.5 parent: 12 - - uid: 28737 - components: - - type: Transform - pos: 41.5,10.5 - parent: 12 - - uid: 28738 - components: - - type: Transform - pos: 41.5,8.5 - parent: 12 - - uid: 28739 - components: - - type: Transform - pos: 41.5,9.5 - parent: 12 - - uid: 28740 - components: - - type: Transform - pos: 42.5,8.5 - parent: 12 - - uid: 28784 - components: - - type: Transform - pos: 74.5,-4.5 - parent: 12 - - uid: 28879 - components: - - type: Transform - pos: 59.5,-5.5 - parent: 12 - - uid: 28880 - components: - - type: Transform - pos: 64.5,-5.5 - parent: 12 - - uid: 28881 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 12 - - uid: 28882 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 12 - - uid: 28883 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 12 - uid: 28889 components: - type: Transform pos: 29.5,3.5 parent: 12 - - uid: 28890 - components: - - type: Transform - pos: 26.5,3.5 - parent: 12 - uid: 28891 components: - type: Transform @@ -53209,17 +53291,7 @@ entities: - uid: 29001 components: - type: Transform - pos: 19.5,-11.5 - parent: 12 - - uid: 29002 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 12 - - uid: 29003 - components: - - type: Transform - pos: 21.5,-11.5 + pos: 36.5,2.5 parent: 12 - uid: 29034 components: @@ -53301,6 +53373,11 @@ entities: - type: Transform pos: 18.5,21.5 parent: 12 + - uid: 29087 + components: + - type: Transform + pos: 36.5,1.5 + parent: 12 - uid: 29182 components: - type: Transform @@ -53341,11 +53418,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 29819 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 29873 components: - type: Transform @@ -53661,101 +53733,6 @@ entities: - type: Transform pos: -18.5,69.5 parent: 12 - - uid: 29959 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 12 - - uid: 29960 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 12 - - uid: 29961 - components: - - type: Transform - pos: 30.5,-18.5 - parent: 12 - - uid: 29962 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 12 - - uid: 29963 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 12 - - uid: 29964 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 12 - - uid: 29965 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 12 - - uid: 29966 - components: - - type: Transform - pos: 31.5,-22.5 - parent: 12 - - uid: 29967 - components: - - type: Transform - pos: 32.5,-22.5 - parent: 12 - - uid: 29968 - components: - - type: Transform - pos: 33.5,-22.5 - parent: 12 - - uid: 29969 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 12 - - uid: 29970 - components: - - type: Transform - pos: 35.5,-22.5 - parent: 12 - - uid: 29971 - components: - - type: Transform - pos: 36.5,-22.5 - parent: 12 - - uid: 29972 - components: - - type: Transform - pos: 37.5,-22.5 - parent: 12 - - uid: 29973 - components: - - type: Transform - pos: 38.5,-22.5 - parent: 12 - - uid: 29974 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 12 - - uid: 29975 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 12 - - uid: 29976 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 12 - - uid: 29977 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 12 - uid: 29986 components: - type: Transform @@ -53886,16 +53863,6 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 12 - - uid: 30434 - components: - - type: Transform - pos: 37.5,8.5 - parent: 12 - - uid: 30436 - components: - - type: Transform - pos: 38.5,8.5 - parent: 12 - uid: 30496 components: - type: Transform @@ -54681,6 +54648,51 @@ entities: - type: Transform pos: -49.5,27.5 parent: 12 + - uid: 31880 + components: + - type: Transform + pos: 72.5,9.5 + parent: 12 + - uid: 31881 + components: + - type: Transform + pos: 72.5,10.5 + parent: 12 + - uid: 31883 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 31884 + components: + - type: Transform + pos: 78.5,4.5 + parent: 12 + - uid: 31885 + components: + - type: Transform + pos: 72.5,-1.5 + parent: 12 + - uid: 31886 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 12 + - uid: 31898 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 + - uid: 31899 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31900 + components: + - type: Transform + pos: 59.5,12.5 + parent: 12 - proto: CableHVStack entities: - uid: 353 @@ -54698,47 +54710,58 @@ entities: - type: Transform pos: 44.585773,52.36379 parent: 12 + - uid: 28713 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.496643,-6.643266 + parent: 12 - proto: CableMV entities: + - uid: 22 + components: + - type: Transform + pos: 62.5,9.5 + parent: 12 - uid: 87 components: - type: Transform pos: 0.5,2.5 parent: 12 - - uid: 392 + - uid: 206 components: - type: Transform - pos: -37.5,-51.5 + pos: 79.5,14.5 parent: 12 - - uid: 465 + - uid: 227 components: - type: Transform - pos: -21.5,-30.5 + pos: 80.5,14.5 parent: 12 - - uid: 498 + - uid: 286 components: - type: Transform - pos: 34.5,3.5 + pos: 65.5,10.5 parent: 12 - - uid: 500 + - uid: 366 components: - type: Transform - pos: 35.5,3.5 + pos: 66.5,11.5 parent: 12 - - uid: 502 + - uid: 392 components: - type: Transform - pos: 33.5,3.5 + pos: -37.5,-51.5 parent: 12 - - uid: 507 + - uid: 465 components: - type: Transform - pos: -25.5,59.5 + pos: -21.5,-30.5 parent: 12 - - uid: 570 + - uid: 507 components: - type: Transform - pos: 67.5,12.5 + pos: -25.5,59.5 parent: 12 - uid: 601 components: @@ -54755,20 +54778,15 @@ entities: - type: Transform pos: -56.5,45.5 parent: 12 - - uid: 904 - components: - - type: Transform - pos: -53.5,43.5 - parent: 12 - - uid: 908 + - uid: 763 components: - type: Transform - pos: 68.5,12.5 + pos: 56.5,4.5 parent: 12 - - uid: 1058 + - uid: 904 components: - type: Transform - pos: 24.5,2.5 + pos: -53.5,43.5 parent: 12 - uid: 1059 components: @@ -54780,15 +54798,20 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 12 - - uid: 1170 + - uid: 1191 components: - type: Transform - pos: 72.5,12.5 + pos: 62.5,4.5 parent: 12 - - uid: 1191 + - uid: 1344 components: - type: Transform - pos: 73.5,12.5 + pos: 64.5,4.5 + parent: 12 + - uid: 1349 + components: + - type: Transform + pos: 57.5,-8.5 parent: 12 - uid: 1437 components: @@ -55250,15 +55273,25 @@ entities: - type: Transform pos: -53.5,40.5 parent: 12 - - uid: 2055 + - uid: 2039 components: - type: Transform - pos: 69.5,12.5 + pos: 62.5,6.5 + parent: 12 + - uid: 2052 + components: + - type: Transform + pos: 62.5,7.5 + parent: 12 + - uid: 2105 + components: + - type: Transform + pos: 26.5,5.5 parent: 12 - uid: 2113 components: - type: Transform - pos: 70.5,12.5 + pos: 26.5,6.5 parent: 12 - uid: 2115 components: @@ -55285,20 +55318,45 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 12 + - uid: 2130 + components: + - type: Transform + pos: 26.5,7.5 + parent: 12 - uid: 2139 components: - type: Transform - pos: 73.5,11.5 + pos: 26.5,8.5 parent: 12 - uid: 2140 components: - type: Transform - pos: 71.5,12.5 + pos: 23.5,5.5 parent: 12 - uid: 2141 components: - type: Transform - pos: 63.5,12.5 + pos: 25.5,5.5 + parent: 12 + - uid: 2152 + components: + - type: Transform + pos: 24.5,5.5 + parent: 12 + - uid: 2157 + components: + - type: Transform + pos: 26.5,9.5 + parent: 12 + - uid: 2158 + components: + - type: Transform + pos: 25.5,9.5 + parent: 12 + - uid: 2159 + components: + - type: Transform + pos: 24.5,9.5 parent: 12 - uid: 2177 components: @@ -55365,11 +55423,21 @@ entities: - type: Transform pos: -2.5,-9.5 parent: 12 + - uid: 2246 + components: + - type: Transform + pos: 67.5,-2.5 + parent: 12 - uid: 2249 components: - type: Transform pos: -56.5,40.5 parent: 12 + - uid: 2251 + components: + - type: Transform + pos: 56.5,6.5 + parent: 12 - uid: 2259 components: - type: Transform @@ -55380,16 +55448,31 @@ entities: - type: Transform pos: -23.5,57.5 parent: 12 + - uid: 2287 + components: + - type: Transform + pos: 82.5,5.5 + parent: 12 - uid: 2529 components: - type: Transform pos: 45.5,-20.5 parent: 12 + - uid: 2574 + components: + - type: Transform + pos: 80.5,8.5 + parent: 12 - uid: 2581 components: - type: Transform pos: -56.5,39.5 parent: 12 + - uid: 2676 + components: + - type: Transform + pos: 80.5,9.5 + parent: 12 - uid: 2740 components: - type: Transform @@ -55430,6 +55513,11 @@ entities: - type: Transform pos: -57.5,36.5 parent: 12 + - uid: 2859 + components: + - type: Transform + pos: 60.5,12.5 + parent: 12 - uid: 2860 components: - type: Transform @@ -55445,11 +55533,21 @@ entities: - type: Transform pos: -57.5,39.5 parent: 12 + - uid: 2869 + components: + - type: Transform + pos: 80.5,-0.5 + parent: 12 - uid: 2882 components: - type: Transform pos: 0.5,-40.5 parent: 12 + - uid: 2929 + components: + - type: Transform + pos: 80.5,0.5 + parent: 12 - uid: 2946 components: - type: Transform @@ -55480,6 +55578,11 @@ entities: - type: Transform pos: 0.5,-38.5 parent: 12 + - uid: 3078 + components: + - type: Transform + pos: 14.5,5.5 + parent: 12 - uid: 3080 components: - type: Transform @@ -55850,6 +55953,11 @@ entities: - type: Transform pos: -18.5,-27.5 parent: 12 + - uid: 3470 + components: + - type: Transform + pos: 15.5,8.5 + parent: 12 - uid: 3485 components: - type: Transform @@ -55870,6 +55978,16 @@ entities: - type: Transform pos: -24.5,-30.5 parent: 12 + - uid: 3613 + components: + - type: Transform + pos: 15.5,6.5 + parent: 12 + - uid: 3625 + components: + - type: Transform + pos: 15.5,7.5 + parent: 12 - uid: 3719 components: - type: Transform @@ -55885,6 +56003,11 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 12 + - uid: 4185 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 12 - uid: 4258 components: - type: Transform @@ -55985,16 +56108,31 @@ entities: - type: Transform pos: 57.5,49.5 parent: 12 + - uid: 4629 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 12 - uid: 4632 components: - type: Transform pos: 56.5,46.5 parent: 12 + - uid: 4663 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 12 - uid: 4683 components: - type: Transform pos: 74.5,14.5 parent: 12 + - uid: 4684 + components: + - type: Transform + pos: 80.5,1.5 + parent: 12 - uid: 4686 components: - type: Transform @@ -56040,325 +56178,195 @@ entities: - type: Transform pos: -20.5,-30.5 parent: 12 - - uid: 4859 - components: - - type: Transform - pos: 57.5,56.5 - parent: 12 - - uid: 4933 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 12 - - uid: 4963 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 12 - - uid: 4969 - components: - - type: Transform - pos: 15.5,11.5 - parent: 12 - - uid: 4975 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 12 - - uid: 4977 - components: - - type: Transform - pos: -27.5,65.5 - parent: 12 - - uid: 4984 - components: - - type: Transform - pos: 26.5,-12.5 - parent: 12 - - uid: 4986 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 12 - - uid: 4987 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 12 - - uid: 4988 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 12 - - uid: 4989 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 12 - - uid: 4990 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 12 - - uid: 4991 - components: - - type: Transform - pos: 19.5,-12.5 - parent: 12 - - uid: 4992 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 12 - - uid: 4994 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 12 - - uid: 4995 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 12 - - uid: 4998 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 12 - - uid: 4999 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 12 - - uid: 5000 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 12 - - uid: 5001 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 12 - - uid: 5002 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 12 - - uid: 5003 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 12 - - uid: 5004 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 12 - - uid: 5005 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 12 - - uid: 5006 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 12 - - uid: 5007 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 12 - - uid: 5008 + - uid: 4761 components: - type: Transform - pos: 27.5,-1.5 + pos: 79.5,-0.5 parent: 12 - - uid: 5009 + - uid: 4800 components: - type: Transform - pos: 27.5,-0.5 + pos: 40.5,0.5 parent: 12 - - uid: 5010 + - uid: 4859 components: - type: Transform - pos: 26.5,-0.5 + pos: 57.5,56.5 parent: 12 - - uid: 5011 + - uid: 4910 components: - type: Transform - pos: 25.5,-0.5 + pos: 39.5,-1.5 parent: 12 - - uid: 5012 + - uid: 4921 components: - type: Transform - pos: 24.5,-0.5 + pos: 30.5,-0.5 parent: 12 - - uid: 5013 + - uid: 4928 components: - type: Transform - pos: 23.5,-0.5 + pos: 79.5,-1.5 parent: 12 - - uid: 5014 + - uid: 4933 components: - type: Transform - pos: 22.5,-0.5 + pos: -11.5,-30.5 parent: 12 - - uid: 5016 + - uid: 4954 components: - type: Transform - pos: 20.5,-0.5 + pos: 67.5,11.5 parent: 12 - - uid: 5017 + - uid: 4963 components: - type: Transform - pos: 19.5,-0.5 + pos: -11.5,-31.5 parent: 12 - - uid: 5018 + - uid: 4969 components: - type: Transform - pos: 18.5,-0.5 + pos: 15.5,11.5 parent: 12 - - uid: 5019 + - uid: 4977 components: - type: Transform - pos: 17.5,-0.5 + pos: -27.5,65.5 parent: 12 - - uid: 5020 + - uid: 5036 components: - type: Transform - pos: 16.5,-0.5 + pos: 57.5,59.5 parent: 12 - - uid: 5021 + - uid: 5039 components: - type: Transform - pos: 15.5,-0.5 + pos: 30.5,-6.5 parent: 12 - - uid: 5022 + - uid: 5057 components: - type: Transform - pos: 15.5,-1.5 + pos: -23.5,58.5 parent: 12 - - uid: 5023 + - uid: 5060 components: - type: Transform - pos: 15.5,-2.5 + pos: 57.5,58.5 parent: 12 - - uid: 5024 + - uid: 5064 components: - type: Transform - pos: 15.5,-3.5 + pos: 57.5,-4.5 parent: 12 - - uid: 5025 + - uid: 5077 components: - type: Transform - pos: 15.5,-4.5 + pos: 30.5,-9.5 parent: 12 - - uid: 5026 + - uid: 5093 components: - type: Transform - pos: 15.5,-5.5 + pos: 40.5,4.5 parent: 12 - - uid: 5027 + - uid: 5098 components: - type: Transform - pos: 15.5,-6.5 + pos: 59.5,6.5 parent: 12 - - uid: 5029 + - uid: 5102 components: - type: Transform - pos: 15.5,-8.5 + pos: 57.5,57.5 parent: 12 - - uid: 5031 + - uid: 5108 components: - type: Transform - pos: 15.5,-10.5 + pos: 57.5,55.5 parent: 12 - - uid: 5032 + - uid: 5125 components: - type: Transform - pos: 15.5,-11.5 + pos: 82.5,12.5 parent: 12 - - uid: 5033 + - uid: 5127 components: - type: Transform - pos: 17.5,0.5 + pos: 58.5,-8.5 parent: 12 - - uid: 5034 + - uid: 5128 components: - type: Transform - pos: 25.5,0.5 + pos: 65.5,-3.5 parent: 12 - - uid: 5036 + - uid: 5132 components: - type: Transform - pos: 57.5,59.5 + pos: -1.5,1.5 parent: 12 - - uid: 5039 + - uid: 5245 components: - type: Transform - pos: 30.5,-6.5 + pos: -56.5,48.5 parent: 12 - - uid: 5057 + - uid: 5272 components: - type: Transform - pos: -23.5,58.5 + pos: 33.5,-1.5 parent: 12 - - uid: 5060 + - uid: 5290 components: - type: Transform - pos: 57.5,58.5 + pos: 3.5,-5.5 parent: 12 - - uid: 5077 + - uid: 5301 components: - type: Transform - pos: 30.5,-9.5 + pos: 14.5,4.5 parent: 12 - - uid: 5102 + - uid: 5311 components: - type: Transform - pos: 57.5,57.5 + pos: -27.5,66.5 parent: 12 - - uid: 5108 + - uid: 5316 components: - type: Transform - pos: 57.5,55.5 + pos: 77.5,-3.5 parent: 12 - - uid: 5132 + - uid: 5319 components: - type: Transform - pos: -1.5,1.5 + pos: 82.5,10.5 parent: 12 - - uid: 5220 + - uid: 5364 components: - type: Transform - pos: 8.5,-8.5 + pos: 82.5,9.5 parent: 12 - - uid: 5245 + - uid: 5370 components: - type: Transform - pos: -56.5,48.5 + pos: 82.5,8.5 parent: 12 - - uid: 5247 + - uid: 5386 components: - type: Transform - pos: 9.5,-8.5 + pos: 82.5,11.5 parent: 12 - - uid: 5290 + - uid: 5405 components: - type: Transform - pos: 3.5,-5.5 + pos: 35.5,-3.5 parent: 12 - - uid: 5311 + - uid: 5415 components: - type: Transform - pos: -27.5,66.5 + pos: -55.5,46.5 parent: 12 - - uid: 5415 + - uid: 5425 components: - type: Transform - pos: -55.5,46.5 + pos: 33.5,-4.5 parent: 12 - uid: 5431 components: @@ -56415,11 +56423,6 @@ entities: - type: Transform pos: 26.5,-18.5 parent: 12 - - uid: 5595 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 12 - uid: 5603 components: - type: Transform @@ -56495,21 +56498,11 @@ entities: - type: Transform pos: 27.5,-16.5 parent: 12 - - uid: 5618 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 12 - uid: 5619 components: - type: Transform pos: 25.5,-16.5 parent: 12 - - uid: 5620 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 12 - uid: 5621 components: - type: Transform @@ -56540,85 +56533,15 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5627 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 12 - - uid: 5628 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 12 - - uid: 5629 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 12 - - uid: 5630 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 12 - - uid: 5631 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 12 - - uid: 5632 - components: - - type: Transform - pos: 13.5,-16.5 - parent: 12 - - uid: 5633 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 12 - - uid: 5634 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 12 - - uid: 5635 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 12 - - uid: 5636 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - uid: 5637 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 12 - - uid: 5638 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 12 - - uid: 5639 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 12 - - uid: 5640 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - - uid: 5641 + - uid: 5663 components: - type: Transform - pos: 12.5,-8.5 + pos: -54.5,46.5 parent: 12 - - uid: 5663 + - uid: 5720 components: - type: Transform - pos: -54.5,46.5 + pos: 28.5,-10.5 parent: 12 - uid: 5836 components: @@ -56630,15 +56553,10 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 12 - - uid: 5885 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - - uid: 5888 + - uid: 5850 components: - type: Transform - pos: 74.5,-3.5 + pos: 13.5,-0.5 parent: 12 - uid: 5934 components: @@ -56665,50 +56583,15 @@ entities: - type: Transform pos: 10.5,-40.5 parent: 12 - - uid: 6012 - components: - - type: Transform - pos: -48.5,56.5 - parent: 12 - - uid: 6013 - components: - - type: Transform - pos: 20.5,0.5 - parent: 12 - - uid: 6014 - components: - - type: Transform - pos: 22.5,0.5 - parent: 12 - - uid: 6017 - components: - - type: Transform - pos: 21.5,2.5 - parent: 12 - - uid: 6018 - components: - - type: Transform - pos: 21.5,3.5 - parent: 12 - - uid: 6019 - components: - - type: Transform - pos: 21.5,4.5 - parent: 12 - - uid: 6020 - components: - - type: Transform - pos: 20.5,3.5 - parent: 12 - - uid: 6021 + - uid: 6007 components: - type: Transform - pos: 21.5,5.5 + pos: 29.5,-7.5 parent: 12 - - uid: 6022 + - uid: 6012 components: - type: Transform - pos: 20.5,5.5 + pos: -48.5,56.5 parent: 12 - uid: 6024 components: @@ -56730,36 +56613,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 12 - - uid: 6028 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 6029 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 6030 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 6031 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 6032 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 6033 - components: - - type: Transform - pos: 21.5,1.5 - parent: 12 - uid: 6151 components: - type: Transform @@ -56785,11 +56638,6 @@ entities: - type: Transform pos: 10.5,-47.5 parent: 12 - - uid: 6183 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 6184 components: - type: Transform @@ -56815,6 +56663,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 12 + - uid: 6354 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 6704 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 6711 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 12 + - uid: 6728 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 - uid: 6756 components: - type: Transform @@ -56840,6 +56708,36 @@ entities: - type: Transform pos: 10.5,-39.5 parent: 12 + - uid: 7124 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 12 + - uid: 7208 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 7209 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7218 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7220 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 7237 + components: + - type: Transform + pos: 15.5,5.5 + parent: 12 - uid: 7276 components: - type: Transform @@ -56860,26 +56758,11 @@ entities: - type: Transform pos: 31.5,12.5 parent: 12 - - uid: 7354 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 7356 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - uid: 7364 components: - type: Transform pos: 30.5,15.5 parent: 12 - - uid: 7366 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - uid: 7381 components: - type: Transform @@ -56900,11 +56783,81 @@ entities: - type: Transform pos: 43.5,-12.5 parent: 12 + - uid: 7555 + components: + - type: Transform + pos: 77.5,14.5 + parent: 12 + - uid: 7563 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 12 + - uid: 7580 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7586 + components: + - type: Transform + pos: 75.5,-3.5 + parent: 12 + - uid: 7766 + components: + - type: Transform + pos: 67.5,-3.5 + parent: 12 + - uid: 7767 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 12 + - uid: 7768 + components: + - type: Transform + pos: 69.5,-3.5 + parent: 12 + - uid: 7782 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 12 + - uid: 7783 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 12 + - uid: 7786 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 12 + - uid: 7787 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 12 - uid: 7791 components: - type: Transform pos: -38.5,-52.5 parent: 12 + - uid: 7811 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 12 + - uid: 7828 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 12 + - uid: 7834 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 12 - uid: 7840 components: - type: Transform @@ -57135,6 +57088,11 @@ entities: - type: Transform pos: 59.5,-27.5 parent: 12 + - uid: 7889 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 12 - uid: 7890 components: - type: Transform @@ -57508,42 +57466,72 @@ entities: - uid: 8198 components: - type: Transform - pos: 74.5,11.5 + pos: 77.5,-2.5 parent: 12 - uid: 8199 components: - type: Transform - pos: 78.5,7.5 + pos: 78.5,-2.5 parent: 12 - uid: 8225 components: - type: Transform pos: -36.5,-35.5 parent: 12 - - uid: 8435 + - uid: 8344 components: - type: Transform - pos: 78.5,5.5 + pos: 68.5,12.5 parent: 12 - uid: 8436 components: - type: Transform - pos: 78.5,10.5 + pos: 69.5,11.5 parent: 12 - - uid: 8440 + - uid: 9002 components: - type: Transform - pos: 59.5,12.5 + pos: 30.5,16.5 parent: 12 - - uid: 8443 + - uid: 9004 components: - type: Transform - pos: 61.5,12.5 + pos: 54.5,9.5 parent: 12 - - uid: 9002 + - uid: 9005 components: - type: Transform - pos: 30.5,16.5 + pos: 73.5,-5.5 + parent: 12 + - uid: 9006 + components: + - type: Transform + pos: 72.5,-5.5 + parent: 12 + - uid: 9007 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 12 + - uid: 9046 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 12 + - uid: 9047 + components: + - type: Transform + pos: 70.5,-5.5 + parent: 12 + - uid: 9052 + components: + - type: Transform + pos: 71.5,-5.5 + parent: 12 + - uid: 9069 + components: + - type: Transform + pos: 40.5,2.5 parent: 12 - uid: 9070 components: @@ -57555,11 +57543,31 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 12 + - uid: 9127 + components: + - type: Transform + pos: 30.5,0.5 + parent: 12 + - uid: 9173 + components: + - type: Transform + pos: 69.5,12.5 + parent: 12 - uid: 9253 components: - type: Transform pos: -39.5,70.5 parent: 12 + - uid: 9298 + components: + - type: Transform + pos: 67.5,12.5 + parent: 12 + - uid: 9306 + components: + - type: Transform + pos: 64.5,7.5 + parent: 12 - uid: 9333 components: - type: Transform @@ -57580,6 +57588,16 @@ entities: - type: Transform pos: -39.5,65.5 parent: 12 + - uid: 9338 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 12 + - uid: 9400 + components: + - type: Transform + pos: 20.5,5.5 + parent: 12 - uid: 9425 components: - type: Transform @@ -57588,37 +57606,37 @@ entities: - uid: 9433 components: - type: Transform - pos: 24.5,0.5 + pos: 40.5,3.5 parent: 12 - - uid: 9434 + - uid: 9444 components: - type: Transform - pos: 24.5,1.5 + pos: 61.5,-23.5 parent: 12 - - uid: 9444 + - uid: 9451 components: - type: Transform - pos: 61.5,-23.5 + pos: 82.5,2.5 parent: 12 - uid: 9455 components: - type: Transform pos: -39.5,66.5 parent: 12 - - uid: 9480 + - uid: 9459 components: - type: Transform - pos: -0.5,-12.5 + pos: 80.5,7.5 parent: 12 - - uid: 9483 + - uid: 9480 components: - type: Transform - pos: 15.5,-9.5 + pos: -0.5,-12.5 parent: 12 - uid: 9484 components: - type: Transform - pos: 15.5,-7.5 + pos: 54.5,8.5 parent: 12 - uid: 9489 components: @@ -57630,11 +57648,26 @@ entities: - type: Transform pos: -0.5,-13.5 parent: 12 + - uid: 9492 + components: + - type: Transform + pos: 30.5,1.5 + parent: 12 + - uid: 9495 + components: + - type: Transform + pos: 30.5,2.5 + parent: 12 - uid: 9497 components: - type: Transform pos: -0.5,-15.5 parent: 12 + - uid: 9499 + components: + - type: Transform + pos: 54.5,11.5 + parent: 12 - uid: 9503 components: - type: Transform @@ -57665,70 +57698,75 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 12 - - uid: 9662 + - uid: 9614 components: - type: Transform - pos: 21.5,6.5 + pos: 76.5,14.5 parent: 12 - - uid: 9663 + - uid: 9629 components: - type: Transform - pos: 21.5,7.5 + pos: 30.5,3.5 parent: 12 - - uid: 9664 + - uid: 9641 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,4.5 parent: 12 - - uid: 9667 + - uid: 9671 components: - type: Transform - pos: 20.5,7.5 + pos: 37.5,-1.5 parent: 12 - - uid: 9668 + - uid: 9707 components: - type: Transform - pos: 20.5,8.5 + pos: 82.5,1.5 parent: 12 - - uid: 9669 + - uid: 9708 components: - type: Transform - pos: 19.5,8.5 + pos: 82.5,0.5 parent: 12 - - uid: 9670 + - uid: 9711 components: - type: Transform - pos: 18.5,8.5 + pos: 51.5,0.5 parent: 12 - - uid: 9707 + - uid: 9720 components: - type: Transform - pos: 16.5,6.5 + pos: 38.5,-1.5 parent: 12 - - uid: 9708 + - uid: 9820 components: - type: Transform - pos: 16.5,7.5 + pos: 40.5,-1.5 parent: 12 - - uid: 9709 + - uid: 9840 components: - type: Transform - pos: 16.5,8.5 + pos: 38.5,4.5 parent: 12 - - uid: 9710 + - uid: 9865 components: - type: Transform - pos: 16.5,9.5 + pos: 62.5,10.5 parent: 12 - - uid: 9711 + - uid: 9866 components: - type: Transform - pos: 16.5,10.5 + pos: 62.5,11.5 parent: 12 - - uid: 9853 + - uid: 9867 components: - type: Transform - pos: 21.5,0.5 + pos: 62.5,12.5 + parent: 12 + - uid: 9868 + components: + - type: Transform + pos: 64.5,12.5 parent: 12 - uid: 9876 components: @@ -57855,6 +57893,11 @@ entities: - type: Transform pos: -13.5,-47.5 parent: 12 + - uid: 9908 + components: + - type: Transform + pos: 65.5,12.5 + parent: 12 - uid: 9909 components: - type: Transform @@ -57970,6 +58013,11 @@ entities: - type: Transform pos: -0.5,-49.5 parent: 12 + - uid: 9956 + components: + - type: Transform + pos: 63.5,12.5 + parent: 12 - uid: 9965 components: - type: Transform @@ -57985,11 +58033,36 @@ entities: - type: Transform pos: -1.5,-33.5 parent: 12 + - uid: 10001 + components: + - type: Transform + pos: 39.5,4.5 + parent: 12 - uid: 10020 components: - type: Transform pos: -0.5,-16.5 parent: 12 + - uid: 10022 + components: + - type: Transform + pos: 56.5,5.5 + parent: 12 + - uid: 10023 + components: + - type: Transform + pos: 57.5,1.5 + parent: 12 + - uid: 10024 + components: + - type: Transform + pos: 58.5,5.5 + parent: 12 + - uid: 10025 + components: + - type: Transform + pos: 58.5,6.5 + parent: 12 - uid: 10074 components: - type: Transform @@ -58000,6 +58073,11 @@ entities: - type: Transform pos: -0.5,-18.5 parent: 12 + - uid: 10165 + components: + - type: Transform + pos: 57.5,7.5 + parent: 12 - uid: 10196 components: - type: Transform @@ -58020,6 +58098,11 @@ entities: - type: Transform pos: -54.5,13.5 parent: 12 + - uid: 10305 + components: + - type: Transform + pos: 58.5,7.5 + parent: 12 - uid: 10307 components: - type: Transform @@ -58030,6 +58113,11 @@ entities: - type: Transform pos: -46.5,51.5 parent: 12 + - uid: 10376 + components: + - type: Transform + pos: 82.5,-0.5 + parent: 12 - uid: 10377 components: - type: Transform @@ -58175,6 +58263,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 12 + - uid: 10518 + components: + - type: Transform + pos: 82.5,-1.5 + parent: 12 + - uid: 10519 + components: + - type: Transform + pos: 82.5,-2.5 + parent: 12 + - uid: 10549 + components: + - type: Transform + pos: 82.5,-3.5 + parent: 12 - uid: 10550 components: - type: Transform @@ -58200,6 +58303,16 @@ entities: - type: Transform pos: -6.5,30.5 parent: 12 + - uid: 10812 + components: + - type: Transform + pos: 40.5,1.5 + parent: 12 + - uid: 10841 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 12 - uid: 10917 components: - type: Transform @@ -58218,23 +58331,68 @@ entities: - uid: 10940 components: - type: Transform - pos: 8.5,-7.5 + pos: 28.5,5.5 + parent: 12 + - uid: 10952 + components: + - type: Transform + pos: 27.5,5.5 parent: 12 - uid: 10956 components: - type: Transform pos: -0.5,-0.5 parent: 12 + - uid: 10983 + components: + - type: Transform + pos: 29.5,5.5 + parent: 12 + - uid: 10986 + components: + - type: Transform + pos: 30.5,5.5 + parent: 12 + - uid: 10996 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 12 - uid: 11034 components: - type: Transform pos: -47.5,15.5 parent: 12 + - uid: 11203 + components: + - type: Transform + pos: 60.5,6.5 + parent: 12 + - uid: 11331 + components: + - type: Transform + pos: 54.5,10.5 + parent: 12 - uid: 11359 components: - type: Transform pos: 32.5,15.5 parent: 12 + - uid: 11365 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 12 + - uid: 11383 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 12 + - uid: 11387 + components: + - type: Transform + pos: 21.5,4.5 + parent: 12 - uid: 11450 components: - type: Transform @@ -58285,6 +58443,16 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 12047 + components: + - type: Transform + pos: 75.5,-5.5 + parent: 12 + - uid: 12056 + components: + - type: Transform + pos: 76.5,-5.5 + parent: 12 - uid: 12142 components: - type: Transform @@ -58603,12 +58771,32 @@ entities: - uid: 12916 components: - type: Transform - pos: 23.5,2.5 + pos: 81.5,-5.5 + parent: 12 + - uid: 12917 + components: + - type: Transform + pos: 82.5,-5.5 + parent: 12 + - uid: 12920 + components: + - type: Transform + pos: 77.5,-5.5 + parent: 12 + - uid: 12929 + components: + - type: Transform + pos: 78.5,-5.5 parent: 12 - uid: 12931 components: - type: Transform - pos: 59.5,-4.5 + pos: 79.5,-5.5 + parent: 12 + - uid: 13011 + components: + - type: Transform + pos: 80.5,-5.5 parent: 12 - uid: 13043 components: @@ -60180,6 +60368,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 12 + - uid: 16356 + components: + - type: Transform + pos: 82.5,-4.5 + parent: 12 - uid: 16377 components: - type: Transform @@ -60235,20 +60428,10 @@ entities: - type: Transform pos: -10.5,23.5 parent: 12 - - uid: 16448 - components: - - type: Transform - pos: 78.5,3.5 - parent: 12 - - uid: 16449 - components: - - type: Transform - pos: 78.5,2.5 - parent: 12 - - uid: 16450 + - uid: 16436 components: - type: Transform - pos: 78.5,-0.5 + pos: 59.5,-5.5 parent: 12 - uid: 16534 components: @@ -60285,20 +60468,15 @@ entities: - type: Transform pos: 0.5,3.5 parent: 12 - - uid: 16659 - components: - - type: Transform - pos: 78.5,4.5 - parent: 12 - - uid: 16661 + - uid: 16660 components: - type: Transform - pos: 76.5,11.5 + pos: 65.5,-2.5 parent: 12 - - uid: 16662 + - uid: 16663 components: - type: Transform - pos: 78.5,8.5 + pos: 66.5,-2.5 parent: 12 - uid: 16798 components: @@ -60885,11 +61063,6 @@ entities: - type: Transform pos: -60.5,24.5 parent: 12 - - uid: 17552 - components: - - type: Transform - pos: 76.5,1.5 - parent: 12 - uid: 17735 components: - type: Transform @@ -61115,11 +61288,6 @@ entities: - type: Transform pos: -59.5,20.5 parent: 12 - - uid: 17948 - components: - - type: Transform - pos: 76.5,2.5 - parent: 12 - uid: 17949 components: - type: Transform @@ -61175,31 +61343,6 @@ entities: - type: Transform pos: -15.5,8.5 parent: 12 - - uid: 18306 - components: - - type: Transform - pos: 78.5,6.5 - parent: 12 - - uid: 18307 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 18312 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 18313 - components: - - type: Transform - pos: 78.5,9.5 - parent: 12 - - uid: 18315 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - uid: 18337 components: - type: Transform @@ -61305,16 +61448,6 @@ entities: - type: Transform pos: -28.5,-42.5 parent: 12 - - uid: 19168 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 19177 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - uid: 19235 components: - type: Transform @@ -61330,10 +61463,10 @@ entities: - type: Transform pos: -51.5,13.5 parent: 12 - - uid: 19459 + - uid: 19462 components: - type: Transform - pos: 76.5,3.5 + pos: 59.5,7.5 parent: 12 - uid: 19506 components: @@ -61390,10 +61523,10 @@ entities: - type: Transform pos: -35.5,60.5 parent: 12 - - uid: 19540 + - uid: 19538 components: - type: Transform - pos: 22.5,2.5 + pos: 26.5,-16.5 parent: 12 - uid: 19554 components: @@ -61430,11 +61563,6 @@ entities: - type: Transform pos: -47.5,13.5 parent: 12 - - uid: 19816 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - uid: 19817 components: - type: Transform @@ -62475,6 +62603,11 @@ entities: - type: Transform pos: -37.5,51.5 parent: 12 + - uid: 20606 + components: + - type: Transform + pos: 82.5,6.5 + parent: 12 - uid: 20767 components: - type: Transform @@ -62485,11 +62618,6 @@ entities: - type: Transform pos: -24.5,38.5 parent: 12 - - uid: 20782 - components: - - type: Transform - pos: 56.5,12.5 - parent: 12 - uid: 20783 components: - type: Transform @@ -62690,6 +62818,11 @@ entities: - type: Transform pos: -6.5,32.5 parent: 12 + - uid: 21607 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 12 - uid: 21705 components: - type: Transform @@ -62710,6 +62843,11 @@ entities: - type: Transform pos: 60.5,-23.5 parent: 12 + - uid: 21871 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 - uid: 21901 components: - type: Transform @@ -62720,11 +62858,6 @@ entities: - type: Transform pos: -39.5,-25.5 parent: 12 - - uid: 22006 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 22007 components: - type: Transform @@ -62735,11 +62868,6 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 12 - - uid: 22024 - components: - - type: Transform - pos: 77.5,3.5 - parent: 12 - uid: 22027 components: - type: Transform @@ -62755,15 +62883,15 @@ entities: - type: Transform pos: -32.5,70.5 parent: 12 - - uid: 22049 + - uid: 22054 components: - type: Transform - pos: 55.5,12.5 + pos: -0.5,1.5 parent: 12 - - uid: 22054 + - uid: 22073 components: - type: Transform - pos: -0.5,1.5 + pos: 36.5,-3.5 parent: 12 - uid: 22079 components: @@ -62780,31 +62908,6 @@ entities: - type: Transform pos: -41.5,52.5 parent: 12 - - uid: 22108 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 12 - - uid: 22109 - components: - - type: Transform - pos: 78.5,0.5 - parent: 12 - - uid: 22111 - components: - - type: Transform - pos: 78.5,-1.5 - parent: 12 - - uid: 22125 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22126 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22128 components: - type: Transform @@ -62823,12 +62926,7 @@ entities: - uid: 22135 components: - type: Transform - pos: 75.5,13.5 - parent: 12 - - uid: 22136 - components: - - type: Transform - pos: 80.5,9.5 + pos: 62.5,-3.5 parent: 12 - uid: 22137 components: @@ -62845,21 +62943,6 @@ entities: - type: Transform pos: 66.5,14.5 parent: 12 - - uid: 22140 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - - uid: 22141 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - - uid: 22142 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - uid: 22143 components: - type: Transform @@ -62880,6 +62963,11 @@ entities: - type: Transform pos: 61.5,14.5 parent: 12 + - uid: 22163 + components: + - type: Transform + pos: 61.5,-3.5 + parent: 12 - uid: 22188 components: - type: Transform @@ -62925,11 +63013,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 22226 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 22227 components: - type: Transform @@ -62970,6 +63053,21 @@ entities: - type: Transform pos: -31.5,70.5 parent: 12 + - uid: 23134 + components: + - type: Transform + pos: 60.5,-3.5 + parent: 12 + - uid: 23174 + components: + - type: Transform + pos: 64.5,-3.5 + parent: 12 + - uid: 23175 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 12 - uid: 23713 components: - type: Transform @@ -62995,6 +63093,11 @@ entities: - type: Transform pos: -20.5,-29.5 parent: 12 + - uid: 24455 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 12 - uid: 24661 components: - type: Transform @@ -63005,6 +63108,11 @@ entities: - type: Transform pos: -51.5,46.5 parent: 12 + - uid: 24688 + components: + - type: Transform + pos: 81.5,14.5 + parent: 12 - uid: 24714 components: - type: Transform @@ -63580,21 +63688,11 @@ entities: - type: Transform pos: 65.5,44.5 parent: 12 - - uid: 25093 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 25099 components: - type: Transform pos: 62.5,-23.5 parent: 12 - - uid: 25104 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 12 - uid: 25107 components: - type: Transform @@ -63715,40 +63813,35 @@ entities: - type: Transform pos: 38.5,11.5 parent: 12 - - uid: 25479 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 25480 + - uid: 25482 components: - type: Transform - pos: 80.5,-2.5 + pos: 37.5,11.5 parent: 12 - - uid: 25481 + - uid: 25484 components: - type: Transform - pos: 80.5,-0.5 + pos: 36.5,11.5 parent: 12 - - uid: 25482 + - uid: 25537 components: - type: Transform - pos: 37.5,11.5 + pos: 58.5,-0.5 parent: 12 - - uid: 25483 + - uid: 25538 components: - type: Transform - pos: 80.5,2.5 + pos: 59.5,-3.5 parent: 12 - - uid: 25484 + - uid: 25539 components: - type: Transform - pos: 36.5,11.5 + pos: 58.5,-2.5 parent: 12 - - uid: 25539 + - uid: 25540 components: - type: Transform - pos: 12.5,-8.5 + pos: 58.5,-1.5 parent: 12 - uid: 25542 components: @@ -63770,6 +63863,11 @@ entities: - type: Transform pos: 33.5,12.5 parent: 12 + - uid: 25598 + components: + - type: Transform + pos: 58.5,-3.5 + parent: 12 - uid: 25633 components: - type: Transform @@ -63920,45 +64018,35 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 12 - - uid: 26067 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 26072 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - uid: 26073 components: - type: Transform pos: -20.5,-27.5 parent: 12 - - uid: 26101 + - uid: 26132 components: - type: Transform - pos: 16.5,-13.5 + pos: 62.5,-5.5 parent: 12 - - uid: 26102 + - uid: 26133 components: - type: Transform - pos: 80.5,4.5 + pos: 60.5,-5.5 parent: 12 - - uid: 26103 + - uid: 26153 components: - type: Transform - pos: 80.5,6.5 + pos: 64.5,-5.5 parent: 12 - - uid: 26104 + - uid: 26155 components: - type: Transform - pos: 18.5,-13.5 + pos: 66.5,-5.5 parent: 12 - - uid: 26114 + - uid: 26162 components: - type: Transform - pos: 58.5,12.5 + pos: 79.5,2.5 parent: 12 - uid: 26208 components: @@ -63980,410 +64068,435 @@ entities: - type: Transform pos: -27.5,-27.5 parent: 12 + - uid: 26311 + components: + - type: Transform + pos: 79.5,7.5 + parent: 12 + - uid: 26382 + components: + - type: Transform + pos: 79.5,1.5 + parent: 12 - uid: 26389 components: - type: Transform - pos: 57.5,12.5 + pos: 79.5,3.5 parent: 12 - - uid: 26564 + - uid: 26422 components: - type: Transform - pos: 58.5,-7.5 + pos: 82.5,4.5 parent: 12 - - uid: 26584 + - uid: 26432 components: - type: Transform - pos: 78.5,1.5 + pos: 62.5,8.5 parent: 12 - - uid: 26585 + - uid: 26445 components: - type: Transform - pos: 56.5,14.5 + pos: 82.5,13.5 parent: 12 - - uid: 26587 + - uid: 26451 components: - type: Transform - pos: 57.5,14.5 + pos: 57.5,4.5 parent: 12 - - uid: 26621 + - uid: 26455 components: - type: Transform - pos: 58.5,-2.5 + pos: 82.5,3.5 parent: 12 - - uid: 26622 + - uid: 26462 components: - type: Transform - pos: 59.5,-3.5 + pos: 82.5,7.5 parent: 12 - - uid: 26631 + - uid: 26478 components: - type: Transform - pos: 59.5,-2.5 + pos: 17.5,7.5 parent: 12 - - uid: 26636 + - uid: 26488 components: - type: Transform - pos: 57.5,-2.5 + pos: 82.5,14.5 parent: 12 - - uid: 26640 + - uid: 26512 components: - type: Transform - pos: 76.5,0.5 + pos: 58.5,0.5 parent: 12 - - uid: 26642 + - uid: 26513 components: - type: Transform - pos: 75.5,0.5 + pos: 58.5,1.5 parent: 12 - - uid: 26650 + - uid: 26514 components: - type: Transform - pos: 80.5,-5.5 + pos: 58.5,3.5 parent: 12 - - uid: 26829 + - uid: 26515 components: - type: Transform - pos: 51.5,1.5 + pos: 58.5,2.5 parent: 12 - - uid: 26831 + - uid: 26516 components: - type: Transform - pos: 52.5,2.5 + pos: 58.5,4.5 parent: 12 - - uid: 26840 + - uid: 26529 components: - type: Transform - pos: 56.5,6.5 + pos: 79.5,6.5 parent: 12 - - uid: 26841 + - uid: 26530 components: - type: Transform - pos: 56.5,4.5 + pos: 79.5,4.5 parent: 12 - - uid: 26842 + - uid: 26531 components: - type: Transform - pos: 56.5,5.5 + pos: 79.5,5.5 parent: 12 - - uid: 26844 + - uid: 26532 components: - type: Transform - pos: 54.5,5.5 + pos: 63.5,-5.5 parent: 12 - - uid: 26845 + - uid: 26533 components: - type: Transform - pos: 54.5,4.5 + pos: 61.5,-5.5 parent: 12 - - uid: 26846 + - uid: 26534 components: - type: Transform - pos: 54.5,3.5 + pos: 65.5,-5.5 parent: 12 - - uid: 26847 + - uid: 26535 components: - type: Transform - pos: 54.5,2.5 + pos: 67.5,-5.5 parent: 12 - - uid: 26848 + - uid: 26545 components: - type: Transform - pos: 53.5,2.5 + pos: 21.5,5.5 parent: 12 - - uid: 26849 + - uid: 26559 components: - type: Transform - pos: 58.5,3.5 + pos: 79.5,-2.5 parent: 12 - - uid: 26850 + - uid: 26585 components: - type: Transform - pos: 59.5,3.5 + pos: 56.5,14.5 parent: 12 - - uid: 26851 + - uid: 26587 components: - type: Transform - pos: 60.5,3.5 + pos: 57.5,14.5 parent: 12 - - uid: 26852 + - uid: 26597 components: - type: Transform - pos: 61.5,3.5 + pos: 15.5,9.5 parent: 12 - - uid: 26853 + - uid: 26644 components: - type: Transform - pos: 62.5,3.5 + pos: 17.5,6.5 parent: 12 - - uid: 26854 + - uid: 26645 components: - type: Transform - pos: 63.5,3.5 + pos: 78.5,14.5 parent: 12 - - uid: 26855 + - uid: 26654 components: - type: Transform - pos: 64.5,3.5 + pos: 73.5,11.5 parent: 12 - - uid: 26856 + - uid: 26669 components: - type: Transform - pos: 65.5,3.5 + pos: 71.5,11.5 parent: 12 - - uid: 26857 + - uid: 26675 components: - type: Transform - pos: 66.5,3.5 + pos: 72.5,11.5 parent: 12 - - uid: 26858 + - uid: 26677 components: - type: Transform - pos: 67.5,3.5 + pos: 70.5,11.5 parent: 12 - - uid: 26859 + - uid: 26678 components: - type: Transform - pos: 68.5,3.5 + pos: 79.5,11.5 parent: 12 - - uid: 26860 + - uid: 26681 components: - type: Transform - pos: 69.5,3.5 + pos: 64.5,8.5 parent: 12 - - uid: 26861 + - uid: 26688 components: - type: Transform - pos: 71.5,3.5 + pos: 65.5,4.5 parent: 12 - - uid: 26862 + - uid: 26703 components: - type: Transform - pos: 72.5,3.5 + pos: 65.5,1.5 parent: 12 - - uid: 26863 + - uid: 26706 components: - type: Transform - pos: 73.5,3.5 + pos: 77.5,11.5 parent: 12 - - uid: 26864 + - uid: 26707 components: - type: Transform - pos: 74.5,3.5 + pos: 64.5,9.5 parent: 12 - - uid: 26865 + - uid: 26708 components: - type: Transform - pos: 70.5,3.5 + pos: 65.5,2.5 parent: 12 - - uid: 26867 + - uid: 26709 components: - type: Transform - pos: 70.5,8.5 + pos: 65.5,-0.5 parent: 12 - - uid: 26868 + - uid: 26710 components: - type: Transform - pos: 70.5,7.5 + pos: 65.5,-1.5 parent: 12 - - uid: 26869 + - uid: 26711 components: - type: Transform - pos: 70.5,6.5 + pos: 65.5,9.5 parent: 12 - - uid: 26870 + - uid: 26715 components: - type: Transform - pos: 70.5,5.5 + pos: 76.5,12.5 parent: 12 - - uid: 26871 + - uid: 26718 components: - type: Transform - pos: 71.5,5.5 + pos: 64.5,-0.5 parent: 12 - - uid: 26872 + - uid: 26720 components: - type: Transform - pos: 72.5,5.5 + pos: 65.5,7.5 parent: 12 - - uid: 26873 + - uid: 26722 components: - type: Transform - pos: 73.5,5.5 + pos: 65.5,6.5 parent: 12 - - uid: 26874 + - uid: 26723 components: - type: Transform - pos: 74.5,5.5 + pos: 65.5,5.5 parent: 12 - - uid: 26875 + - uid: 26724 components: - type: Transform - pos: 74.5,6.5 + pos: 65.5,11.5 parent: 12 - - uid: 26876 + - uid: 26730 components: - type: Transform - pos: 74.5,7.5 + pos: 65.5,3.5 parent: 12 - - uid: 26877 + - uid: 26733 components: - type: Transform - pos: 74.5,8.5 + pos: 63.5,3.5 parent: 12 - - uid: 26878 + - uid: 26734 components: - type: Transform - pos: 72.5,4.5 + pos: 60.5,4.5 parent: 12 - - uid: 26879 + - uid: 26741 components: - type: Transform - pos: 53.5,-7.5 + pos: 59.5,4.5 parent: 12 - - uid: 26884 + - uid: 26748 components: - type: Transform - pos: 24.5,-13.5 + pos: 77.5,12.5 parent: 12 - - uid: 26885 + - uid: 26749 components: - type: Transform - pos: 57.5,-7.5 + pos: 75.5,12.5 parent: 12 - - uid: 26899 + - uid: 26750 components: - type: Transform - pos: 54.5,-7.5 + pos: 75.5,11.5 parent: 12 - - uid: 26900 + - uid: 26751 components: - type: Transform - pos: 55.5,2.5 + pos: 74.5,11.5 parent: 12 - - uid: 26901 + - uid: 26752 components: - type: Transform - pos: 58.5,2.5 + pos: 79.5,9.5 parent: 12 - - uid: 26902 + - uid: 26753 components: - type: Transform - pos: 57.5,2.5 + pos: 78.5,11.5 parent: 12 - - uid: 26903 + - uid: 26755 components: - type: Transform - pos: 56.5,2.5 + pos: 79.5,10.5 parent: 12 - - uid: 26905 + - uid: 26761 components: - type: Transform - pos: 80.5,-4.5 + pos: 61.5,4.5 parent: 12 - - uid: 26908 + - uid: 26762 components: - type: Transform - pos: 74.5,-0.5 + pos: 63.5,4.5 parent: 12 - - uid: 26914 + - uid: 26779 components: - type: Transform - pos: 80.5,-3.5 + pos: 22.5,5.5 parent: 12 - - uid: 26915 + - uid: 26783 components: - type: Transform - pos: 74.5,0.5 + pos: 64.5,1.5 parent: 12 - - uid: 26916 + - uid: 26785 components: - type: Transform - pos: 74.5,1.5 + pos: 64.5,0.5 parent: 12 - - uid: 26917 + - uid: 26806 components: - type: Transform - pos: 74.5,2.5 + pos: 63.5,5.5 parent: 12 - - uid: 26918 + - uid: 26807 components: - type: Transform - pos: 79.5,-5.5 + pos: 63.5,6.5 parent: 12 - - uid: 26922 + - uid: 26808 components: - type: Transform - pos: 74.5,-1.5 + pos: 63.5,2.5 parent: 12 - - uid: 26943 + - uid: 26829 components: - type: Transform - pos: 25.5,-13.5 + pos: 51.5,1.5 parent: 12 - - uid: 26953 + - uid: 26831 components: - type: Transform - pos: 26.5,-13.5 + pos: 52.5,2.5 parent: 12 - - uid: 26962 + - uid: 26844 components: - type: Transform - pos: 78.5,-3.5 + pos: 54.5,5.5 parent: 12 - - uid: 27019 + - uid: 26845 components: - type: Transform - pos: 54.5,-0.5 + pos: 54.5,4.5 parent: 12 - - uid: 27056 + - uid: 26846 components: - type: Transform - pos: 55.5,-7.5 + pos: 54.5,3.5 parent: 12 - - uid: 27073 + - uid: 26847 components: - type: Transform - pos: 62.5,14.5 + pos: 54.5,2.5 parent: 12 - - uid: 27075 + - uid: 26848 components: - type: Transform - pos: 55.5,14.5 + pos: 53.5,2.5 parent: 12 - - uid: 27077 + - uid: 26879 components: - type: Transform - pos: 67.5,14.5 + pos: 53.5,-7.5 parent: 12 - - uid: 27078 + - uid: 26885 components: - type: Transform - pos: 68.5,14.5 + pos: 57.5,-7.5 parent: 12 - - uid: 27079 + - uid: 26899 components: - type: Transform - pos: 77.5,13.5 + pos: 54.5,-7.5 parent: 12 - - uid: 27080 + - uid: 26900 components: - type: Transform - pos: 78.5,13.5 + pos: 55.5,2.5 parent: 12 - - uid: 27081 + - uid: 27019 components: - type: Transform - pos: 80.5,7.5 + pos: 54.5,-0.5 parent: 12 - - uid: 27087 + - uid: 27056 components: - type: Transform - pos: 80.5,11.5 + pos: 55.5,-7.5 parent: 12 - - uid: 27088 + - uid: 27073 components: - type: Transform - pos: 79.5,13.5 + pos: 62.5,14.5 + parent: 12 + - uid: 27075 + components: + - type: Transform + pos: 55.5,14.5 + parent: 12 + - uid: 27077 + components: + - type: Transform + pos: 67.5,14.5 + parent: 12 + - uid: 27078 + components: + - type: Transform + pos: 68.5,14.5 parent: 12 - uid: 27113 components: @@ -64455,75 +64568,15 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 12 - - uid: 27191 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 27192 - components: - - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 27193 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 27194 - components: - - type: Transform - pos: 61.5,5.5 - parent: 12 - - uid: 27195 - components: - - type: Transform - pos: 62.5,5.5 - parent: 12 - - uid: 27196 - components: - - type: Transform - pos: 63.5,5.5 - parent: 12 - - uid: 27197 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 27198 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 27199 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 27200 - components: - - type: Transform - pos: 67.5,5.5 - parent: 12 - - uid: 27201 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 27208 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 27236 + - uid: 27216 components: - type: Transform - pos: 78.5,-5.5 + pos: 60.5,11.5 parent: 12 - - uid: 27238 + - uid: 27237 components: - type: Transform - pos: 59.5,-5.5 + pos: 57.5,-6.5 parent: 12 - uid: 27253 components: @@ -64940,196 +64993,121 @@ entities: - type: Transform pos: -25.5,67.5 parent: 12 - - uid: 28424 - components: - - type: Transform - pos: -25.5,68.5 - parent: 12 - - uid: 28432 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 12 - - uid: 28433 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 12 - - uid: 28466 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 12 - - uid: 28467 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 12 - - uid: 28468 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 12 - - uid: 28469 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 12 - - uid: 28470 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 12 - - uid: 28471 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 12 - - uid: 28472 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 12 - - uid: 28473 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 12 - - uid: 28474 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 12 - - uid: 28783 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 12 - - uid: 28828 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28833 + - uid: 28220 components: - type: Transform - pos: 59.5,-7.5 + pos: 54.5,6.5 parent: 12 - - uid: 28834 + - uid: 28222 components: - type: Transform - pos: 60.5,-6.5 + pos: 54.5,7.5 parent: 12 - - uid: 28835 + - uid: 28223 components: - type: Transform - pos: 61.5,-6.5 + pos: 55.5,11.5 parent: 12 - - uid: 28836 + - uid: 28224 components: - type: Transform - pos: 62.5,-6.5 + pos: 56.5,11.5 parent: 12 - - uid: 28837 + - uid: 28225 components: - type: Transform - pos: 63.5,-6.5 + pos: 57.5,11.5 parent: 12 - - uid: 28838 + - uid: 28226 components: - type: Transform - pos: 64.5,-6.5 + pos: 58.5,11.5 parent: 12 - - uid: 28839 + - uid: 28227 components: - type: Transform - pos: 65.5,-6.5 + pos: 58.5,10.5 parent: 12 - - uid: 28840 + - uid: 28228 components: - type: Transform - pos: 66.5,-6.5 + pos: 58.5,9.5 parent: 12 - - uid: 28841 + - uid: 28229 components: - type: Transform - pos: 67.5,-6.5 + pos: 58.5,8.5 parent: 12 - - uid: 28842 + - uid: 28424 components: - type: Transform - pos: 68.5,-6.5 + pos: -25.5,68.5 parent: 12 - - uid: 28843 + - uid: 28432 components: - type: Transform - pos: 69.5,-6.5 + pos: 6.5,-48.5 parent: 12 - - uid: 28844 + - uid: 28433 components: - type: Transform - pos: 70.5,-6.5 + pos: 7.5,-48.5 parent: 12 - - uid: 28845 + - uid: 28466 components: - type: Transform - pos: 72.5,-6.5 + pos: -7.5,-22.5 parent: 12 - - uid: 28846 + - uid: 28467 components: - type: Transform - pos: 73.5,-6.5 + pos: -7.5,-21.5 parent: 12 - - uid: 28847 + - uid: 28468 components: - type: Transform - pos: 74.5,-6.5 + pos: -7.5,-20.5 parent: 12 - - uid: 28848 + - uid: 28469 components: - type: Transform - pos: 71.5,-6.5 + pos: -8.5,-20.5 parent: 12 - - uid: 28850 + - uid: 28470 components: - type: Transform - pos: 74.5,-5.5 + pos: -8.5,-19.5 parent: 12 - - uid: 28851 + - uid: 28471 components: - type: Transform - pos: 74.5,-4.5 + pos: -8.5,-18.5 parent: 12 - - uid: 28853 + - uid: 28472 components: - type: Transform - pos: 76.5,-4.5 + pos: -8.5,-17.5 parent: 12 - - uid: 28854 + - uid: 28473 components: - type: Transform - pos: 76.5,-3.5 + pos: -8.5,-16.5 parent: 12 - - uid: 28855 + - uid: 28474 components: - type: Transform - pos: 76.5,-2.5 + pos: -9.5,-16.5 parent: 12 - - uid: 28857 + - uid: 28783 components: - type: Transform - pos: 74.5,-2.5 + pos: 5.5,-47.5 parent: 12 - uid: 28886 components: - type: Transform pos: 50.5,0.5 parent: 12 - - uid: 28887 - components: - - type: Transform - pos: 50.5,1.5 - parent: 12 - uid: 28888 components: - type: Transform @@ -65290,26 +65268,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 29086 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 12 - - uid: 29087 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 12 - uid: 29088 components: - type: Transform pos: 30.5,-1.5 parent: 12 - - uid: 29089 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 12 - uid: 29096 components: - type: Transform @@ -65320,35 +65283,30 @@ entities: - type: Transform pos: 32.5,-1.5 parent: 12 - - uid: 29098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - - uid: 29102 + - uid: 29114 components: - type: Transform - pos: 33.5,-1.5 + pos: 33.5,-0.5 parent: 12 - - uid: 29103 + - uid: 29155 components: - type: Transform - pos: 33.5,-0.5 + pos: 34.5,-0.5 parent: 12 - - uid: 29107 + - uid: 29156 components: - type: Transform - pos: 33.5,0.5 + pos: 35.5,-0.5 parent: 12 - - uid: 29108 + - uid: 29157 components: - type: Transform - pos: 33.5,1.5 + pos: 36.5,-0.5 parent: 12 - - uid: 29114 + - uid: 29158 components: - type: Transform - pos: 33.5,2.5 + pos: 37.5,-0.5 parent: 12 - uid: 29206 components: @@ -66175,11 +66133,6 @@ entities: - type: Transform pos: 47.5,0.5 parent: 12 - - uid: 29992 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 30246 components: - type: Transform @@ -66470,6 +66423,16 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 12 + - uid: 31904 + components: + - type: Transform + pos: 59.5,11.5 + parent: 12 + - uid: 31905 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 12 - proto: CableMVStack entities: - uid: 5999 @@ -66487,6 +66450,12 @@ entities: - type: Transform pos: 44.46338,52.56763 parent: 12 + - uid: 28716 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 54.49973,-6.4827724 + parent: 12 - proto: CableMVStack1 entities: - uid: 30733 @@ -66552,12 +66521,6 @@ entities: rot: 3.141592653589793 rad pos: 46.5,4.5 parent: 12 - - uid: 29722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 12 - uid: 30247 components: - type: Transform @@ -66570,6 +66533,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-47.5 parent: 12 + - uid: 31897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,11.5 + parent: 12 - proto: Candle entities: - uid: 13090 @@ -66732,10 +66701,15 @@ entities: - type: Transform pos: -51.5,-32.5 parent: 12 - - uid: 22148 + - uid: 5635 components: - type: Transform - pos: 55.5,-4.5 + pos: 24.5,-4.5 + parent: 12 + - uid: 26628 + components: + - type: Transform + pos: 27.5,9.5 parent: 12 - proto: Carpet entities: @@ -69356,11 +69330,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 12 - - uid: 105 - components: - - type: Transform - pos: 47.5,8.5 - parent: 12 - uid: 107 components: - type: Transform @@ -69372,11 +69341,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 12 - - uid: 153 - components: - - type: Transform - pos: 51.5,8.5 - parent: 12 - uid: 225 components: - type: Transform @@ -69389,47 +69353,17 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 12 - - uid: 249 - components: - - type: Transform - pos: 53.5,8.5 - parent: 12 - - uid: 250 - components: - - type: Transform - pos: 54.5,8.5 - parent: 12 - - uid: 252 - components: - - type: Transform - pos: 48.5,8.5 - parent: 12 - - uid: 254 - components: - - type: Transform - pos: 49.5,8.5 - parent: 12 - uid: 269 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-57.5 parent: 12 - - uid: 501 - components: - - type: Transform - pos: 50.5,8.5 - parent: 12 - uid: 506 components: - type: Transform pos: -29.5,-53.5 parent: 12 - - uid: 553 - components: - - type: Transform - pos: 52.5,8.5 - parent: 12 - uid: 555 components: - type: Transform @@ -69440,11 +69374,6 @@ entities: - type: Transform pos: 54.5,10.5 parent: 12 - - uid: 565 - components: - - type: Transform - pos: 55.5,12.5 - parent: 12 - uid: 566 components: - type: Transform @@ -69466,11 +69395,23 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 12 + - uid: 1555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 - uid: 2322 components: - type: Transform pos: 40.5,11.5 parent: 12 + - uid: 2357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 12 - uid: 2487 components: - type: Transform @@ -69491,18 +69432,6 @@ entities: - type: Transform pos: -38.5,-53.5 parent: 12 - - uid: 2682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,0.5 - parent: 12 - - uid: 2684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 12 - uid: 2899 components: - type: Transform @@ -69538,6 +69467,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 12 + - uid: 2988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 - uid: 3086 components: - type: Transform @@ -69747,27 +69682,34 @@ entities: - type: Transform pos: -7.5,-39.5 parent: 12 - - uid: 4410 + - uid: 4593 components: - type: Transform - pos: 59.5,12.5 + pos: -38.5,-51.5 parent: 12 - - uid: 4561 + - uid: 4611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 12 - - uid: 4586 + - uid: 4644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-0.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 parent: 12 - - uid: 4593 + - uid: 4651 components: - type: Transform - pos: -38.5,-51.5 + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 4656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 parent: 12 - uid: 4699 components: @@ -69791,6 +69733,12 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 12 + - uid: 4793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 - uid: 4869 components: - type: Transform @@ -69821,41 +69769,35 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,10.5 parent: 12 - - uid: 5105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-34.5 - parent: 12 - - uid: 5323 + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-21.5 + pos: 36.5,3.5 parent: 12 - - uid: 5386 + - uid: 5097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 36.5,1.5 parent: 12 - - uid: 5419 + - uid: 5105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 + rot: 3.141592653589793 rad + pos: -8.5,-34.5 parent: 12 - - uid: 5425 + - uid: 5323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-0.5 + pos: 6.5,-21.5 parent: 12 - - uid: 5514 + - uid: 5419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: 9.5,10.5 parent: 12 - uid: 5556 components: @@ -69881,6 +69823,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,12.5 parent: 12 + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 5805 components: - type: Transform @@ -69893,6 +69841,24 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,10.5 parent: 12 + - uid: 5844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 5852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 - uid: 5857 components: - type: Transform @@ -69905,6 +69871,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 12 + - uid: 6032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 - uid: 6096 components: - type: Transform @@ -70414,11 +70386,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 - - uid: 7285 + - uid: 7215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 12 + - uid: 7254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - uid: 7621 components: @@ -70857,10 +70841,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-9.5 parent: 12 - - uid: 9084 + - uid: 9416 components: - type: Transform - pos: 39.5,-1.5 + rot: -1.5707963267948966 rad + pos: 20.5,10.5 parent: 12 - uid: 9528 components: @@ -70931,10 +70916,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,69.5 parent: 12 - - uid: 10833 + - uid: 10818 components: - type: Transform - pos: 20.5,9.5 + rot: 1.5707963267948966 rad + pos: 37.5,3.5 parent: 12 - uid: 10835 components: @@ -70954,75 +70940,11 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 12 - - uid: 10877 - components: - - type: Transform - pos: 21.5,9.5 - parent: 12 - - uid: 10903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 10904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 10905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 10906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 10907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 10908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 12 - - uid: 10909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,5.5 - parent: 12 - - uid: 10910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,6.5 - parent: 12 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 12 - uid: 10921 components: - type: Transform pos: 21.5,12.5 parent: 12 - - uid: 10927 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - uid: 10929 components: - type: Transform @@ -71062,18 +70984,6 @@ entities: - type: Transform pos: 20.5,11.5 parent: 12 - - uid: 10951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - uid: 10952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10977 components: - type: Transform @@ -71084,11 +70994,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 11053 - components: - - type: Transform - pos: 23.5,10.5 - parent: 12 - uid: 11056 components: - type: Transform @@ -71129,6 +71034,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 12 + - uid: 11214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-2.5 + parent: 12 - uid: 11227 components: - type: Transform @@ -71228,6 +71139,12 @@ entities: - type: Transform pos: -4.5,9.5 parent: 12 + - uid: 11375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 12 - uid: 11385 components: - type: Transform @@ -71238,15 +71155,11 @@ entities: - type: Transform pos: 30.5,8.5 parent: 12 - - uid: 11387 - components: - - type: Transform - pos: 29.5,8.5 - parent: 12 - - uid: 11388 + - uid: 11392 components: - type: Transform - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 12 - uid: 11398 components: @@ -71268,6 +71181,16 @@ entities: - type: Transform pos: 24.5,17.5 parent: 12 + - uid: 11455 + components: + - type: Transform + pos: 47.5,11.5 + parent: 12 + - uid: 11464 + components: + - type: Transform + pos: 47.5,9.5 + parent: 12 - uid: 11937 components: - type: Transform @@ -71692,31 +71615,28 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 12 - - uid: 16445 - components: - - type: Transform - pos: 57.5,12.5 - parent: 12 - - uid: 16493 + - uid: 16639 components: - type: Transform - pos: 58.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 parent: 12 - - uid: 16533 + - uid: 17226 components: - type: Transform - pos: 56.5,12.5 + pos: -6.5,22.5 parent: 12 - - uid: 16639 + - uid: 17552 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,6.5 + pos: 30.5,10.5 parent: 12 - - uid: 17226 + - uid: 17607 components: - type: Transform - pos: -6.5,22.5 + rot: 1.5707963267948966 rad + pos: 30.5,11.5 parent: 12 - uid: 17641 components: @@ -71730,12 +71650,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 12 - - uid: 17843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 12 - uid: 17845 components: - type: Transform @@ -71977,18 +71891,6 @@ entities: - type: Transform pos: -67.5,53.5 parent: 12 - - uid: 19243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - uid: 19277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 12 - uid: 19864 components: - type: Transform @@ -72321,6 +72223,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-41.5 parent: 12 + - uid: 22110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 12 - uid: 22170 components: - type: Transform @@ -73102,6 +73010,12 @@ entities: - type: Transform pos: -44.5,45.5 parent: 12 + - uid: 25194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 12 - uid: 25415 components: - type: Transform @@ -73265,11 +73179,29 @@ entities: rot: 3.141592653589793 rad pos: -20.5,59.5 parent: 12 - - uid: 26550 + - uid: 26447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,1.5 + pos: 34.5,0.5 + parent: 12 + - uid: 26778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 12 + - uid: 27240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 12 + - uid: 27241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 12 - uid: 27319 components: @@ -73748,60 +73680,47 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,18.5 parent: 12 - - uid: 28147 - components: - - type: Transform - pos: 58.5,4.5 - parent: 12 - - uid: 28148 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - - uid: 28149 - components: - - type: Transform - pos: 61.5,4.5 - parent: 12 - - uid: 28150 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 28151 + - uid: 28230 components: - type: Transform - pos: 63.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,8.5 parent: 12 - - uid: 28152 + - uid: 28231 components: - type: Transform - pos: 64.5,4.5 + rot: 1.5707963267948966 rad + pos: 53.5,8.5 parent: 12 - - uid: 28153 + - uid: 28232 components: - type: Transform - pos: 65.5,4.5 + rot: 1.5707963267948966 rad + pos: 52.5,8.5 parent: 12 - - uid: 28154 + - uid: 28233 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 51.5,8.5 parent: 12 - - uid: 28155 + - uid: 28238 components: - type: Transform - pos: 67.5,4.5 + rot: 1.5707963267948966 rad + pos: 50.5,8.5 parent: 12 - - uid: 28156 + - uid: 28377 components: - type: Transform - pos: 68.5,4.5 + rot: 1.5707963267948966 rad + pos: 49.5,8.5 parent: 12 - - uid: 28164 + - uid: 28378 components: - type: Transform - pos: 60.5,4.5 + rot: 1.5707963267948966 rad + pos: 47.5,8.5 parent: 12 - uid: 28392 components: @@ -73863,12 +73782,24 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 12 + - uid: 28425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 - uid: 28457 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-20.5 parent: 12 + - uid: 28493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 12 - uid: 28526 components: - type: Transform @@ -74070,125 +74001,22 @@ entities: - type: Transform pos: -4.5,-21.5 parent: 12 - - uid: 28744 - components: - - type: Transform - pos: 60.5,12.5 - parent: 12 - - uid: 28745 - components: - - type: Transform - pos: 61.5,12.5 - parent: 12 - - uid: 28746 - components: - - type: Transform - pos: 62.5,12.5 - parent: 12 - - uid: 28747 - components: - - type: Transform - pos: 63.5,12.5 - parent: 12 - - uid: 28748 - components: - - type: Transform - pos: 64.5,12.5 - parent: 12 - - uid: 28749 - components: - - type: Transform - pos: 65.5,12.5 - parent: 12 - - uid: 28750 - components: - - type: Transform - pos: 67.5,12.5 - parent: 12 - - uid: 28751 - components: - - type: Transform - pos: 68.5,12.5 - parent: 12 - - uid: 28752 - components: - - type: Transform - pos: 69.5,12.5 - parent: 12 - - uid: 28753 - components: - - type: Transform - pos: 70.5,12.5 - parent: 12 - - uid: 28754 - components: - - type: Transform - pos: 71.5,12.5 - parent: 12 - - uid: 28755 - components: - - type: Transform - pos: 72.5,12.5 - parent: 12 - - uid: 28756 - components: - - type: Transform - pos: 73.5,12.5 - parent: 12 - - uid: 28757 - components: - - type: Transform - pos: 66.5,12.5 - parent: 12 - - uid: 28758 - components: - - type: Transform - pos: 73.5,11.5 - parent: 12 - - uid: 28759 - components: - - type: Transform - pos: 74.5,11.5 - parent: 12 - - uid: 28760 - components: - - type: Transform - pos: 75.5,11.5 - parent: 12 - - uid: 28761 - components: - - type: Transform - pos: 76.5,11.5 - parent: 12 - - uid: 28762 - components: - - type: Transform - pos: 77.5,11.5 - parent: 12 - - uid: 28763 - components: - - type: Transform - pos: 78.5,11.5 - parent: 12 - - uid: 28764 - components: - - type: Transform - pos: 78.5,10.5 - parent: 12 - - uid: 28765 + - uid: 28922 components: - type: Transform - pos: 78.5,9.5 + pos: 47.5,10.5 parent: 12 - - uid: 28766 + - uid: 28926 components: - type: Transform - pos: 78.5,8.5 + rot: 3.141592653589793 rad + pos: 65.5,-1.5 parent: 12 - - uid: 28767 + - uid: 28927 components: - type: Transform - pos: 78.5,7.5 + rot: 3.141592653589793 rad + pos: 65.5,-0.5 parent: 12 - uid: 28932 components: @@ -74244,11 +74072,23 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 12 - - uid: 28942 + - uid: 28944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 12 + - uid: 29000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 34.5,4.5 + parent: 12 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 12 - uid: 29054 components: @@ -74358,6 +74198,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,23.5 parent: 12 + - uid: 29086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 12 - uid: 29090 components: - type: Transform @@ -74368,17 +74214,47 @@ entities: - type: Transform pos: 9.5,23.5 parent: 12 - - uid: 29180 + - uid: 29094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,3.5 + rot: 1.5707963267948966 rad + pos: 36.5,4.5 parent: 12 - - uid: 29302 + - uid: 29102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,9.5 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 12 + - uid: 29103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 12 + - uid: 29107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 12 + - uid: 29108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 12 + - uid: 29148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,0.5 + parent: 12 + - uid: 29180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,3.5 parent: 12 - uid: 29418 components: @@ -74714,16 +74590,6 @@ entities: - type: Transform pos: 52.5,68.5 parent: 12 - - uid: 30454 - components: - - type: Transform - pos: 45.5,-0.5 - parent: 12 - - uid: 30457 - components: - - type: Transform - pos: 45.5,0.5 - parent: 12 - uid: 30473 components: - type: Transform @@ -75070,6 +74936,318 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 + - uid: 31518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,0.5 + parent: 12 + - uid: 31519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,1.5 + parent: 12 + - uid: 31742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,2.5 + parent: 12 + - uid: 31743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,3.5 + parent: 12 + - uid: 31744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,4.5 + parent: 12 + - uid: 31745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,5.5 + parent: 12 + - uid: 31747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,6.5 + parent: 12 + - uid: 31756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,7.5 + parent: 12 + - uid: 31757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 12 + - uid: 31764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,9.5 + parent: 12 + - uid: 31838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,10.5 + parent: 12 + - uid: 31839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,11.5 + parent: 12 + - uid: 31840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,11.5 + parent: 12 + - uid: 31841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 12 + - uid: 31842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,11.5 + parent: 12 + - uid: 31843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,11.5 + parent: 12 + - uid: 31844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,11.5 + parent: 12 + - uid: 31845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,11.5 + parent: 12 + - uid: 31846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,11.5 + parent: 12 + - uid: 31847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,11.5 + parent: 12 + - uid: 31848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,11.5 + parent: 12 + - uid: 31849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,11.5 + parent: 12 + - uid: 31850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,11.5 + parent: 12 + - uid: 31851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,11.5 + parent: 12 + - uid: 31852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,11.5 + parent: 12 + - uid: 31853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,10.5 + parent: 12 + - uid: 31854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,8.5 + parent: 12 + - uid: 31855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,7.5 + parent: 12 + - uid: 31856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,6.5 + parent: 12 + - uid: 31857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,5.5 + parent: 12 + - uid: 31858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,9.5 + parent: 12 + - uid: 31859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,4.5 + parent: 12 + - uid: 31860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,3.5 + parent: 12 + - uid: 31861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,2.5 + parent: 12 + - uid: 31862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,0.5 + parent: 12 + - uid: 31863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-0.5 + parent: 12 + - uid: 31864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-1.5 + parent: 12 + - uid: 31865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-2.5 + parent: 12 + - uid: 31866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,1.5 + parent: 12 + - uid: 31867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-2.5 + parent: 12 + - uid: 31868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-2.5 + parent: 12 + - uid: 31869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-2.5 + parent: 12 + - uid: 31870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,-2.5 + parent: 12 + - uid: 31871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-2.5 + parent: 12 + - uid: 31872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-2.5 + parent: 12 + - uid: 31873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-2.5 + parent: 12 + - uid: 31874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-2.5 + parent: 12 + - uid: 31875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-2.5 + parent: 12 + - uid: 31876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-2.5 + parent: 12 + - uid: 31877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-2.5 + parent: 12 + - uid: 31878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-2.5 + parent: 12 + - uid: 31879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 12 - proto: Cautery entities: - uid: 9752 @@ -75101,12 +75279,6 @@ entities: canCollide: False - proto: Chair entities: - - uid: 408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 12 - uid: 907 components: - type: Transform @@ -75365,12 +75537,6 @@ entities: - type: Transform pos: -23.5,-2.5 parent: 12 - - uid: 10938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 12 - uid: 11124 components: - type: Transform @@ -75389,24 +75555,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,42.5 parent: 12 - - uid: 11942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 12 - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,10.5 parent: 12 - - uid: 12056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 12 - uid: 12281 components: - type: Transform @@ -75509,12 +75663,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 12 - - uid: 16357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 12 - uid: 16767 components: - type: Transform @@ -75600,12 +75748,6 @@ entities: - type: Transform pos: -42.5,62.5 parent: 12 - - uid: 19436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 - parent: 12 - uid: 20875 components: - type: Transform @@ -75990,21 +76132,6 @@ entities: - type: Transform pos: 3.5,65.5 parent: 12 - - uid: 25192 - components: - - type: Transform - pos: 12.5,0.5 - parent: 12 - - uid: 25193 - components: - - type: Transform - pos: 13.5,0.5 - parent: 12 - - uid: 25194 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - uid: 25365 components: - type: Transform @@ -76422,12 +76549,58 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,70.5 parent: 12 + - uid: 26592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 12 + - uid: 27042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,10.5 + parent: 12 - uid: 28251 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 12 + - uid: 28529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,6.5 + parent: 12 + - uid: 28673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,5.5 + parent: 12 + - uid: 28675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 12 + - uid: 28676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 12 + - uid: 28757 + components: + - type: Transform + pos: 55.5,0.5 + parent: 12 + - uid: 28758 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 - uid: 29349 components: - type: Transform @@ -76455,6 +76628,24 @@ entities: - type: Transform pos: -38.5,60.5 parent: 12 + - uid: 29972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 12 + - uid: 29973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 + - uid: 29974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 12 - uid: 30342 components: - type: Transform @@ -76579,12 +76770,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 12 - - uid: 30483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 12 - uid: 30484 components: - type: Transform @@ -76764,6 +76949,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,78.5 parent: 12 + - uid: 21313 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 12 - uid: 22348 components: - type: Transform @@ -76794,6 +76984,11 @@ entities: rot: -1.5707963267948966 rad pos: 58.720875,57.492115 parent: 12 + - uid: 26552 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 12 - uid: 27066 components: - type: Transform @@ -76895,6 +77090,11 @@ entities: rot: 1.5707963267948966 rad pos: -19.470709,-20.484278 parent: 12 + - uid: 29971 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 12 - uid: 31486 components: - type: Transform @@ -77334,21 +77534,11 @@ entities: parent: 12 - proto: ClosetEmergencyFilledRandom entities: - - uid: 149 - components: - - type: Transform - pos: 72.5,11.5 - parent: 12 - uid: 1276 components: - type: Transform pos: 35.5,-43.5 parent: 12 - - uid: 3078 - components: - - type: Transform - pos: 39.5,3.5 - parent: 12 - uid: 4140 components: - type: Transform @@ -77524,30 +77714,40 @@ entities: - type: Transform pos: -45.5,31.5 parent: 12 - - uid: 27228 + - uid: 26682 components: - type: Transform - pos: -29.5,60.5 + pos: 14.5,7.5 parent: 12 - - uid: 27311 + - uid: 26693 + components: + - type: Transform + pos: 61.5,8.5 + parent: 12 + - uid: 27016 components: - type: Transform - pos: 9.5,-7.5 + pos: 7.5,-4.5 + parent: 12 + - uid: 27228 + components: + - type: Transform + pos: -29.5,60.5 parent: 12 - uid: 27862 components: - type: Transform pos: 27.5,16.5 parent: 12 - - uid: 28533 + - uid: 28751 components: - type: Transform - pos: 15.5,7.5 + pos: 62.5,-2.5 parent: 12 - - uid: 28534 + - uid: 28840 components: - type: Transform - pos: 13.5,-4.5 + pos: 29.5,9.5 parent: 12 - uid: 29230 components: @@ -77587,13 +77787,13 @@ entities: - type: Transform pos: -61.5,-18.5 parent: 12 - - uid: 31764 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 5121 components: - type: Transform - pos: 53.5,-1.5 + pos: 61.5,9.5 parent: 12 -- proto: ClosetEmergencyN2FilledRandom - entities: - uid: 6198 components: - type: Transform @@ -77661,11 +77861,6 @@ entities: parent: 12 - proto: ClosetFireFilled entities: - - uid: 253 - components: - - type: Transform - pos: 71.5,11.5 - parent: 12 - uid: 913 components: - type: Transform @@ -77816,16 +78011,6 @@ entities: - type: Transform pos: -45.5,30.5 parent: 12 - - uid: 27190 - components: - - type: Transform - pos: 55.5,-1.5 - parent: 12 - - uid: 27304 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 12 - uid: 27833 components: - type: Transform @@ -77953,43 +78138,6 @@ entities: parent: 12 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 102 - components: - - type: Transform - pos: 74.5,12.5 - parent: 12 - - type: 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: - - 6287 - - 6261 - - 6260 - - 6259 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 894 components: - type: Transform @@ -78059,11 +78207,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 8293 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 12 - uid: 8982 components: - type: Transform @@ -78074,6 +78217,11 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 12 + - uid: 11472 + components: + - type: Transform + pos: 55.5,12.5 + parent: 12 - uid: 12021 components: - type: Transform @@ -78104,6 +78252,11 @@ entities: - type: Transform pos: -7.5,15.5 parent: 12 + - uid: 17584 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 12 - uid: 18105 components: - type: Transform @@ -78164,11 +78317,6 @@ entities: - type: Transform pos: 0.5,54.5 parent: 12 - - uid: 24655 - components: - - type: Transform - pos: 30.5,10.5 - parent: 12 - uid: 24994 components: - type: Transform @@ -78240,10 +78388,10 @@ entities: - type: Transform pos: -7.5,3.5 parent: 12 - - uid: 28946 + - uid: 28839 components: - type: Transform - pos: 5.5,-16.5 + pos: 29.5,8.5 parent: 12 - uid: 29165 components: @@ -78277,20 +78425,15 @@ entities: parent: 12 - proto: ClosetRadiationSuitFilled entities: - - uid: 1354 - components: - - type: Transform - pos: 24.5,-15.5 - parent: 12 - uid: 2315 components: - type: Transform pos: -33.5,-39.5 parent: 12 - - uid: 4874 + - uid: 6259 components: - type: Transform - pos: 10.5,-11.5 + pos: 57.5,2.5 parent: 12 - uid: 6771 components: @@ -78302,11 +78445,6 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 12 - - uid: 10981 - components: - - type: Transform - pos: 19.5,7.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -78322,6 +78460,26 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 12 + - uid: 27218 + components: + - type: Transform + pos: 59.5,8.5 + parent: 12 + - uid: 28692 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28693 + components: + - type: Transform + pos: 52.5,1.5 + parent: 12 + - uid: 28694 + components: + - type: Transform + pos: 52.5,2.5 + parent: 12 - proto: ClosetSteelBase entities: - uid: 16506 @@ -78368,23 +78526,11 @@ entities: parent: 12 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 6741 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 12 - uid: 8883 components: - type: Transform pos: 39.5,-20.5 parent: 12 - - uid: 9641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 21377 components: - type: Transform @@ -78401,13 +78547,14 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,40.5 parent: 12 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 9461 + - uid: 28494 components: - type: Transform - pos: 14.5,6.5 + rot: 3.141592653589793 rad + pos: 45.5,-2.5 parent: 12 +- proto: ClosetWallFireFilledRandom + entities: - uid: 21378 components: - type: Transform @@ -78429,6 +78576,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,39.5 parent: 12 + - uid: 28744 + components: + - type: Transform + pos: 20.5,8.5 + parent: 12 - proto: ClothingBackpackSatchelGenetics entities: - uid: 2696 @@ -78487,6 +78639,14 @@ entities: - type: Transform pos: 11.527891,-16.45502 parent: 12 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 28711 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.532898,-6.47126 + parent: 12 - proto: ClothingEyesBlindfold entities: - uid: 17606 @@ -78655,7 +78815,7 @@ entities: - uid: 23561 components: - type: Transform - pos: 39.49916,53.57387 + pos: 42.446712,53.64907 parent: 12 - uid: 28501 components: @@ -78887,14 +79047,6 @@ entities: - type: Transform pos: -21.667349,-7.343448 parent: 12 -- proto: ClothingHeadHelmetEVA - entities: - - uid: 2021 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingHeadHelmetRiot entities: - uid: 20866 @@ -78959,14 +79111,6 @@ entities: - type: Transform pos: 0.50635767,25.52865 parent: 12 -- proto: ClothingMaskBreath - entities: - - uid: 6220 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingMaskBreathMedical entities: - uid: 2924 @@ -79006,8 +79150,8 @@ entities: - uid: 27188 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.727516,2.346661 + rot: -25.132741228718352 rad + pos: 17.825888,-13.641907 parent: 12 - uid: 29095 components: @@ -79271,14 +79415,6 @@ entities: - type: Transform pos: -11.945792,60.527626 parent: 12 -- proto: ClothingOuterHardsuitEVA - entities: - - uid: 2020 - components: - - type: Transform - parent: 6209 - - type: Physics - canCollide: False - proto: ClothingOuterHoodieBlack entities: - uid: 25982 @@ -79357,6 +79493,18 @@ entities: - type: Transform pos: -7.747349,-54.783165 parent: 12 +- proto: ClothingOuterVestHazard + entities: + - uid: 28761 + components: + - type: Transform + pos: 53.333237,-3.3827062 + parent: 12 + - uid: 28762 + components: + - type: Transform + pos: 53.708237,-3.6222892 + parent: 12 - proto: ClothingOuterWinterChef entities: - uid: 24081 @@ -79466,12 +79614,19 @@ entities: - type: Transform pos: -2.539668,30.440784 parent: 12 +- proto: ClothingUnderSocksCoder + entities: + - uid: 4527 + components: + - type: Transform + pos: -0.50228786,-20.693401 + parent: 12 - proto: ClothingUniformColorRainbow entities: - uid: 29984 components: - type: Transform - pos: 47.602154,-2.6595716 + pos: 47.687027,-3.4254918 parent: 12 - proto: ClothingUniformJumpskirtBlueElegantDress entities: @@ -79576,17 +79731,17 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-38.5 parent: 12 - - uid: 12321 + - uid: 9862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 parent: 12 - - uid: 12322 + - uid: 12321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,10.5 + pos: 33.5,6.5 parent: 12 - uid: 12327 components: @@ -79988,6 +80143,19 @@ entities: - type: Transform pos: -51.5,30.5 parent: 12 +- proto: CommandmentCircuitBoard + entities: + - uid: 28530 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.5673757,-15.712456 + parent: 12 + - uid: 28856 + components: + - type: Transform + pos: -0.5296287,-15.396446 + parent: 12 - proto: CommsComputerCircuitboard entities: - uid: 31351 @@ -79997,12 +80165,6 @@ entities: parent: 12 - proto: ComputerAlert entities: - - uid: 3470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,1.5 - parent: 12 - uid: 3911 components: - type: Transform @@ -80020,6 +80182,12 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 12 + - uid: 29966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 12 - proto: ComputerAnalysisConsole entities: - uid: 4892 @@ -80145,12 +80313,6 @@ entities: - type: Transform pos: -12.5,-37.5 parent: 12 - - uid: 8740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 12 - uid: 17580 components: - type: Transform @@ -80296,16 +80458,16 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,27.5 parent: 12 - - uid: 4732 + - uid: 4387 components: - type: Transform - pos: 18.5,-15.5 + rot: 3.141592653589793 rad + pos: 53.5,-6.5 parent: 12 - - uid: 4911 + - uid: 4732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 + pos: 18.5,-15.5 parent: 12 - uid: 5474 components: @@ -80449,6 +80611,12 @@ entities: - type: Transform pos: 34.5,67.5 parent: 12 + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 12 - uid: 18157 components: - type: Transform @@ -80500,12 +80668,6 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,36.5 parent: 12 - - uid: 8885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 12 - uid: 11470 components: - type: Transform @@ -80631,29 +80793,43 @@ entities: parent: 12 - proto: ContainmentFieldGenerator entities: - - uid: 4741 + - uid: 4631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-10.5 + pos: 68.5,8.5 parent: 12 - - uid: 4960 + - uid: 4633 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-2.5 + pos: 76.5,8.5 parent: 12 - - uid: 4961 + - uid: 4716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-2.5 + pos: 76.5,0.5 parent: 12 - - uid: 4962 + - uid: 11469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 68.5,0.5 + parent: 12 +- proto: ContainmentFieldGeneratorFlatpack + entities: + - uid: 9978 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.353416,-0.30162263 + parent: 12 + - uid: 10284 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 62.62883,-0.55167043 parent: 12 - proto: ConveyorBelt entities: @@ -81194,6 +81370,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: CorporateCircuitBoard + entities: + - uid: 28851 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.5230923,-11.528757 + parent: 12 - proto: CrateAirlockKit entities: - uid: 1042 @@ -81416,29 +81600,17 @@ entities: ent: null - proto: CrateEngineeringAMEJar entities: - - uid: 3205 + - uid: 29395 components: - type: Transform - pos: 35.5,-2.5 + pos: 33.5,4.5 parent: 12 - proto: CrateEngineeringAMEShielding entities: - - uid: 28391 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 12 -- proto: CrateEngineeringCableBulk - entities: - - uid: 5028 - components: - - type: Transform - pos: 27.5,2.5 - parent: 12 - - uid: 25201 + - uid: 29355 components: - type: Transform - pos: 26.5,-15.5 + pos: 33.5,0.5 parent: 12 - proto: CrateEngineeringElectricalSupplies entities: @@ -81735,10 +81907,10 @@ entities: parent: 12 - proto: CrateRadiation entities: - - uid: 9338 + - uid: 11553 components: - type: Transform - pos: 26.5,2.5 + pos: 57.5,12.5 parent: 12 - proto: CrateSecure entities: @@ -81907,7 +82079,7 @@ entities: - uid: 29985 components: - type: Transform - pos: 47.341232,-2.7166476 + pos: 47.436977,-3.6918468 parent: 12 - proto: Crematorium entities: @@ -81918,10 +82090,10 @@ entities: parent: 12 - proto: CrewMonitoringServer entities: - - uid: 7281 + - uid: 26979 components: - type: Transform - pos: -0.5,-11.5 + pos: -41.5,-20.5 parent: 12 - type: SingletonDeviceNetServer active: False @@ -82230,10 +82402,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAME entities: - - uid: 5110 + - uid: 5966 components: - type: Transform - pos: 35.5,-0.5 + pos: 36.5,2.5 parent: 12 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -82265,10 +82437,10 @@ entities: parent: 12 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 26883 + - uid: 7235 components: - type: Transform - pos: 64.5,-1.5 + pos: 15.5,-4.5 parent: 12 - proto: DefaultStationBeaconBar entities: @@ -82606,10 +82778,10 @@ entities: parent: 12 - proto: DefaultStationBeaconSingularity entities: - - uid: 21607 + - uid: 26754 components: - type: Transform - pos: 20.5,5.5 + pos: 59.5,4.5 parent: 12 - proto: DefaultStationBeaconSolars entities: @@ -82833,12 +83005,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 12 - - uid: 2252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 12 - uid: 3620 components: - type: Transform @@ -82956,6 +83122,11 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 12 + - uid: 4661 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 12 - uid: 4674 components: - type: Transform @@ -82990,6 +83161,17 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 12 + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,9.5 + parent: 12 + - uid: 5892 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 12 - uid: 6161 components: - type: Transform @@ -83048,11 +83230,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 12 - - uid: 8420 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 12 - uid: 8421 components: - type: Transform @@ -83086,61 +83263,22 @@ entities: - type: Transform pos: 49.5,-17.5 parent: 12 - - uid: 8979 - components: - - type: Transform - pos: 40.5,4.5 - parent: 12 - - uid: 9000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - uid: 9001 components: - type: Transform pos: 30.5,17.5 parent: 12 - - uid: 9053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 12 - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 12 - - uid: 9069 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 12 - uid: 9071 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,21.5 parent: 12 - - uid: 9300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 12 - - uid: 9426 + - uid: 9084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 12 - - uid: 9427 - components: - - type: Transform - pos: 20.5,-12.5 + pos: 40.5,-0.5 parent: 12 - uid: 9798 components: @@ -83170,11 +83308,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-16.5 parent: 12 - - uid: 9840 + - uid: 10201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 12 - uid: 10320 components: @@ -83205,35 +83343,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 12 - - uid: 10867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 - parent: 12 - - uid: 10916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 12 - uid: 10924 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 12 - - uid: 11031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 12 - - uid: 11035 - components: - - type: Transform - pos: 28.5,10.5 - parent: 12 - uid: 11036 components: - type: Transform @@ -83246,17 +83361,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 12 - - uid: 11050 - components: - - type: Transform - pos: 20.5,10.5 - parent: 12 - - uid: 11051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - uid: 11052 components: - type: Transform @@ -83268,16 +83372,15 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,11.5 parent: 12 - - uid: 11383 + - uid: 11384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 + pos: 31.5,8.5 parent: 12 - - uid: 11384 + - uid: 11446 components: - type: Transform - pos: 31.5,8.5 + pos: 20.5,10.5 parent: 12 - uid: 11965 components: @@ -83526,6 +83629,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 12 + - uid: 18671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 12 - uid: 19249 components: - type: Transform @@ -83544,6 +83653,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-11.5 parent: 12 + - uid: 19545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 12 - uid: 20076 components: - type: Transform @@ -83681,6 +83796,24 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-0.5 parent: 12 + - uid: 21324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,51.5 + parent: 12 + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,10.5 + parent: 12 + - uid: 22125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,8.5 + parent: 12 - uid: 22441 components: - type: Transform @@ -83826,18 +83959,80 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 12 + - uid: 25464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 12 + - uid: 25470 + components: + - type: Transform + pos: 31.5,0.5 + parent: 12 - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-47.5 parent: 12 + - uid: 26511 + components: + - type: Transform + pos: 23.5,11.5 + parent: 12 + - uid: 26729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 12 + - uid: 26791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 26802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 12 + - uid: 26811 + components: + - type: Transform + pos: 30.5,10.5 + parent: 12 + - uid: 26815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 12 + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-4.5 + parent: 12 - uid: 27317 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 12 + - uid: 27387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 12 + - uid: 27604 + components: + - type: Transform + pos: 54.5,8.5 + parent: 12 - uid: 27984 components: - type: Transform @@ -83904,12 +84099,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 12 - - uid: 28055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - uid: 28056 components: - type: Transform @@ -83980,6 +84169,23 @@ entities: - type: Transform pos: 60.5,45.5 parent: 12 + - uid: 28148 + components: + - type: Transform + pos: 38.5,12.5 + parent: 12 + - uid: 28149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 12 + - uid: 28150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,12.5 + parent: 12 - uid: 28214 components: - type: Transform @@ -83992,6 +84198,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-26.5 parent: 12 + - uid: 28998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 12 - uid: 29031 components: - type: Transform @@ -84146,16 +84358,16 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-27.5 parent: 12 - - uid: 5377 + - uid: 5054 components: - type: Transform pos: 23.5,-17.5 parent: 12 - - uid: 8344 + - uid: 5810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 + rot: 1.5707963267948966 rad + pos: 33.5,23.5 parent: 12 - uid: 8392 components: @@ -84169,23 +84381,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-35.5 parent: 12 - - uid: 9046 - components: - - type: Transform - pos: 43.5,-18.5 - parent: 12 - uid: 10925 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,12.5 parent: 12 - - uid: 10986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 12 - uid: 10994 components: - type: Transform @@ -84497,11 +84698,11 @@ entities: parent: 12 - proto: DisposalPipe entities: - - uid: 23 + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,8.5 + pos: 17.5,-12.5 parent: 12 - uid: 637 components: @@ -84884,11 +85085,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 12 - - uid: 2130 + - uid: 2166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 parent: 12 - uid: 2185 components: @@ -84902,6 +85103,12 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,45.5 parent: 12 + - uid: 2876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 12 - uid: 3115 components: - type: Transform @@ -85314,12 +85521,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-25.5 parent: 12 - - uid: 3980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - uid: 3989 components: - type: Transform @@ -85511,6 +85712,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-40.5 parent: 12 + - uid: 5072 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 12 - uid: 5240 components: - type: Transform @@ -85523,23 +85729,107 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 12 + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 12 - uid: 5412 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 12 + - uid: 5514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 12 - uid: 5551 components: - type: Transform pos: 7.5,-48.5 parent: 12 + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 12 + - uid: 5921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 12 + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 12 + - uid: 5923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 12 + - uid: 5959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-17.5 + parent: 12 + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-20.5 + parent: 12 + - uid: 5965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 12 + - uid: 5991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-24.5 + parent: 12 + - uid: 5995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-22.5 + parent: 12 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 12 - uid: 6206 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-51.5 parent: 12 + - uid: 6719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 12 + - uid: 6765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 12 - uid: 6843 components: - type: Transform @@ -85666,11 +85956,17 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 12 - - uid: 7086 + - uid: 7219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 12 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-12.5 parent: 12 - uid: 7305 components: @@ -86199,90 +86495,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 12 - - uid: 8977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 12 - uid: 9041 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-4.5 parent: 12 - - uid: 9047 - components: - - type: Transform - pos: 43.5,-19.5 - parent: 12 - - uid: 9048 - components: - - type: Transform - pos: 43.5,-20.5 - parent: 12 - - uid: 9049 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 12 - - uid: 9050 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 12 - - uid: 9051 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 12 - - uid: 9052 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 12 - - uid: 9055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-25.5 - parent: 12 - - uid: 9056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 12 - - uid: 9057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 12 - - uid: 9058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 12 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 12 - - uid: 9060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 12 - - uid: 9061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 12 - uid: 9062 components: - type: Transform @@ -86469,133 +86687,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 12 - - uid: 9399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 12 - - uid: 9400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 9401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - uid: 9402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - uid: 9404 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 12 - - uid: 9405 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 12 - - uid: 9406 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 12 - - uid: 9407 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 12 - - uid: 9408 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 12 - - uid: 9409 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 12 - - uid: 9410 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 12 - - uid: 9411 - components: - - type: Transform - pos: 15.5,-4.5 - parent: 12 - - uid: 9412 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 12 - - uid: 9413 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 12 - - uid: 9414 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 12 - - uid: 9415 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 12 - - uid: 9416 - components: - - type: Transform - pos: 15.5,0.5 - parent: 12 - - uid: 9417 - components: - - type: Transform - pos: 15.5,1.5 - parent: 12 - - uid: 9418 - components: - - type: Transform - pos: 15.5,2.5 - parent: 12 - - uid: 9419 - components: - - type: Transform - pos: 15.5,3.5 - parent: 12 - - uid: 9420 - components: - - type: Transform - pos: 15.5,4.5 - parent: 12 - - uid: 9421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 12 - - uid: 9422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 12 - uid: 9552 components: - type: Transform @@ -86672,24 +86763,6 @@ entities: - type: Transform pos: 27.5,-17.5 parent: 12 - - uid: 9785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - uid: 9786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - uid: 9787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - uid: 9789 components: - type: Transform @@ -86917,12 +86990,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 12 - - uid: 10701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 12 - uid: 10871 components: - type: Transform @@ -86935,12 +87002,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,10.5 parent: 12 - - uid: 10873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 12 - uid: 10874 components: - type: Transform @@ -86958,12 +87019,6 @@ entities: - type: Transform pos: 22.5,11.5 parent: 12 - - uid: 10923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - uid: 10926 components: - type: Transform @@ -87114,12 +87169,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,10.5 parent: 12 - - uid: 10996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - uid: 10998 components: - type: Transform @@ -87144,81 +87193,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,5.5 parent: 12 - - uid: 11005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - uid: 11006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - uid: 11007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - uid: 11008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 12 - - uid: 11010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 12 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 12 - - uid: 11012 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 12 - - uid: 11019 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 12 - - uid: 11020 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 12 - - uid: 11021 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 12 - uid: 11042 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-16.5 parent: 12 - - uid: 11048 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - uid: 11123 components: - type: Transform @@ -87547,12 +87527,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,23.5 parent: 12 - - uid: 13009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 - parent: 12 - uid: 13188 components: - type: Transform @@ -88758,6 +88732,24 @@ entities: rot: 3.141592653589793 rad pos: -47.5,29.5 parent: 12 + - uid: 17844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-27.5 + parent: 12 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 12 + - uid: 18306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-19.5 + parent: 12 - uid: 18563 components: - type: Transform @@ -88782,6 +88774,18 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-40.5 parent: 12 + - uid: 18756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 12 + - uid: 18758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 12 - uid: 18894 components: - type: Transform @@ -88794,12 +88798,54 @@ entities: rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 12 + - uid: 19177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - uid: 19189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-18.5 + parent: 12 + - uid: 19195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 12 - uid: 19238 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-42.5 parent: 12 + - uid: 19243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 12 + - uid: 19245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-21.5 + parent: 12 + - uid: 19277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-23.5 + parent: 12 + - uid: 19539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 12 - uid: 19843 components: - type: Transform @@ -89601,6 +89647,29 @@ entities: - type: Transform pos: -25.5,27.5 parent: 12 + - uid: 22107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 12 + - uid: 22108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 12 + - uid: 22121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - uid: 22122 + components: + - type: Transform + pos: 30.5,9.5 + parent: 12 - uid: 22275 components: - type: Transform @@ -90716,6 +90785,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 12 + - uid: 25331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 12 - uid: 25371 components: - type: Transform @@ -90728,18 +90803,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-41.5 parent: 12 - - uid: 25567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 12 - - uid: 25682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 12 - uid: 25992 components: - type: Transform @@ -90813,11 +90876,152 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 12 + - uid: 26801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-0.5 + parent: 12 + - uid: 27305 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - uid: 27306 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 12 + - uid: 27307 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 12 - uid: 27318 components: - type: Transform pos: 6.5,-20.5 parent: 12 + - uid: 27388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 12 + - uid: 27830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 12 + - uid: 27835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 12 + - uid: 27836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 12 + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 12 + - uid: 27892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 12 + - uid: 27893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 12 + - uid: 27894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 12 + - uid: 27895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,8.5 + parent: 12 + - uid: 27896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,8.5 + parent: 12 + - uid: 27897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,8.5 + parent: 12 + - uid: 27898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 12 + - uid: 27899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 12 + - uid: 27900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 12 + - uid: 27902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 12 + - uid: 27903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 12 + - uid: 27904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 12 + - uid: 27905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 12 + - uid: 27906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,11.5 + parent: 12 + - uid: 27907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 12 - uid: 27953 components: - type: Transform @@ -91224,6 +91428,12 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 12 + - uid: 28055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 12 - uid: 28059 components: - type: Transform @@ -91640,11 +91850,83 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,50.5 parent: 12 + - uid: 28139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 12 - uid: 28145 components: - type: Transform pos: 69.5,49.5 parent: 12 + - uid: 28147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 12 + - uid: 28151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 12 + - uid: 28152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 12 + - uid: 28153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 12 + - uid: 28154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 12 + - uid: 28155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 12 + - uid: 28156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 12 + - uid: 28164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 12 + - uid: 28217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 12 + - uid: 28218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 12 + - uid: 28219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 12 - uid: 28443 components: - type: Transform @@ -91705,6 +91987,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-26.5 parent: 12 + - uid: 28847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,52.5 + parent: 12 - uid: 28896 components: - type: Transform @@ -91715,6 +92003,30 @@ entities: - type: Transform pos: 6.5,-18.5 parent: 12 + - uid: 28945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 12 + - uid: 28946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 12 + - uid: 28948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 12 + - uid: 28999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 12 - uid: 29016 components: - type: Transform @@ -92254,11 +92566,6 @@ entities: - type: Transform pos: -27.5,-18.5 parent: 12 - - uid: 2255 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 3387 components: - type: Transform @@ -92513,8 +92820,7 @@ entities: - uid: 15398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,51.5 + pos: 39.5,53.5 parent: 12 - uid: 15631 components: @@ -92682,6 +92988,18 @@ entities: - type: Transform pos: 53.5,49.5 parent: 12 + - uid: 25567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 12 + - uid: 27386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,6.5 + parent: 12 - uid: 27512 components: - type: Transform @@ -92784,11 +93102,6 @@ entities: - type: Transform pos: -28.5,38.5 parent: 12 - - uid: 2186 - components: - - type: Transform - pos: 18.5,7.5 - parent: 12 - uid: 2938 components: - type: Transform @@ -92859,6 +93172,11 @@ entities: - type: Transform pos: 18.5,-36.5 parent: 12 + - uid: 7221 + components: + - type: Transform + pos: 55.5,6.5 + parent: 12 - uid: 7794 components: - type: Transform @@ -92894,6 +93212,11 @@ entities: - type: Transform pos: 54.5,-29.5 parent: 12 + - uid: 10017 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 12 - uid: 11239 components: - type: Transform @@ -92961,20 +93284,6 @@ entities: - type: Transform pos: 31.5,53.5 parent: 12 - - uid: 15130 - components: - - type: MetaData - name: disposal unit to security - - type: Transform - pos: 25.5,55.5 - parent: 12 - - uid: 15131 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 25.5,56.5 - parent: 12 - uid: 16709 components: - type: Transform @@ -93065,13 +93374,6 @@ entities: - type: Transform pos: 13.5,59.5 parent: 12 - - uid: 23589 - components: - - type: MetaData - name: disposal unit to freezer - - type: Transform - pos: 67.5,50.5 - parent: 12 - uid: 23686 components: - type: Transform @@ -93104,13 +93406,6 @@ entities: - type: Transform pos: -38.5,50.5 parent: 12 - - uid: 28139 - components: - - type: MetaData - name: disposal unit to chemistry - - type: Transform - pos: 66.5,50.5 - parent: 12 - uid: 29391 components: - type: Transform @@ -93161,6 +93456,12 @@ entities: - type: Transform pos: 35.5,54.5 parent: 12 + - uid: 18312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,10.5 + parent: 12 - uid: 22801 components: - type: Transform @@ -93172,6 +93473,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 12 + - uid: 24006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-27.5 + parent: 12 - proto: DogBed entities: - uid: 18310 @@ -93313,11 +93620,6 @@ entities: parent: 12 - proto: DrinkBeerBottleFull entities: - - uid: 16520 - components: - - type: Transform - pos: 8.0309305,6.6569676 - parent: 12 - uid: 21456 components: - type: Transform @@ -93330,6 +93632,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28683 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.62303,6.1613517 + parent: 12 + - uid: 28684 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 52.37303,6.5919075 + parent: 12 - proto: DrinkBeerCan entities: - uid: 13717 @@ -93817,6 +94131,14 @@ entities: - type: Transform pos: 77.61463,48.901142 parent: 12 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 28852 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.3420668,-15.542583 + parent: 12 - proto: ElectricGuitarInstrument entities: - uid: 13481 @@ -93847,10 +94169,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-47.5 parent: 12 - - uid: 899 + - uid: 1363 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 parent: 12 - uid: 3900 components: @@ -93864,17 +94187,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-7.5 parent: 12 - - uid: 5642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 12 - - uid: 6711 + - uid: 5982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,0.5 + pos: 33.5,2.5 parent: 12 - uid: 8887 components: @@ -93918,18 +94235,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-47.5 parent: 12 - - uid: 10518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 12 - - uid: 10519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 12 - uid: 10520 components: - type: Transform @@ -94070,11 +94375,6 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 12 - - uid: 10549 - components: - - type: Transform - pos: 20.5,6.5 - parent: 12 - uid: 10552 components: - type: Transform @@ -94155,6 +94455,12 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 12 + - uid: 12999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 12 - uid: 13527 components: - type: Transform @@ -94249,12 +94555,6 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 12 - - uid: 17773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 12 - uid: 17797 components: - type: Transform @@ -94634,6 +94934,75 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,50.5 parent: 12 + - uid: 29975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 12 + - uid: 29976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 29977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29992 + components: + - type: Transform + pos: 18.5,5.5 + parent: 12 + - uid: 30434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,9.5 + parent: 12 + - uid: 30436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 12 + - uid: 30454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 12 + - uid: 30457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-6.5 + parent: 12 + - uid: 30468 + components: + - type: Transform + pos: 56.5,0.5 + parent: 12 + - uid: 30483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,4.5 + parent: 12 + - uid: 30489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,10.5 + parent: 12 + - uid: 30491 + components: + - type: Transform + pos: 72.5,12.5 + parent: 12 - uid: 30988 components: - type: Transform @@ -94658,12 +95027,41 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 + - uid: 31511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,4.5 + parent: 12 + - uid: 31512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-3.5 + parent: 12 + - uid: 31513 + components: + - type: Transform + pos: 61.5,6.5 + parent: 12 + - uid: 31514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-16.5 + parent: 12 - uid: 31568 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 12 + - uid: 31890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 12 - proto: EmergencyNitrogenTankFilled entities: - uid: 31675 @@ -94685,27 +95083,65 @@ entities: parent: 12 - proto: Emitter entities: - - uid: 361 + - uid: 3019 components: - type: Transform - pos: 17.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,8.5 parent: 12 - - uid: 23983 + - uid: 8420 components: - type: Transform - pos: 25.5,0.5 + rot: -1.5707963267948966 rad + pos: 80.5,0.5 parent: 12 - - uid: 26896 + - uid: 8435 + components: + - type: Transform + pos: 68.5,12.5 + parent: 12 + - uid: 8972 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-13.5 + pos: 68.5,-3.5 parent: 12 - - uid: 27051 + - uid: 9169 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-13.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 9222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,0.5 + parent: 12 + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 +- proto: EmitterFlatpack + entities: + - uid: 9994 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.784466,-0.28712702 + parent: 12 + - uid: 9995 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.991028,-0.5770376 parent: 12 - proto: EncryptionKeyCommon entities: @@ -94807,6 +95243,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 + - uid: 7229 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 - uid: 9238 components: - type: Transform @@ -94829,10 +95270,10 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 12 - - uid: 25959 + - uid: 21932 components: - type: Transform - pos: 12.5,-12.5 + pos: 39.5,12.5 parent: 12 - uid: 26003 components: @@ -94939,16 +95380,6 @@ entities: - type: Transform pos: -36.5,0.5 parent: 12 - - uid: 26026 - components: - - type: Transform - pos: 6.5,0.5 - parent: 12 - - uid: 26027 - components: - - type: Transform - pos: 26.5,6.5 - parent: 12 - uid: 26028 components: - type: Transform @@ -95039,15 +95470,15 @@ entities: - type: Transform pos: 58.5,44.5 parent: 12 - - uid: 30467 + - uid: 29963 components: - type: Transform - pos: 41.5,-4.5 + pos: 32.5,6.5 parent: 12 - - uid: 30468 + - uid: 30467 components: - type: Transform - pos: 37.5,13.5 + pos: 41.5,-4.5 parent: 12 - proto: FaxMachineBase entities: @@ -95516,16 +95947,16 @@ entities: parent: 12 - proto: FireAxeCabinetFilled entities: - - uid: 25973 + - uid: 5710 components: - type: Transform - pos: -54.5,35.5 + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 parent: 12 - - uid: 26920 + - uid: 25973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-1.5 + pos: -54.5,35.5 parent: 12 - proto: FireExtinguisher entities: @@ -95635,15 +96066,6 @@ entities: - type: Transform pos: -63.5,-27.5 parent: 12 - - uid: 31757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - proto: FirelockEdge entities: - uid: 2114 @@ -95828,51 +96250,6 @@ entities: deviceLists: - 28373 - 8504 - - uid: 26931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - uid: 26935 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - uid: 27065 components: - type: Transform @@ -95939,6 +96316,15 @@ entities: - type: DeviceNetwork deviceLists: - 10018 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 610 components: - type: Transform @@ -95962,6 +96348,34 @@ entities: deviceLists: - 6833 - 8504 + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - 27314 + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - uid: 2034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 - uid: 2073 components: - type: Transform @@ -96095,6 +96509,16 @@ entities: - type: DeviceNetwork deviceLists: - 7342 + - uid: 2359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - 27313 - uid: 2613 components: - type: Transform @@ -96113,15 +96537,16 @@ entities: deviceLists: - 7342 - 31755 - - uid: 2779 + - uid: 2679 components: - type: Transform - pos: 17.5,5.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - - 28377 + - 4906 + - 31755 - uid: 2824 components: - type: Transform @@ -96150,6 +96575,9 @@ entities: - type: Transform pos: 6.5,12.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 3986 components: - type: Transform @@ -96359,35 +96787,6 @@ entities: deviceLists: - 2614 - 28360 - - uid: 4738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - - uid: 4786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 447 - - uid: 5128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - uid: 5232 components: - type: Transform @@ -96812,15 +97211,6 @@ entities: - type: Transform pos: 48.5,-42.5 parent: 12 - - uid: 9294 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4887 - - 447 - uid: 9302 components: - type: Transform @@ -96838,6 +97228,7 @@ entities: - type: DeviceNetwork deviceLists: - 448 + - 4906 - uid: 9304 components: - type: Transform @@ -96925,15 +97316,6 @@ entities: - type: DeviceNetwork deviceLists: - 10019 - - uid: 9319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10019 - uid: 9320 components: - type: Transform @@ -97046,26 +97428,6 @@ entities: - type: DeviceNetwork deviceLists: - 449 - - uid: 9666 - components: - - type: Transform - pos: 17.5,4.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - 28377 - - uid: 9994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - 28377 - uid: 10287 components: - type: Transform @@ -97106,6 +97468,16 @@ entities: - type: DeviceNetwork deviceLists: - 9702 + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 448 + - 4906 - uid: 11460 components: - type: Transform @@ -98729,8 +99101,8 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 28378 - 448 + - 11505 - uid: 23906 components: - type: Transform @@ -99041,32 +99413,16 @@ entities: - type: DeviceNetwork deviceLists: - 29272 - - uid: 26457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 26637 + - uid: 26593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 8910 - - uid: 26639 - components: - - type: Transform - pos: 75.5,0.5 + pos: 38.5,3.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 4906 + - 2682 - uid: 26923 components: - type: Transform @@ -99075,16 +99431,17 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 - - uid: 26924 + - 27311 + - 27312 + - uid: 27005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + rot: 3.141592653589793 rad + pos: 54.5,7.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - uid: 27108 components: - type: Transform @@ -99103,6 +99460,24 @@ entities: - type: DeviceNetwork deviceLists: - 27296 + - uid: 27309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,11.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - uid: 27310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - uid: 27449 components: - type: Transform @@ -99142,6 +99517,16 @@ entities: deviceLists: - 10019 - 4887 + - uid: 28904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4906 + - 31755 - uid: 29100 components: - type: Transform @@ -99213,11 +99598,17 @@ entities: - type: Transform pos: 7.5,20.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29872 components: - type: Transform pos: 15.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - uid: 29981 components: - type: Transform @@ -99274,6 +99665,24 @@ entities: deviceLists: - 30450 - 30452 + - uid: 31515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - uid: 31516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 - uid: 31553 components: - type: Transform @@ -99882,18 +100291,6 @@ entities: - type: Transform pos: 57.376583,58.4156 parent: 12 -- proto: FoodBagel - entities: - - uid: 12226 - components: - - type: Transform - pos: 9.246578,6.7106547 - parent: 12 - - uid: 12646 - components: - - type: Transform - pos: 9.502062,6.357326 - parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -99998,8 +100395,8 @@ entities: - uid: 24446 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.66475,5.299775 + rot: -12.566370614359172 rad + pos: 55.57415,5.497829 parent: 12 - proto: FoodBoxDonkpocketStonk entities: @@ -100051,10 +100448,10 @@ entities: parent: 12 - proto: FoodBurgerMcguffin entities: - - uid: 9813 + - uid: 28686 components: - type: Transform - pos: 7.485814,6.5965023 + pos: 52.626194,5.4898076 parent: 12 - proto: FoodBurgerMime entities: @@ -100341,6 +100738,11 @@ entities: - type: Transform pos: 20.5,50.5 parent: 12 + - uid: 28687 + components: + - type: Transform + pos: 52.619247,5.510641 + parent: 12 - uid: 31122 components: - type: Transform @@ -100348,11 +100750,6 @@ entities: parent: 12 - proto: FoodPlateSmallPlastic entities: - - uid: 384 - components: - - type: Transform - pos: 7.4795074,6.619267 - parent: 12 - uid: 21382 components: - type: Transform @@ -100434,13 +100831,6 @@ entities: - type: Transform pos: 49.52798,18.523731 parent: 12 -- proto: FoodSoupElectron - entities: - - uid: 922 - components: - - type: Transform - pos: 13.508775,-8.440525 - parent: 12 - proto: FoodSoupMiso entities: - uid: 2685 @@ -100526,13 +100916,14 @@ entities: - type: Transform pos: 37.254433,53.9859 parent: 12 -- proto: ForkPlastic - entities: - - uid: 401 + - uid: 28685 components: - type: Transform - pos: 8.336695,6.534662 + rot: -6.283185307179586 rad + pos: 52.27581,5.7932963 parent: 12 +- proto: ForkPlastic + entities: - uid: 21385 components: - type: Transform @@ -100580,19 +100971,33 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 5478 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 12 - proto: GasMinerNitrogenStationLarge entities: - - uid: 26957 + - uid: 7198 components: - type: Transform - pos: 59.5,7.5 + pos: 25.5,-8.5 parent: 12 - proto: GasMinerOxygenStationLarge entities: - - uid: 26942 + - uid: 4876 components: - type: Transform - pos: 61.5,7.5 + pos: 25.5,-10.5 + parent: 12 +- proto: GasMinerWaterVapor + entities: + - uid: 4625 + components: + - type: Transform + pos: 25.5,-2.5 parent: 12 - proto: GasMixer entities: @@ -100602,6 +101007,12 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-31.5 parent: 12 + - uid: 9826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 12 - uid: 19563 components: - type: Transform @@ -100618,15 +101029,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,10.5 parent: 12 - - uid: 26685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 12 - - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - proto: GasMixerFlipped entities: - uid: 7150 @@ -100677,126 +101079,159 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-62.5 parent: 12 - - uid: 12686 + - uid: 4576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 24.5,-4.5 parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 19263 + - uid: 4636 components: - type: Transform - pos: -24.5,54.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 12 - - uid: 26744 + - uid: 4640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,1.5 parent: 12 - - uid: 26745 + - uid: 4896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-0.5 parent: 12 - - uid: 26746 + - uid: 4961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-8.5 parent: 12 - - uid: 26747 + - uid: 5362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 parent: 12 - - uid: 26748 + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 12 + - uid: 7227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,8.5 + pos: 9.5,3.5 parent: 12 - - uid: 26781 + - uid: 12686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 19263 components: - type: Transform - pos: 71.5,7.5 + pos: -24.5,54.5 parent: 12 - proto: GasPassiveVent entities: - - uid: 4763 + - uid: 2257 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,54.5 + pos: 25.5,-8.5 parent: 12 - - uid: 6732 + - uid: 2258 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-61.5 + pos: 25.5,-10.5 parent: 12 - - uid: 15414 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,52.5 + rot: 3.141592653589793 rad + pos: 25.5,-4.5 parent: 12 - - uid: 15415 + - uid: 4641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,52.5 + rot: 3.141592653589793 rad + pos: 25.5,1.5 parent: 12 - - uid: 15787 + - uid: 4763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,31.5 + rot: 3.141592653589793 rad + pos: -25.5,54.5 parent: 12 - - uid: 15788 + - uid: 4962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 12 + - uid: 5869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 12 + - uid: 6214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,31.5 + pos: 26.5,-12.5 parent: 12 - - uid: 22005 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6732 components: - type: Transform - pos: -25.5,56.5 + rot: 3.141592653589793 rad + pos: -5.5,-61.5 parent: 12 - - uid: 26749 + - uid: 7255 components: - type: Transform - pos: 59.5,6.5 + rot: 3.141592653589793 rad + pos: 25.5,-0.5 parent: 12 - - uid: 26750 + - uid: 15414 components: - type: Transform - pos: 61.5,6.5 + rot: 1.5707963267948966 rad + pos: 39.5,52.5 parent: 12 - - uid: 26751 + - uid: 15415 components: - type: Transform - pos: 63.5,6.5 + rot: -1.5707963267948966 rad + pos: 41.5,52.5 parent: 12 - - uid: 26752 + - uid: 15787 components: - type: Transform - pos: 65.5,6.5 + rot: 1.5707963267948966 rad + pos: 7.5,31.5 parent: 12 - - uid: 26753 + - uid: 15788 components: - type: Transform - pos: 67.5,6.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 12 - - uid: 27024 + - uid: 22005 components: - type: Transform - pos: 75.5,6.5 + pos: -25.5,56.5 parent: 12 - uid: 30331 components: @@ -100993,35 +101428,32 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1349 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2124 + color: '#0055CCFF' + - uid: 2086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-1.5 + pos: 29.5,5.5 parent: 12 - - uid: 2183 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2124 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-12.5 + pos: -2.5,-1.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2251 + - uid: 2168 components: - type: Transform - pos: 22.5,-12.5 + pos: 25.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2341 components: - type: Transform @@ -101052,6 +101484,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2807 components: - type: Transform @@ -101247,6 +101687,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3720 components: - type: Transform @@ -101358,6 +101814,19 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 4528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4589 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 12 - uid: 4694 components: - type: Transform @@ -101395,27 +101864,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4930 + - uid: 4850 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,2.5 + pos: 13.5,-12.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4951 components: - type: Transform pos: 0.5,-46.5 parent: 12 - - uid: 4974 + - uid: 4984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 25.5,-7.5 + parent: 12 + - uid: 4986 + components: + - type: Transform + pos: 25.5,-1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5149 components: - type: Transform @@ -101437,14 +101908,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5295 components: - type: Transform @@ -101453,13 +101916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5301 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5346 components: - type: Transform @@ -101522,6 +101978,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5487 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5504 components: - type: Transform @@ -101536,61 +101999,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5592 + - uid: 5549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 + pos: 8.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5860 + - uid: 5592 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: 23.5,-22.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5961 + - uid: 5630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 + pos: 25.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5964 + - uid: 5804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 + pos: 20.5,-12.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5965 + color: '#0055CCFF' + - uid: 6220 components: - type: Transform - pos: 44.5,-0.5 + pos: 22.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5995 + color: '#990000FF' + - uid: 6243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 + pos: 40.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6900 components: - type: Transform @@ -101677,6 +102127,11 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 12 + - uid: 7205 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 12 - uid: 7303 components: - type: Transform @@ -101710,6 +102165,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 8305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8531 components: - type: Transform @@ -101850,6 +102313,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 9073 + components: + - type: Transform + pos: 25.5,2.5 + parent: 12 - uid: 9128 components: - type: Transform @@ -101866,13 +102334,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9492 - components: - - type: Transform - pos: 30.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9509 components: - type: Transform @@ -101889,14 +102350,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9529 components: - type: Transform @@ -101976,19 +102429,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9863 + - uid: 9860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: 2.5,-19.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10022 + - uid: 9863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-17.5 + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -102031,13 +102481,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10809 + - uid: 10873 components: - type: Transform - pos: 40.5,4.5 + pos: 22.5,-14.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 10890 components: - type: Transform @@ -102046,13 +102496,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 10932 + - uid: 10900 components: - type: Transform - pos: 16.5,10.5 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11119 components: - type: Transform @@ -102091,6 +102566,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 11473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11611 components: - type: Transform @@ -102536,13 +103019,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,43.5 parent: 12 - - uid: 18671 - components: - - type: Transform - pos: 28.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18723 components: - type: Transform @@ -102669,13 +103145,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19245 - components: - - type: Transform - pos: 28.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 19250 components: - type: Transform @@ -102684,6 +103153,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19560 components: - type: Transform @@ -102841,6 +103318,53 @@ entities: - type: Transform pos: -22.5,53.5 parent: 12 + - uid: 22072 + components: + - type: Transform + pos: 53.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22243 components: - type: Transform @@ -102849,6 +103373,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22289 + components: + - type: Transform + pos: 1.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22316 components: - type: Transform @@ -102905,11 +103444,10 @@ entities: - uid: 22877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-0.5 + pos: -5.5,16.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 22886 components: - type: Transform @@ -103097,29 +103635,29 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23141 + - uid: 23125 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,4.5 + pos: 57.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23142 + color: '#990000FF' + - uid: 23133 components: - type: Transform - pos: 31.5,8.5 + pos: 61.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23143 + color: '#990000FF' + - uid: 23135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23170 components: - type: Transform @@ -103458,63 +103996,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26435 + - uid: 26436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,1.5 + rot: -1.5707963267948966 rad + pos: 58.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26654 + - uid: 26438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26715 - components: - - type: Transform - pos: 60.5,8.5 - parent: 12 - - uid: 26716 - components: - - type: Transform - pos: 68.5,8.5 - parent: 12 - - uid: 26717 - components: - - type: Transform - pos: 66.5,8.5 - parent: 12 - - uid: 26718 - components: - - type: Transform - pos: 64.5,8.5 - parent: 12 - - uid: 26719 - components: - - type: Transform - pos: 62.5,8.5 - parent: 12 - - uid: 26755 + - uid: 26442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,2.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26757 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,1.5 + pos: 62.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 26810 components: - type: Transform @@ -103531,14 +104044,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26985 components: - type: Transform @@ -103569,32 +104074,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,2.5 - parent: 12 - - uid: 27021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,4.5 - parent: 12 - - uid: 27022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,4.5 - parent: 12 - - uid: 27163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27219 components: - type: Transform @@ -103653,22 +104132,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28292 components: - type: Transform @@ -103689,21 +104152,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 28884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28885 + - uid: 28828 components: - type: Transform - pos: 53.5,-4.5 + pos: 57.5,-6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' - uid: 29052 components: - type: Transform @@ -104115,13 +104570,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26981 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 27778 components: - type: Transform @@ -104147,11 +104595,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 286 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,4.5 + pos: 2.5,8.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -104228,14 +104676,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 901 + - uid: 897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 909 components: - type: Transform @@ -104251,6 +104697,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 990 components: - type: Transform @@ -104261,13 +104723,6 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 12 - - uid: 1091 - components: - - type: Transform - pos: 40.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 1093 components: - type: Transform @@ -105420,29 +105875,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1549 - components: - - type: Transform - pos: 11.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1554 components: - type: Transform @@ -105459,29 +105891,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 1966 + - uid: 2072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1997 - components: - - type: Transform - pos: 22.5,-13.5 + pos: 43.5,12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2072 + - uid: 2091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,12.5 + rot: -1.5707963267948966 rad + pos: 25.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2110 components: - type: Transform @@ -105498,78 +105923,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2169 + - uid: 2149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-9.5 + pos: 11.5,-11.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2175 + - uid: 2150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2176 + - uid: 2164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-7.5 + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2254 components: - type: Transform @@ -105577,29 +105950,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2257 - components: - - type: Transform - pos: 11.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2311 components: - type: Transform @@ -105637,21 +105987,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 2528 - components: - - type: Transform - pos: 28.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2610 components: - type: Transform @@ -105675,14 +106010,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2806 components: - type: Transform @@ -105720,13 +106047,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2869 - components: - - type: Transform - pos: 40.5,3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 2885 components: - type: Transform @@ -106483,14 +106803,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3637 components: - type: Transform @@ -106956,6 +107268,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3714 components: - type: Transform @@ -107337,6 +107657,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 3955 components: - type: Transform @@ -107345,6 +107673,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4074 components: - type: Transform @@ -107409,6 +107745,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' + - uid: 4390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4402 components: - type: Transform @@ -107432,14 +107784,18 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4528 + - uid: 4479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-0.5 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 4537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4539 components: - type: Transform @@ -107448,229 +107804,318 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4719 + - uid: 4542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 + pos: 23.5,-3.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4727 + - uid: 4548 components: - type: Transform - pos: 44.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 12 + - uid: 4561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 4737 + - uid: 4563 components: - type: Transform - pos: 11.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4740 + color: '#0055CCFF' + - uid: 4564 components: - type: Transform - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4743 + color: '#0055CCFF' + - uid: 4579 components: - type: Transform - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 12 + - uid: 4580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 12 + - uid: 4591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 4604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 12 + - uid: 4610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-14.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4745 + color: '#0055CCFF' + - uid: 4621 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-4.5 + pos: 20.5,-13.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4746 + - uid: 4622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 19.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4762 + - uid: 4628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 + pos: 8.5,-10.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4764 + - uid: 4634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + pos: 23.5,1.5 + parent: 12 + - uid: 4635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 12 + - uid: 4638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 12 + - uid: 4639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 12 + - uid: 4642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 12 + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4774 + color: '#990000FF' + - uid: 4655 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-26.5 + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4775 + - uid: 4659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 + rot: 3.141592653589793 rad + pos: 20.5,-16.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4776 + - uid: 4660 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-26.5 + pos: 21.5,-17.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4777 + - uid: 4662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4778 + - uid: 4676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 12 + - uid: 4678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-26.5 + pos: 40.5,8.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4779 + - uid: 4697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4781 + - uid: 4719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4782 + - uid: 4744 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-26.5 + pos: 26.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4784 + - uid: 4762 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4785 + color: '#0055CCFF' + - uid: 4764 components: - type: Transform - pos: 11.5,-0.5 + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4790 + color: '#0055CCFF' + - uid: 4774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: -0.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4791 + - uid: 4775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-6.5 + pos: -1.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4792 + - uid: 4776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-6.5 + pos: -2.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4793 + - uid: 4777 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-6.5 + pos: -3.5,-26.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4796 + - uid: 4778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-9.5 + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4797 + color: '#0055CCFF' + - uid: 4779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 + rot: -1.5707963267948966 rad + pos: -5.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4798 + color: '#0055CCFF' + - uid: 4781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-11.5 + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4799 + color: '#0055CCFF' + - uid: 4782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4800 + color: '#0055CCFF' + - uid: 4790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + rot: 1.5707963267948966 rad + pos: 24.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4801 + - uid: 4791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108004,44 +108449,26 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4852 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4853 + - uid: 4889 components: - type: Transform - pos: 11.5,-2.5 + rot: 1.5707963267948966 rad + pos: 21.5,0.5 parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4856 + - uid: 4894 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,5.5 + pos: 29.5,3.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4939 components: - type: Transform @@ -108056,11 +108483,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4948 + - uid: 4941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,4.5 + pos: 28.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -108072,69 +108499,171 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5082 + - uid: 4975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 12 + - uid: 4978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 12 + - uid: 4990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5111 + - uid: 4991 components: - type: Transform - pos: 44.5,-1.5 + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 12 + - uid: 5004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 12 + - uid: 5006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 12 + - uid: 5010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 5012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 12 + - uid: 5016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 12 + - uid: 5017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 12 + - uid: 5018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 5019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 5020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 5136 + color: '#0055CCFF' + - uid: 5031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-15.5 + rot: 1.5707963267948966 rad + pos: 12.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5213 + - uid: 5043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-14.5 + pos: 8.5,-9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5217 + - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 + pos: 24.5,-9.5 + parent: 12 + - uid: 5053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5222 + color: '#990000FF' + - uid: 5079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 + rot: 1.5707963267948966 rad + pos: 14.5,10.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5223 + - uid: 5089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 12 + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5224 + color: '#990000FF' + - uid: 5103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5136 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: 30.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5229 components: - type: Transform @@ -108146,11 +108675,15 @@ entities: - uid: 5239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5252 components: - type: Transform @@ -108207,14 +108740,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5271 components: - type: Transform @@ -108223,30 +108748,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5275 components: - type: Transform @@ -108351,6 +108852,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5296 components: - type: Transform @@ -108397,14 +108906,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5319 + - uid: 5310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,1.5 + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 5329 components: - type: Transform @@ -108600,83 +109109,21 @@ entities: - uid: 5361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5375 components: - type: Transform @@ -108731,14 +109178,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5402 components: - type: Transform @@ -108747,30 +109186,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5408 components: - type: Transform @@ -108904,29 +109319,102 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5598 + - uid: 5634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,2.5 + pos: 21.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5670 + components: + - type: Transform + pos: 8.5,-8.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5856 + - uid: 5674 components: - type: Transform - pos: 13.5,4.5 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 12 + - uid: 5679 + components: + - type: Transform + pos: 8.5,-7.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5859 + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,2.5 + pos: 27.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5937 components: - type: Transform @@ -109007,10 +109495,9 @@ entities: - uid: 5952 components: - type: Transform - pos: 13.5,3.5 + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5954 components: - type: Transform @@ -109033,13 +109520,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5959 - components: - - type: Transform - pos: 44.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 5960 components: - type: Transform @@ -109047,6 +109527,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 12 - uid: 5962 components: - type: Transform @@ -109063,6 +109549,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 12 - uid: 6015 components: - type: Transform @@ -109125,16 +109617,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6279 + - uid: 6260 components: - type: Transform - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6705 components: - type: Transform - pos: 67.5,5.5 + rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6715 components: - type: Transform @@ -109151,6 +109657,32 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6772 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 12 + - uid: 6780 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 12 - uid: 6799 components: - type: Transform @@ -109159,6 +109691,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6842 components: - type: Transform @@ -109175,19 +109715,17 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6897 + - uid: 6855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-43.5 + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6899 + - uid: 6897 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,4.5 + pos: 10.5,-43.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -109207,6 +109745,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6985 components: - type: Transform @@ -110151,6 +110697,40 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 12 + - uid: 7210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 12 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 12 - uid: 7239 components: - type: Transform @@ -110159,11 +110739,48 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 7308 + - uid: 7242 components: - type: Transform - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 parent: 12 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 7249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 12 + - uid: 7253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7314 components: - type: Transform @@ -110289,13 +110906,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7563 - components: - - type: Transform - pos: 16.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7566 components: - type: Transform @@ -110343,6 +110953,12 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 7833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 12 - uid: 8241 components: - type: Transform @@ -110351,14 +110967,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 8492 components: - type: Transform @@ -111514,67 +112122,94 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 8972 + - uid: 8981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8974 + color: '#990000FF' + - uid: 9048 components: - type: Transform - pos: 40.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8976 + color: '#990000FF' + - uid: 9088 components: - type: Transform - pos: 40.5,0.5 + pos: 33.5,15.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 8981 + color: '#990000FF' + - uid: 9168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 9417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9088 + - uid: 9419 components: - type: Transform - pos: 33.5,15.5 + pos: -5.5,14.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9454 + - uid: 9420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 + pos: -5.5,13.5 parent: 12 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9459 + color: '#990000FF' + - uid: 9421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 + pos: -5.5,15.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9460 + color: '#990000FF' + - uid: 9427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: 5.5,19.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#00FFFFFF' - uid: 9463 components: - type: Transform @@ -111704,14 +112339,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 9495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9496 components: - type: Transform @@ -111726,14 +112353,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9501 components: - type: Transform @@ -111825,27 +112444,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 9679 - components: - - type: Transform - pos: 16.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9680 - components: - - type: Transform - pos: 16.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9681 - components: - - type: Transform - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 9685 components: - type: Transform @@ -111990,25 +112588,25 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9820 + - uid: 9831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 + pos: 10.5,-39.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9831 + - uid: 9838 components: - type: Transform - pos: 10.5,-39.5 + pos: -1.5,-54.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9838 + - uid: 9848 components: - type: Transform - pos: -1.5,-54.5 + rot: 3.141592653589793 rad + pos: 54.5,0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -112120,22 +112718,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 10023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10028 components: - type: Transform @@ -112491,6 +113073,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10314 components: - type: Transform @@ -112608,6 +113198,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10984 components: - type: Transform @@ -112616,6 +113222,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11008 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11009 + components: + - type: Transform + pos: 29.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11022 components: - type: Transform @@ -112624,6 +113244,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11040 components: - type: Transform @@ -113114,6 +113742,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11372 components: - type: Transform @@ -113121,6 +113757,30 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 11380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11426 components: - type: Transform @@ -113145,6 +113805,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11592 components: - type: Transform @@ -113217,22 +113885,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11934 components: - type: Transform @@ -113336,6 +113988,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12276 components: - type: Transform @@ -114248,38 +114916,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12935 components: - type: Transform @@ -115102,6 +115738,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 15007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15407 components: - type: Transform @@ -115758,14 +116402,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 16586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 16587 components: - type: Transform @@ -116042,6 +116678,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 16658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16675 components: - type: Transform @@ -116976,14 +117628,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17844 + - uid: 17772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,9.5 + pos: -1.5,9.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#990000FF' + - uid: 17948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18256 components: - type: Transform @@ -117010,6 +117670,14 @@ entities: - type: Transform pos: -46.5,45.5 parent: 12 + - uid: 18313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 18684 components: - type: Transform @@ -117834,6 +118502,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19196 components: - type: Transform @@ -117849,14 +118533,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19292 + - uid: 19311 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,9.5 + pos: 60.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 19380 components: - type: Transform @@ -118077,38 +118761,38 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 19462 + - uid: 19436 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,4.5 + pos: 59.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19538 + color: '#0055CCFF' + - uid: 19459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 + rot: 3.141592653589793 rad + pos: 58.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 19544 + color: '#0055CCFF' + - uid: 19541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + pos: -15.5,16.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19545 + color: '#990000FF' + - uid: 19544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 19562 components: - type: Transform @@ -118117,6 +118801,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19823 components: - type: Transform @@ -120834,6 +121526,114 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21911 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22066 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22093 + components: + - type: Transform + pos: 29.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22101 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22234 components: - type: Transform @@ -120912,6 +121712,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 22555 components: - type: Transform @@ -122594,123 +123402,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23125 + - uid: 23131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,8.5 + pos: 55.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23126 + color: '#0055CCFF' + - uid: 23138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23127 - components: - - type: Transform - pos: 31.5,7.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23128 - components: - - type: Transform - pos: 31.5,6.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23129 - components: - - type: Transform - pos: 31.5,5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 + pos: 29.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23135 + color: '#0055CCFF' + - uid: 23141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,4.5 + pos: 59.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23137 + color: '#990000FF' + - uid: 23142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,4.5 + pos: 58.5,-8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 23138 + color: '#990000FF' + - uid: 23143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,4.5 + rot: 1.5707963267948966 rad + pos: 57.5,-3.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' + color: '#0055CCFF' - uid: 23146 components: - type: Transform @@ -122760,6 +123491,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23162 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23168 components: - type: Transform @@ -122776,6 +123522,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 23178 components: - type: Transform @@ -123394,6 +124148,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23589 + components: + - type: Transform + pos: 22.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23662 components: - type: Transform @@ -123621,14 +124382,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23991 components: - type: Transform @@ -123761,6 +124514,20 @@ entities: parent: 12 - type: AtmosPipeColor color: '#5D782EFF' + - uid: 24566 + components: + - type: Transform + pos: -5.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24567 + components: + - type: Transform + pos: -5.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24634 components: - type: Transform @@ -123808,6 +124575,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25195 components: - type: Transform @@ -123816,6 +124591,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25437 components: - type: Transform @@ -123832,14 +124615,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25540 + - uid: 25532 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,5.5 + pos: 13.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FFA500FF' + - uid: 25534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 12 + - type: AtmosPipeColor + color: '#FFA500FF' - uid: 25569 components: - type: Transform @@ -123855,6 +124646,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25575 components: - type: Transform @@ -123863,6 +124662,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 25615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 25659 components: - type: Transform @@ -123919,6 +124726,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,1.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26052 components: - type: Transform @@ -123927,6 +124750,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 26121 + components: + - type: Transform + pos: 21.5,6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26126 components: - type: Transform @@ -124165,36 +124995,53 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26431 + - uid: 26453 components: - type: Transform - pos: 73.5,6.5 + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 parent: 12 - - uid: 26433 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26474 components: - type: Transform - pos: 73.5,3.5 + pos: -5.5,11.5 parent: 12 - - uid: 26437 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26477 components: - type: Transform - pos: 73.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,9.5 parent: 12 - - uid: 26439 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26517 components: - type: Transform - pos: 71.5,5.5 + rot: 3.141592653589793 rad + pos: 58.5,0.5 parent: 12 - - uid: 26444 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26518 components: - type: Transform - pos: 73.5,5.5 + rot: 1.5707963267948966 rad + pos: 59.5,2.5 parent: 12 - - uid: 26445 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26519 components: - type: Transform - pos: 71.5,6.5 + rot: 1.5707963267948966 rad + pos: 61.5,2.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26539 components: - type: Transform @@ -124216,75 +125063,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26606 - components: - - type: Transform - pos: 65.5,5.5 - parent: 12 - - uid: 26607 - components: - - type: Transform - pos: 63.5,4.5 - parent: 12 - - uid: 26608 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26611 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26612 - components: - - type: Transform - pos: 65.5,4.5 - parent: 12 - - uid: 26613 - components: - - type: Transform - pos: 67.5,4.5 - parent: 12 - - uid: 26618 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26619 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26620 - components: - - type: Transform - pos: 59.5,4.5 - parent: 12 - uid: 26629 components: - type: Transform @@ -124299,113 +125077,84 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26653 + - uid: 26642 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-5.5 + pos: 12.5,0.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26669 + - uid: 26647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,1.5 parent: 12 - type: AtmosPipeColor color: '#FFA500FF' - - uid: 26671 + - uid: 26650 components: - type: Transform - pos: 63.5,5.5 + rot: 1.5707963267948966 rad + pos: -14.5,16.5 parent: 12 - - uid: 26672 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26656 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26673 components: - type: Transform - pos: 59.5,5.5 - parent: 12 - - uid: 26691 - components: - - type: Transform - pos: 71.5,4.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 12 - - uid: 26692 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26679 components: - type: Transform - pos: 71.5,3.5 + rot: 1.5707963267948966 rad + pos: -13.5,16.5 parent: 12 - - uid: 26697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-5.5 + pos: 3.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26710 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26711 + color: '#990000FF' + - uid: 26699 components: - type: Transform - pos: 60.5,4.5 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 26712 - components: - - type: Transform - pos: 60.5,5.5 - parent: 12 - - uid: 26713 - components: - - type: Transform - pos: 60.5,6.5 - parent: 12 - - uid: 26714 - components: - - type: Transform - pos: 60.5,7.5 - parent: 12 - - uid: 26720 - components: - - type: Transform - pos: 62.5,7.5 - parent: 12 - - uid: 26721 - components: - - type: Transform - pos: 62.5,6.5 - parent: 12 - - uid: 26722 components: - type: Transform pos: 62.5,5.5 parent: 12 - - uid: 26723 - components: - - type: Transform - pos: 62.5,4.5 - parent: 12 - - uid: 26724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26713 components: - type: Transform pos: 62.5,3.5 parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26726 components: - type: Transform @@ -124414,150 +125163,46 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26727 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26728 - components: - - type: Transform - pos: 64.5,4.5 - parent: 12 - - uid: 26729 - components: - - type: Transform - pos: 64.5,5.5 - parent: 12 - - uid: 26730 - components: - - type: Transform - pos: 64.5,6.5 - parent: 12 - - uid: 26731 - components: - - type: Transform - pos: 64.5,7.5 - parent: 12 - - uid: 26732 - components: - - type: Transform - pos: 66.5,7.5 - parent: 12 - - uid: 26733 - components: - - type: Transform - pos: 66.5,6.5 - parent: 12 - - uid: 26734 - components: - - type: Transform - pos: 66.5,5.5 - parent: 12 - - uid: 26735 - components: - - type: Transform - pos: 66.5,4.5 - parent: 12 - - uid: 26736 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - uid: 26739 components: - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26740 - components: - - type: Transform - pos: 68.5,4.5 - parent: 12 - - uid: 26741 - components: - - type: Transform - pos: 68.5,5.5 - parent: 12 - - uid: 26742 - components: - - type: Transform - pos: 68.5,6.5 - parent: 12 - - uid: 26743 - components: - - type: Transform - pos: 68.5,7.5 - parent: 12 - - uid: 26754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-1.5 + pos: 62.5,9.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26779 + - uid: 26763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 + pos: 62.5,8.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26783 + color: '#0055CCFF' + - uid: 26781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-7.5 + pos: 62.5,4.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26799 + color: '#0055CCFF' + - uid: 26794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-6.5 + pos: 62.5,7.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26806 + color: '#0055CCFF' + - uid: 26795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 + pos: 62.5,10.5 parent: 12 - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26880 + color: '#0055CCFF' + - uid: 26849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-6.5 + pos: -8.5,16.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -124569,22 +125214,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26929 components: - type: Transform @@ -124601,14 +125230,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26946 components: - type: Transform @@ -124624,22 +125245,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,2.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26955 components: - type: Transform @@ -124648,14 +125253,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26966 components: - type: Transform @@ -124680,22 +125277,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26984 components: - type: Transform @@ -124787,14 +125368,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 27008 components: - type: Transform @@ -124841,20 +125414,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 27016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 27020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 12 - uid: 27034 components: - type: Transform @@ -124924,6 +125483,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 27256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27265 components: - type: Transform @@ -125042,70 +125609,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 27902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 27917 components: - type: Transform @@ -125114,126 +125617,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 28222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 28233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - uid: 28234 components: - type: Transform @@ -125392,16 +125775,32 @@ entities: - uid: 28829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - uid: 28831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -125608,38 +126007,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 29155 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 29158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-3.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 29159 components: - type: Transform @@ -126265,6 +126632,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 29959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30008 components: - type: Transform @@ -127158,14 +127533,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 2256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2288 components: - type: Transform @@ -127530,29 +127897,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4788 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4811 components: - type: Transform @@ -127568,14 +127912,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4871 components: - type: Transform @@ -127584,22 +127920,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 4872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4904 components: - type: Transform @@ -127632,6 +127952,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 5003 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5035 components: - type: Transform @@ -127639,6 +127966,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5144 components: - type: Transform @@ -127694,6 +128029,13 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5312 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5315 components: - type: Transform @@ -127762,11 +128104,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5403 + - uid: 5401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -127777,14 +128119,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5869 + - uid: 5711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 5940 components: - type: Transform @@ -127808,59 +128150,58 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6751 + - uid: 6183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,2.5 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6837 + color: '#990000FF' + - uid: 6261 components: - type: Transform - pos: -10.5,-47.5 + pos: 56.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6840 + - uid: 6751 components: - type: Transform - pos: 6.5,-39.5 + rot: 3.141592653589793 rad + pos: -26.5,2.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6889 + color: '#0055CCFF' + - uid: 6794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,4.5 + pos: 20.5,5.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 6893 + - uid: 6837 components: - type: Transform - pos: 15.5,5.5 + pos: -10.5,-47.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6894 + - uid: 6840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 + pos: 6.5,-39.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6898 + color: '#990000FF' + - uid: 6894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,4.5 + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 6903 components: - type: Transform @@ -127967,6 +128308,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7277 components: - type: Transform @@ -128253,6 +128602,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9462 components: - type: Transform @@ -128386,11 +128751,27 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10876 + - uid: 10813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: 36.5,-1.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 parent: 12 - type: AtmosPipeColor color: '#0055CCFF' @@ -128409,6 +128790,22 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,2.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11013 components: - type: Transform @@ -128582,13 +128979,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12698 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12699 components: - type: Transform @@ -128847,6 +129237,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15252 components: - type: Transform @@ -129372,6 +129770,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 19540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19822 components: - type: Transform @@ -129794,6 +130200,21 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 22078 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22233 components: - type: Transform @@ -129825,6 +130246,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22910 components: - type: Transform @@ -129841,6 +130270,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 23155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,12.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23185 components: - type: Transform @@ -129939,39 +130376,34 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26944 + - uid: 26727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,1.5 + rot: -1.5707963267948966 rad + pos: 62.5,6.5 parent: 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26951 + color: '#0055CCFF' + - uid: 26944 components: - type: Transform - pos: 56.5,2.5 + rot: 3.141592653589793 rad + pos: 52.5,1.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26958 - components: - - type: Transform - pos: 55.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26965 + - uid: 27292 components: - type: Transform - pos: 52.5,-0.5 + pos: 1.5,-36.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27292 + color: '#990000FF' + - uid: 27303 components: - type: Transform - pos: 1.5,-36.5 + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -129998,13 +130430,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28830 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - type: AtmosPipeColor - color: '#990000FF' - uid: 28930 components: - type: Transform @@ -130201,6 +130626,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-62.5 parent: 12 + - uid: 4630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 12 - uid: 4938 components: - type: Transform @@ -130263,11 +130694,34 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,18.5 parent: 12 + - uid: 9059 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 9617 components: - type: Transform pos: 13.5,21.5 parent: 12 + - uid: 9813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 12 + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 12 + - uid: 9858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 12 - uid: 10980 components: - type: Transform @@ -130276,6 +130730,11 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FFA500FF' + - uid: 11018 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 12 - uid: 11280 components: - type: Transform @@ -130370,12 +130829,36 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 12 - - uid: 26648 + - uid: 25469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-5.5 + rot: -1.5707963267948966 rad + pos: 20.5,7.5 + parent: 12 + - uid: 25666 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26471 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 12 + - uid: 26591 + components: + - type: Transform + pos: 1.5,-18.5 parent: 12 + - uid: 28755 + components: + - type: Transform + pos: 22.5,7.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 30340 components: - type: Transform @@ -130431,6 +130914,12 @@ entities: - type: Transform pos: -41.5,-42.5 parent: 12 + - uid: 2186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 12 - uid: 2786 components: - type: Transform @@ -130447,36 +130936,63 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 4092 components: + - type: MetaData + name: distro pump - type: Transform - pos: 63.5,2.5 + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 parent: 12 - - uid: 3130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4577 components: - type: Transform - pos: 61.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 parent: 12 - - uid: 3945 + - uid: 4650 components: - type: Transform - pos: 67.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-3.5 parent: 12 - - uid: 3948 + - uid: 4696 components: - type: Transform - pos: 65.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,53.5 parent: 12 - - uid: 4064 + - uid: 4743 components: - type: Transform - pos: 59.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 parent: 12 - - uid: 4696 + - uid: 4948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,53.5 + pos: 20.5,2.5 + parent: 12 + - uid: 5090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 12 + - uid: 5717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 12 + - uid: 6235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-1.5 parent: 12 - uid: 7147 components: @@ -130521,6 +131037,26 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 12 + - uid: 7212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 12 + - uid: 9060 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9061 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 12 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10978 components: - type: Transform @@ -130558,48 +131094,29 @@ entities: - type: Transform pos: -47.5,46.5 parent: 12 - - uid: 26693 + - uid: 23126 components: + - type: MetaData + name: waste pump - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,2.5 + pos: 20.5,4.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26776 + - uid: 23130 components: - type: MetaData - name: gas pump to TEG - - type: Transform - pos: 61.5,-4.5 - parent: 12 - - type: AtmosPipeColor - color: '#FFA500FF' - - uid: 26808 - components: - - type: Transform - pos: 73.5,2.5 - parent: 12 - - uid: 26809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 - parent: 12 - - uid: 26978 - components: + name: TEG pump - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-0.5 + pos: 14.5,-0.5 parent: 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27146 + color: '#FFA500FF' + - uid: 26418 components: - - type: MetaData - name: gas pump to waste - type: Transform - pos: 62.5,-4.5 + pos: 26.5,-15.5 parent: 12 - type: AtmosPipeColor color: '#990000FF' @@ -130645,24 +131162,16 @@ entities: - type: Transform pos: -46.5,47.5 parent: 12 - - uid: 26645 + - uid: 23982 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 67.5,-5.5 + pos: 9.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26647 + - uid: 23983 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 68.5,-5.5 + pos: 10.5,-2.5 parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasThermoMachineFreezerEnabled entities: - uid: 15405 @@ -130675,6 +131184,16 @@ entities: targetTemperature: 243.15 - proto: GasThermoMachineHeater entities: + - uid: 3979 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 12 + - uid: 4575 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 12 - uid: 9732 components: - type: Transform @@ -130696,24 +131215,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26643 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - - uid: 26644 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 12 - - type: Physics - bodyType: Dynamic - proto: GasValve entities: - uid: 4780 @@ -130749,11 +131250,16 @@ entities: - type: Transform pos: -46.5,44.5 parent: 12 - - uid: 27023 + - uid: 28754 components: - type: Transform - pos: 75.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,-12.5 parent: 12 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 31768 components: - type: Transform @@ -130781,6 +131287,13 @@ entities: - 28343 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1058 + components: + - type: Transform + pos: 62.5,11.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1134 components: - type: Transform @@ -130962,14 +131475,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3519 components: - type: Transform @@ -131010,18 +131515,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4855 components: - type: Transform @@ -131032,18 +131525,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5305 components: - type: Transform @@ -131065,18 +131546,6 @@ entities: - 28376 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5328 components: - type: Transform @@ -131099,17 +131568,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5409 - components: - - type: Transform - pos: 29.5,0.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 10017 - - 448 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5585 components: - type: Transform @@ -131147,15 +131605,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6766 + - uid: 6709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: 35.5,-1.5 parent: 12 - type: DeviceNetwork deviceLists: - - 28378 + - 4906 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6973 @@ -131303,6 +131761,19 @@ entities: - type: Transform pos: 6.5,13.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9717 + components: + - type: Transform + pos: 58.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10005 @@ -131384,6 +131855,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-3.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11462 components: - type: Transform @@ -131403,6 +131882,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12232 + components: + - type: Transform + pos: 29.5,2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12735 components: - type: Transform @@ -131572,6 +132061,17 @@ entities: - 23643 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27311 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15806 components: - type: Transform @@ -131797,6 +132297,16 @@ entities: - 23804 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19188 + components: + - type: Transform + pos: 58.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19393 components: - type: Transform @@ -131966,7 +132476,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27312 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20983 @@ -132085,6 +132595,14 @@ entities: - 9702 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 12 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22245 components: - type: Transform @@ -132490,34 +133008,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-1.5 - parent: 12 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26979 + - uid: 26415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-1.5 + pos: 35.5,0.5 parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 2682 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26994 @@ -132852,6 +133350,16 @@ entities: - 30453 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + pos: 36.5,0.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 2682 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2755 components: - type: Transform @@ -132932,17 +133440,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4685 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 447 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4723 components: - type: Transform @@ -132954,18 +133451,6 @@ entities: - 27296 - type: AtmosPipeColor color: '#990000FF' - - uid: 4742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 3224 - - 28377 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5254 components: - type: Transform @@ -133007,7 +133492,6 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 - 1288 - type: AtmosPipeColor color: '#990000FF' @@ -133019,7 +133503,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 10017 + - 4906 - 448 - type: AtmosPipeColor color: '#990000FF' @@ -133038,6 +133522,17 @@ entities: - 28366 - type: AtmosPipeColor color: '#990000FF' + - uid: 5887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,5.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27314 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6083 components: - type: Transform @@ -133054,6 +133549,15 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 6212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 26792 - uid: 6979 components: - type: Transform @@ -133107,16 +133611,6 @@ entities: - 8971 - type: AtmosPipeColor color: '#990000FF' - - uid: 7787 - components: - - type: Transform - pos: 19.5,5.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 28378 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8536 components: - type: Transform @@ -133225,6 +133719,9 @@ entities: - type: Transform pos: 15.5,14.5 parent: 12 + - type: DeviceNetwork + deviceLists: + - 31894 - type: AtmosPipeColor color: '#990000FF' - uid: 10006 @@ -133297,6 +133794,16 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' + - uid: 12231 + components: + - type: Transform + pos: 30.5,3.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 11505 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12730 components: - type: Transform @@ -133609,6 +134116,26 @@ entities: - 18887 - type: AtmosPipeColor color: '#990000FF' + - uid: 19173 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 4418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19292 + components: + - type: Transform + pos: 57.5,10.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 27313 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19392 components: - type: Transform @@ -133657,6 +134184,17 @@ entities: - 23791 - type: AtmosPipeColor color: '#990000FF' + - uid: 19555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 12 + - type: DeviceNetwork + deviceLists: + - 31755 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20008 components: - type: Transform @@ -134096,16 +134634,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26311 - components: - - type: Transform - pos: 42.5,-27.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 4418 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26328 components: - type: Transform @@ -134164,25 +134692,14 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 26441 + - uid: 26689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-14.5 parent: 12 - - type: DeviceNetwork - deviceLists: - - 26938 - type: AtmosPipeColor color: '#990000FF' - - uid: 26780 - components: - - type: Transform - pos: 73.5,7.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 26937 - uid: 26949 components: - type: Transform @@ -134190,7 +134707,7 @@ entities: parent: 12 - type: DeviceNetwork deviceLists: - - 26938 + - 27311 - type: AtmosPipeColor color: '#990000FF' - uid: 27249 @@ -134282,17 +134799,6 @@ entities: parent: 12 - type: AtmosPipeColor color: '#990000FF' - - uid: 31756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 12 - - type: DeviceNetwork - deviceLists: - - 31755 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasVentScrubberVox entities: - uid: 9429 @@ -134348,11 +134854,6 @@ entities: - type: Transform pos: 44.5,-5.5 parent: 12 - - uid: 11391 - components: - - type: Transform - pos: 28.5,13.5 - parent: 12 - uid: 11535 components: - type: Transform @@ -134381,12 +134882,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 12 - - uid: 16356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 12 - uid: 21532 components: - type: Transform @@ -134403,6 +134898,12 @@ entities: - type: Transform pos: 38.5,45.5 parent: 12 + - uid: 26705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 12 - uid: 27148 components: - type: Transform @@ -134421,6 +134922,11 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-17.5 parent: 12 + - uid: 28923 + components: + - type: Transform + pos: 48.5,9.5 + parent: 12 - uid: 30737 components: - type: Transform @@ -134732,6 +135238,12 @@ entities: - type: Transform pos: -60.5,31.5 parent: 12 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 12 - uid: 255 components: - type: Transform @@ -134890,11 +135402,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 12 - - uid: 403 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - uid: 409 components: - type: Transform @@ -135067,6 +135574,12 @@ entities: - type: Transform pos: -38.5,-28.5 parent: 12 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-2.5 + parent: 12 - uid: 652 components: - type: Transform @@ -135400,15 +135913,17 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1356 + - uid: 1352 components: - type: Transform - pos: 7.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-10.5 parent: 12 - - uid: 1363 + - uid: 1354 components: - type: Transform - pos: 8.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-6.5 parent: 12 - uid: 1453 components: @@ -135421,6 +135936,11 @@ entities: rot: 3.141592653589793 rad pos: -40.5,75.5 parent: 12 + - uid: 1550 + components: + - type: Transform + pos: 11.5,3.5 + parent: 12 - uid: 1611 components: - type: Transform @@ -135450,15 +135970,10 @@ entities: - type: Transform pos: 35.5,8.5 parent: 12 - - uid: 2090 - components: - - type: Transform - pos: 28.5,-1.5 - parent: 12 - - uid: 2091 + - uid: 2066 components: - type: Transform - pos: 28.5,-0.5 + pos: 11.5,1.5 parent: 12 - uid: 2172 components: @@ -135466,12 +135981,33 @@ entities: rot: 3.141592653589793 rad pos: 71.5,14.5 parent: 12 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 12 + - uid: 2175 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 - uid: 2179 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-40.5 parent: 12 + - uid: 2252 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 2253 + components: + - type: Transform + pos: 11.5,2.5 + parent: 12 - uid: 2331 components: - type: Transform @@ -136020,6 +136556,11 @@ entities: - type: Transform pos: -18.5,-30.5 parent: 12 + - uid: 3198 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 12 - uid: 3468 components: - type: Transform @@ -136046,10 +136587,10 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-53.5 parent: 12 - - uid: 3613 + - uid: 3630 components: - type: Transform - pos: 50.5,-1.5 + pos: 11.5,-1.5 parent: 12 - uid: 4104 components: @@ -136205,26 +136746,31 @@ entities: - type: Transform pos: 7.5,-16.5 parent: 12 - - uid: 4677 + - uid: 4598 components: - type: Transform - pos: 20.5,0.5 + pos: 13.5,-0.5 parent: 12 - - uid: 4678 + - uid: 4600 components: - type: Transform - pos: 21.5,0.5 + pos: 57.5,7.5 parent: 12 - - uid: 4679 + - uid: 4666 components: - type: Transform - pos: 22.5,0.5 + pos: 36.5,-0.5 parent: 12 - - uid: 4766 + - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 + pos: 21.5,3.5 + parent: 12 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 parent: 12 - uid: 4772 components: @@ -136232,31 +136778,33 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,53.5 parent: 12 - - uid: 4794 + - uid: 4784 components: - type: Transform - pos: 47.5,0.5 + pos: 21.5,-11.5 parent: 12 - - uid: 4870 + - uid: 4794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-57.5 + pos: 47.5,0.5 parent: 12 - - uid: 4894 + - uid: 4796 components: - type: Transform - pos: 14.5,-6.5 + rot: 3.141592653589793 rad + pos: 21.5,-1.5 parent: 12 - - uid: 4895 + - uid: 4798 components: - type: Transform - pos: 14.5,-7.5 + rot: 3.141592653589793 rad + pos: 21.5,-2.5 parent: 12 - - uid: 4896 + - uid: 4870 components: - type: Transform - pos: 14.5,-8.5 + rot: 3.141592653589793 rad + pos: -4.5,-57.5 parent: 12 - uid: 4912 components: @@ -136264,40 +136812,39 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 12 - - uid: 4928 - components: - - type: Transform - pos: 18.5,8.5 - parent: 12 - - uid: 4929 + - uid: 4920 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 21.5,-7.5 parent: 12 - - uid: 4954 + - uid: 4972 components: - type: Transform - pos: 21.5,7.5 + rot: -1.5707963267948966 rad + pos: 23.5,-4.5 parent: 12 - - uid: 4955 + - uid: 4987 components: - type: Transform - pos: 22.5,7.5 + rot: 1.5707963267948966 rad + pos: 82.5,3.5 parent: 12 - - uid: 5079 + - uid: 4989 components: - type: Transform - pos: 28.5,-8.5 + rot: 1.5707963267948966 rad + pos: 82.5,4.5 parent: 12 - - uid: 5080 + - uid: 5028 components: - type: Transform - pos: 28.5,-7.5 + pos: 12.5,-1.5 parent: 12 - - uid: 5081 + - uid: 5050 components: - type: Transform - pos: 28.5,-6.5 + pos: 37.5,-0.5 parent: 12 - uid: 5085 components: @@ -136309,10 +136856,11 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5097 + - uid: 5197 components: - type: Transform - pos: 32.5,-0.5 + rot: 1.5707963267948966 rad + pos: 82.5,9.5 parent: 12 - uid: 5269 components: @@ -136409,18 +136957,118 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,2.5 parent: 12 + - uid: 5538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-1.5 + parent: 12 + - uid: 5550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,0.5 + parent: 12 + - uid: 5552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-0.5 + parent: 12 + - uid: 5595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,2.5 + parent: 12 + - uid: 5618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,5.5 + parent: 12 + - uid: 5620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,7.5 + parent: 12 + - uid: 5715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 12 + - uid: 5718 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 5806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5811 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,12.5 + parent: 12 + - uid: 5818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 - uid: 5829 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,64.5 parent: 12 + - uid: 5832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 12 - uid: 5834 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,65.5 parent: 12 + - uid: 5845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,8.5 + parent: 12 - uid: 5878 components: - type: Transform @@ -136433,15 +137081,10 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-21.5 parent: 12 - - uid: 5883 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - - uid: 5887 + - uid: 5967 components: - type: Transform - pos: 58.5,-2.5 + pos: 10.5,-1.5 parent: 12 - uid: 5974 components: @@ -136466,10 +137109,28 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,52.5 parent: 12 + - uid: 6009 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 - uid: 6016 components: - type: Transform - pos: 28.5,-10.5 + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 6017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 6022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,14.5 parent: 12 - uid: 6055 components: @@ -136808,11 +137469,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-44.5 parent: 12 - - uid: 6270 - components: - - type: Transform - pos: 13.5,6.5 - parent: 12 - uid: 6284 components: - type: Transform @@ -136935,7 +137591,17 @@ entities: - uid: 6737 components: - type: Transform - pos: 28.5,-2.5 + pos: 28.5,-9.5 + parent: 12 + - uid: 6748 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 + - uid: 6764 + components: + - type: Transform + pos: 28.5,-8.5 parent: 12 - uid: 6798 components: @@ -136957,16 +137623,65 @@ entities: - type: Transform pos: 34.5,-24.5 parent: 12 + - uid: 6898 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 - uid: 6941 components: - type: Transform pos: -60.5,30.5 parent: 12 + - uid: 7199 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 7238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 12 + - uid: 7241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 12 + - uid: 7245 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 + - uid: 7247 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 7262 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 - uid: 7300 components: - type: Transform pos: 29.5,-54.5 parent: 12 + - uid: 7322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,14.5 + parent: 12 - uid: 7379 components: - type: Transform @@ -137129,6 +137844,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-6.5 parent: 12 + - uid: 7548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,14.5 + parent: 12 - uid: 7551 components: - type: Transform @@ -137333,6 +138054,17 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 + - uid: 7826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 12 + - uid: 7832 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 - uid: 8028 components: - type: Transform @@ -137413,15 +138145,37 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-50.5 parent: 12 + - uid: 9053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,10.5 + parent: 12 + - uid: 9054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,14.5 + parent: 12 - uid: 9068 components: - type: Transform pos: -58.5,36.5 parent: 12 - - uid: 9308 + - uid: 9402 components: - type: Transform - pos: 78.5,13.5 + pos: 10.5,0.5 + parent: 12 + - uid: 9403 + components: + - type: Transform + pos: 22.5,8.5 + parent: 12 + - uid: 9404 + components: + - type: Transform + pos: 21.5,8.5 parent: 12 - uid: 9428 components: @@ -137439,6 +138193,18 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,1.5 parent: 12 + - uid: 9483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,16.5 + parent: 12 + - uid: 9491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,11.5 + parent: 12 - uid: 9504 components: - type: Transform @@ -137457,11 +138223,52 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-32.5 parent: 12 + - uid: 9609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,1.5 + parent: 12 + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-5.5 + parent: 12 + - uid: 9618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,16.5 + parent: 12 - uid: 9619 components: - type: Transform pos: -0.5,-40.5 parent: 12 + - uid: 9621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,16.5 + parent: 12 + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,16.5 + parent: 12 + - uid: 9669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-5.5 + parent: 12 + - uid: 9709 + components: + - type: Transform + pos: 63.5,6.5 + parent: 12 - uid: 9719 components: - type: Transform @@ -137893,7 +138700,12 @@ entities: - uid: 10347 components: - type: Transform - pos: 24.5,1.5 + pos: 57.5,1.5 + parent: 12 + - uid: 10368 + components: + - type: Transform + pos: 63.5,5.5 parent: 12 - uid: 10569 components: @@ -137967,6 +138779,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,22.5 parent: 12 + - uid: 10657 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 - uid: 10675 components: - type: Transform @@ -138039,6 +138856,66 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,16.5 + parent: 12 + - uid: 10869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-4.5 + parent: 12 + - uid: 10876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-5.5 + parent: 12 + - uid: 10877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,-5.5 + parent: 12 + - uid: 10887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-5.5 + parent: 12 + - uid: 10914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-5.5 + parent: 12 + - uid: 10915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-5.5 + parent: 12 + - uid: 10916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-5.5 + parent: 12 + - uid: 10923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-5.5 + parent: 12 + - uid: 10927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 12 - uid: 10934 components: - type: Transform @@ -138205,36 +139082,32 @@ entities: - type: Transform pos: -5.5,-62.5 parent: 12 - - uid: 11446 - components: - - type: Transform - pos: 9.5,7.5 - parent: 12 - - uid: 11455 + - uid: 11448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,11.5 + pos: 24.5,11.5 parent: 12 - uid: 11459 components: - type: Transform pos: 51.5,11.5 parent: 12 - - uid: 11472 + - uid: 11465 components: - type: Transform - pos: 45.5,9.5 + pos: 48.5,10.5 parent: 12 - - uid: 11473 + - uid: 11481 components: - type: Transform - pos: 44.5,9.5 + pos: -4.5,-62.5 parent: 12 - - uid: 11481 + - uid: 11486 components: - type: Transform - pos: -4.5,-62.5 + rot: 3.141592653589793 rad + pos: 21.5,-14.5 parent: 12 - uid: 11501 components: @@ -138639,23 +139512,6 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-45.5 parent: 12 - - uid: 12231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 12 - - uid: 12232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,12.5 - parent: 12 - - uid: 12310 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12311 components: - type: Transform @@ -140176,6 +141032,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,79.5 parent: 12 + - uid: 16662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 12 - uid: 16801 components: - type: Transform @@ -140414,7 +141276,8 @@ entities: - uid: 17599 components: - type: Transform - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - uid: 17832 components: @@ -140760,6 +141623,12 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,46.5 parent: 12 + - uid: 19455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 12 - uid: 19458 components: - type: Transform @@ -140918,6 +141787,12 @@ entities: - type: Transform pos: -54.5,38.5 parent: 12 + - uid: 21065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,14.5 + parent: 12 - uid: 21074 components: - type: Transform @@ -140928,7 +141803,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-14.5 + pos: 82.5,13.5 parent: 12 - uid: 21530 components: @@ -140945,6 +141820,12 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 12 + - uid: 21703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,-5.5 + parent: 12 - uid: 21706 components: - type: Transform @@ -140970,11 +141851,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 12 - - uid: 21911 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21968 components: - type: Transform @@ -141073,65 +141949,16 @@ entities: - type: Transform pos: 67.5,14.5 parent: 12 - - uid: 22102 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - - uid: 22110 - components: - - type: Transform - pos: 80.5,5.5 - parent: 12 - - uid: 22112 - components: - - type: Transform - pos: 80.5,4.5 - parent: 12 - - uid: 22113 - components: - - type: Transform - pos: 80.5,-0.5 - parent: 12 - - uid: 22114 - components: - - type: Transform - pos: 80.5,9.5 - parent: 12 - - uid: 22115 - components: - - type: Transform - pos: 80.5,10.5 - parent: 12 - - uid: 22116 - components: - - type: Transform - pos: 80.5,1.5 - parent: 12 - - uid: 22117 - components: - - type: Transform - pos: 80.5,6.5 - parent: 12 - - uid: 22120 - components: - - type: Transform - pos: 80.5,0.5 - parent: 12 - - uid: 22121 - components: - - type: Transform - pos: 79.5,13.5 - parent: 12 - uid: 22133 components: - type: Transform pos: 62.5,14.5 parent: 12 - - uid: 22151 + - uid: 22158 components: - type: Transform - pos: 80.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,14.5 parent: 12 - uid: 22193 components: @@ -141229,58 +142056,78 @@ entities: rot: 3.141592653589793 rad pos: -30.5,75.5 parent: 12 - - uid: 23759 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,61.5 + pos: 17.5,8.5 parent: 12 - - uid: 23887 + - uid: 23412 components: - type: Transform - pos: 49.5,9.5 + pos: 9.5,0.5 parent: 12 - - uid: 23924 + - uid: 23759 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-34.5 + pos: -55.5,61.5 parent: 12 - - uid: 24452 + - uid: 23924 components: - type: Transform - pos: 9.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,-34.5 parent: 12 - uid: 24649 components: - type: Transform pos: -19.5,-62.5 parent: 12 - - uid: 24654 + - uid: 24664 components: - type: Transform - pos: 30.5,11.5 + rot: 1.5707963267948966 rad + pos: -28.5,73.5 parent: 12 - - uid: 24664 + - uid: 25061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,73.5 + pos: 65.5,-5.5 + parent: 12 + - uid: 25089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,12.5 + parent: 12 + - uid: 25102 + components: + - type: Transform + pos: 63.5,2.5 parent: 12 - uid: 25103 components: - type: Transform pos: 60.5,-22.5 parent: 12 - - uid: 25191 + - uid: 25192 components: - type: Transform - pos: 14.5,-9.5 + rot: 1.5707963267948966 rad + pos: 78.5,-5.5 parent: 12 - - uid: 25331 + - uid: 25193 components: - type: Transform - pos: 47.5,9.5 + rot: 1.5707963267948966 rad + pos: 84.5,-3.5 + parent: 12 + - uid: 25196 + components: + - type: Transform + pos: 33.5,-3.5 parent: 12 - uid: 25389 components: @@ -141346,16 +142193,6 @@ entities: - type: Transform pos: 3.5,16.5 parent: 12 - - uid: 25537 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - - uid: 25538 - components: - - type: Transform - pos: 11.5,6.5 - parent: 12 - uid: 25546 components: - type: Transform @@ -141522,11 +142359,29 @@ entities: - type: Transform pos: -56.5,-15.5 parent: 12 + - uid: 26027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 12 + - uid: 26064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 12 - uid: 26068 components: - type: Transform pos: -31.5,-60.5 parent: 12 + - uid: 26103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,4.5 + parent: 12 - uid: 26106 components: - type: Transform @@ -141555,6 +142410,12 @@ entities: - type: Transform pos: -40.5,57.5 parent: 12 + - uid: 26154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 12 - uid: 26171 components: - type: Transform @@ -141803,160 +142664,58 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,67.5 parent: 12 - - uid: 26450 - components: - - type: Transform - pos: 25.5,89.5 - parent: 12 - - uid: 26471 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 12 - - uid: 26499 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26500 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26501 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26502 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26503 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26504 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26505 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26523 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26524 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26525 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26526 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26527 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26528 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26529 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26530 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26531 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26532 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26533 + - uid: 26420 components: - type: Transform - pos: 68.5,3.5 + pos: 63.5,4.5 parent: 12 - - uid: 26534 + - uid: 26421 components: - type: Transform - pos: 70.5,3.5 + rot: 1.5707963267948966 rad + pos: 84.5,6.5 parent: 12 - - uid: 26535 + - uid: 26450 components: - type: Transform - pos: 71.5,3.5 + pos: 25.5,89.5 parent: 12 - uid: 26536 components: - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26537 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26538 - components: - - type: Transform - pos: 74.5,3.5 + rot: 1.5707963267948966 rad + pos: 62.5,-5.5 parent: 12 - uid: 26542 components: - type: Transform pos: 26.5,89.5 parent: 12 - - uid: 26563 + - uid: 26546 components: - type: Transform - pos: 6.5,7.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 parent: 12 - - uid: 26566 + - uid: 26550 components: - type: Transform - pos: -22.5,-8.5 + pos: 36.5,-3.5 parent: 12 - - uid: 26572 + - uid: 26564 components: - type: Transform - pos: 56.5,4.5 + pos: 34.5,-3.5 parent: 12 - - uid: 26573 + - uid: 26566 components: - type: Transform - pos: 56.5,5.5 + pos: -22.5,-8.5 parent: 12 - - uid: 26574 + - uid: 26575 components: - type: Transform - pos: 56.5,6.5 + pos: 35.5,-3.5 parent: 12 - uid: 26581 components: @@ -141973,21 +142732,6 @@ entities: - type: Transform pos: 27.5,89.5 parent: 12 - - uid: 26589 - components: - - type: Transform - pos: 76.5,13.5 - parent: 12 - - uid: 26591 - components: - - type: Transform - pos: 77.5,13.5 - parent: 12 - - uid: 26596 - components: - - type: Transform - pos: 80.5,3.5 - parent: 12 - uid: 26598 components: - type: Transform @@ -142010,35 +142754,68 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,70.5 parent: 12 - - uid: 26651 + - uid: 26620 components: - type: Transform - pos: 80.5,-3.5 + rot: -1.5707963267948966 rad + pos: 24.5,4.5 parent: 12 - - uid: 26686 + - uid: 26621 components: - type: Transform - pos: 59.5,5.5 + rot: -1.5707963267948966 rad + pos: 22.5,4.5 parent: 12 - - uid: 26687 + - uid: 26627 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 24.5,10.5 parent: 12 - - uid: 26688 + - uid: 26632 components: - type: Transform - pos: 63.5,5.5 + pos: 4.5,-21.5 parent: 12 - - uid: 26689 + - uid: 26633 components: - type: Transform - pos: 65.5,5.5 + pos: 3.5,-21.5 parent: 12 - - uid: 26690 + - uid: 26653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 + - uid: 26676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 26692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 + - uid: 26696 components: - type: Transform - pos: 67.5,5.5 + rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 12 + - uid: 26716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-5.5 + parent: 12 + - uid: 26747 + components: + - type: Transform + pos: 63.5,3.5 parent: 12 - uid: 26758 components: @@ -142069,16 +142846,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26816 + - uid: 26799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-2.5 - parent: 12 - - uid: 26832 - components: - - type: Transform - pos: 6.5,6.5 + pos: 77.5,-5.5 parent: 12 - uid: 26866 components: @@ -142092,26 +142864,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 12 - - uid: 26904 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: 75.5,1.5 - parent: 12 - - uid: 26911 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26967 - components: - - type: Transform - pos: 80.5,-4.5 - parent: 12 - uid: 26973 components: - type: Transform @@ -142123,6 +142875,12 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 12 + - uid: 27018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 12 - uid: 27040 components: - type: Transform @@ -142249,12 +143007,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-22.5 parent: 12 - - uid: 27136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 27161 components: - type: Transform @@ -142282,11 +143034,21 @@ entities: - type: Transform pos: 11.5,12.5 parent: 12 + - uid: 27244 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27248 components: - type: Transform pos: 29.5,76.5 parent: 12 + - uid: 27250 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 27262 components: - type: Transform @@ -142397,12 +143159,6 @@ entities: - type: Transform pos: -49.5,-18.5 parent: 12 - - uid: 27604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 27629 components: - type: Transform @@ -142435,17 +143191,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 27891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 12 - - uid: 27903 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 27910 components: - type: Transform @@ -142780,12 +143525,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 12 - - uid: 28523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - uid: 28558 components: - type: Transform @@ -142797,80 +143536,11 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-7.5 parent: 12 - - uid: 28790 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28791 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28792 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28793 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28794 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28795 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28796 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28797 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28798 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28799 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28800 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28801 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28802 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28803 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 29148 + - uid: 29089 components: - type: Transform - pos: 49.5,-1.5 + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 12 - uid: 29210 components: @@ -144336,26 +145006,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31512 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31513 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31514 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31515 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31603 components: - type: Transform @@ -144433,45 +145083,30 @@ entities: - type: Transform pos: 46.5,13.5 parent: 12 - - uid: 12315 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 21531 components: - type: Transform pos: -1.5,16.5 parent: 12 - - uid: 22147 - components: - - type: Transform - pos: 80.5,-1.5 - parent: 12 - - uid: 26594 - components: - - type: Transform - pos: 80.5,8.5 - parent: 12 - uid: 27103 components: - type: Transform pos: 56.5,14.5 parent: 12 - - uid: 30489 + - uid: 28674 components: - type: Transform - pos: 33.5,10.5 + pos: 44.5,-2.5 parent: 12 - - uid: 30490 + - uid: 28921 components: - type: Transform - pos: 44.5,-4.5 + pos: 32.5,10.5 parent: 12 - - uid: 30491 + - uid: 30490 components: - type: Transform - pos: 44.5,-2.5 + pos: 44.5,-4.5 parent: 12 - uid: 30492 components: @@ -145223,6 +145858,20 @@ entities: - type: Transform pos: 12.6497135,57.214436 parent: 12 +- proto: Intellicard + entities: + - uid: 28861 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -3.43437,-0.48939347 + parent: 12 + - uid: 28862 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: -2.5072865,-0.47896957 + parent: 12 - proto: IntercomCommon entities: - uid: 8792 @@ -145280,6 +145929,12 @@ entities: parent: 12 - proto: IntercomEngineering entities: + - uid: 2894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,0.5 + parent: 12 - uid: 5594 components: - type: Transform @@ -145313,11 +145968,22 @@ entities: - type: Transform pos: 43.5,46.5 parent: 12 - - uid: 26064 + - uid: 27326 + components: + - type: Transform + pos: 46.5,0.5 + parent: 12 + - uid: 27352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 12 + - uid: 28770 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 59.5,-0.5 parent: 12 - proto: IntercomMedical entities: @@ -145523,6 +146189,25 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,17.5 parent: 12 +- proto: JetpackBlueFilled + entities: + - uid: 28698 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 57.52248,-5.5233436 + parent: 12 + - type: GasTank + toggleActionEntity: 28700 + - type: Jetpack + toggleActionEntity: 28699 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28699 + - 28700 - proto: JetpackMiniFilled entities: - uid: 16458 @@ -145616,11 +146301,6 @@ entities: - type: Transform pos: 28.5,22.5 parent: 12 - - uid: 405 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 3808 components: - type: Transform @@ -145732,11 +146412,6 @@ entities: parent: 12 - proto: KnifePlastic entities: - - uid: 11469 - components: - - type: Transform - pos: 8.559147,6.580246 - parent: 12 - uid: 21386 components: - type: Transform @@ -145924,7 +146599,7 @@ entities: - uid: 11014 components: - type: Transform - pos: 47.496155,-2.439421 + pos: 47.426105,-3.4417992 parent: 12 - proto: LightBulbOld entities: @@ -145948,22 +146623,30 @@ entities: - type: Transform pos: -19.24069,2.5948265 parent: 12 -- proto: LockerAtmosphericsFilled +- proto: LiveLetLiveCircuitBoard entities: - - uid: 2929 + - uid: 28853 components: - type: Transform - pos: 52.5,6.5 + rot: -12.566370614359172 rad + pos: 2.6437569,-15.31712 parent: 12 - - uid: 25089 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 3021 components: - type: Transform - pos: 51.5,6.5 + pos: 31.5,4.5 parent: 12 - - uid: 26553 + - uid: 7831 components: - type: Transform - pos: 53.5,6.5 + pos: 31.5,2.5 + parent: 12 + - uid: 28844 + components: + - type: Transform + pos: 31.5,3.5 parent: 12 - proto: LockerBooze entities: @@ -146705,11 +147388,6 @@ entities: - type: Transform pos: 2.5,65.5 parent: 12 - - uid: 27312 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - proto: LootSpawnerIndustrial entities: - uid: 21945 @@ -146799,11 +147477,6 @@ entities: - type: Transform pos: 31.5,0.5 parent: 12 - - uid: 28849 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 12 - proto: LootSpawnerMaterialsSupplementary entities: - uid: 5980 @@ -146988,11 +147661,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-53.5 parent: 12 - - uid: 5429 - components: - - type: Transform - pos: 18.5,1.5 - parent: 12 - uid: 15384 components: - type: Transform @@ -147043,6 +147711,68 @@ entities: - type: Transform pos: -42.535183,36.7932 parent: 12 +- proto: MailingUnit + entities: + - uid: 5831 + components: + - type: Transform + pos: 25.5,55.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 5979 + components: + - type: Transform + pos: 39.5,53.5 + parent: 12 + - type: MailingUnit + tag: Freezer + target: Freezer + - uid: 6019 + components: + - type: MetaData + name: mailing unit to chemistry + - type: Transform + pos: 66.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 6209 + components: + - type: MetaData + name: mailing unit to freezer + - type: Transform + pos: 67.5,50.5 + parent: 12 + - type: MailingUnit + tag: Botany + target: Botany + - uid: 27002 + components: + - type: Transform + pos: 25.5,56.5 + parent: 12 + - type: MailingUnit + tag: Kitchen + target: Kitchen + - uid: 28826 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 12 + - type: MailingUnit + tag: Chemistry + target: Chemistry + - uid: 28827 + components: + - type: Transform + pos: -33.5,50.5 + parent: 12 + - type: MailingUnit + tag: Security + target: Security - proto: MaintenanceFluffSpawner entities: - uid: 1079 @@ -147157,11 +147887,6 @@ entities: - type: Transform pos: -3.5,17.5 parent: 12 - - uid: 13011 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 12 - uid: 24498 components: - type: Transform @@ -147229,11 +147954,6 @@ entities: - type: Transform pos: 37.5,25.5 parent: 12 - - uid: 2342 - components: - - type: Transform - pos: 28.5,12.5 - parent: 12 - uid: 6296 components: - type: Transform @@ -147324,6 +148044,11 @@ entities: - type: Transform pos: -7.5,21.5 parent: 12 + - uid: 26584 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 - uid: 28274 components: - type: Transform @@ -147371,47 +148096,6 @@ entities: - type: Transform pos: -28.5,-56.5 parent: 12 -- proto: Mannequin - entities: - - uid: 6209 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2020 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6220 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 2021 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: 6212 - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - proto: Matchbox entities: - uid: 6885 @@ -147621,17 +148305,19 @@ entities: rot: 6.283185307179586 rad pos: 2.7264805,-34.64928 parent: 12 -- proto: MedkitRadiationFilled +- proto: MedkitRadiation entities: - - uid: 2915 + - uid: 8293 components: - type: Transform - pos: 3.3725653,-32.354176 + pos: 59.512062,9.509785 parent: 12 - - uid: 5050 +- proto: MedkitRadiationFilled + entities: + - uid: 2915 components: - type: Transform - pos: 18.32129,3.6110866 + pos: 3.3725653,-32.354176 parent: 12 - uid: 6777 components: @@ -147641,7 +148327,7 @@ entities: - uid: 6778 components: - type: Transform - pos: 11.465142,-19.498817 + pos: 13.616542,-24.438873 parent: 12 - proto: MedkitToxinFilled entities: @@ -147890,10 +148576,10 @@ entities: - type: Transform pos: -32.59243,-21.422949 parent: 12 - - uid: 2247 + - uid: 5247 components: - type: Transform - pos: -0.46108937,-15.409082 + pos: 37.682983,4.6129007 parent: 12 - uid: 5914 components: @@ -147920,6 +148606,11 @@ entities: - type: Transform pos: -51.23872,29.37216 parent: 12 + - uid: 22142 + components: + - type: Transform + pos: 60.1837,-0.4900638 + parent: 12 - uid: 23674 components: - type: Transform @@ -147986,6 +148677,11 @@ entities: - type: Transform pos: -54.5,-32.5 parent: 12 + - uid: 5639 + components: + - type: Transform + pos: 26.5,11.5 + parent: 12 - uid: 6197 components: - type: Transform @@ -148001,10 +148697,10 @@ entities: - type: Transform pos: 81.5,-31.5 parent: 12 - - uid: 12011 + - uid: 9319 components: - type: Transform - pos: 39.5,0.5 + pos: 25.5,12.5 parent: 12 - uid: 12122 components: @@ -148026,11 +148722,21 @@ entities: - type: Transform pos: -3.5,11.5 parent: 12 + - uid: 21616 + components: + - type: Transform + pos: 25.5,11.5 + parent: 12 - uid: 22708 components: - type: Transform pos: -55.5,-35.5 parent: 12 + - uid: 23132 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 12 - uid: 23699 components: - type: Transform @@ -148051,25 +148757,15 @@ entities: - type: Transform pos: -2.5,36.5 parent: 12 - - uid: 26576 - components: - - type: Transform - pos: 53.5,-3.5 - parent: 12 - - uid: 26890 - components: - - type: Transform - pos: 53.5,-4.5 - parent: 12 - - uid: 27307 + - uid: 26423 components: - type: Transform - pos: 59.5,6.5 + pos: 3.5,-20.5 parent: 12 - - uid: 28945 + - uid: 26429 components: - type: Transform - pos: 5.5,-19.5 + pos: 4.5,-20.5 parent: 12 - uid: 29291 components: @@ -148111,6 +148807,34 @@ entities: - type: Transform pos: 29.894995,45.5396 parent: 12 + - uid: 25104 + components: + - type: Transform + parent: 28689 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25191 + components: + - type: Transform + parent: 28690 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28707 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.708927,9.40214 + parent: 12 + - type: GasTank + toggleActionEntity: 28708 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28708 - uid: 30711 components: - type: Transform @@ -148127,10 +148851,10 @@ entities: - 30712 - proto: NitrousOxideCanister entities: - - uid: 26811 + - uid: 26685 components: - type: Transform - pos: 57.5,-3.5 + pos: 24.5,8.5 parent: 12 - proto: NitrousOxideTankFilled entities: @@ -148209,6 +148933,14 @@ entities: - type: Transform pos: 57.5,46.5 parent: 12 +- proto: NTDefaultCircuitBoard + entities: + - uid: 28854 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3989635,-1.1252534 + parent: 12 - proto: NuclearBomb entities: - uid: 21066 @@ -148224,6 +148956,14 @@ entities: - type: Transform pos: -48.5,69.5 parent: 12 +- proto: NutimovCircuitBoard + entities: + - uid: 28855 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.6622753,-15.619799 + parent: 12 - proto: OperatingTable entities: - uid: 1812 @@ -148282,10 +149022,10 @@ entities: - type: Transform pos: -54.5,-29.5 parent: 12 - - uid: 2859 + - uid: 3690 components: - type: Transform - pos: 39.5,1.5 + pos: 27.5,11.5 parent: 12 - uid: 6679 components: @@ -148302,6 +149042,11 @@ entities: - type: Transform pos: 35.5,-30.5 parent: 12 + - uid: 7236 + components: + - type: Transform + pos: 26.5,12.5 + parent: 12 - uid: 7334 components: - type: Transform @@ -148337,6 +149082,11 @@ entities: - type: Transform pos: -2.5,11.5 parent: 12 + - uid: 23361 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 12 - uid: 23698 components: - type: Transform @@ -148357,31 +149107,26 @@ entities: - type: Transform pos: -2.5,37.5 parent: 12 - - uid: 27057 + - uid: 26424 components: - type: Transform - pos: 54.5,-4.5 + pos: 2.5,-20.5 parent: 12 - - uid: 27140 + - uid: 26431 components: - type: Transform - pos: 54.5,-3.5 + pos: 1.5,-20.5 parent: 12 - - uid: 27306 + - uid: 26623 components: - type: Transform - pos: 61.5,6.5 + pos: 27.5,12.5 parent: 12 - uid: 27448 components: - type: Transform pos: -56.5,-35.5 parent: 12 - - uid: 28944 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 12 - uid: 29073 components: - type: Transform @@ -148427,6 +149172,20 @@ entities: actions: !type:Container ents: - 12128 + - uid: 28709 + components: + - type: Transform + rot: -37.69911184307754 rad + pos: 57.55129,9.456535 + parent: 12 + - type: GasTank + toggleActionEntity: 28710 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 28710 - uid: 30713 components: - type: Transform @@ -148546,6 +149305,58 @@ entities: - type: Transform pos: 54.333927,24.618994 parent: 12 + - uid: 29970 + components: + - type: Transform + pos: 29.532839,4.411601 + parent: 12 + - type: Paper + content: >+ + [head=2]Standard output pressures for different tanks:[/head] + + ───────────────────────────────────────── + + [color=blue]Oxygen tank[/color] - 21.3 kPA + + [color=red]Nitrogen tank[/color] - 21.3 kPA + + Air tank - 101.3 kPA + + Nitrous oxide tank - 30.4 kPA + + [color=orange]Plasma tank[/color] - 101.3 kPA + + [color=red]Fun[/color][color=orange]ny e[/color][color=yellow]merg[/color][color=green]ency[/color][color=blue] oxy[/color][color=purple]gen [/color][color=pink]tank[/color] - 22.4 kPA + + + + [color=#AAAAAA]Note: The output pressures for the emergency, double, and extended-capacity versions of tanks are the same as their counterparts, with the exception of the funny emergency oxygen tank.[/color] + + + + + + + + + + + + + + + + + + + + + + + + + + - uid: 31763 components: - type: Transform @@ -148581,8 +149392,7 @@ entities: - uid: 31769 components: - type: Transform - rot: -18.84955592153876 rad - pos: 55.729565,5.748849 + pos: 8.563417,-10.653862 parent: 12 - type: Paper content: >+ @@ -148628,6 +149438,7 @@ entities: + - proto: PaperBin10 @@ -148863,56 +149674,60 @@ entities: - type: Transform pos: -6.698526,77.58844 parent: 12 -- proto: ParticleAcceleratorControlBox +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 4668 + - uid: 26740 components: - type: Transform - pos: 20.5,3.5 + pos: 59.5,3.5 parent: 12 - - type: ApcPowerReceiver - needsPower: False -- proto: ParticleAcceleratorEmitterFore +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 4591 + - uid: 24689 components: - type: Transform - pos: 21.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 parent: 12 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 4589 + - uid: 26074 components: - type: Transform - pos: 22.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,5.5 parent: 12 -- proto: ParticleAcceleratorEmitterStarboard +- proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 4590 + - uid: 26491 components: - type: Transform - pos: 20.5,1.5 + rot: 1.5707963267948966 rad + pos: 61.5,3.5 parent: 12 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8958 + - uid: 9680 components: - type: Transform - pos: 21.5,6.5 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 parent: 12 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 4671 + - uid: 9703 components: - type: Transform - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: 59.5,4.5 parent: 12 -- proto: ParticleAcceleratorPowerBox +- proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8959 + - uid: 26487 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 60.5,4.5 parent: 12 - proto: PartRodMetal entities: @@ -149337,10 +150152,11 @@ entities: parent: 12 - proto: PlaqueAtmos entities: - - uid: 26895 + - uid: 26842 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 parent: 12 - proto: PlasmaCanister entities: @@ -149354,25 +150170,25 @@ entities: - type: Transform pos: -50.5,-34.5 parent: 12 - - uid: 9741 + - uid: 5636 components: - type: Transform - pos: 10.5,13.5 + pos: 24.5,-6.5 parent: 12 - - uid: 26578 + - uid: 9741 components: - type: Transform - pos: 58.5,-6.5 + pos: 10.5,13.5 parent: 12 - - uid: 27001 + - uid: 25479 components: - type: Transform - pos: 57.5,-6.5 + pos: 27.5,7.5 parent: 12 - - uid: 27308 + - uid: 26426 components: - type: Transform - pos: 63.5,6.5 + pos: 27.5,6.5 parent: 12 - uid: 29074 components: @@ -149478,6 +150294,12 @@ entities: - type: Transform pos: 38.555447,-30.430433 parent: 12 + - uid: 25661 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 10.447776,2.5438957 + parent: 12 - uid: 27187 components: - type: Transform @@ -149493,7 +150315,7 @@ entities: - uid: 4062 components: - type: Transform - pos: -42.541058,-20.577986 + pos: -42.47864,-19.642271 parent: 12 - uid: 22198 components: @@ -149595,6 +150417,11 @@ entities: parent: 12 - proto: PortableGeneratorJrPacman entities: + - uid: 149 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 12 - uid: 2978 components: - type: Transform @@ -149640,11 +150467,6 @@ entities: - type: Transform pos: -35.5,-10.5 parent: 12 - - uid: 27835 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 27837 components: - type: Transform @@ -149658,11 +150480,6 @@ entities: parent: 12 - type: Physics bodyType: Static - - uid: 28948 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 12 - uid: 31448 components: - type: Transform @@ -149677,37 +150494,29 @@ entities: parent: 12 - proto: PortableGeneratorPacman entities: - - uid: 1555 + - uid: 2116 components: - type: Transform anchored: True - pos: 8.5,-11.5 + pos: -2.5,-2.5 parent: 12 - type: Physics bodyType: Static - - uid: 2116 + - uid: 8799 components: - type: Transform anchored: True - pos: -2.5,-2.5 + pos: 40.5,4.5 parent: 12 - type: Physics bodyType: Static - - uid: 27309 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 12 - proto: PortableGeneratorSuperPacman entities: - - uid: 1557 + - uid: 10701 components: - type: Transform - anchored: True - pos: 9.5,-11.5 + pos: 37.5,0.5 parent: 12 - - type: Physics - bodyType: Static - proto: PortableScrubber entities: - uid: 1760 @@ -149725,11 +150534,21 @@ entities: - type: Transform pos: -39.5,-30.5 parent: 12 + - uid: 5274 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 12 - uid: 7161 components: - type: Transform pos: 34.5,-30.5 parent: 12 + - uid: 11929 + components: + - type: Transform + pos: 21.5,7.5 + parent: 12 - uid: 12631 components: - type: Transform @@ -149740,6 +150559,11 @@ entities: - type: Transform pos: -11.5,24.5 parent: 12 + - uid: 16586 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 12 - uid: 18161 components: - type: Transform @@ -149760,15 +150584,20 @@ entities: - type: Transform pos: -18.5,59.5 parent: 12 - - uid: 26784 + - uid: 25480 components: - type: Transform - pos: 76.5,-0.5 + pos: 22.5,7.5 parent: 12 - - uid: 26786 + - uid: 26548 components: - type: Transform - pos: 56.5,2.5 + pos: 25.5,-14.5 + parent: 12 + - uid: 26635 + components: + - type: Transform + pos: 24.5,-14.5 parent: 12 - proto: PosterBroken entities: @@ -149807,11 +150636,10 @@ entities: parent: 12 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 26696 + - uid: 23 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + pos: 25.5,4.5 parent: 12 - proto: PosterContrabandC20r entities: @@ -149841,19 +150669,27 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-58.5 parent: 12 -- proto: PosterContrabandEAT +- proto: PosterContrabandEnlistGorlex entities: - - uid: 366 + - uid: 28268 components: - type: Transform - pos: 10.5,4.5 + pos: -51.5,-14.5 parent: 12 -- proto: PosterContrabandEnlistGorlex +- proto: PosterContrabandHackingGuide entities: - - uid: 28268 + - uid: 28717 components: - type: Transform - pos: -51.5,-14.5 + pos: 59.5,0.5 + parent: 12 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 6287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 parent: 12 - proto: PosterContrabandInterdyne entities: @@ -149956,6 +150792,13 @@ entities: - type: Transform pos: -2.5,57.5 parent: 12 +- proto: PosterLegitFruitBowl + entities: + - uid: 28712 + components: + - type: Transform + pos: 51.5,7.5 + parent: 12 - proto: PosterLegitIan entities: - uid: 30229 @@ -149998,11 +150841,22 @@ entities: parent: 12 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 2970 + components: + - type: Transform + pos: 63.5,-2.5 + parent: 12 - uid: 11334 components: - type: Transform pos: 28.5,1.5 parent: 12 + - uid: 31910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 12 - proto: PosterLegitSafetyInternals entities: - uid: 11337 @@ -150010,12 +150864,10 @@ entities: - type: Transform pos: -20.5,-1.5 parent: 12 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 21703 + - uid: 28719 components: - type: Transform - pos: 17.5,7.5 + pos: 63.5,7.5 parent: 12 - proto: PosterLegitSafetyMothHardhat entities: @@ -150029,6 +150881,11 @@ entities: - type: Transform pos: 29.5,-15.5 parent: 12 + - uid: 28718 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 12 - proto: PosterLegitSafetyMothMeth entities: - uid: 30887 @@ -150038,10 +150895,11 @@ entities: parent: 12 - proto: PosterLegitSafetyMothPiping entities: - - uid: 2604 + - uid: 26648 components: - type: Transform - pos: 53.5,0.5 + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 parent: 12 - proto: PosterLegitScience entities: @@ -150162,11 +151020,6 @@ entities: parent: 12 - proto: PottedPlantRandom entities: - - uid: 2066 - components: - - type: Transform - pos: 10.5,2.5 - parent: 12 - uid: 8484 components: - type: Transform @@ -150432,11 +151285,6 @@ entities: - type: Transform pos: 53.5,-29.5 parent: 12 - - uid: 27303 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 12 - proto: PottedPlantRandomPlastic entities: - uid: 26226 @@ -150497,6 +151345,16 @@ entities: - type: Transform pos: 49.463097,47.95464 parent: 12 + - uid: 27238 + components: + - type: Transform + pos: 8.669416,-11.102629 + parent: 12 + - uid: 28864 + components: + - type: Transform + pos: 2.6072974,-0.46769977 + parent: 12 - proto: PowerCellRecharger entities: - uid: 358 @@ -150674,6 +151532,17 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-49.5 parent: 12 + - uid: 28833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 12 + - uid: 28863 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - proto: PowerCellSmall entities: - uid: 4196 @@ -150731,12 +151600,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 12 - - uid: 630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 12 - uid: 1961 components: - type: Transform @@ -150994,11 +151857,16 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-48.5 parent: 12 - - uid: 3553 + - uid: 3628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 + pos: 13.5,-2.5 + parent: 12 + - uid: 3629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 12 - uid: 3776 components: @@ -151047,6 +151915,12 @@ entities: rot: 3.141592653589793 rad pos: -36.5,26.5 parent: 12 + - uid: 5186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 12 - uid: 5216 components: - type: Transform @@ -151065,17 +151939,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,22.5 parent: 12 - - uid: 5312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 12 - - uid: 5324 - components: - - type: Transform - pos: 12.5,-13.5 - parent: 12 - uid: 5325 components: - type: Transform @@ -151111,51 +151974,11 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-17.5 parent: 12 - - uid: 5542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 12 - - uid: 5543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 12 - - uid: 5546 + - uid: 5853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 12 - - uid: 5548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 12 - - uid: 5549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 12 - - uid: 5550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 12 - - uid: 5552 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 12 - - uid: 5553 - components: - - type: Transform - pos: 23.5,-0.5 + pos: 10.5,2.5 parent: 12 - uid: 5928 components: @@ -151195,12 +152018,6 @@ entities: - type: Transform pos: 28.5,-30.5 parent: 12 - - uid: 6235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 12 - uid: 6310 components: - type: Transform @@ -151437,12 +152254,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-47.5 parent: 12 - - uid: 9135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 12 - uid: 9299 components: - type: Transform @@ -151504,6 +152315,18 @@ entities: - type: Transform pos: -27.5,34.5 parent: 12 + - uid: 9398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 12 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 12 - uid: 9544 components: - type: Transform @@ -151533,11 +152356,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 12 - - uid: 9618 - components: - - type: Transform - pos: 27.5,5.5 - parent: 12 - uid: 9714 components: - type: Transform @@ -151699,6 +152517,11 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 12 + - uid: 10908 + components: + - type: Transform + pos: 35.5,4.5 + parent: 12 - uid: 11125 components: - type: Transform @@ -151711,6 +152534,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-50.5 parent: 12 + - uid: 11360 + components: + - type: Transform + pos: 59.5,6.5 + parent: 12 - uid: 12016 components: - type: Transform @@ -151747,6 +152575,18 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,29.5 parent: 12 + - uid: 12261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 12 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 12 - uid: 12715 components: - type: Transform @@ -152672,12 +153512,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 12 - - uid: 19541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 12 - uid: 19549 components: - type: Transform @@ -152700,6 +153534,12 @@ entities: - type: Transform pos: 52.5,-13.5 parent: 12 + - uid: 20161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 12 - uid: 20906 components: - type: Transform @@ -152793,11 +153633,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,39.5 parent: 12 - - uid: 22526 - components: - - type: Transform - pos: 34.5,2.5 - parent: 12 - uid: 24103 components: - type: Transform @@ -152842,49 +153677,91 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-35.5 parent: 12 - - uid: 26547 + - uid: 26437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 + pos: 27.5,12.5 parent: 12 - - uid: 26548 + - uid: 26577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 12 + - uid: 26579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-2.5 + pos: 29.5,-11.5 parent: 12 - - uid: 26549 + - uid: 26746 components: - type: Transform - pos: 55.5,-3.5 + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 parent: 12 - - uid: 26632 + - uid: 26855 components: - type: Transform - pos: 62.5,4.5 + rot: 3.141592653589793 rad + pos: 59.5,2.5 parent: 12 - - uid: 27132 + - uid: 26857 components: - type: Transform - pos: 55.5,2.5 + pos: 58.5,12.5 parent: 12 - - uid: 27135 + - uid: 26975 components: - type: Transform - pos: 69.5,2.5 + pos: 68.5,12.5 parent: 12 - - uid: 27209 + - uid: 26976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,21.5 + pos: 64.5,0.5 parent: 12 - - uid: 27892 + - uid: 26978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,8.5 + parent: 12 + - uid: 26980 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 26981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,8.5 + parent: 12 + - uid: 26982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,0.5 + parent: 12 + - uid: 26983 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-5.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 26999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-3.5 + parent: 12 + - uid: 27209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 parent: 12 - uid: 28240 components: @@ -152892,6 +153769,34 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,19.5 parent: 12 + - uid: 28650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 12 + - uid: 28668 + components: + - type: Transform + pos: 53.5,2.5 + parent: 12 + - uid: 28669 + components: + - type: Transform + pos: 29.5,0.5 + parent: 12 + - uid: 28670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 12 + - uid: 28671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 12 - uid: 29077 components: - type: Transform @@ -153073,6 +153978,12 @@ entities: - type: Transform pos: -26.5,-33.5 parent: 12 + - uid: 2138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 12 - uid: 2264 components: - type: Transform @@ -153103,12 +154014,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-33.5 parent: 12 - - uid: 3626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 12 - uid: 4210 components: - type: Transform @@ -153121,11 +154026,23 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-33.5 parent: 12 - - uid: 4947 + - uid: 4645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 12 + - uid: 4677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 12 + - uid: 4792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 parent: 12 - uid: 4980 components: @@ -153133,11 +154050,11 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 12 - - uid: 5118 + - uid: 5045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 parent: 12 - uid: 5124 components: @@ -153174,40 +154091,41 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 12 - - uid: 5407 + - uid: 5183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,7.5 + pos: 25.5,-2.5 parent: 12 - - uid: 5417 + - uid: 5185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 parent: 12 - - uid: 5881 + - uid: 5417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-15.5 + rot: 3.141592653589793 rad + pos: 9.5,13.5 parent: 12 - - uid: 5982 + - uid: 5543 components: - type: Transform - pos: 35.5,-4.5 + rot: 3.141592653589793 rad + pos: 49.5,-1.5 parent: 12 - - uid: 6199 + - uid: 5833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 parent: 12 - - uid: 6354 + - uid: 5881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,3.5 + pos: -28.5,-15.5 parent: 12 - uid: 6758 components: @@ -153219,12 +154137,6 @@ entities: - type: Transform pos: 5.5,-47.5 parent: 12 - - uid: 6764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-15.5 - parent: 12 - uid: 6834 components: - type: Transform @@ -153253,6 +154165,12 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,56.5 parent: 12 + - uid: 7285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 12 - uid: 7329 components: - type: Transform @@ -153425,6 +154343,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,68.5 parent: 12 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 12 - uid: 9548 components: - type: Transform @@ -153436,11 +154360,11 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,11.5 parent: 12 - - uid: 9629 + - uid: 9853 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,0.5 + pos: 1.5,-19.5 parent: 12 - uid: 9907 components: @@ -153453,54 +154377,24 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-19.5 parent: 12 - - uid: 10376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 12 - - uid: 10381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 12 - uid: 10403 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 12 - - uid: 10656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-4.5 - parent: 12 - uid: 10803 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 12 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 12 - uid: 10886 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,38.5 parent: 12 - - uid: 10887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 12 - uid: 11062 components: - type: Transform @@ -153535,6 +154429,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,9.5 parent: 12 + - uid: 12711 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 12 - uid: 12922 components: - type: Transform @@ -153606,6 +154505,12 @@ entities: - type: Transform pos: 57.5,-13.5 parent: 12 + - uid: 16365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 12 - uid: 16554 components: - type: Transform @@ -153842,24 +154747,12 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,47.5 parent: 12 - - uid: 25413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 12 - uid: 25586 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-24.5 parent: 12 - - uid: 25666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 12 - uid: 26109 components: - type: Transform @@ -153877,71 +154770,38 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-49.5 parent: 12 - - uid: 26484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 12 - uid: 26560 components: - type: Transform pos: 53.5,6.5 parent: 12 - - uid: 27005 + - uid: 26851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + pos: 62.5,-2.5 parent: 12 - - uid: 27067 + - uid: 26852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 12 - - uid: 27138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-1.5 - parent: 12 - - uid: 27139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,0.5 - parent: 12 - - uid: 27141 - components: - - type: Transform - pos: 67.5,8.5 - parent: 12 - - uid: 27142 - components: - - type: Transform - pos: 65.5,8.5 - parent: 12 - - uid: 27143 - components: - - type: Transform - pos: 63.5,8.5 + pos: 7.5,-3.5 parent: 12 - - uid: 27144 + - uid: 26853 components: - type: Transform - pos: 61.5,8.5 + pos: 16.5,10.5 parent: 12 - - uid: 27145 + - uid: 27030 components: - type: Transform - pos: 59.5,8.5 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 12 - - uid: 27151 + - uid: 27067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,0.5 + pos: 46.5,-11.5 parent: 12 - uid: 27156 components: @@ -153949,12 +154809,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-7.5 parent: 12 - - uid: 27160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,3.5 - parent: 12 - uid: 27170 components: - type: Transform @@ -153967,6 +154821,12 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,21.5 parent: 12 + - uid: 27315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 12 - uid: 27852 components: - type: Transform @@ -153996,11 +154856,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 12 - - uid: 28530 + - uid: 28523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + pos: 42.5,-7.5 parent: 12 - uid: 28531 components: @@ -154012,11 +154872,27 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 12 - - uid: 29094 + - uid: 28682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 12 + - uid: 28745 + components: + - type: Transform + pos: 19.5,7.5 + parent: 12 + - uid: 28753 + components: + - type: Transform + pos: 16.5,5.5 + parent: 12 + - uid: 28920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 parent: 12 - uid: 29285 components: @@ -154182,12 +155058,6 @@ entities: - type: Transform pos: -35.5,-37.5 parent: 12 - - uid: 2338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,12.5 - parent: 12 - uid: 2645 components: - type: Transform @@ -154240,6 +155110,11 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 12 + - uid: 4608 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 12 - uid: 4707 components: - type: Transform @@ -154251,15 +155126,15 @@ entities: - type: Transform pos: 5.5,61.5 parent: 12 - - uid: 5054 + - uid: 5129 components: - type: Transform - pos: 18.5,3.5 + pos: 61.5,-0.5 parent: 12 - - uid: 5601 + - uid: 5270 components: - type: Transform - pos: 8.5,-8.5 + pos: 37.5,4.5 parent: 12 - uid: 5873 components: @@ -154333,11 +155208,6 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 12 - - uid: 9491 - components: - - type: Transform - pos: 52.5,2.5 - parent: 12 - uid: 9599 components: - type: Transform @@ -154489,12 +155359,28 @@ entities: - type: Transform pos: -50.5,38.5 parent: 12 + - uid: 21933 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 12 + - uid: 21976 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 12 - uid: 22018 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 12 + - uid: 22102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 12 - uid: 22406 components: - type: Transform @@ -154533,6 +155419,11 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,46.5 parent: 12 + - uid: 24333 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 12 - uid: 24477 components: - type: Transform @@ -154550,21 +155441,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-34.5 parent: 12 - - uid: 25196 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 12 - uid: 25327 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 12 - - uid: 25532 + - uid: 25682 components: - type: Transform - pos: 7.5,-3.5 + pos: 57.5,9.5 parent: 12 - uid: 25684 components: @@ -154737,6 +155623,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,38.5 parent: 12 + - uid: 26419 + components: + - type: Transform + pos: 28.5,14.5 + parent: 12 + - uid: 26549 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 12 - uid: 26571 components: - type: Transform @@ -154749,10 +155645,10 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,64.5 parent: 12 - - uid: 27244 + - uid: 27000 components: - type: Transform - pos: 55.5,2.5 + pos: 54.5,-6.5 parent: 12 - uid: 27397 components: @@ -154777,6 +155673,21 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-16.5 parent: 12 + - uid: 28704 + components: + - type: Transform + pos: 58.5,12.5 + parent: 12 + - uid: 28759 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 12 + - uid: 28760 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 12 - uid: 29596 components: - type: Transform @@ -154819,52 +155730,60 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,0.5 parent: 12 +- proto: RadiationCollectorFlatpack + entities: + - uid: 4727 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.41483,-0.5951568 + parent: 12 - proto: RadiationCollectorFullTank entities: - - uid: 3823 + - uid: 26077 components: - type: Transform - pos: 16.5,-4.5 + pos: 72.5,12.5 parent: 12 - - uid: 9450 + - uid: 26157 components: - type: Transform - pos: 26.5,-4.5 + pos: 70.5,12.5 parent: 12 - - uid: 9856 + - uid: 26158 components: - type: Transform - pos: 16.5,-8.5 + pos: 80.5,4.5 parent: 12 - - uid: 9858 + - uid: 26159 components: - type: Transform - pos: 26.5,-8.5 + pos: 74.5,12.5 parent: 12 - - uid: 27256 + - uid: 26160 components: - type: Transform - pos: 16.5,-6.5 + pos: 80.5,2.5 parent: 12 - - uid: 27352 + - uid: 26522 components: - type: Transform - pos: 26.5,-6.5 + pos: 74.5,-3.5 parent: 12 - - uid: 28999 + - uid: 26526 components: - type: Transform - pos: 19.5,-11.5 + pos: 70.5,-3.5 parent: 12 - - uid: 29000 + - uid: 26796 components: - type: Transform - pos: 23.5,-11.5 + pos: 80.5,6.5 parent: 12 - - uid: 29004 + - uid: 26797 components: - type: Transform - pos: 21.5,-11.5 + pos: 72.5,-3.5 parent: 12 - proto: RadioHandheld entities: @@ -154970,39 +155889,11 @@ entities: - type: Transform pos: -31.5,-9.5 parent: 12 - - uid: 2968 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 12 - uid: 4065 components: - type: Transform pos: -14.5,-45.5 parent: 12 - - uid: 4876 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 12 - - uid: 4877 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 12 - - uid: 4885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 12 - - uid: 4902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 12 - uid: 6079 components: - type: Transform @@ -155216,6 +156107,28 @@ entities: - type: Transform pos: 63.5,56.5 parent: 12 + - uid: 28688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-2.5 + parent: 12 + - uid: 28695 + components: + - type: Transform + pos: 52.5,0.5 + parent: 12 + - uid: 28756 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 + - uid: 28765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-2.5 + parent: 12 - uid: 29605 components: - type: Transform @@ -155381,12 +156294,6 @@ entities: parent: 12 - proto: RailingCornerSmall entities: - - uid: 4854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 12 - uid: 6053 components: - type: Transform @@ -155504,11 +156411,6 @@ entities: parent: 12 - proto: RandomDrinkGlass entities: - - uid: 397 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 12 - uid: 15069 components: - type: Transform @@ -155539,11 +156441,6 @@ entities: - type: Transform pos: -55.5,-14.5 parent: 12 - - uid: 29347 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 12 - uid: 29353 components: - type: Transform @@ -155551,11 +156448,6 @@ entities: parent: 12 - proto: RandomFoodMeal entities: - - uid: 2138 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 23547 components: - type: Transform @@ -155573,11 +156465,6 @@ entities: parent: 12 - proto: RandomFoodSingle entities: - - uid: 407 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 15419 components: - type: Transform @@ -155622,11 +156509,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 12 - - uid: 11338 - components: - - type: Transform - pos: 41.5,3.5 - parent: 12 - uid: 19860 components: - type: Transform @@ -155707,6 +156589,11 @@ entities: - type: Transform pos: 34.5,21.5 parent: 12 + - uid: 31888 + components: + - type: Transform + pos: 41.5,4.5 + parent: 12 - proto: RandomPosterContraband entities: - uid: 2344 @@ -155714,11 +156601,6 @@ entities: - type: Transform pos: 41.5,-19.5 parent: 12 - - uid: 2509 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 8334 components: - type: Transform @@ -155734,12 +156616,6 @@ entities: - type: Transform pos: 34.5,14.5 parent: 12 - - uid: 15007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 12 - uid: 15181 components: - type: Transform @@ -155816,6 +156692,17 @@ entities: - type: Transform pos: -10.5,-31.5 parent: 12 + - uid: 26824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,15.5 + parent: 12 + - uid: 26825 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 12 - uid: 29354 components: - type: Transform @@ -156121,12 +157008,6 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 12 - - uid: 24333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 12 - uid: 24339 components: - type: Transform @@ -156256,21 +157137,11 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 12 - - uid: 697 - components: - - type: Transform - pos: 31.5,10.5 - parent: 12 - uid: 5858 components: - type: Transform pos: 36.5,14.5 parent: 12 - - uid: 5967 - components: - - type: Transform - pos: 7.5,4.5 - parent: 12 - uid: 6153 components: - type: Transform @@ -156291,11 +157162,6 @@ entities: - type: Transform pos: 40.5,16.5 parent: 12 - - uid: 9452 - components: - - type: Transform - pos: 16.5,0.5 - parent: 12 - uid: 12045 components: - type: Transform @@ -156337,11 +157203,6 @@ entities: - type: Transform pos: -52.5,60.5 parent: 12 - - uid: 23982 - components: - - type: Transform - pos: 12.5,4.5 - parent: 12 - uid: 24221 components: - type: Transform @@ -156807,11 +157668,6 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 12 - - uid: 24455 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 12 - uid: 24457 components: - type: Transform @@ -156927,11 +157783,6 @@ entities: - type: Transform pos: -38.5,30.5 parent: 12 - - uid: 26074 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 12 - uid: 31146 components: - type: Transform @@ -157034,11 +157885,6 @@ entities: - type: Transform pos: -13.5,23.5 parent: 12 - - uid: 19311 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 12 - uid: 22401 components: - type: Transform @@ -157079,11 +157925,6 @@ entities: - type: Transform pos: -6.5,43.5 parent: 12 - - uid: 27313 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 12 - proto: RandomVendingDrinks entities: - uid: 4172 @@ -157153,11 +157994,6 @@ entities: parent: 12 - proto: RandomVendingSnacks entities: - - uid: 404 - components: - - type: Transform - pos: 9.5,4.5 - parent: 12 - uid: 4173 components: - type: Transform @@ -157317,149 +158153,237 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-21.5 parent: 12 + - uid: 2266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 12 + - uid: 2573 + components: + - type: Transform + pos: 11.5,1.5 + parent: 12 - uid: 2872 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,16.5 parent: 12 - - uid: 9721 + - uid: 4606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,14.5 + rot: 3.141592653589793 rad + pos: 23.5,-4.5 parent: 12 - - uid: 23155 + - uid: 4647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: 11.5,3.5 parent: 12 - - uid: 23156 + - uid: 4653 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 23.5,1.5 parent: 12 - - uid: 23157 + - uid: 4672 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,0.5 + pos: 23.5,-2.5 parent: 12 - - uid: 23161 + - uid: 4795 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-7.5 + pos: 23.5,-10.5 parent: 12 - - uid: 23162 + - uid: 7086 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-7.5 + pos: 23.5,-8.5 parent: 12 - - uid: 23163 + - uid: 7203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-8.5 + pos: 11.5,2.5 parent: 12 - - uid: 23164 + - uid: 7225 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-9.5 + pos: 23.5,-6.5 parent: 12 - - uid: 23165 + - uid: 7228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 12 - - uid: 23166 + - uid: 7310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 12 - - uid: 23167 + - uid: 9436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 + rot: 1.5707963267948966 rad + pos: 63.5,3.5 parent: 12 - - uid: 23173 + - uid: 9588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-1.5 + rot: 1.5707963267948966 rad + pos: 63.5,5.5 parent: 12 - - uid: 23174 + - uid: 9721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 16.5,14.5 parent: 12 - - uid: 23175 + - uid: 10346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: 57.5,7.5 parent: 12 - - uid: 24565 + - uid: 10656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-10.5 + rot: 1.5707963267948966 rad + pos: 63.5,4.5 parent: 12 - - uid: 24566 + - uid: 23116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-6.5 + pos: 57.5,1.5 parent: 12 - - uid: 24567 + - uid: 26553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: 56.5,4.5 parent: 12 - - uid: 25416 + - uid: 26572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + rot: 1.5707963267948966 rad + pos: 63.5,6.5 parent: 12 - - uid: 26709 + - uid: 26573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,5.5 + rot: 1.5707963267948966 rad + pos: 63.5,2.5 parent: 12 - - uid: 26969 + - uid: 26613 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,5.5 + pos: 56.5,5.5 parent: 12 - - uid: 26970 + - uid: 26639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,5.5 + pos: 9.5,0.5 parent: 12 - - uid: 26971 + - uid: 26640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,5.5 + pos: 10.5,0.5 parent: 12 - - uid: 26976 + - uid: 26672 + components: + - type: Transform + pos: 11.5,0.5 + parent: 12 + - uid: 26738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,5.5 + pos: 56.5,6.5 + parent: 12 + - uid: 26800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,1.5 + parent: 12 + - uid: 26834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-7.5 + parent: 12 + - uid: 26841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-7.5 + parent: 12 + - uid: 26854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-7.5 + parent: 12 + - uid: 26856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-7.5 + parent: 12 + - uid: 26926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 12 + - uid: 26927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 12 + - uid: 26941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 12 + - uid: 26964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 12 + - uid: 26965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 12 + - uid: 29002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 12 + - uid: 29003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 12 + - uid: 29149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-0.5 parent: 12 - proto: ReinforcedWindow entities: @@ -157869,11 +158793,6 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-34.5 parent: 12 - - uid: 897 - components: - - type: Transform - pos: 6.5,7.5 - parent: 12 - uid: 900 components: - type: Transform @@ -158022,20 +158941,16 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-42.5 parent: 12 - - uid: 1344 - components: - - type: Transform - pos: 7.5,7.5 - parent: 12 - - uid: 1350 + - uid: 1962 components: - type: Transform - pos: 8.5,7.5 + pos: -22.5,63.5 parent: 12 - - uid: 1962 + - uid: 2242 components: - type: Transform - pos: -22.5,63.5 + rot: 3.141592653589793 rad + pos: 28.5,6.5 parent: 12 - uid: 2454 components: @@ -158219,6 +159134,12 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-27.5 parent: 12 + - uid: 2981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 12 - uid: 3068 components: - type: Transform @@ -158265,6 +159186,18 @@ entities: - type: Transform pos: -47.5,3.5 parent: 12 + - uid: 4175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-10.5 + parent: 12 + - uid: 4314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-3.5 + parent: 12 - uid: 4399 components: - type: Transform @@ -158360,37 +159293,21 @@ entities: - type: Transform pos: 15.5,-17.5 parent: 12 - - uid: 4761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 12 - - uid: 4765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 12 - - uid: 4935 - components: - - type: Transform - pos: 18.5,8.5 - parent: 12 - - uid: 4936 + - uid: 4581 components: - type: Transform - pos: 19.5,8.5 + pos: 21.5,-11.5 parent: 12 - - uid: 4957 + - uid: 4582 components: - type: Transform - pos: 21.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 12 - - uid: 4958 + - uid: 5049 components: - type: Transform - pos: 22.5,7.5 + pos: 10.5,-1.5 parent: 12 - uid: 5084 components: @@ -158408,27 +159325,12 @@ entities: - type: Transform pos: 31.5,-5.5 parent: 12 - - uid: 5098 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 12 - uid: 5120 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,3.5 parent: 12 - - uid: 5121 - components: - - type: Transform - pos: 58.5,-2.5 - parent: 12 - - uid: 5126 - components: - - type: Transform - pos: 59.5,-3.5 - parent: 12 - uid: 5135 components: - type: Transform @@ -158441,11 +159343,43 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-38.5 parent: 12 + - uid: 5223 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 12 + - uid: 5224 + components: + - type: Transform + pos: 13.5,2.5 + parent: 12 + - uid: 5225 + components: + - type: Transform + pos: 13.5,0.5 + parent: 12 - uid: 5321 components: - type: Transform pos: -31.5,-45.5 parent: 12 + - uid: 5324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,2.5 + parent: 12 + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-7.5 + parent: 12 + - uid: 5406 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 12 - uid: 5439 components: - type: Transform @@ -158482,15 +159416,86 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 12 - - uid: 5853 + - uid: 5477 components: - type: Transform - pos: 13.5,6.5 + pos: 36.5,-3.5 parent: 12 - - uid: 5855 + - uid: 5479 components: - type: Transform - pos: 11.5,6.5 + pos: 34.5,-3.5 + parent: 12 + - uid: 5546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-2.5 + parent: 12 + - uid: 5547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-1.5 + parent: 12 + - uid: 5548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 12 + - uid: 5665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-4.5 + parent: 12 + - uid: 5666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 12 + - uid: 5713 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 12 + - uid: 5714 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 12 + - uid: 5719 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 12 + - uid: 5797 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 12 + - uid: 5799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 12 + - uid: 5841 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 12 + - uid: 5851 + components: + - type: Transform + pos: 13.5,3.5 + parent: 12 + - uid: 5856 + components: + - type: Transform + pos: 13.5,-0.5 parent: 12 - uid: 5880 components: @@ -158503,6 +159508,16 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 12 + - uid: 5992 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 12 + - uid: 5996 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 12 - uid: 5998 components: - type: Transform @@ -158520,6 +159535,33 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-3.5 parent: 12 + - uid: 6010 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 12 + - uid: 6011 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 12 + - uid: 6018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 12 + - uid: 6028 + components: + - type: Transform + pos: 21.5,3.5 + parent: 12 + - uid: 6030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 12 - uid: 6052 components: - type: Transform @@ -158934,6 +159976,21 @@ entities: - type: Transform pos: -46.5,3.5 parent: 12 + - uid: 7201 + components: + - type: Transform + pos: 13.5,4.5 + parent: 12 + - uid: 7244 + components: + - type: Transform + pos: 13.5,1.5 + parent: 12 + - uid: 7246 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 12 - uid: 7313 components: - type: Transform @@ -159150,12 +160207,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 12 - - uid: 7789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 12 - uid: 8017 components: - type: Transform @@ -159303,6 +160354,24 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-50.5 parent: 12 + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 12 + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 12 + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,4.5 + parent: 12 - uid: 9172 components: - type: Transform @@ -159355,6 +160424,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-59.5 parent: 12 + - uid: 9415 + components: + - type: Transform + pos: 21.5,8.5 + parent: 12 - uid: 9532 components: - type: Transform @@ -159383,12 +160457,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-34.5 parent: 12 - - uid: 9676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 12 - uid: 9678 components: - type: Transform @@ -159401,12 +160469,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-13.5 parent: 12 - - uid: 9956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 12 - uid: 10014 components: - type: Transform @@ -159831,11 +160893,6 @@ entities: - type: Transform pos: 29.5,-54.5 parent: 12 - - uid: 10346 - components: - - type: Transform - pos: 57.5,-2.5 - parent: 12 - uid: 10572 components: - type: Transform @@ -159926,6 +160983,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 12 + - uid: 10810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 12 - uid: 10896 components: - type: Transform @@ -159936,11 +160999,6 @@ entities: - type: Transform pos: 0.5,1.5 parent: 12 - - uid: 11018 - components: - - type: Transform - pos: 6.5,5.5 - parent: 12 - uid: 11029 components: - type: Transform @@ -160036,11 +161094,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 12 - - uid: 11209 - components: - - type: Transform - pos: 6.5,6.5 - parent: 12 - uid: 11251 components: - type: Transform @@ -160431,11 +161484,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-44.5 parent: 12 - - uid: 12312 - components: - - type: Transform - pos: 27.5,12.5 - parent: 12 - uid: 12313 components: - type: Transform @@ -161630,6 +162678,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,60.5 parent: 12 + - uid: 17773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 + parent: 12 - uid: 17839 components: - type: Transform @@ -161991,11 +163045,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-50.5 parent: 12 - - uid: 19886 - components: - - type: Transform - pos: 12.5,6.5 - parent: 12 - uid: 20089 components: - type: Transform @@ -162006,6 +163055,11 @@ entities: - type: Transform pos: -50.5,47.5 parent: 12 + - uid: 20543 + components: + - type: Transform + pos: 41.5,3.5 + parent: 12 - uid: 20778 components: - type: Transform @@ -162027,11 +163081,6 @@ entities: - type: Transform pos: 37.5,-6.5 parent: 12 - - uid: 21871 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 12 - uid: 21888 components: - type: Transform @@ -162101,6 +163150,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 12 + - uid: 22106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 12 - uid: 22314 components: - type: Transform @@ -162140,6 +163195,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,22.5 parent: 12 + - uid: 23164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 12 - uid: 23710 components: - type: Transform @@ -162225,10 +163286,15 @@ entities: - type: Transform pos: -1.5,-29.5 parent: 12 - - uid: 24453 + - uid: 24565 components: - type: Transform - pos: 9.5,7.5 + pos: 3.5,-21.5 + parent: 12 + - uid: 24655 + components: + - type: Transform + pos: 22.5,8.5 parent: 12 - uid: 25384 components: @@ -162371,135 +163437,28 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 12 - - uid: 26415 - components: - - type: Transform - pos: 74.5,6.5 - parent: 12 - - uid: 26492 - components: - - type: Transform - pos: 73.5,5.5 - parent: 12 - - uid: 26493 - components: - - type: Transform - pos: 72.5,5.5 - parent: 12 - - uid: 26494 - components: - - type: Transform - pos: 71.5,5.5 - parent: 12 - - uid: 26496 - components: - - type: Transform - pos: 70.5,7.5 - parent: 12 - - uid: 26497 - components: - - type: Transform - pos: 70.5,6.5 - parent: 12 - - uid: 26498 - components: - - type: Transform - pos: 74.5,7.5 - parent: 12 - - uid: 26507 - components: - - type: Transform - pos: 58.5,3.5 - parent: 12 - - uid: 26508 - components: - - type: Transform - pos: 59.5,3.5 - parent: 12 - - uid: 26509 - components: - - type: Transform - pos: 60.5,3.5 - parent: 12 - - uid: 26510 - components: - - type: Transform - pos: 61.5,3.5 - parent: 12 - - uid: 26511 - components: - - type: Transform - pos: 62.5,3.5 - parent: 12 - - uid: 26512 - components: - - type: Transform - pos: 63.5,3.5 - parent: 12 - - uid: 26513 - components: - - type: Transform - pos: 64.5,3.5 - parent: 12 - - uid: 26514 - components: - - type: Transform - pos: 66.5,3.5 - parent: 12 - - uid: 26515 - components: - - type: Transform - pos: 65.5,3.5 - parent: 12 - - uid: 26516 - components: - - type: Transform - pos: 67.5,3.5 - parent: 12 - - uid: 26517 - components: - - type: Transform - pos: 68.5,3.5 - parent: 12 - - uid: 26518 - components: - - type: Transform - pos: 70.5,3.5 - parent: 12 - - uid: 26519 - components: - - type: Transform - pos: 71.5,3.5 - parent: 12 - - uid: 26520 - components: - - type: Transform - pos: 72.5,3.5 - parent: 12 - - uid: 26521 - components: - - type: Transform - pos: 73.5,3.5 - parent: 12 - - uid: 26522 + - uid: 26463 components: - type: Transform - pos: 74.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 parent: 12 - - uid: 26544 + - uid: 26466 components: - type: Transform - pos: 56.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 12 - - uid: 26545 + - uid: 26484 components: - type: Transform - pos: 56.5,5.5 + rot: 3.141592653589793 rad + pos: 23.5,7.5 parent: 12 - - uid: 26546 + - uid: 26504 components: - type: Transform - pos: 56.5,6.5 + pos: 33.5,-3.5 parent: 12 - uid: 26556 components: @@ -162513,6 +163472,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 12 + - uid: 26619 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 12 - uid: 26641 components: - type: Transform @@ -162525,45 +163489,17 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-9.5 parent: 12 - - uid: 26789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 12 - - uid: 26790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 12 - - uid: 26791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 12 - - uid: 26792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 12 - uid: 26798 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-9.5 parent: 12 - - uid: 26909 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 12 - - uid: 26936 + - uid: 26809 components: - type: Transform - pos: 75.5,1.5 + rot: -1.5707963267948966 rad + pos: 24.5,11.5 parent: 12 - uid: 27007 components: @@ -162582,6 +163518,11 @@ entities: - type: Transform pos: 4.5,20.5 parent: 12 + - uid: 27243 + components: + - type: Transform + pos: 41.5,2.5 + parent: 12 - uid: 27289 components: - type: Transform @@ -162777,107 +163718,6 @@ entities: - type: Transform pos: -4.5,-62.5 parent: 12 - - uid: 28785 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 12 - - uid: 28786 - components: - - type: Transform - pos: 52.5,-5.5 - parent: 12 - - uid: 28787 - components: - - type: Transform - pos: 52.5,-4.5 - parent: 12 - - uid: 28788 - components: - - type: Transform - pos: 52.5,-3.5 - parent: 12 - - uid: 28813 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 12 - - uid: 28814 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 12 - - uid: 28815 - components: - - type: Transform - pos: 66.5,-6.5 - parent: 12 - - uid: 28816 - components: - - type: Transform - pos: 67.5,-6.5 - parent: 12 - - uid: 28817 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 12 - - uid: 28818 - components: - - type: Transform - pos: 70.5,-6.5 - parent: 12 - - uid: 28819 - components: - - type: Transform - pos: 71.5,-6.5 - parent: 12 - - uid: 28820 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 12 - - uid: 28821 - components: - - type: Transform - pos: 73.5,-6.5 - parent: 12 - - uid: 28822 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 12 - - uid: 28823 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 12 - - uid: 28824 - components: - - type: Transform - pos: 59.5,-6.5 - parent: 12 - - uid: 28825 - components: - - type: Transform - pos: 60.5,-6.5 - parent: 12 - - uid: 28826 - components: - - type: Transform - pos: 61.5,-6.5 - parent: 12 - - uid: 28827 - components: - - type: Transform - pos: 62.5,-6.5 - parent: 12 - - uid: 28832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 12 - uid: 29069 components: - type: Transform @@ -162902,17 +163742,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,0.5 parent: 12 - - uid: 29092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-1.5 - parent: 12 - - uid: 29149 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 12 - uid: 29176 components: - type: Transform @@ -163093,6 +163922,12 @@ entities: rot: 3.141592653589793 rad pos: -43.5,73.5 parent: 12 + - uid: 29722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 12 - uid: 29863 components: - type: Transform @@ -163426,26 +164261,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-62.5 parent: 12 - - uid: 31516 - components: - - type: Transform - pos: 33.5,3.5 - parent: 12 - - uid: 31517 - components: - - type: Transform - pos: 34.5,3.5 - parent: 12 - - uid: 31518 - components: - - type: Transform - pos: 35.5,3.5 - parent: 12 - - uid: 31519 - components: - - type: Transform - pos: 36.5,3.5 - parent: 12 - uid: 31628 components: - type: Transform @@ -163621,6 +164436,14 @@ entities: actions: !type:Container ents: - 19882 +- proto: RobocopCircuitBoard + entities: + - uid: 28858 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 2.3752384,-15.493168 + parent: 12 - proto: RollerBedSpawnFolded entities: - uid: 3815 @@ -163819,6 +164642,11 @@ entities: - type: Transform pos: -20.5,-48.5 parent: 12 + - uid: 2928 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 - uid: 3223 components: - type: Transform @@ -163839,6 +164667,12 @@ entities: - type: Transform pos: -36.5,-43.5 parent: 12 + - uid: 5814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-14.5 + parent: 12 - uid: 8444 components: - type: Transform @@ -163854,11 +164688,6 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 12 - - uid: 10368 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 12 - uid: 16494 components: - type: Transform @@ -163975,11 +164804,6 @@ entities: - type: Transform pos: 52.5,60.5 parent: 12 - - uid: 24445 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 12 - uid: 25289 components: - type: Transform @@ -164032,12 +164856,6 @@ entities: parent: 12 - proto: Screwdriver entities: - - uid: 7310 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 18.692007,3.512633 - parent: 12 - uid: 9237 components: - type: Transform @@ -164134,13 +164952,6 @@ entities: - type: Transform pos: 49.417187,48.49522 parent: 12 -- proto: SheetPlasma - entities: - - uid: 5503 - components: - - type: Transform - pos: 8.360869,-8.424053 - parent: 12 - proto: SheetPlasma1 entities: - uid: 22020 @@ -164150,13 +164961,6 @@ entities: parent: 12 - type: Stack count: 5 - - uid: 27218 - components: - - type: Transform - pos: 72.55791,-5.408911 - parent: 12 - - type: Stack - count: 5 - proto: SheetPlasma10 entities: - uid: 28215 @@ -164164,6 +164968,14 @@ entities: - type: Transform pos: -35.41417,-37.542362 parent: 12 + - uid: 29092 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.49274,4.534418 + parent: 12 + - type: Stack + count: 20 - proto: SheetPlasteel entities: - uid: 7311 @@ -164208,6 +165020,12 @@ entities: - type: Transform pos: -31.500504,-18.592041 parent: 12 + - uid: 4475 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 29.48155,2.7698662 + parent: 12 - uid: 4725 components: - type: Transform @@ -164258,28 +165076,28 @@ entities: - uid: 24481 components: - type: Transform - pos: 71.28976,-5.302378 + rot: -18.84955592153876 rad + pos: 29.572147,2.9947028 parent: 12 - - uid: 25105 + - uid: 26547 components: - type: Transform - rot: -6.283185307179586 rad - pos: 52.553905,2.5134444 + pos: 11.470082,-2.5260608 parent: 12 - - uid: 26921 + - uid: 29969 components: - type: Transform - pos: 71.74288,-5.443003 + pos: 8.556273,-9.731031 parent: 12 - proto: SheetUranium1 entities: - - uid: 27316 + - uid: 9481 components: - type: Transform - pos: 8.673369,-8.642803 + pos: 37.50514,4.4669657 parent: 12 - type: Stack - count: 10 + count: 5 - proto: ShelfBar entities: - uid: 22816 @@ -164726,119 +165544,64 @@ entities: parent: 12 - proto: ShuttersRadiationOpen entities: - - uid: 1556 + - uid: 249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 + pos: 57.5,1.5 parent: 12 - - uid: 4996 + - uid: 5027 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 + pos: 56.5,6.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5045 + - uid: 11019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 + rot: 1.5707963267948966 rad + pos: 63.5,4.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5046 + - uid: 22100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-7.5 + pos: 56.5,5.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5047 + - uid: 23161 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 5091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 56.5,4.5 parent: 12 - - type: DeviceLinkSink - invokeCounter: 1 - - uid: 9865 + - uid: 26414 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-2.5 + pos: 63.5,5.5 parent: 12 - - uid: 9866 + - uid: 26461 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-1.5 + pos: 63.5,6.5 parent: 12 - - uid: 9867 + - uid: 26490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 63.5,3.5 parent: 12 - - uid: 9868 + - uid: 26578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 63.5,2.5 parent: 12 - - uid: 10915 + - uid: 26596 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 12 - - uid: 22288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + pos: 57.5,7.5 parent: 12 - proto: ShuttersWindow entities: @@ -164949,6 +165712,20 @@ entities: linkedPorts: 16503: - Pressed: Toggle + - uid: 28739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 574 @@ -165006,48 +165783,6 @@ entities: - Pressed: Open 2550: - Pressed: Open - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 12 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 5043: - - Pressed: Toggle - 5044: - - Pressed: Toggle - 5045: - - Pressed: Toggle - 4996: - - Pressed: Toggle - 5046: - - Pressed: Toggle - 5047: - - Pressed: Toggle - 5089: - - Pressed: Toggle - 5090: - - Pressed: Toggle - 5091: - - Pressed: Toggle - 9868: - - Pressed: Toggle - 9865: - - Pressed: Toggle - 9866: - - Pressed: Toggle - 9867: - - Pressed: Toggle - 1556: - - Pressed: Toggle - 22288: - - Pressed: Toggle - 10915: - - Pressed: Toggle - uid: 5541 components: - type: Transform @@ -165074,6 +165809,19 @@ entities: - Pressed: Toggle 24309: - Pressed: Toggle + - uid: 5629 + components: + - type: Transform + pos: 14.5,6.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 5199: + - Pressed: Toggle + 7554: + - Pressed: Toggle + 26580: + - Pressed: Toggle - uid: 5976 components: - type: Transform @@ -165282,22 +166030,6 @@ entities: - Pressed: Toggle 18857: - Pressed: Toggle - - uid: 19185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 5528: - - Pressed: Toggle - 5226: - - Pressed: Toggle - 5225: - - Pressed: Toggle - 5238: - - Pressed: Toggle - uid: 23446 components: - type: Transform @@ -165368,34 +166100,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,57.5 parent: 12 - - uid: 27212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,8.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - - uid: 27213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 12 - - type: DeviceLinkSource - linkedPorts: - 27214: - - Pressed: Toggle - 27216: - - Pressed: Toggle - 27217: - - Pressed: Toggle - uid: 27247 components: - type: Transform @@ -165435,6 +166139,48 @@ entities: - Pressed: Open 2548: - Pressed: Open + - uid: 28737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 26537: + - Pressed: Toggle + 26072: + - Pressed: Toggle + 26594: + - Pressed: Toggle + - uid: 28738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 249: + - Pressed: Toggle + 23161: + - Pressed: Toggle + 22100: + - Pressed: Toggle + 5027: + - Pressed: Toggle + 26596: + - Pressed: Toggle + 26461: + - Pressed: Toggle + 26414: + - Pressed: Toggle + 11019: + - Pressed: Toggle + 26490: + - Pressed: Toggle + 26578: + - Pressed: Toggle - uid: 29344 components: - type: Transform @@ -165523,11 +166269,21 @@ entities: parent: 12 - proto: SignAtmos entities: - - uid: 23412 + - uid: 16661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,0.5 + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 12 + - uid: 26433 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 12 + - uid: 26465 + components: + - type: Transform + pos: 21.5,-15.5 parent: 12 - proto: SignBar entities: @@ -165594,12 +166350,32 @@ entities: parent: 12 - proto: SignCans entities: - - uid: 21313 + - uid: 7234 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 12 + - uid: 26631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 12 +- proto: SignCansScience + entities: + - uid: 26971 + components: + - type: Transform + rot: 3.141592653589793 rad pos: -47.5,-30.5 parent: 12 + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-33.5 + parent: 12 - proto: SignCargo entities: - uid: 21316 @@ -165650,11 +166426,6 @@ entities: - type: Transform pos: -5.5,46.5 parent: 12 - - uid: 21648 - components: - - type: Transform - pos: -7.5,52.5 - parent: 12 - proto: SignCryogenics entities: - uid: 2800 @@ -165669,11 +166440,13 @@ entities: - type: Transform pos: -49.5,-36.5 parent: 12 - - uid: 26121 +- proto: SignDirectionalAtmos + entities: + - uid: 29965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,12.5 + rot: -1.5707963267948966 rad + pos: 28.5,4.5 parent: 12 - proto: SignDirectionalBar entities: @@ -165890,32 +166663,46 @@ entities: parent: 12 - proto: SignElectricalMed entities: - - uid: 763 + - uid: 2261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,75.5 + parent: 12 + - uid: 8977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-6.5 + pos: 41.5,0.5 parent: 12 - - uid: 2261 + - uid: 9016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,75.5 + rot: 1.5707963267948966 rad + pos: 74.5,-5.5 parent: 12 - - uid: 11451 + - uid: 9017 components: - type: Transform - pos: -55.5,39.5 + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 parent: 12 - - uid: 16447 + - uid: 9667 components: - type: Transform - pos: 80.5,13.5 + rot: 1.5707963267948966 rad + pos: 80.5,14.5 parent: 12 - - uid: 19555 + - uid: 9668 components: - type: Transform - pos: 80.5,2.5 + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 + - uid: 11451 + components: + - type: Transform + pos: -55.5,39.5 parent: 12 - uid: 19815 components: @@ -165950,12 +166737,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,75.5 parent: 12 - - uid: 26802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-6.5 - parent: 12 - uid: 27097 components: - type: Transform @@ -165969,30 +166750,24 @@ entities: parent: 12 - proto: SignEngine entities: - - uid: 4715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 12 - uid: 18712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 19836 + - uid: 27242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,2.5 + pos: 32.5,-0.5 parent: 12 - proto: SignEngineering entities: - - uid: 3709 + - uid: 500 components: - type: Transform - pos: 15.5,8.5 + pos: 41.5,-2.5 parent: 12 - uid: 21084 components: @@ -166000,6 +166775,12 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 12 + - uid: 28649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 12 - proto: SignEscapePods entities: - uid: 6282 @@ -166043,17 +166824,23 @@ entities: parent: 12 - proto: SignFlammable entities: - - uid: 16521 + - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,5.5 + pos: 16.5,17.5 parent: 12 - - uid: 16699 + - uid: 26428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,17.5 + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 12 + - uid: 26430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 12 - proto: SignGravity entities: @@ -166147,6 +166934,32 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,55.5 parent: 12 +- proto: SignLaserMed + entities: + - uid: 28533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,13.5 + parent: 12 + - uid: 28534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,13.5 + parent: 12 + - uid: 28535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,-4.5 + parent: 12 + - uid: 28648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-4.5 + parent: 12 - proto: SignLawyer entities: - uid: 18903 @@ -166235,45 +167048,22 @@ entities: - type: Transform pos: -20.5,-57.5 parent: 12 -- proto: SignRadiation - entities: - - uid: 6836 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 12 - - uid: 10201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 12 - - uid: 10249 - components: - - type: Transform - pos: 23.5,6.5 - parent: 12 - - uid: 26133 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 12 - proto: SignRadiationMed entities: - - uid: 6779 + - uid: 9710 components: - type: Transform - pos: 28.5,-3.5 + pos: 56.5,1.5 parent: 12 - - uid: 6780 + - uid: 11338 components: - type: Transform - pos: 28.5,-11.5 + pos: 61.5,-2.5 parent: 12 - - uid: 6781 + - uid: 28925 components: - type: Transform - pos: 14.5,-11.5 + pos: 63.5,9.5 parent: 12 - proto: SignReception entities: @@ -166306,6 +167096,20 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,60.5 parent: 12 +- proto: SignRestroom + entities: + - uid: 26554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 12 + - uid: 26651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 12 - proto: SignRND entities: - uid: 2049 @@ -166356,11 +167160,6 @@ entities: parent: 12 - proto: SignSecurearea entities: - - uid: 4716 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - uid: 13533 components: - type: Transform @@ -166486,10 +167285,10 @@ entities: parent: 12 - proto: SingularityGenerator entities: - - uid: 4722 + - uid: 5130 components: - type: Transform - pos: 7.5,-4.5 + pos: 62.5,0.5 parent: 12 - proto: Sink entities: @@ -166692,10 +167491,10 @@ entities: - type: Transform pos: 46.5,5.5 parent: 12 - - uid: 29395 + - uid: 31901 components: - type: Transform - pos: 25.5,-15.5 + pos: 59.5,12.5 parent: 12 - proto: SMESBasicEmpty entities: @@ -166704,13 +167503,6 @@ entities: - type: Transform pos: -53.5,-46.5 parent: 12 -- proto: SMESMachineCircuitboard - entities: - - uid: 26077 - components: - - type: Transform - pos: 9.36832,-8.361483 - parent: 12 - proto: SmokingPipe entities: - uid: 17417 @@ -168320,10 +169112,10 @@ entities: parent: 12 - proto: SpawnMobCrabAtmos entities: - - uid: 27029 + - uid: 25674 components: - type: Transform - pos: 70.5,-0.5 + pos: 16.5,-6.5 parent: 12 - proto: SpawnMobFoxRenault entities: @@ -168435,11 +169227,6 @@ entities: parent: 12 - proto: SpawnMobMouse entities: - - uid: 12047 - components: - - type: Transform - pos: 29.5,12.5 - parent: 12 - uid: 12317 components: - type: Transform @@ -168460,6 +169247,11 @@ entities: - type: Transform pos: 6.5,-36.5 parent: 12 + - uid: 26607 + components: + - type: Transform + pos: 30.5,11.5 + parent: 12 - uid: 28557 components: - type: Transform @@ -168534,20 +169326,20 @@ entities: parent: 12 - proto: SpawnPointAtmos entities: - - uid: 9978 + - uid: 22226 components: - type: Transform - pos: 52.5,5.5 + pos: 30.5,2.5 parent: 12 - - uid: 10983 + - uid: 29819 components: - type: Transform - pos: 51.5,5.5 + pos: 30.5,3.5 parent: 12 - - uid: 12722 + - uid: 29868 components: - type: Transform - pos: 53.5,5.5 + pos: 30.5,4.5 parent: 12 - proto: SpawnPointBartender entities: @@ -169113,7 +169905,7 @@ entities: parent: 12 - proto: SpawnPointTechnicalAssistant entities: - - uid: 9073 + - uid: 4856 components: - type: Transform pos: 30.5,-22.5 @@ -169187,11 +169979,6 @@ entities: rot: -12.566370614359172 rad pos: 30.459148,25.541853 parent: 12 - - uid: 11332 - components: - - type: Transform - pos: 8.764766,6.5591226 - parent: 12 - uid: 21387 components: - type: Transform @@ -169226,7 +170013,7 @@ entities: - uid: 23562 components: - type: Transform - pos: 39.4747,53.492332 + pos: 42.576344,53.246014 parent: 12 - uid: 31143 components: @@ -169436,35 +170223,29 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-10.5 parent: 12 - - uid: 27164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 12 - - uid: 27165 + - uid: 28766 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-0.5 + pos: 52.5,-1.5 parent: 12 - - uid: 27166 + - uid: 28767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,0.5 + pos: 52.5,-0.5 parent: 12 - - uid: 27167 + - uid: 29347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: 39.5,1.5 parent: 12 - - uid: 27168 + - uid: 29348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 + rot: 3.141592653589793 rad + pos: 40.5,1.5 parent: 12 - proto: Stairs entities: @@ -169495,54 +170276,18 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-21.5 parent: 12 - - uid: 2988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 12 - uid: 4734 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-20.5 parent: 12 - - uid: 4878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 12 - - uid: 4881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 12 - - uid: 4889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 12 - - uid: 4920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 12 - uid: 5378 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 12 - - uid: 19461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 12 - uid: 19537 components: - type: Transform @@ -169720,6 +170465,14 @@ entities: - type: Transform pos: 48.5,5.5 parent: 12 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 28857 + components: + - type: Transform + rot: -18.84955592153876 rad + pos: 3.511601,-12.378527 + parent: 12 - proto: StationMap entities: - uid: 372 @@ -170318,6 +171071,11 @@ entities: parent: 12 - proto: StorageCanister entities: + - uid: 397 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 12 - uid: 690 components: - type: Transform @@ -170328,6 +171086,11 @@ entities: - type: Transform pos: -49.5,-29.5 parent: 12 + - uid: 4854 + components: + - type: Transform + pos: 24.5,1.5 + parent: 12 - uid: 7171 components: - type: Transform @@ -170343,35 +171106,30 @@ entities: bodyType: Static - type: Lock locked: True - - uid: 26652 + - uid: 20776 components: - type: Transform - pos: 65.5,6.5 + pos: 10.5,-11.5 parent: 12 - - uid: 26785 + - uid: 20782 components: - type: Transform - pos: 53.5,-6.5 + pos: 11.5,-11.5 parent: 12 - - uid: 26804 + - uid: 20876 components: - type: Transform - pos: 54.5,-6.5 + pos: 12.5,-11.5 parent: 12 - - uid: 26888 + - uid: 23167 components: - type: Transform - pos: 55.5,-6.5 + pos: 27.5,8.5 parent: 12 - - uid: 27149 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 12 - - uid: 27310 + - uid: 26601 components: - type: Transform - pos: 67.5,6.5 + pos: 3.5,-18.5 parent: 12 - proto: StrangePill entities: @@ -170428,11 +171186,6 @@ entities: - type: Transform pos: 45.5,5.5 parent: 12 - - uid: 5127 - components: - - type: Transform - pos: 76.5,-4.5 - parent: 12 - uid: 5177 components: - type: Transform @@ -170493,15 +171246,15 @@ entities: - type: Transform pos: 58.5,60.5 parent: 12 - - uid: 21910 + - uid: 19168 components: - type: Transform - pos: 39.5,-6.5 + pos: 17.5,7.5 parent: 12 - - uid: 24688 + - uid: 21910 components: - type: Transform - pos: 24.5,2.5 + pos: 39.5,-6.5 parent: 12 - uid: 24704 components: @@ -170518,22 +171271,10 @@ entities: - type: Transform pos: -36.5,-50.5 parent: 12 -- proto: SuitStorageAtmos - entities: - - uid: 3625 - components: - - type: Transform - pos: 51.5,4.5 - parent: 12 - - uid: 3777 - components: - - type: Transform - pos: 52.5,4.5 - parent: 12 - - uid: 26456 + - uid: 31896 components: - type: Transform - pos: 53.5,4.5 + pos: 60.5,12.5 parent: 12 - proto: SuitStorageCaptain entities: @@ -170559,6 +171300,66 @@ entities: - type: Transform pos: 29.5,-13.5 parent: 12 + - uid: 28689 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 12 + - type: 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: + - 25104 + - uid: 28690 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 12 + - type: 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: + - 25191 - proto: SuitStorageEVA entities: - uid: 22129 @@ -170617,10 +171418,10 @@ entities: parent: 12 - proto: SuitStorageRD entities: - - uid: 609 + - uid: 498 components: - type: Transform - pos: -41.5,-20.5 + pos: -40.5,-22.5 parent: 12 - proto: SuitStorageSalv entities: @@ -170715,6 +171516,16 @@ entities: - SurveillanceCameraCommand nameSet: True id: RD's room + - uid: 4765 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Telecomms - uid: 5146 components: - type: Transform @@ -170758,17 +171569,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: CE's room - - uid: 9848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: QM's room - uid: 16483 components: - type: Transform @@ -170888,27 +171688,27 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI core - - uid: 31743 + - uid: 28804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 + rot: 3.141592653589793 rad + pos: -42.5,-19.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Telecomms - - uid: 31747 + id: Server room + - uid: 28865 components: - type: Transform - pos: 3.5,-7.5 + pos: -0.5,-15.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: AI core power + id: AI upload 2 - uid: 31748 components: - type: Transform @@ -170922,17 +171722,6 @@ entities: id: AI core entrance - proto: SurveillanceCameraEngineering entities: - - uid: 2258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: External AI catwalk - uid: 4167 components: - type: Transform @@ -170943,49 +171732,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Secure techvault - - uid: 4755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,2.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - - uid: 4756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-3.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Canister storage - - uid: 4888 + - uid: 4667 components: - type: Transform - pos: 24.5,-17.5 + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering south - - uid: 5158 + id: Atmos lockers/engi hallway + - uid: 4715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,2.5 + rot: -1.5707963267948966 rad + pos: 39.5,1.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos east + id: Engi hallway AME - uid: 8416 components: - type: Transform @@ -171018,134 +171786,317 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Engineering front - - uid: 9824 + - uid: 12289 components: - type: Transform - pos: 11.5,-16.5 + pos: 11.5,13.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: SMES - - uid: 9826 + id: TEG + - uid: 24215 components: - type: Transform - pos: 21.5,-12.5 + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: South singularity - - uid: 12289 + id: Engineering entrance + - uid: 27001 components: - type: Transform - pos: 11.5,13.5 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: TEG - - uid: 19663 + id: Atmos entrance + - uid: 27916 + components: + - type: Transform + pos: 55.5,60.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Gravity generator + - uid: 28784 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,0.5 + pos: 80.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering rest area - - uid: 21925 + id: Containment east + - uid: 28785 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,5.5 + pos: 72.5,12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment north + - uid: 28786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True id: PA room - - uid: 24215 + - uid: 28787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 + pos: 72.5,-3.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering entrance - - uid: 27314 + id: Containment south + - uid: 28788 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: 53.5,-2.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Singularity/Tesla storage - - uid: 27315 + id: Containment monitoring room + - uid: 28790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Generator storage - - uid: 27916 + id: Break room + - uid: 28791 components: - type: Transform - pos: 55.5,60.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Gravity generator - - uid: 31742 + id: Containment internals room + - uid: 28792 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment storage + - uid: 28793 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment entrance + - uid: 28794 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-2.5 + pos: 45.5,4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Containment North - - uid: 31744 + id: Station anchor + - uid: 28795 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos south + - uid: 28796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos north + - uid: 28797 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,0.5 + pos: 20.5,-4.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: AME - - uid: 31745 + id: Atmos east + - uid: 28798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Burn chamber + - uid: 28799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-4.5 + pos: 9.5,-5.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos west + - uid: 28800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos canister storage + - uid: 28801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,28.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG exterior + - uid: 28807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northeast solars + - uid: 28808 + components: + - type: Transform + pos: 32.5,69.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars + - uid: 28809 + components: + - type: Transform + pos: 53.5,68.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars 2 + - uid: 28810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: East Engineering hallway + id: Engi hallway southeast + - uid: 28822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-44.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars + - uid: 28823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southeast solars 2 + - uid: 28825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southwest solars + - uid: 31882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME - proto: SurveillanceCameraGeneral entities: - uid: 3 @@ -171255,27 +172206,27 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Hallway west B - - uid: 6752 + - uid: 5664 components: - type: Transform - pos: 49.5,55.5 + rot: 3.141592653589793 rad + pos: 2.5,-25.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Hallway Northeast - - uid: 8305 + id: Medical-engineering hallway + - uid: 6752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 + pos: 49.5,55.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Maintenance East + id: Hallway Northeast - uid: 9632 components: - type: Transform @@ -171501,6 +172452,50 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Court + - uid: 28802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tri-department hallway + - uid: 28813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Northeast evac + - uid: 28815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cat zoo + - uid: 28821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cryosleep - uid: 31500 components: - type: Transform @@ -171744,10 +172739,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 21932 + - uid: 8740 components: - type: Transform - pos: 2.5,-15.5 + pos: 0.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterEngineering entities: @@ -171758,10 +172753,10 @@ entities: parent: 12 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21933 + - uid: 5678 components: - type: Transform - pos: -3.5,-15.5 + pos: -1.5,-15.5 parent: 12 - proto: SurveillanceCameraRouterMedical entities: @@ -171888,6 +172883,28 @@ entities: - SurveillanceCameraScience nameSet: True id: Science entrance airlock + - uid: 28803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-23.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science entrance and robotics + - uid: 28805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-29.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science canister room - proto: SurveillanceCameraSecurity entities: - uid: 2165 @@ -172358,6 +173375,71 @@ entities: - SurveillanceCameraService nameSet: True id: Bartender's room + - uid: 28814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Parrot zoo + - uid: 28816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Zookeeper's room + - uid: 28817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Penguin zoo + - uid: 28818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Gorilla zoo + - uid: 28819 + components: + - type: Transform + pos: -10.5,19.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Monkey zoo + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Lizard zoo - uid: 30394 components: - type: Transform @@ -172457,6 +173539,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo break room + - uid: 28824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-36.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage airlock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 21981 @@ -172562,11 +173655,6 @@ entities: parent: 12 - proto: Table entities: - - uid: 406 - components: - - type: Transform - pos: 9.5,6.5 - parent: 12 - uid: 508 components: - type: Transform @@ -172693,6 +173781,11 @@ entities: - type: Transform pos: -43.5,72.5 parent: 12 + - uid: 2118 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 12 - uid: 2235 components: - type: Transform @@ -172717,6 +173810,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-11.5 parent: 12 + - uid: 2247 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 12 - uid: 2272 components: - type: Transform @@ -172764,11 +173862,6 @@ entities: - type: Transform pos: -5.5,-48.5 parent: 12 - - uid: 2927 - components: - - type: Transform - pos: 7.5,0.5 - parent: 12 - uid: 2951 components: - type: Transform @@ -172902,15 +173995,10 @@ entities: - type: Transform pos: 29.5,53.5 parent: 12 - - uid: 4758 - components: - - type: Transform - pos: 13.5,-0.5 - parent: 12 - uid: 4789 components: - type: Transform - pos: 12.5,-0.5 + pos: 8.5,-11.5 parent: 12 - uid: 4851 components: @@ -172934,12 +174022,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 12 - - uid: 5130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 - parent: 12 - uid: 5242 components: - type: Transform @@ -172991,11 +174073,6 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 12 - - uid: 5868 - components: - - type: Transform - pos: 8.5,6.5 - parent: 12 - uid: 5897 components: - type: Transform @@ -173031,6 +174108,12 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 12 + - uid: 6279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,5.5 + parent: 12 - uid: 6690 components: - type: Transform @@ -173051,6 +174134,12 @@ entities: - type: Transform pos: -15.5,-51.5 parent: 12 + - uid: 8468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 12 - uid: 8499 components: - type: Transform @@ -173081,6 +174170,12 @@ entities: - type: Transform pos: -13.5,-50.5 parent: 12 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 12 - uid: 9524 components: - type: Transform @@ -173091,6 +174186,11 @@ entities: - type: Transform pos: -17.5,-43.5 parent: 12 + - uid: 9786 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 12 - uid: 9855 components: - type: Transform @@ -173109,6 +174209,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,64.5 parent: 12 + - uid: 10306 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 12 - uid: 10330 components: - type: Transform @@ -173158,6 +174263,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 12 + - uid: 10905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 12 - uid: 10985 components: - type: Transform @@ -173170,11 +174281,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 12 - - uid: 11365 - components: - - type: Transform - pos: 9.5,5.5 - parent: 12 - uid: 11437 components: - type: Transform @@ -173192,11 +174298,6 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 12 - - uid: 12110 - components: - - type: Transform - pos: 7.5,6.5 - parent: 12 - uid: 12120 components: - type: Transform @@ -173444,11 +174545,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,47.5 parent: 12 - - uid: 15446 - components: - - type: Transform - pos: 39.5,53.5 - parent: 12 - uid: 15447 components: - type: Transform @@ -173541,6 +174637,12 @@ entities: - type: Transform pos: -12.5,13.5 parent: 12 + - uid: 16664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,6.5 + parent: 12 - uid: 16690 components: - type: Transform @@ -173872,6 +174974,11 @@ entities: rot: 3.141592653589793 rad pos: -15.5,51.5 parent: 12 + - uid: 21977 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 12 - uid: 22096 components: - type: Transform @@ -174151,11 +175258,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,58.5 parent: 12 - - uid: 25200 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 12 - uid: 25491 components: - type: Transform @@ -174313,11 +175415,6 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 12 - - uid: 27243 - components: - - type: Transform - pos: 71.5,-5.5 - parent: 12 - uid: 27252 components: - type: Transform @@ -174344,16 +175441,33 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 12 - - uid: 29348 + - uid: 28859 components: - type: Transform - pos: 29.5,-2.5 + pos: -3.5,-0.5 + parent: 12 + - uid: 28860 + components: + - type: Transform + pos: -2.5,-0.5 parent: 12 - uid: 29597 components: - type: Transform pos: -43.5,71.5 parent: 12 + - uid: 29967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-13.5 + parent: 12 + - uid: 29968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,2.5 + parent: 12 - uid: 30341 components: - type: Transform @@ -174426,6 +175540,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,71.5 parent: 12 + - uid: 31903 + components: + - type: Transform + pos: 59.5,9.5 + parent: 12 - proto: TableCarpet entities: - uid: 22653 @@ -174480,11 +175599,6 @@ entities: - type: Transform pos: -46.5,-47.5 parent: 12 - - uid: 2118 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 12 - uid: 11041 components: - type: Transform @@ -174924,12 +176038,22 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,65.5 parent: 12 + - uid: 12011 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 12 - uid: 12114 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-45.5 parent: 12 + - uid: 13009 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 12 - uid: 13789 components: - type: Transform @@ -175296,6 +176420,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-49.5 parent: 12 + - uid: 27353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 12 - uid: 28260 components: - type: Transform @@ -176077,11 +177207,6 @@ entities: - type: Transform pos: 33.433434,-6.6018057 parent: 12 - - uid: 21324 - components: - - type: Transform - pos: 2.5385756,-1.5661206 - parent: 12 - uid: 30021 components: - type: Transform @@ -176143,61 +177268,121 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 12 -- proto: TeslaCoilFlatpack +- proto: TeslaCoil entities: - - uid: 12912 + - uid: 3020 components: - type: Transform - pos: 7.6397057,-3.6464586 + rot: 1.5707963267948966 rad + pos: 71.5,-0.5 parent: 12 - - uid: 25061 + - uid: 3089 components: - type: Transform - pos: 7.7022057,-3.3409033 + rot: 1.5707963267948966 rad + pos: 71.5,9.5 parent: 12 - - uid: 25102 + - uid: 8439 components: - type: Transform - pos: 7.2855387,-3.6117368 + rot: 1.5707963267948966 rad + pos: 77.5,5.5 parent: 12 - - uid: 25534 + - uid: 8709 components: - type: Transform - pos: 7.3688717,-3.2992368 + rot: 1.5707963267948966 rad + pos: 73.5,-0.5 + parent: 12 + - uid: 9308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,3.5 + parent: 12 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,9.5 + parent: 12 +- proto: TeslaCoilFlatpack + entities: + - uid: 5187 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 61.233635,-0.31611788 parent: 12 - proto: TeslaGenerator entities: - - uid: 23361 + - uid: 5158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 + pos: 60.5,0.5 parent: 12 - proto: TeslaGroundingRod entities: - - uid: 4314 + - uid: 3127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 75.5,10.5 parent: 12 - - uid: 5992 + - uid: 8846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 1.5707963267948966 rad + pos: 78.5,7.5 parent: 12 - - uid: 19539 + - uid: 8856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 + rot: 1.5707963267948966 rad + pos: 69.5,10.5 parent: 12 - - uid: 19548 + - uid: 8857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 69.5,-1.5 + parent: 12 + - uid: 9406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,1.5 + parent: 12 + - uid: 9456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-1.5 + parent: 12 + - uid: 26527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,1.5 + parent: 12 + - uid: 26528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,7.5 + parent: 12 +- proto: TeslaGroundingRodFlatpack + entities: + - uid: 21621 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 60.604073,-0.31611776 + parent: 12 + - uid: 27003 + components: + - type: Transform + pos: 60.715595,-0.57507586 parent: 12 - proto: ThermomachineFreezerMachineCircuitBoard entities: @@ -176358,6 +177543,11 @@ entities: parent: 12 - proto: ToolboxElectricalFilled entities: + - uid: 3586 + components: + - type: Transform + pos: 3.5046568,-11.922848 + parent: 12 - uid: 5910 components: - type: Transform @@ -176393,6 +177583,12 @@ entities: - type: Transform pos: 44.683693,53.537926 parent: 12 + - uid: 28763 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.41125,-2.412424 + parent: 12 - proto: ToolboxEmergencyFilled entities: - uid: 6826 @@ -176515,6 +177711,12 @@ entities: - type: Transform pos: -12.50413,2.5674837 parent: 12 + - uid: 28764 + components: + - type: Transform + rot: -56.54866776461632 rad + pos: 53.68279,-2.6386967 + parent: 12 - uid: 29211 components: - type: Transform @@ -176526,7 +177728,7 @@ entities: components: - type: Transform rot: -18.84955592153876 rad - pos: -0.5040951,-20.382685 + pos: -0.5161767,-20.22085 parent: 12 - proto: ToyAmongPequeno entities: @@ -176546,11 +177748,11 @@ entities: parent: 12 - proto: ToyFigurineAtmosTech entities: - - uid: 3894 + - uid: 20884 components: - type: Transform rot: -18.84955592153876 rad - pos: 55.368454,5.6192193 + pos: 29.576431,3.8167615 parent: 12 - proto: ToyFigurineBartender entities: @@ -176711,7 +177913,8 @@ entities: - uid: 23532 components: - type: Transform - pos: 28.465582,12.573898 + rot: -18.84955592153876 rad + pos: 30.535233,18.578392 parent: 12 - proto: ToyFigurineParamedic entities: @@ -176879,6 +178082,14 @@ entities: rot: -6.283185307179586 rad pos: -19.50675,-15.356455 parent: 12 +- proto: trayScanner + entities: + - uid: 28715 + components: + - type: Transform + rot: -69.11503837897548 rad + pos: 56.595398,-6.4191794 + parent: 12 - proto: TrumpetInstrument entities: - uid: 26216 @@ -177518,10 +178729,10 @@ entities: parent: 12 - proto: VendingMachineAtmosDrobe entities: - - uid: 27171 + - uid: 23887 components: - type: Transform - pos: 55.5,6.5 + pos: 29.5,6.5 parent: 12 - proto: VendingMachineBooze entities: @@ -177815,6 +179026,11 @@ entities: - type: Transform pos: 32.5,-23.5 parent: 12 + - uid: 28697 + components: + - type: Transform + pos: 55.5,2.5 + parent: 12 - proto: VendingMachineGames entities: - uid: 2035 @@ -178072,18 +179288,28 @@ entities: parent: 12 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 570 + components: + - type: Transform + pos: 57.5,8.5 + parent: 12 - uid: 16777 components: - type: Transform pos: 10.5,-13.5 parent: 12 - - uid: 24689 + - uid: 27384 components: - type: Transform - pos: 25.5,2.5 + pos: 58.5,-4.5 parent: 12 - proto: VendingMachineTankDispenserEVA entities: + - uid: 565 + components: + - type: Transform + pos: 24.5,7.5 + parent: 12 - uid: 12059 components: - type: Transform @@ -178099,10 +179325,10 @@ entities: - type: Transform pos: -44.5,50.5 parent: 12 - - uid: 26738 + - uid: 27024 components: - type: Transform - pos: 52.5,-1.5 + pos: 8.5,-8.5 parent: 12 - proto: VendingMachineTheater entities: @@ -178186,6 +179412,11 @@ entities: - type: Transform pos: 43.5,49.5 parent: 12 + - uid: 28696 + components: + - type: Transform + pos: 55.5,1.5 + parent: 12 - proto: ViolaInstrument entities: - uid: 30418 @@ -178212,6 +179443,11 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 12 + - uid: 8885 + components: + - type: Transform + pos: 37.5,13.5 + parent: 12 - uid: 17664 components: - type: Transform @@ -178224,16 +179460,6 @@ entities: - type: Transform pos: -4.5,0.5 parent: 12 - - uid: 16 - components: - - type: Transform - pos: 30.5,9.5 - parent: 12 - - uid: 22 - components: - - type: Transform - pos: 31.5,9.5 - parent: 12 - uid: 27 components: - type: Transform @@ -178709,11 +179935,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-14.5 parent: 12 - - uid: 194 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 12 - uid: 196 components: - type: Transform @@ -178768,12 +179989,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-17.5 parent: 12 - - uid: 206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 12 - uid: 211 components: - type: Transform @@ -178822,12 +180037,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-21.5 parent: 12 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 12 - uid: 232 components: - type: Transform @@ -179069,6 +180278,22 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-11.5 parent: 12 + - uid: 401 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 12 + - uid: 403 + components: + - type: Transform + pos: 9.5,4.5 + parent: 12 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 12 - uid: 411 components: - type: Transform @@ -179349,6 +180574,12 @@ entities: - type: Transform pos: -40.5,-18.5 parent: 12 + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 12 - uid: 633 components: - type: Transform @@ -179461,6 +180692,12 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 12 + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-3.5 + parent: 12 - uid: 703 components: - type: Transform @@ -179656,12 +180893,28 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-40.5 parent: 12 + - uid: 901 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 12 - uid: 903 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 12 + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 12 + - uid: 923 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 12 - uid: 945 components: - type: Transform @@ -179719,7 +180972,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,4.5 + pos: 19.5,8.5 parent: 12 - uid: 1017 components: @@ -179781,12 +181034,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-51.5 parent: 12 - - uid: 1074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 12 - uid: 1075 components: - type: Transform @@ -179828,10 +181075,10 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-36.5 parent: 12 - - uid: 1351 + - uid: 1356 components: - type: Transform - pos: 23.5,-14.5 + pos: 25.5,-11.5 parent: 12 - uid: 1357 components: @@ -179867,21 +181114,32 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,50.5 parent: 12 + - uid: 1549 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 12 - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 12 - - uid: 1612 + - uid: 1556 components: - type: Transform - pos: -38.5,61.5 + pos: 26.5,-10.5 parent: 12 - - uid: 1752 + - uid: 1557 components: - type: Transform - pos: 24.5,-14.5 + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 12 + - uid: 1612 + components: + - type: Transform + pos: -38.5,61.5 parent: 12 - uid: 1755 components: @@ -179900,11 +181158,22 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,73.5 parent: 12 + - uid: 1966 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 12 - uid: 1991 components: - type: Transform pos: -54.5,-42.5 parent: 12 + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 12 - uid: 2031 components: - type: Transform @@ -179946,17 +181215,32 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 12 + - uid: 2169 + components: + - type: Transform + pos: 26.5,1.5 + parent: 12 - uid: 2171 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 12 - - uid: 2239 + - uid: 2173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: 16.5,-14.5 + parent: 12 + - uid: 2184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 12 + - uid: 2256 + components: + - type: Transform + pos: 24.5,-11.5 parent: 12 - uid: 2260 components: @@ -179964,6 +181248,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 12 + - uid: 2267 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 12 - uid: 2271 components: - type: Transform @@ -179994,11 +181283,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 12 - - uid: 2287 - components: - - type: Transform - pos: 62.5,11.5 - parent: 12 - uid: 2305 components: - type: Transform @@ -180029,6 +181313,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-37.5 parent: 12 + - uid: 2528 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 12 - uid: 2556 components: - type: Transform @@ -180088,11 +181377,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-40.5 parent: 12 - - uid: 2573 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 12 - uid: 2647 components: - type: Transform @@ -180138,11 +181422,21 @@ entities: - type: Transform pos: -7.5,-60.5 parent: 12 + - uid: 2781 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 12 - uid: 2797 components: - type: Transform pos: 65.5,54.5 parent: 12 + - uid: 2808 + components: + - type: Transform + pos: 26.5,0.5 + parent: 12 - uid: 2863 components: - type: Transform @@ -180169,24 +181463,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 12 - - uid: 2876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 12 - uid: 2883 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,11.5 parent: 12 - - uid: 2894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 12 - uid: 2935 components: - type: Transform @@ -180255,16 +181537,10 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,10.5 parent: 12 - - uid: 3021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 12 - - uid: 3077 + - uid: 3022 components: - type: Transform - pos: 38.5,3.5 + pos: 18.5,-14.5 parent: 12 - uid: 3079 components: @@ -180306,30 +181582,27 @@ entities: - type: Transform pos: -10.5,3.5 parent: 12 - - uid: 3702 - components: - - type: Transform - pos: 17.5,6.5 - parent: 12 - - uid: 3710 + - uid: 3631 components: - type: Transform - pos: 15.5,6.5 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 12 - - uid: 3713 + - uid: 3778 components: - type: Transform - pos: 15.5,8.5 + pos: -48.5,-52.5 parent: 12 - - uid: 3778 + - uid: 3823 components: - type: Transform - pos: -48.5,-52.5 + pos: 13.5,-1.5 parent: 12 - - uid: 3895 + - uid: 3824 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,-7.5 parent: 12 - uid: 3941 components: @@ -180337,20 +181610,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 12 - - uid: 3979 - components: - - type: Transform - pos: 27.5,11.5 - parent: 12 - - uid: 3982 - components: - - type: Transform - pos: 29.5,10.5 - parent: 12 - - uid: 3983 + - uid: 3945 components: - type: Transform - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,5.5 parent: 12 - uid: 4013 components: @@ -180364,12 +181628,6 @@ entities: rot: 3.141592653589793 rad pos: 71.5,13.5 parent: 12 - - uid: 4092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 12 - uid: 4103 components: - type: Transform @@ -180386,25 +181644,10 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-40.5 parent: 12 - - uid: 4386 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 12 - - uid: 4387 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 12 - - uid: 4388 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 12 - uid: 4389 components: - type: Transform - pos: 4.5,-19.5 + pos: 5.5,-17.5 parent: 12 - uid: 4392 components: @@ -180434,34 +181677,16 @@ entities: rot: 3.141592653589793 rad pos: 53.5,7.5 parent: 12 - - uid: 4411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,11.5 - parent: 12 - uid: 4412 components: - type: Transform pos: -51.5,-49.5 parent: 12 - - uid: 4414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,11.5 - parent: 12 - uid: 4416 components: - type: Transform pos: -41.5,-54.5 parent: 12 - - uid: 4475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 - parent: 12 - uid: 4478 components: - type: Transform @@ -180473,11 +181698,6 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,48.5 parent: 12 - - uid: 4527 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 12 - uid: 4529 components: - type: Transform @@ -180509,260 +181729,228 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 12 - - uid: 4537 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 12 - uid: 4538 components: - type: Transform pos: 15.5,-13.5 parent: 12 - - uid: 4563 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 12 - - uid: 4564 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 12 - - uid: 4565 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 12 - - uid: 4567 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 12 - - uid: 4569 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 12 - - uid: 4572 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 12 - uid: 4573 components: - type: Transform - pos: 14.5,-1.5 + pos: 21.5,4.5 parent: 12 - uid: 4574 components: - type: Transform - pos: 14.5,-0.5 - parent: 12 - - uid: 4575 - components: - - type: Transform - pos: 14.5,0.5 + pos: 21.5,-12.5 parent: 12 - - uid: 4576 + - uid: 4592 components: - type: Transform - pos: 14.5,1.5 + pos: 7.5,-11.5 parent: 12 - - uid: 4577 + - uid: 4594 components: - type: Transform - pos: 17.5,1.5 + pos: 7.5,-9.5 parent: 12 - - uid: 4578 + - uid: 4595 components: - type: Transform - pos: 17.5,2.5 + pos: 7.5,-8.5 parent: 12 - - uid: 4579 + - uid: 4596 components: - type: Transform - pos: 18.5,2.5 + pos: 7.5,-7.5 parent: 12 - - uid: 4580 + - uid: 4601 components: - type: Transform - pos: 19.5,2.5 + rot: 3.141592653589793 rad + pos: 23.5,-3.5 parent: 12 - - uid: 4581 + - uid: 4643 components: - type: Transform - pos: 19.5,1.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - - uid: 4582 + - uid: 4649 components: - type: Transform - pos: 23.5,2.5 + pos: 26.5,-2.5 parent: 12 - - uid: 4583 + - uid: 4652 components: - type: Transform - pos: 23.5,1.5 + pos: 24.5,-13.5 parent: 12 - - uid: 4592 + - uid: 4654 components: - type: Transform - pos: 7.5,-11.5 + pos: 8.5,4.5 parent: 12 - - uid: 4594 + - uid: 4664 components: - type: Transform - pos: 7.5,-9.5 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 12 - - uid: 4595 + - uid: 4682 components: - type: Transform - pos: 7.5,-8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 parent: 12 - - uid: 4596 + - uid: 4685 components: - type: Transform - pos: 7.5,-7.5 + pos: 10.5,4.5 parent: 12 - - uid: 4672 + - uid: 4693 components: - type: Transform - pos: 23.5,0.5 + rot: 3.141592653589793 rad + pos: 72.5,13.5 parent: 12 - - uid: 4676 + - uid: 4714 components: - type: Transform - pos: 19.5,0.5 + pos: -24.5,56.5 parent: 12 - - uid: 4680 + - uid: 4768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 6.5,-5.5 parent: 12 - - uid: 4681 + - uid: 4773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,1.5 + pos: 11.5,-48.5 parent: 12 - - uid: 4682 + - uid: 4783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 12 - - uid: 4684 + - uid: 4797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,2.5 + pos: 28.5,3.5 parent: 12 - - uid: 4692 + - uid: 4882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -27.5,6.5 parent: 12 - - uid: 4693 + - uid: 4900 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,13.5 + pos: 25.5,2.5 parent: 12 - - uid: 4706 + - uid: 4902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,3.5 + pos: 26.5,-7.5 parent: 12 - - uid: 4714 + - uid: 4905 components: - type: Transform - pos: -24.5,56.5 + pos: 37.5,-3.5 parent: 12 - - uid: 4733 + - uid: 4909 components: - type: Transform - pos: 8.5,-7.5 + rot: 3.141592653589793 rad + pos: 24.5,2.5 parent: 12 - - uid: 4768 + - uid: 4911 components: - type: Transform - pos: 6.5,-5.5 + pos: 26.5,-3.5 parent: 12 - - uid: 4773 + - uid: 4930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-48.5 + pos: 26.5,-8.5 parent: 12 - - uid: 4882 + - uid: 4936 components: - type: Transform - pos: -27.5,6.5 + rot: 1.5707963267948966 rad + pos: 80.5,-4.5 parent: 12 - - uid: 4883 + - uid: 4949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 + rot: 3.141592653589793 rad + pos: 25.5,-9.5 parent: 12 - - uid: 4905 + - uid: 4952 components: - type: Transform - pos: 37.5,-3.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 12 - - uid: 4906 + - uid: 4955 components: - type: Transform - pos: 33.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,8.5 parent: 12 - - uid: 4909 + - uid: 4960 components: - type: Transform - pos: 17.5,-14.5 + rot: 3.141592653589793 rad + pos: 24.5,-1.5 parent: 12 - - uid: 4910 + - uid: 4988 components: - type: Transform - pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + pos: 81.5,-0.5 parent: 12 - - uid: 4915 + - uid: 4992 components: - type: Transform - pos: 35.5,-3.5 + pos: 11.5,-12.5 parent: 12 - - uid: 4921 + - uid: 5005 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 12 - - uid: 4941 + - uid: 5007 components: - type: Transform - pos: 29.5,5.5 + pos: 11.5,4.5 parent: 12 - - uid: 4952 + - uid: 5009 components: - type: Transform - pos: 20.5,7.5 + pos: 8.5,-2.5 parent: 12 - - uid: 4953 + - uid: 5021 components: - type: Transform - pos: 23.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,-5.5 parent: 12 - - uid: 4972 + - uid: 5025 components: - type: Transform - pos: 25.5,-14.5 + pos: 23.5,-11.5 parent: 12 - - uid: 4978 + - uid: 5033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 + rot: 1.5707963267948966 rad + pos: 81.5,13.5 parent: 12 - uid: 5040 components: @@ -180770,6 +181958,12 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,53.5 parent: 12 + - uid: 5044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 12 - uid: 5056 components: - type: Transform @@ -180790,11 +181984,6 @@ entities: - type: Transform pos: 32.5,0.5 parent: 12 - - uid: 5064 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 12 - uid: 5065 components: - type: Transform @@ -180815,16 +182004,6 @@ entities: - type: Transform pos: 28.5,-4.5 parent: 12 - - uid: 5070 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 12 - - uid: 5072 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 12 - uid: 5073 components: - type: Transform @@ -180862,10 +182041,15 @@ entities: - type: Transform pos: 19.5,-15.5 parent: 12 - - uid: 5101 + - uid: 5107 components: - type: Transform - pos: 23.5,-15.5 + pos: 37.5,-4.5 + parent: 12 + - uid: 5111 + components: + - type: Transform + pos: 60.5,9.5 parent: 12 - uid: 5112 components: @@ -180883,10 +182067,11 @@ entities: - type: Transform pos: -27.5,8.5 parent: 12 - - uid: 5125 + - uid: 5126 components: - type: Transform - pos: 59.5,-2.5 + rot: 1.5707963267948966 rad + pos: 82.5,6.5 parent: 12 - uid: 5139 components: @@ -180965,11 +182150,34 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-12.5 parent: 12 - - uid: 5214 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,5.5 + pos: 23.5,-5.5 + parent: 12 + - uid: 5190 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 12 + - uid: 5198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,1.5 + parent: 12 + - uid: 5214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,11.5 + parent: 12 + - uid: 5217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-1.5 parent: 12 - uid: 5218 components: @@ -180977,6 +182185,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 12 + - uid: 5220 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 12 + - uid: 5238 + components: + - type: Transform + pos: 28.5,4.5 + parent: 12 - uid: 5246 components: - type: Transform @@ -181025,17 +182243,22 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-16.5 parent: 12 + - uid: 5273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 12 - uid: 5313 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-50.5 parent: 12 - - uid: 5316 + - uid: 5365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,6.5 + pos: 13.5,-13.5 parent: 12 - uid: 5391 components: @@ -181043,6 +182266,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,27.5 parent: 12 + - uid: 5403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 12 - uid: 5443 components: - type: Transform @@ -181121,15 +182350,22 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 12 - - uid: 5477 + - uid: 5527 components: - type: Transform - pos: 53.5,0.5 + pos: 48.5,-3.5 parent: 12 - - uid: 5527 + - uid: 5528 components: - type: Transform - pos: 48.5,-3.5 + rot: 1.5707963267948966 rad + pos: 81.5,12.5 + parent: 12 + - uid: 5553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,10.5 parent: 12 - uid: 5562 components: @@ -181166,11 +182402,66 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 12 - - uid: 5682 + - uid: 5628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 12 + - uid: 5637 + components: + - type: Transform + pos: 28.5,2.5 + parent: 12 + - uid: 5641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 12 + - uid: 5668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 12 + - uid: 5680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 12 + - uid: 5802 + components: + - type: Transform + pos: 13.5,6.5 + parent: 12 + - uid: 5815 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,8.5 + pos: 80.5,14.5 + parent: 12 + - uid: 5820 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 12 + - uid: 5830 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 12 + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 12 + - uid: 5839 + components: + - type: Transform + pos: 27.5,4.5 parent: 12 - uid: 5904 components: @@ -181190,12 +182481,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,64.5 parent: 12 - - uid: 5966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 12 - uid: 5971 components: - type: Transform @@ -181229,10 +182514,21 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,64.5 parent: 12 - - uid: 5991 + - uid: 6014 components: - type: Transform - pos: 52.5,0.5 + pos: 21.5,-13.5 + parent: 12 + - uid: 6023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 12 + - uid: 6031 + components: + - type: Transform + pos: 8.5,-4.5 parent: 12 - uid: 6080 components: @@ -181254,16 +182550,16 @@ entities: - type: Transform pos: 24.5,-39.5 parent: 12 - - uid: 6207 + - uid: 6199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 + pos: 26.5,2.5 parent: 12 - - uid: 6243 + - uid: 6207 components: - type: Transform - pos: 54.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 parent: 12 - uid: 6263 components: @@ -181378,10 +182674,10 @@ entities: - type: Transform pos: 44.5,-9.5 parent: 12 - - uid: 6772 + - uid: 6766 components: - type: Transform - pos: 48.5,-1.5 + pos: 26.5,-0.5 parent: 12 - uid: 6773 components: @@ -181389,10 +182685,41 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-15.5 parent: 12 - - uid: 6942 + - uid: 6889 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 12 + - uid: 6893 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 12 + - uid: 7200 components: - type: Transform - pos: 71.5,10.5 + pos: 8.5,0.5 + parent: 12 + - uid: 7216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 12 + - uid: 7232 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 12 + - uid: 7243 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 12 + - uid: 7252 + components: + - type: Transform + pos: 26.5,-13.5 parent: 12 - uid: 7263 components: @@ -181405,20 +182732,16 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 12 - - uid: 7278 - components: - - type: Transform - pos: 70.5,10.5 - parent: 12 - uid: 7286 components: - type: Transform pos: 44.5,2.5 parent: 12 - - uid: 7309 + - uid: 7308 components: - type: Transform - pos: 67.5,11.5 + rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 12 - uid: 7316 components: @@ -182050,12 +183373,6 @@ entities: - type: Transform pos: -9.5,-8.5 parent: 12 - - uid: 8441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,14.5 - parent: 12 - uid: 8442 components: - type: Transform @@ -182082,11 +183399,6 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 12 - - uid: 8709 - components: - - type: Transform - pos: 73.5,10.5 - parent: 12 - uid: 8767 components: - type: Transform @@ -182133,109 +183445,161 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 12 - - uid: 8846 + - uid: 8852 components: - type: Transform - pos: 12.5,-2.5 + pos: 25.5,4.5 parent: 12 - - uid: 8852 + - uid: 8918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-4.5 + pos: 26.5,4.5 parent: 12 - - uid: 8856 + - uid: 8958 components: - type: Transform - pos: 75.5,10.5 + rot: 3.141592653589793 rad + pos: 24.5,-3.5 parent: 12 - - uid: 8857 + - uid: 8959 components: - type: Transform - pos: 79.5,7.5 + pos: 31.5,1.5 parent: 12 - - uid: 9067 + - uid: 8974 components: - type: Transform - pos: -59.5,36.5 + rot: 1.5707963267948966 rad + pos: 78.5,-4.5 parent: 12 - - uid: 9072 + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-17.5 + rot: 1.5707963267948966 rad + pos: 76.5,-4.5 parent: 12 - - uid: 9120 + - uid: 9008 components: - type: Transform - pos: -9.5,-9.5 + rot: 1.5707963267948966 rad + pos: 73.5,-4.5 parent: 12 - - uid: 9121 + - uid: 9009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: 72.5,-4.5 parent: 12 - - uid: 9138 + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-43.5 + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 parent: 12 - - uid: 9142 + - uid: 9011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,7.5 + pos: 67.5,-4.5 parent: 12 - - uid: 9169 + - uid: 9012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 parent: 12 - - uid: 9173 + - uid: 9013 components: - type: Transform - pos: 77.5,10.5 + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 parent: 12 - - uid: 9174 + - uid: 9014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,7.5 + pos: 77.5,-4.5 parent: 12 - - uid: 9175 + - uid: 9015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,6.5 + pos: 60.5,-4.5 parent: 12 - - uid: 9222 + - uid: 9055 components: - type: Transform - pos: 66.5,11.5 + rot: 1.5707963267948966 rad + pos: 81.5,1.5 parent: 12 - - uid: 9230 + - uid: 9056 components: - type: Transform - pos: 37.5,-40.5 + rot: 1.5707963267948966 rad + pos: 81.5,2.5 parent: 12 - - uid: 9297 + - uid: 9057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,8.5 + pos: 81.5,-2.5 parent: 12 - - uid: 9298 + - uid: 9058 components: - type: Transform - pos: 76.5,-1.5 + rot: -1.5707963267948966 rad + pos: 18.5,7.5 parent: 12 - - uid: 9306 + - uid: 9067 components: - type: Transform - pos: 12.5,-12.5 + pos: -59.5,36.5 + parent: 12 + - uid: 9072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 + parent: 12 + - uid: 9120 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 12 + - uid: 9121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 12 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 12 + - uid: 9138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-43.5 + parent: 12 + - uid: 9175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 12 + - uid: 9230 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 12 + - uid: 9297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 parent: 12 - uid: 9379 components: @@ -182258,6 +183622,18 @@ entities: - type: Transform pos: -12.5,23.5 parent: 12 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 12 + - uid: 9432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,9.5 + parent: 12 - uid: 9443 components: - type: Transform @@ -182299,6 +183675,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,56.5 parent: 12 + - uid: 9526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,10.5 + parent: 12 - uid: 9527 components: - type: Transform @@ -182314,8 +183696,8 @@ entities: - uid: 9540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,6.5 + rot: 1.5707963267948966 rad + pos: 63.5,11.5 parent: 12 - uid: 9542 components: @@ -182353,18 +183735,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 12 - - uid: 9614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 12 - - uid: 9621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 12 - uid: 9622 components: - type: Transform @@ -182401,16 +183771,23 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 12 + - uid: 9650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 76.5,13.5 + parent: 12 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,65.5 parent: 12 - - uid: 9658 + - uid: 9662 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: 61.5,-2.5 parent: 12 - uid: 9674 components: @@ -182422,17 +183799,29 @@ entities: - type: Transform pos: 48.5,7.5 parent: 12 - - uid: 9701 + - uid: 9679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 parent: 12 - - uid: 9703 + - uid: 9681 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,4.5 + pos: 81.5,8.5 + parent: 12 + - uid: 9684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,7.5 + parent: 12 + - uid: 9701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 parent: 12 - uid: 9704 components: @@ -182451,12 +183840,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 12 - - uid: 9720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 12 - uid: 9726 components: - type: Transform @@ -182714,6 +184097,12 @@ entities: - type: Transform pos: -56.5,20.5 parent: 12 + - uid: 10381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-1.5 + parent: 12 - uid: 10396 components: - type: Transform @@ -183172,16 +184561,116 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,33.5 parent: 12 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 12 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,13.5 + parent: 12 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,13.5 + parent: 12 + - uid: 10793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-4.5 + parent: 12 + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,13.5 + parent: 12 + - uid: 10825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,11.5 + parent: 12 + - uid: 10826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,10.5 + parent: 12 + - uid: 10833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,6.5 + parent: 12 + - uid: 10842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 12 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 12 + - uid: 10870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 12 + - uid: 10909 + components: + - type: Transform + pos: 37.5,5.5 + parent: 12 + - uid: 10910 + components: + - type: Transform + pos: 38.5,5.5 + parent: 12 + - uid: 10911 + components: + - type: Transform + pos: 38.5,4.5 + parent: 12 + - uid: 10932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-5.5 + parent: 12 - uid: 10937 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,13.5 parent: 12 + - uid: 10938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-5.5 + parent: 12 - uid: 10939 components: - type: Transform - pos: 70.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 12 + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 parent: 12 - uid: 10953 components: @@ -183218,6 +184707,18 @@ entities: - type: Transform pos: -29.5,-9.5 parent: 12 + - uid: 11021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-4.5 + parent: 12 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-4.5 + parent: 12 - uid: 11038 components: - type: Transform @@ -183230,6 +184731,30 @@ entities: rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 12 + - uid: 11048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-4.5 + parent: 12 + - uid: 11050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-4.5 + parent: 12 + - uid: 11051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 12 + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-4.5 + parent: 12 - uid: 11128 components: - type: Transform @@ -183457,17 +184982,17 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,29.5 parent: 12 - - uid: 11213 + - uid: 11209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 + rot: 1.5707963267948966 rad + pos: 65.5,-4.5 parent: 12 - - uid: 11214 + - uid: 11213 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,21.5 + pos: 8.5,22.5 parent: 12 - uid: 11217 components: @@ -183605,6 +185130,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,22.5 parent: 12 + - uid: 11276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 + parent: 12 - uid: 11283 components: - type: Transform @@ -183627,59 +185158,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 12 - - uid: 11331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 12 - - uid: 11364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 12 - - uid: 11371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 12 - - uid: 11373 - components: - - type: Transform - pos: 37.5,5.5 - parent: 12 - - uid: 11375 - components: - - type: Transform - pos: 35.5,5.5 - parent: 12 - - uid: 11376 - components: - - type: Transform - pos: 34.5,5.5 - parent: 12 - - uid: 11377 - components: - - type: Transform - pos: 33.5,5.5 - parent: 12 - - uid: 11379 - components: - - type: Transform - pos: 32.5,6.5 - parent: 12 - - uid: 11380 - components: - - type: Transform - pos: 32.5,7.5 - parent: 12 - - uid: 11382 - components: - - type: Transform - pos: 32.5,9.5 - parent: 12 - uid: 11389 components: - type: Transform @@ -184148,6 +185626,18 @@ entities: - type: Transform pos: 59.5,37.5 parent: 12 + - uid: 11928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 12 + - uid: 11942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 12 - uid: 12009 components: - type: Transform @@ -184163,6 +185653,18 @@ entities: - type: Transform pos: 43.5,13.5 parent: 12 + - uid: 12110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-4.5 + parent: 12 + - uid: 12217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 12 - uid: 12392 components: - type: Transform @@ -184253,11 +185755,10 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 12 - - uid: 12724 + - uid: 12641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,6.5 + pos: 35.5,5.5 parent: 12 - uid: 12810 components: @@ -184661,11 +186162,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,76.5 parent: 12 - - uid: 15008 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 12 - uid: 15016 components: - type: Transform @@ -185078,37 +186574,6 @@ entities: - type: Transform pos: 50.5,4.5 parent: 12 - - uid: 16365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 12 - - uid: 16420 - components: - - type: Transform - pos: 68.5,11.5 - parent: 12 - - uid: 16421 - components: - - type: Transform - pos: 60.5,11.5 - parent: 12 - - uid: 16435 - components: - - type: Transform - pos: 58.5,11.5 - parent: 12 - - uid: 16436 - components: - - type: Transform - pos: 76.5,10.5 - parent: 12 - - uid: 16446 - components: - - type: Transform - pos: 59.5,11.5 - parent: 12 - uid: 16646 components: - type: Transform @@ -185333,12 +186798,6 @@ entities: - type: Transform pos: 57.5,59.5 parent: 12 - - uid: 17607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,7.5 - parent: 12 - uid: 17624 components: - type: Transform @@ -185640,12 +187099,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,43.5 parent: 12 - - uid: 18756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 12 - uid: 18845 components: - type: Transform @@ -185943,6 +187396,12 @@ entities: rot: 3.141592653589793 rad pos: -41.5,54.5 parent: 12 + - uid: 19176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 12 - uid: 19179 components: - type: Transform @@ -186322,12 +187781,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,50.5 parent: 12 - - uid: 19455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 12 - uid: 19507 components: - type: Transform @@ -186622,16 +188075,17 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,1.5 parent: 12 - - uid: 20097 + - uid: 19886 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,75.5 + pos: 59.5,-0.5 parent: 12 - - uid: 20161 + - uid: 20097 components: - type: Transform - pos: 10.5,6.5 + rot: 3.141592653589793 rad + pos: -25.5,75.5 parent: 12 - uid: 20268 components: @@ -186662,17 +188116,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-8.5 parent: 12 - - uid: 21065 - components: - - type: Transform - pos: 47.5,-3.5 - parent: 12 - - uid: 21078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 12 - uid: 21527 components: - type: Transform @@ -186833,11 +188276,6 @@ entities: - type: Transform pos: 64.5,13.5 parent: 12 - - uid: 22090 - components: - - type: Transform - pos: 70.5,13.5 - parent: 12 - uid: 22091 components: - type: Transform @@ -186848,61 +188286,6 @@ entities: - type: Transform pos: 60.5,14.5 parent: 12 - - uid: 22093 - components: - - type: Transform - pos: 79.5,12.5 - parent: 12 - - uid: 22094 - components: - - type: Transform - pos: 78.5,12.5 - parent: 12 - - uid: 22095 - components: - - type: Transform - pos: 75.5,12.5 - parent: 12 - - uid: 22100 - components: - - type: Transform - pos: 76.5,12.5 - parent: 12 - - uid: 22101 - components: - - type: Transform - pos: 77.5,12.5 - parent: 12 - - uid: 22104 - components: - - type: Transform - pos: 77.5,7.5 - parent: 12 - - uid: 22105 - components: - - type: Transform - pos: 79.5,1.5 - parent: 12 - - uid: 22106 - components: - - type: Transform - pos: 79.5,0.5 - parent: 12 - - uid: 22107 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 12 - - uid: 22119 - components: - - type: Transform - pos: 79.5,9.5 - parent: 12 - - uid: 22122 - components: - - type: Transform - pos: 80.5,13.5 - parent: 12 - uid: 22124 components: - type: Transform @@ -187032,11 +188415,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,55.5 parent: 12 - - uid: 22339 - components: - - type: Transform - pos: 63.5,11.5 - parent: 12 - uid: 22532 components: - type: Transform @@ -187064,18 +188442,42 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 12 + - uid: 23117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-6.5 + parent: 12 - uid: 23124 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,74.5 parent: 12 + - uid: 23128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 12 + - uid: 23129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,2.5 + parent: 12 - uid: 23144 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,74.5 parent: 12 + - uid: 23157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-1.5 + parent: 12 - uid: 23159 components: - type: Transform @@ -187088,6 +188490,12 @@ entities: rot: 3.141592653589793 rad pos: 14.5,22.5 parent: 12 + - uid: 23166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 12 - uid: 23177 components: - type: Transform @@ -187141,6 +188549,11 @@ entities: - type: Transform pos: 48.5,66.5 parent: 12 + - uid: 23985 + components: + - type: Transform + pos: 60.5,8.5 + parent: 12 - uid: 24226 components: - type: Transform @@ -187180,7 +188593,8 @@ entities: - uid: 24280 components: - type: Transform - pos: 77.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,1.5 parent: 12 - uid: 24302 components: @@ -187203,6 +188617,12 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 12 + - uid: 24453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 12 - uid: 24460 components: - type: Transform @@ -187236,6 +188656,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 12 + - uid: 25093 + components: + - type: Transform + pos: 63.5,7.5 + parent: 12 - uid: 25094 components: - type: Transform @@ -187251,14 +188676,12 @@ entities: - uid: 25101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-5.5 + pos: 63.5,0.5 parent: 12 - uid: 25135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,5.5 + pos: 63.5,8.5 parent: 12 - uid: 25275 components: @@ -187413,46 +188836,6 @@ entities: - type: Transform pos: -50.5,45.5 parent: 12 - - uid: 25460 - components: - - type: Transform - pos: 61.5,11.5 - parent: 12 - - uid: 25461 - components: - - type: Transform - pos: 77.5,4.5 - parent: 12 - - uid: 25462 - components: - - type: Transform - pos: 64.5,11.5 - parent: 12 - - uid: 25463 - components: - - type: Transform - pos: 77.5,5.5 - parent: 12 - - uid: 25464 - components: - - type: Transform - pos: 72.5,10.5 - parent: 12 - - uid: 25465 - components: - - type: Transform - pos: 77.5,6.5 - parent: 12 - - uid: 25466 - components: - - type: Transform - pos: 79.5,2.5 - parent: 12 - - uid: 25469 - components: - - type: Transform - pos: 65.5,11.5 - parent: 12 - uid: 25527 components: - type: Transform @@ -187522,11 +188905,6 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 12 - - uid: 25598 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 12 - uid: 25599 components: - type: Transform @@ -187543,22 +188921,11 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,66.5 parent: 12 - - uid: 25615 - components: - - type: Transform - pos: 32.5,5.5 - parent: 12 - uid: 25835 components: - type: Transform pos: 3.5,12.5 parent: 12 - - uid: 25888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 12 - uid: 25889 components: - type: Transform @@ -187589,12 +188956,34 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 12 + - uid: 26067 + components: + - type: Transform + pos: 63.5,1.5 + parent: 12 - uid: 26096 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 + - uid: 26104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 12 + - uid: 26114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 12 + - uid: 26131 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 12 - uid: 26167 components: - type: Transform @@ -187628,177 +189017,57 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 12 - - uid: 26382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,11.5 - parent: 12 - - uid: 26414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 12 - uid: 26416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 12 - - uid: 26417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 - parent: 12 - - uid: 26418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,6.5 - parent: 12 - - uid: 26419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 12 - - uid: 26420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,5.5 - parent: 12 - - uid: 26421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,5.5 - parent: 12 - - uid: 26422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,6.5 - parent: 12 - - uid: 26423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,7.5 - parent: 12 - - uid: 26424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 12 - - uid: 26425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,6.5 - parent: 12 - - uid: 26426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,5.5 + rot: 1.5707963267948966 rad + pos: 24.5,9.5 parent: 12 - uid: 26427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,6.5 - parent: 12 - - uid: 26428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,5.5 - parent: 12 - - uid: 26429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 12 - - uid: 26430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 12 - - uid: 26432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,8.5 - parent: 12 - - uid: 26434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,8.5 + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 parent: 12 - - uid: 26436 + - uid: 26435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,8.5 + rot: -1.5707963267948966 rad + pos: 28.5,11.5 parent: 12 - - uid: 26438 + - uid: 26439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,8.5 + rot: 1.5707963267948966 rad + pos: 81.5,3.5 parent: 12 - uid: 26440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,8.5 - parent: 12 - - uid: 26447 - components: - - type: Transform - pos: 75.5,-1.5 + rot: 1.5707963267948966 rad + pos: 81.5,4.5 parent: 12 - uid: 26448 components: - type: Transform - pos: 77.5,0.5 - parent: 12 - - uid: 26451 - components: - - type: Transform - pos: 77.5,-1.5 - parent: 12 - - uid: 26452 - components: - - type: Transform - pos: 75.5,3.5 + rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 12 - - uid: 26466 + - uid: 26469 components: - type: Transform - pos: 16.5,-14.5 + rot: 3.141592653589793 rad + pos: 59.5,-1.5 parent: 12 - uid: 26472 components: - type: Transform - pos: 55.5,-2.5 + pos: 3.5,-17.5 parent: 12 - uid: 26473 components: - type: Transform - pos: 54.5,-2.5 - parent: 12 - - uid: 26474 - components: - - type: Transform - pos: 53.5,-2.5 + pos: 5.5,-18.5 parent: 12 - uid: 26475 components: @@ -187810,16 +189079,6 @@ entities: - type: Transform pos: 51.5,-2.5 parent: 12 - - uid: 26477 - components: - - type: Transform - pos: 51.5,-1.5 - parent: 12 - - uid: 26478 - components: - - type: Transform - pos: 79.5,-4.5 - parent: 12 - uid: 26482 components: - type: Transform @@ -187840,40 +189099,35 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26487 - components: - - type: Transform - pos: 57.5,3.5 - parent: 12 - - uid: 26488 - components: - - type: Transform - pos: 69.5,3.5 - parent: 12 - uid: 26489 components: - type: Transform - pos: 70.5,8.5 + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 parent: 12 - - uid: 26490 + - uid: 26492 components: - type: Transform - pos: 74.5,8.5 + rot: -1.5707963267948966 rad + pos: 24.5,13.5 parent: 12 - - uid: 26491 + - uid: 26510 components: - type: Transform - pos: 70.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,5.5 parent: 12 - - uid: 26495 + - uid: 26538 components: - type: Transform - pos: 74.5,5.5 + rot: 3.141592653589793 rad + pos: 59.5,0.5 parent: 12 - - uid: 26554 + - uid: 26563 components: - type: Transform - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 80.5,13.5 parent: 12 - uid: 26567 components: @@ -187885,46 +189139,6 @@ entities: - type: Transform pos: -25.5,-11.5 parent: 12 - - uid: 26590 - components: - - type: Transform - pos: 80.5,7.5 - parent: 12 - - uid: 26592 - components: - - type: Transform - pos: 79.5,11.5 - parent: 12 - - uid: 26593 - components: - - type: Transform - pos: 79.5,10.5 - parent: 12 - - uid: 26595 - components: - - type: Transform - pos: 79.5,8.5 - parent: 12 - - uid: 26597 - components: - - type: Transform - pos: 79.5,6.5 - parent: 12 - - uid: 26599 - components: - - type: Transform - pos: 79.5,4.5 - parent: 12 - - uid: 26600 - components: - - type: Transform - pos: 79.5,5.5 - parent: 12 - - uid: 26601 - components: - - type: Transform - pos: 79.5,3.5 - parent: 12 - uid: 26603 components: - type: Transform @@ -187935,133 +189149,94 @@ entities: - type: Transform pos: 70.5,14.5 parent: 12 - - uid: 26614 + - uid: 26611 components: - type: Transform - pos: 40.5,-9.5 + rot: -1.5707963267948966 rad + pos: 18.5,6.5 parent: 12 - - uid: 26625 + - uid: 26612 components: - type: Transform - pos: 77.5,2.5 + rot: 1.5707963267948966 rad + pos: 61.5,7.5 parent: 12 - - uid: 26626 + - uid: 26614 components: - type: Transform - pos: 77.5,1.5 + pos: 40.5,-9.5 parent: 12 - - uid: 26627 + - uid: 26634 components: - type: Transform - pos: 75.5,2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 12 - - uid: 26628 + - uid: 26637 components: - type: Transform - pos: 77.5,-0.5 + rot: -1.5707963267948966 rad + pos: 59.5,7.5 parent: 12 - - uid: 26649 + - uid: 26638 components: - type: Transform - pos: 79.5,-2.5 + rot: 1.5707963267948966 rad + pos: 79.5,-4.5 parent: 12 - uid: 26670 components: - type: Transform pos: 66.5,13.5 parent: 12 - - uid: 26674 - components: - - type: Transform - pos: 68.5,9.5 - parent: 12 - - uid: 26675 - components: - - type: Transform - pos: 67.5,9.5 - parent: 12 - - uid: 26676 - components: - - type: Transform - pos: 66.5,9.5 - parent: 12 - - uid: 26677 - components: - - type: Transform - pos: 65.5,9.5 - parent: 12 - - uid: 26678 - components: - - type: Transform - pos: 64.5,9.5 - parent: 12 - - uid: 26679 - components: - - type: Transform - pos: 63.5,9.5 - parent: 12 - - uid: 26680 - components: - - type: Transform - pos: 62.5,9.5 - parent: 12 - - uid: 26681 + - uid: 26695 components: - type: Transform - pos: 61.5,9.5 + pos: -25.5,-10.5 parent: 12 - - uid: 26682 + - uid: 26725 components: - type: Transform - pos: 59.5,9.5 + pos: -25.5,-9.5 parent: 12 - - uid: 26683 + - uid: 26786 components: - type: Transform - pos: 58.5,9.5 + pos: 63.5,-0.5 parent: 12 - - uid: 26684 + - uid: 26822 components: - type: Transform - pos: 60.5,9.5 + rot: -1.5707963267948966 rad + pos: 13.5,7.5 parent: 12 - - uid: 26695 + - uid: 26823 components: - type: Transform - pos: -25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,13.5 parent: 12 - - uid: 26725 + - uid: 26850 components: - type: Transform - pos: -25.5,-9.5 + pos: 5.5,-21.5 parent: 12 - uid: 26882 components: - type: Transform pos: 56.5,-9.5 parent: 12 - - uid: 26892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 12 - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 12 - - uid: 26912 - components: - - type: Transform - pos: 80.5,-2.5 - parent: 12 - - uid: 26954 + - uid: 27021 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,1.5 + pos: 46.5,0.5 parent: 12 - uid: 27038 components: @@ -188075,64 +189250,27 @@ entities: rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 12 - - uid: 27044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 12 - uid: 27076 components: - type: Transform pos: 67.5,13.5 parent: 12 - - uid: 27082 - components: - - type: Transform - pos: 77.5,9.5 - parent: 12 - - uid: 27090 - components: - - type: Transform - pos: 79.5,-1.5 - parent: 12 - uid: 27091 components: - type: Transform pos: 68.5,13.5 parent: 12 - - uid: 27092 - components: - - type: Transform - pos: 74.5,10.5 - parent: 12 - - uid: 27105 - components: - - type: Transform - pos: 80.5,12.5 - parent: 12 - uid: 27106 components: - type: Transform pos: 55.5,13.5 parent: 12 - - uid: 27107 - components: - - type: Transform - pos: 80.5,2.5 - parent: 12 - uid: 27147 components: - type: Transform @@ -188157,11 +189295,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,61.5 parent: 12 - - uid: 27237 - components: - - type: Transform - pos: 79.5,-3.5 - parent: 12 - uid: 27334 components: - type: Transform @@ -188462,62 +189595,45 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,10.5 parent: 12 - - uid: 28804 - components: - - type: Transform - pos: 63.5,-6.5 - parent: 12 - - uid: 28805 - components: - - type: Transform - pos: 69.5,-6.5 - parent: 12 - - uid: 28806 - components: - - type: Transform - pos: 75.5,-6.5 - parent: 12 - - uid: 28807 + - uid: 28834 components: - type: Transform - pos: 75.5,-5.5 + pos: 32.5,3.5 parent: 12 - - uid: 28808 + - uid: 28835 components: - type: Transform - pos: 76.5,-5.5 + pos: 32.5,4.5 parent: 12 - - uid: 28809 + - uid: 28836 components: - type: Transform - pos: 77.5,-5.5 + pos: 33.5,5.5 parent: 12 - - uid: 28810 + - uid: 28837 components: - type: Transform - pos: 77.5,-4.5 + pos: 32.5,7.5 parent: 12 - - uid: 28811 + - uid: 28838 components: - type: Transform - pos: 77.5,-3.5 + pos: 30.5,7.5 parent: 12 - - uid: 28812 + - uid: 28843 components: - type: Transform - pos: 77.5,-2.5 + pos: 34.5,5.5 parent: 12 - - uid: 28852 + - uid: 28849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 + pos: 32.5,2.5 parent: 12 - - uid: 28856 + - uid: 28943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-2.5 + pos: 19.5,-13.5 parent: 12 - uid: 29163 components: @@ -188554,12 +189670,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,64.5 parent: 12 - - uid: 29355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 12 - uid: 29657 components: - type: Transform @@ -188784,11 +189894,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-63.5 parent: 12 - - uid: 31511 - components: - - type: Transform - pos: 32.5,3.5 - parent: 12 - uid: 31604 components: - type: Transform @@ -188819,37 +189924,34 @@ entities: - type: Transform pos: -64.5,-30.5 parent: 12 -- proto: WallReinforcedDiagonal - entities: - - uid: 21621 + - uid: 31891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 + rot: 1.5707963267948966 rad + pos: 17.5,22.5 parent: 12 - - uid: 22066 + - uid: 31892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: 16.5,22.5 parent: 12 - - uid: 22072 + - uid: 31895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,4.5 + pos: 17.5,18.5 parent: 12 - - uid: 22073 + - uid: 31902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,5.5 + pos: 60.5,7.5 parent: 12 - - uid: 22075 + - uid: 31906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 + pos: 60.5,10.5 parent: 12 - proto: WallReinforcedRust entities: @@ -188870,12 +189972,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,30.5 parent: 12 - - uid: 2679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 12 - uid: 3624 components: - type: Transform @@ -188903,16 +189999,16 @@ entities: - type: Transform pos: -37.5,73.5 parent: 12 - - uid: 5794 + - uid: 5110 components: - type: Transform - pos: 41.5,-3.5 + rot: -1.5707963267948966 rad + pos: 58.5,-7.5 parent: 12 - - uid: 6765 + - uid: 5794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 + pos: 41.5,-3.5 parent: 12 - uid: 7802 components: @@ -188925,12 +190021,6 @@ entities: - type: Transform pos: 44.5,-39.5 parent: 12 - - uid: 9437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 - parent: 12 - uid: 9531 components: - type: Transform @@ -188985,12 +190075,6 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 - - uid: 9908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 12 - uid: 10166 components: - type: Transform @@ -189245,11 +190329,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,69.5 parent: 12 - - uid: 12217 - components: - - type: Transform - pos: 36.5,5.5 - parent: 12 - uid: 12308 components: - type: Transform @@ -189302,12 +190381,6 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 12 - - uid: 17584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 12 - uid: 18709 components: - type: Transform @@ -189458,11 +190531,47 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,70.5 parent: 12 - - uid: 26834 + - uid: 26595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + rot: 3.141592653589793 rad + pos: 81.5,0.5 + parent: 12 + - uid: 26608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-3.5 + parent: 12 + - uid: 26680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,11.5 + parent: 12 + - uid: 26691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,14.5 + parent: 12 + - uid: 26697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-5.5 + parent: 12 + - uid: 26714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-5.5 + parent: 12 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,13.5 parent: 12 - uid: 27035 components: @@ -189470,6 +190579,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 12 + - uid: 27044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,9.5 + parent: 12 - uid: 27054 components: - type: Transform @@ -189520,6 +190635,26 @@ entities: - type: Transform pos: 42.5,65.5 parent: 12 + - uid: 28811 + components: + - type: Transform + pos: 36.5,5.5 + parent: 12 + - uid: 28812 + components: + - type: Transform + pos: 32.5,5.5 + parent: 12 + - uid: 28845 + components: + - type: Transform + pos: 29.5,7.5 + parent: 12 + - uid: 28919 + components: + - type: Transform + pos: 32.5,6.5 + parent: 12 - uid: 29123 components: - type: Transform @@ -190738,11 +191873,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-36.5 parent: 12 - - uid: 2808 - components: - - type: Transform - pos: 10.5,4.5 - parent: 12 - uid: 2823 components: - type: Transform @@ -191081,12 +192211,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-14.5 parent: 12 - - uid: 4175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 12 - uid: 4177 components: - type: Transform @@ -191239,11 +192363,6 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 12 - - uid: 4917 - components: - - type: Transform - pos: 10.5,5.5 - parent: 12 - uid: 4959 components: - type: Transform @@ -191260,12 +192379,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 12 - - uid: 5107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 12 - uid: 5178 components: - type: Transform @@ -191312,12 +192425,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 12 - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 12 - uid: 5498 components: - type: Transform @@ -191354,6 +192461,12 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 12 + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 12 - uid: 5827 components: - type: Transform @@ -191576,12 +192689,6 @@ entities: - type: Transform pos: 6.5,76.5 parent: 12 - - uid: 6719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 12 - uid: 6742 components: - type: Transform @@ -191999,12 +193106,6 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-32.5 parent: 12 - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 12 - uid: 7603 components: - type: Transform @@ -192131,12 +193232,6 @@ entities: - type: Transform pos: 46.5,9.5 parent: 12 - - uid: 9458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,10.5 - parent: 12 - uid: 9594 components: - type: Transform @@ -192486,12 +193581,6 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 12 - - uid: 11203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,32.5 - parent: 12 - uid: 11208 components: - type: Transform @@ -192525,26 +193614,11 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,20.5 parent: 12 - - uid: 11360 - components: - - type: Transform - pos: 9.5,3.5 - parent: 12 - uid: 11363 components: - type: Transform pos: 40.5,14.5 parent: 12 - - uid: 11390 - components: - - type: Transform - pos: 27.5,13.5 - parent: 12 - - uid: 11392 - components: - - type: Transform - pos: 29.5,13.5 - parent: 12 - uid: 11393 components: - type: Transform @@ -192587,21 +193661,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,26.5 parent: 12 - - uid: 11448 - components: - - type: Transform - pos: 10.5,3.5 - parent: 12 - - uid: 11464 - components: - - type: Transform - pos: 50.5,13.5 - parent: 12 - - uid: 11465 - components: - - type: Transform - pos: 49.5,13.5 - parent: 12 - uid: 11466 components: - type: Transform @@ -192627,11 +193686,6 @@ entities: - type: Transform pos: 34.5,13.5 parent: 12 - - uid: 11505 - components: - - type: Transform - pos: 35.5,13.5 - parent: 12 - uid: 11506 components: - type: Transform @@ -192697,11 +193751,6 @@ entities: - type: Transform pos: 47.5,18.5 parent: 12 - - uid: 11553 - components: - - type: Transform - pos: 46.5,22.5 - parent: 12 - uid: 11554 components: - type: Transform @@ -192748,11 +193797,6 @@ entities: - type: Transform pos: 31.5,20.5 parent: 12 - - uid: 11591 - components: - - type: Transform - pos: 31.5,21.5 - parent: 12 - uid: 11595 components: - type: Transform @@ -192832,11 +193876,6 @@ entities: - type: Transform pos: 50.5,23.5 parent: 12 - - uid: 11646 - components: - - type: Transform - pos: 50.5,22.5 - parent: 12 - uid: 11647 components: - type: Transform @@ -196010,11 +197049,6 @@ entities: - type: Transform pos: 52.5,9.5 parent: 12 - - uid: 25470 - components: - - type: Transform - pos: 51.5,9.5 - parent: 12 - uid: 25492 components: - type: Transform @@ -196108,12 +197142,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-41.5 parent: 12 - - uid: 25661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 12 - uid: 25662 components: - type: Transform @@ -196224,6 +197252,18 @@ entities: - type: Transform pos: 29.5,-29.5 parent: 12 + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 12 + - uid: 26698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,9.5 + parent: 12 - uid: 26830 components: - type: Transform @@ -196234,6 +197274,12 @@ entities: - type: Transform pos: -57.5,-31.5 parent: 12 + - uid: 27025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 12 - uid: 27031 components: - type: Transform @@ -196488,6 +197534,17 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 12 + - uid: 28924 + components: + - type: Transform + pos: 44.5,9.5 + parent: 12 + - uid: 28928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 12 - uid: 29116 components: - type: Transform @@ -196626,6 +197683,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 12 + - uid: 31889 + components: + - type: Transform + pos: 41.5,1.5 + parent: 12 - proto: WallSolidDiagonal entities: - uid: 24234 @@ -196749,6 +197811,17 @@ entities: - type: Transform pos: -48.5,66.5 parent: 12 + - uid: 11332 + components: + - type: Transform + pos: 45.5,9.5 + parent: 12 + - uid: 11364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 12 - uid: 11580 components: - type: Transform @@ -197018,12 +198091,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 - - uid: 20884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 12 - uid: 21608 components: - type: Transform @@ -197046,6 +198113,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,25.5 parent: 12 + - uid: 24452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 12 - uid: 24635 components: - type: Transform @@ -197154,12 +198227,30 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 12 + - uid: 26816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,8.5 + parent: 12 + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 12 - uid: 27172 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,17.5 parent: 12 + - uid: 27217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 12 - uid: 27226 components: - type: Transform @@ -197176,6 +198267,24 @@ entities: - type: Transform pos: -9.5,-35.5 parent: 12 + - uid: 27304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,32.5 + parent: 12 + - uid: 27316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 12 + - uid: 27385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 12 - uid: 27413 components: - type: Transform @@ -197218,11 +198327,40 @@ entities: - type: Transform pos: -51.5,-13.5 parent: 12 - - uid: 28770 + - uid: 28239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-3.5 + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 12 + - uid: 28391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,22.5 + parent: 12 + - uid: 28701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 12 + - uid: 28702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 12 + - uid: 28703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,9.5 + parent: 12 + - uid: 28942 + components: + - type: Transform + pos: 49.5,9.5 parent: 12 - uid: 29115 components: @@ -197593,12 +198731,21 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 +- proto: WarningCO2 + entities: + - uid: 26826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 12 - proto: WarningN2 entities: - - uid: 27182 + - uid: 26827 components: - type: Transform - pos: 59.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-7.5 parent: 12 - uid: 30433 components: @@ -197607,29 +198754,44 @@ entities: parent: 12 - proto: WarningO2 entities: - - uid: 27183 + - uid: 26828 components: - type: Transform - pos: 61.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-9.5 parent: 12 - proto: WarningPlasma entities: - - uid: 27202 + - uid: 26832 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 12 +- proto: WarningTritium + entities: + - uid: 26840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 parent: 12 - proto: WarningWaste entities: - - uid: 27028 + - uid: 26764 components: - type: Transform - pos: 67.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,2.5 parent: 12 - - uid: 27906 + - uid: 26765 components: + - type: MetaData + desc: WARNING! Water vapor flow tube. Ensure the flow is disengaged before working. + name: water vapor warning sign - type: Transform - pos: 65.5,9.5 + rot: 3.141592653589793 rad + pos: 23.5,-1.5 parent: 12 - proto: WaterCooler entities: @@ -197790,11 +198952,6 @@ entities: - type: Transform pos: 58.5,52.5 parent: 12 - - uid: 27030 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 12 - uid: 27328 components: - type: Transform @@ -197805,6 +198962,11 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 12 + - uid: 28842 + components: + - type: Transform + pos: 29.5,12.5 + parent: 12 - uid: 31370 components: - type: Transform @@ -197849,15 +199011,20 @@ entities: - type: Transform pos: 13.5,21.5 parent: 12 - - uid: 15785 + - uid: 5034 components: - type: Transform - pos: 9.5,32.5 + pos: 25.5,8.5 parent: 12 - - uid: 26919 + - uid: 5675 components: - type: Transform - pos: 58.5,-3.5 + pos: 24.5,-2.5 + parent: 12 + - uid: 15785 + components: + - type: Transform + pos: 9.5,32.5 parent: 12 - proto: WeaponCapacitorRecharger entities: @@ -198043,8 +199210,8 @@ entities: - uid: 9394 components: - type: Transform - rot: -6.283185307179586 rad - pos: 55.34557,2.520393 + rot: -25.132741228718352 rad + pos: 17.416166,-13.405632 parent: 12 - uid: 10394 components: @@ -198085,11 +199252,6 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 12 - - uid: 8799 - components: - - type: Transform - pos: 32.5,2.5 - parent: 12 - uid: 8878 components: - type: Transform @@ -198160,30 +199322,35 @@ entities: - type: Transform pos: 48.5,-32.5 parent: 12 - - uid: 26552 + - uid: 26892 components: - type: Transform - pos: 45.5,-2.5 + pos: 16.5,20.5 parent: 12 - - uid: 26803 + - uid: 27022 components: - type: Transform - pos: 70.5,-5.5 + pos: 45.5,-3.5 parent: 12 - uid: 27846 components: - type: Transform pos: -15.5,69.5 parent: 12 - - uid: 28239 + - uid: 28651 components: - type: Transform - pos: 15.5,17.5 + pos: -4.5,-23.5 parent: 12 - - uid: 28651 + - uid: 28750 components: - type: Transform - pos: -4.5,-23.5 + pos: 8.5,-7.5 + parent: 12 + - uid: 28841 + components: + - type: Transform + pos: 29.5,11.5 parent: 12 - uid: 30402 components: @@ -198283,12 +199450,6 @@ entities: - type: Transform pos: -38.5,-21.5 parent: 12 - - uid: 6794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 12 - uid: 6982 components: - type: Transform @@ -198723,6 +199884,12 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,3.5 parent: 12 + - uid: 31908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,11.5 + parent: 12 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 23890 @@ -198933,11 +200100,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 12 - - uid: 356 - components: - - type: Transform - pos: 9.5,2.5 - parent: 12 - uid: 371 components: - type: Transform @@ -199102,11 +200264,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-37.5 parent: 12 - - uid: 7124 - components: - - type: Transform - pos: 49.5,9.5 - parent: 12 - uid: 7382 components: - type: Transform @@ -199161,11 +200318,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-17.5 parent: 12 - - uid: 9398 - components: - - type: Transform - pos: 47.5,9.5 - parent: 12 - uid: 9637 components: - type: Transform @@ -199184,16 +200336,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 12 - - uid: 11485 - components: - - type: Transform - pos: 45.5,9.5 - parent: 12 - - uid: 11486 - components: - - type: Transform - pos: 44.5,9.5 - parent: 12 - uid: 11515 components: - type: Transform @@ -199774,21 +200916,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-12.5 parent: 12 - - uid: 20542 - components: - - type: Transform - pos: 53.5,11.5 - parent: 12 - - uid: 20543 - components: - - type: Transform - pos: 53.5,12.5 - parent: 12 - - uid: 20552 - components: - - type: Transform - pos: 53.5,10.5 - parent: 12 - uid: 22292 components: - type: Transform @@ -199836,16 +200963,6 @@ entities: - type: Transform pos: -54.5,-15.5 parent: 12 - - uid: 26562 - components: - - type: Transform - pos: 9.5,0.5 - parent: 12 - - uid: 26907 - components: - - type: Transform - pos: 48.5,9.5 - parent: 12 - uid: 27276 components: - type: Transform @@ -199917,11 +201034,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,0.5 parent: 12 - - uid: 5979 - components: - - type: Transform - pos: -40.5,-22.5 - parent: 12 - uid: 28193 components: - type: Transform @@ -201022,6 +202134,12 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-10.5 parent: 12 + - uid: 27236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,12.5 + parent: 12 - uid: 27514 components: - type: Transform @@ -201106,6 +202224,12 @@ entities: rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 + - uid: 31907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,10.5 + parent: 12 - proto: Wirecutter entities: - uid: 8737 @@ -201179,11 +202303,6 @@ entities: - 31202 - proto: Wrench entities: - - uid: 5053 - components: - - type: Transform - pos: 18.33702,3.4807546 - parent: 12 - uid: 5916 components: - type: Transform @@ -201204,7 +202323,8 @@ entities: - uid: 7197 components: - type: Transform - pos: 2.478019,-1.4704378 + rot: -12.566370614359172 rad + pos: 2.2218802,-0.60405827 parent: 12 - uid: 9080 components: @@ -201233,11 +202353,6 @@ entities: - type: Transform pos: 44.512337,53.244392 parent: 12 - - uid: 27207 - components: - - type: Transform - pos: 72.52122,-5.3538737 - parent: 12 - uid: 28277 components: - type: Transform @@ -201248,6 +202363,12 @@ entities: - type: Transform pos: 5.7223816,16.863264 parent: 12 + - uid: 29302 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.46028,4.4797335 + parent: 12 - proto: Zipties entities: - uid: 13512 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index ab723857237130..54ef4d55104172 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -98863,11 +98863,8 @@ entities: - uid: 27828 components: - type: Transform - pos: 97.5,33.5 + pos: 31.5,-31.5 parent: 13329 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 13050 @@ -198140,7 +198137,7 @@ entities: - uid: 13290 components: - type: Transform - pos: 31.5,-31.5 + pos: 97.5,33.5 parent: 13329 - uid: 35415 components: diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index e8c1f0bb6a229b..1f210e438adbe6 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -10880,7 +10880,7 @@ entities: pos: -42.5,29.5 parent: 5350 - type: Door - secondsUntilStateChange: -5682.053 + secondsUntilStateChange: -5745.716 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -63381,14 +63381,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 26528 + - uid: 26984 components: - type: Transform - pos: 108.5,-7.5 + pos: 29.5,-36.5 parent: 5350 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 10811 @@ -144591,6 +144588,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 26528 + components: + - type: Transform + pos: 108.5,-7.5 + parent: 5350 - uid: 26547 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 398fdeb398f0db..8cde5f558c2a76 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -226,7 +226,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAABYAAAAAAAYAAAAAABYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAADYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAARAAAAAAAgQAAAAAAZQAAAAAAZQAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAABZQAAAAACYAAAAAACYAAAAAABYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -366,7 +366,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAAAYAAAAAADbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAAAYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAAAUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAAAZQAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZQAAAAACZQAAAAADYAAAAAACYAAAAAACYAAAAAACYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAJQAAAAAAJQAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAABYAAAAAABYAAAAAADbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -459,9 +459,6 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 961: -57,-9 - 962: -56,-9 - 963: -55,-9 964: -55,-10 965: -56,-10 966: -57,-10 @@ -472,6 +469,9 @@ entities: 971: -56,-12 972: -57,-12 3489: -3,-31 + 3930: -57,-13 + 3931: -56,-13 + 3932: -55,-13 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -1258,7 +1258,6 @@ entities: 3286: -53,-11 3287: -53,-12 3288: -53,-13 - 3289: -53,-15 3307: -58,3 3308: -57,3 3309: -56,3 @@ -1485,17 +1484,15 @@ entities: 3245: -58,1 3246: -58,0 3247: -58,-1 - 3248: -58,-8 - 3249: -58,-9 3250: -58,-10 3251: -58,-11 3252: -58,-12 - 3253: -58,-13 3254: -58,-14 3255: -58,-15 3343: -47,-5 3351: -47,-2 3360: -50,-2 + 3942: -58,-13 - node: color: '#D381C996' id: BrickTileWhiteInnerNw @@ -1693,8 +1690,6 @@ entities: decals: 3256: -58,-15 3257: -57,-15 - 3258: -54,-15 - 3259: -53,-15 3260: -53,-13 3261: -53,-12 3262: -53,-11 @@ -1710,7 +1705,6 @@ entities: 3272: -53,1 3273: -53,2 3274: -53,3 - 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -1923,18 +1917,12 @@ entities: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3291: -53,-15 - 3292: -54,-15 3293: -57,-15 3294: -58,-15 3295: -58,-14 - 3296: -58,-13 3297: -58,-12 3298: -58,-11 3299: -58,-10 - 3300: -58,-9 - 3301: -58,-8 - 3302: -58,-7 3303: -58,0 3304: -58,1 3305: -58,2 @@ -1942,6 +1930,9 @@ entities: 3346: -47,2 3352: -47,-2 3359: -50,1 + 3941: -58,-13 + 3943: -58,-9 + 3946: -54,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -5676,25 +5667,26 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3340: -58,-13 3556: -22,42 3572: -31,35 + 3929: -58,-14 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 979: -56,-7 983: -56,-3 - 999: -54,-13 3555: -18,42 3573: -24,35 + 3928: -54,-14 + 3940: -56,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3339: -58,-8 3553: -22,44 3571: -31,37 + 3927: -58,-9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5702,9 +5694,10 @@ entities: 977: -56,-1 978: -56,-1 984: -56,-5 - 998: -54,-8 3554: -18,44 3570: -24,37 + 3926: -54,-9 + 3939: -56,-7 - node: color: '#FFFFFFFF' id: WarnFull @@ -5712,6 +5705,7 @@ entities: 2479: 12,53 2480: 13,53 2481: 14,53 + 3944: -53,-15 - node: color: '#BC863FFF' id: WarnFullGreyscale @@ -5732,8 +5726,9 @@ entities: 3334: -58,-12 3335: -58,-11 3336: -58,-10 - 3337: -58,-9 3549: -22,43 + 3924: -58,-13 + 3945: -54,-15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5769,14 +5764,15 @@ entities: id: WarnLineN decals: 974: -57,-1 - 988: -57,-8 - 989: -56,-8 - 990: -56,-8 - 991: -55,-8 3341: -58,-1 3546: -19,44 3547: -20,44 3548: -21,44 + 3918: -57,-9 + 3919: -56,-9 + 3920: -55,-9 + 3934: -58,-7 + 3935: -57,-7 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5787,20 +5783,18 @@ entities: 993: -54,-11 994: -54,-12 2462: 17,49 - 3338: -54,-9 3540: 21,46 3541: 21,47 3542: 21,48 3543: 21,49 3545: -18,43 + 3925: -54,-13 + 3938: -56,-8 - node: color: '#FFFFFFFF' id: WarnLineW decals: 973: -57,-7 - 995: -55,-13 - 996: -56,-13 - 997: -57,-13 2458: 12,46 2459: 13,46 2460: 14,46 @@ -5812,10 +5806,15 @@ entities: 2476: 19,51 2477: 15,53 2478: 11,53 - 3342: -58,-7 3550: -21,42 3551: -20,42 3552: -19,42 + 3921: -57,-14 + 3922: -56,-14 + 3923: -55,-14 + 3933: -58,-7 + 3936: -58,-9 + 3937: -57,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7372,9 +7371,9 @@ entities: 3: 3276 0: 32768 -16,-5: - 0: 3080 + 0: 35848 -16,-4: - 3: 140 + 3: 52428 -15,-7: 3: 4368 0: 3276 @@ -7941,16 +7940,15 @@ entities: 0: 4879 3: 52224 14,5: - 0: 4593 + 0: 7633 14,6: - 0: 1 + 0: 15 3: 13056 15,5: - 0: 248 + 0: 35768 15,6: - 3: 14024 - 16,6: - 3: 34947 + 0: 15 + 3: 13824 16,7: 3: 55544 13,12: @@ -8101,19 +8099,18 @@ entities: 0: 1 -2,-18: 0: 4096 + -16,-3: + 3: 17612 -16,-2: - 3: 12 + 3: 4 0: 51200 -16,-1: 0: 2240 - -16,-3: - 3: 32768 -15,-3: - 3: 4369 - 0: 52428 - -15,-2: 3: 1 - 0: 64972 + 0: 56796 + -15,-2: + 0: 64975 -14,-3: 0: 65535 -14,-2: @@ -8121,7 +8118,9 @@ entities: 16,4: 3: 25188 16,5: - 3: 63010 + 3: 58914 + 16,6: + 3: 34946 16,3: 3: 18018 17,5: @@ -11271,11 +11270,19 @@ entities: parent: 2 - type: DeviceList devices: - - 29003 - - 29004 + - 10840 + - 10841 - 29050 - 9276 - - 28969 + - 10839 + - type: DeviceLinkSource + linkedPorts: + 12356: + - AirWarning: Close + - AirDanger: Close + 13577: + - AirDanger: Close + - AirWarning: Close - proto: AirCanister entities: - uid: 4223 @@ -12350,40 +12357,44 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 826 + - uid: 11331 components: - type: Transform - pos: -60.5,-20.5 + pos: -58.5,-2.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 28494: + 11335: - DoorStatus: DoorBolt - - uid: 11331 + - uid: 11332 components: - type: Transform - pos: -58.5,-2.5 + pos: -58.5,-4.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11335: + 11336: - DoorStatus: DoorBolt - - uid: 11332 + - uid: 29523 components: - type: Transform - pos: -58.5,-4.5 + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 11336: - - DoorStatus: DoorBolt - - uid: 28494 + 827: + - DoorStatus: InputB + 29543: + - DoorStatus: InputA + - DoorStatus: InputB + - uid: 29528 components: - type: Transform pos: -58.5,-19.5 @@ -12392,19 +12403,39 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 826: - - DoorStatus: DoorBolt - - uid: 28495 + 29536: + - DoorStatus: InputA + 29539: + - DoorStatus: InputA + - uid: 29532 components: - type: Transform + rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 277: - - DoorStatus: DoorBolt + 29538: + - DoorStatus: InputA + 29534: + - DoorStatus: InputA + - uid: 29541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29542: + - DoorStatus: InputA + - DoorStatus: InputB + 826: + - DoorStatus: InputB - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 234 @@ -12914,20 +12945,6 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-17.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5767: - - DoorStatus: InputA - - DockStatus: InputA - - DockStatus: InputB - - type: DeviceLinkSink - invokeCounter: 1 - uid: 353 components: - type: Transform @@ -13016,6 +13033,42 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 21002 + - uid: 24126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 277: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29540: + - DockStatus: InputA + 29535: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 29530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10843: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + 29533: + - DockStatus: InputA + 29537: + - DockStatus: InputA + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 24601 @@ -14417,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59140.387 + secondsUntilStateChange: -75908.84 state: Opening - uid: 6934 components: @@ -14429,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59143.02 + secondsUntilStateChange: -75911.48 state: Opening - uid: 6935 components: @@ -14441,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.87 + secondsUntilStateChange: -75910.33 state: Opening - uid: 6936 components: @@ -14452,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -59141.086 + secondsUntilStateChange: -75909.55 state: Opening - proto: AirlockTheatreLocked entities: @@ -15623,14 +15676,6 @@ entities: - type: Transform pos: 21.42931,-41.39281 parent: 2 -- proto: AntimovCircuitBoard - entities: - - uid: 29447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.214676,22.569477 - parent: 2 - proto: APCBasic entities: - uid: 1172 @@ -36971,6 +37016,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Biogenerator + entities: + - uid: 10836 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 - proto: BlastDoor entities: - uid: 7042 @@ -37187,6 +37239,430 @@ entities: - type: Transform pos: -11.612324,33.571518 parent: 2 + - uid: 11365 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7896 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11371 + components: + - type: MetaData + name: Smark Dock Mk VII User Manual + - type: Transform + parent: 7898 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 11372 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + parent: 7899 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + + - type: Physics + canCollide: False + - uid: 29573 + components: + - type: MetaData + name: Smart Dock Mk VII User Manual + - type: Transform + rot: 9.42477796076938 rad + pos: -53.18508,9.538769 + parent: 2 + - type: Paper + content: >+ + [head=1][color=darkblue][bold]NanoTrasen Smart Dock Mk VII™ Official Guide[/bold][/color][/head] + + + [head=2][color=darkgrey][bold]Welcome, Esteemed Employee![/bold][/color][/head] + + You are now the proud user of the state-of-the-art [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color], the most **overly** advanced docking system in the galaxy! Please read this manual carefully to avoid the usual docking-related incidents. Every successful dock means profit for [bolditalic]NanoTrasen™[/bolditalic] and, in theory, job security for you! + + + [italic]Note: This dock is classified as "self-learning." What it's learning is still under investigation.[/italic] + + + [head=2][color=darkgrey][bold]Docking Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] Approach the dock with your shuttle’s [color=darkorange][bolditalic]Auto-Brake System™[/bolditalic][/color] engaged. If the brakes are non-functional, proceed to [italic]Step 7: Impact Damage Protocol[/bold]. + + [bullet] [bold]Step 2:[/bold] Check that the [color=darkorange][bolditalic]Quantum Stabilizer Unit[/bolditalic][/color] is in "Ready Mode" and not "Phasing Between Realities" (a common glitch). If it’s the latter, reboot the system by sacrificing a power cell. + + [bullet] [bold]Step 3:[/bold] Align your shuttle with the [color=darkorange][bolditalic]Neuro-Synaptic Docking Beam™[/bolditalic][/color] by using the [bolditalic]manual override[/bolditalic]—the *one* thing on this dock that’s still manual. + + [bullet] [bold]Step 4:[/bold] Initiate the [color=darkorange][bolditalic]Adaptive Latching Sequence™[/bolditalic][/color] by pressing the [color=silver][bold]big silver button[/bold][/color]. Don’t press the other buttons—unless you like floating in the vacuum of space. + + [bullet] [bold]Step 5:[/bold] Wait patiently as the dock "thinks" about attaching your shuttle. This process may take anywhere from 3 seconds to 3 hours, depending on how much the dock likes you. + + + [head=2][color=darkgrey][bold]Troubleshooting[/bold][/color][/head] + + + [bolditalic]Problem: + + The dock doesn’t respond when you approach.[/bolditalic] + + Solution: It’s just being shy. Give it some encouragement by knocking lightly on the hull, or jostling the [color=darkorange][bolditalic]Aether Coil Modulator[/bolditalic][/color]. If no response, consult the [color=blue][bold]Technical Support AI[/bold][/color] (usually known as "Door Stuck"). + + + [bolditalic]Problem: + + The shuttle is stuck halfway through the docking process.[/bolditalic] + + Solution: This is an unfortunate but expected outcome. Reboot the dock, reattempt the process, and pray. Alternatively, try "tugging" the shuttle out, but be prepared for the consequences. + + + [bolditalic]Problem: + + The dock has *disengaged itself* mid-operation.[/bolditalic] + + Solution: This is a feature of the [color=darkblue][bold]NanoTrasen Smart Dock Mk VII™[/bold][/color], called the [color=darkorange][bolditalic]Premature Release Safety Protocol™[/bolditalic][/color]. It's designed to keep you on your toes. Simply re-dock and hope it doesn’t happen again (spoiler: it will). + + + [head=2][color=darkgrey][bold]Emergency Procedures[/bold][/color][/head] + + + [bullet] [bold]Step 1:[/bold] In the event of catastrophic failure, remain calm and activate the [color=darkorange][bolditalic]Emergency Detachment Lever™[/bolditalic][/color]. This will forcibly eject your shuttle—along with any unresolved docking issues—into deep space. Problem solved! + + [bullet] [bold]Step 2:[/bold] If the shuttle begins spinning uncontrollably, use the [color=darkorange][bolditalic]Stabilizer Override Control™[/bolditalic][/color]. If that fails, use the age-old technique: scream and brace for impact. + + [bullet] [bold]Step 3:[/bold] In case of a complete docking collapse (which occurs in *only* 23% of cases), fill out [color=darkblue][italic]Form D-7: Docking Disaster Report™[/italic][/color]. Your report will be reviewed within 3-5 business cycles, after which it will be safely ignored. + + + [head=2][color=darkgrey][bold]Common Features[/bold][/color][/head] + + + The [color=darkblue][bolditalic]NanoTrasen Smart Dock Mk VII™[/bolditalic][/color] comes with a wide variety of [bold]exciting[/bold] and [bold]untested[/bold] features: + + + [bullet] [bold]Auto-Align Mode™:[/bold] When this works, the dock aligns perfectly with your shuttle. When it doesn't, it aligns with... something else. + + [bullet] [bold]Graviton Locking Arms™:[/bold] These arms are designed to gently secure your shuttle—unless they randomly decide to engage [bold]Crush Mode™[/bold], in which case, hold on tight. + + [bullet] [bold]Friendly Docking Lights™:[/bold] These lights blink and flash to give the illusion that the dock is working, even when it’s not. + + + [head=2][color=darkgrey][bold]FAQ: Frequently Avoided Questions[/bold][/color][/head] + + + [bolditalic]Q: What do I do if the dock’s lights go out suddenly?[/bolditalic] + + A: Nothing. Just accept the darkness. The dock has either entered [color=darkorange][bolditalic]Sleep Mode™[/bolditalic][/color], or something unspeakable is about to happen. + + + [bolditalic]Q: Why does the dock occasionally whisper my name?[/bolditalic] + + A: The dock is semi-sentient and enjoys toying with your mental state. We suggest playing along until it decides you’re no longer amusing. + + + [bolditalic]Q: How do I know if the docking process is complete?[/bolditalic] + + A: You'll know it's done when your shuttle stops shaking violently and the alarms stop blaring. Or when you black out—whichever comes first. + + + [head=3][color=darkblue][bold]Thank You for Choosing NanoTrasen™[/bold][/color][/head] + + At [color=darkblue][bolditalic]NanoTrasen™[/bolditalic][/color], we believe that every dock is an opportunity for improvement. Mostly yours. And remember, your [color=darkblue][italic]Corporate Loyalty Bonus™[/italic][/color] is tied directly to how many of these manuals you distribute. + + + - proto: BookMedicalOfficer entities: - uid: 29053 @@ -37285,6 +37761,18 @@ entities: - type: Transform pos: -6.5,32.5 parent: 2 + - type: Storage + storedItems: + 11365: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11365 - uid: 7897 components: - type: Transform @@ -37295,11 +37783,35 @@ entities: - type: Transform pos: -6.5,34.5 parent: 2 + - type: Storage + storedItems: + 11371: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11371 - uid: 7899 components: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Storage + storedItems: + 11372: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11372 - uid: 7900 components: - type: Transform @@ -37529,9 +38041,9 @@ entities: - uid: 15048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.241848,9.595246 - parent: 2 + parent: 29261 + - type: Physics + canCollide: False - uid: 29291 components: - type: Transform @@ -37600,11 +38112,11 @@ entities: 11862: position: 1,0 _rotation: South - - uid: 23238 + - uid: 29521 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.605057,5.3996086 + pos: -56.42585,5.4972024 parent: 2 - type: ContainerContainer containers: @@ -37677,9 +38189,9 @@ entities: - uid: 15047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.658516,9.595246 - parent: 2 + parent: 29260 + - type: Physics + canCollide: False - uid: 28614 components: - type: Transform @@ -37778,6 +38290,12 @@ entities: parent: 3609 - type: Physics canCollide: False + - uid: 11381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.65753,9.624434 + parent: 2 - uid: 24154 components: - type: Transform @@ -38006,13 +38524,21 @@ entities: - uid: 9656 components: - type: Transform - pos: 7.5352507,21.61231 + pos: 3.4859555,19.501976 parent: 2 - uid: 22743 components: - type: Transform pos: 7.3088074,9.718449 parent: 21002 +- proto: ButtonFrameCaution + entities: + - uid: 5767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 10949 @@ -55628,6 +56154,61 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 29496 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 29497 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 29498 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 29499 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 29500 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 29501 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 29502 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 29503 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 29504 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 29505 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29506 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -74612,6 +75193,156 @@ entities: rot: 3.141592653589793 rad pos: 52.5,27.5 parent: 2 + - uid: 29547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 29548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 2 + - uid: 29549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-12.5 + parent: 2 + - uid: 29550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 29551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - uid: 29552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - uid: 29553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 29554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 2 + - uid: 29555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 29556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 29557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - uid: 29558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-22.5 + parent: 2 + - uid: 29559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 + - uid: 29561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - uid: 29562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-24.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-26.5 + parent: 2 + - uid: 29566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-26.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-25.5 + parent: 2 + - uid: 29568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-25.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 29571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -78394,6 +79125,11 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 11325 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 - uid: 11344 components: - type: Transform @@ -78466,6 +79202,11 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 - uid: 11363 components: - type: Transform @@ -78476,6 +79217,11 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - uid: 11565 components: - type: Transform @@ -78526,6 +79272,11 @@ entities: - type: Transform pos: -57.5,-26.5 parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 - uid: 12092 components: - type: Transform @@ -78562,6 +79313,17 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-14.5 parent: 2 + - uid: 20597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 - uid: 29007 components: - type: Transform @@ -78609,6 +79371,44 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,20.5 parent: 2 + - uid: 29508 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 29511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 29512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - uid: 29515 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 29516 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 29517 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 20270 @@ -88783,7 +89583,7 @@ entities: - uid: 23236 components: - type: Transform - pos: -52.941887,9.867835 + pos: -52.803364,9.780684 parent: 2 - proto: DrinkGlass entities: @@ -90777,6 +91577,18 @@ entities: - type: Transform pos: 28.730253,22.5 parent: 2 + - type: Storage + storedItems: + 10837: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 10837 - uid: 19175 components: - type: Transform @@ -90792,6 +91604,18 @@ entities: - type: Transform pos: -52.221172,11.5 parent: 2 + - type: Storage + storedItems: + 15047: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15047 - uid: 29261 components: - type: Transform @@ -90802,6 +91626,9 @@ entities: 29262: position: 0,0 _rotation: South + 15048: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -90809,11 +91636,7 @@ entities: occludes: True ents: - 29262 - - uid: 29268 - components: - - type: Transform - pos: -54.773254,11.5 - parent: 2 + - 15048 - proto: filingCabinetTall entities: - uid: 19177 @@ -93232,7 +94055,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -50464.367 + secondsUntilStateChange: -67232.83 - type: DeviceNetwork deviceLists: - 18275 @@ -125898,6 +126721,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14721 components: - type: Transform @@ -127782,6 +128607,8 @@ entities: - type: DeviceNetwork deviceLists: - 18463 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14720 components: - type: Transform @@ -129094,7 +129921,9 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 28969 +- proto: GasVentScrubberVox + entities: + - uid: 10839 components: - type: Transform rot: 1.5707963267948966 rad @@ -129105,22 +129934,22 @@ entities: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29003 + - uid: 10840 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -12.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - 231 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 29004 + - uid: 10841 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: -13.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -132571,18 +133400,6 @@ entities: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 10845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 10847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 10925 components: - type: Transform @@ -132671,29 +133488,23 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,6.5 parent: 2 - - uid: 11340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,1.5 - parent: 2 - - uid: 11341 + - uid: 11327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,2.5 + pos: -58.5,-13.5 parent: 2 - - uid: 11342 + - uid: 11340 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-8.5 + pos: -58.5,1.5 parent: 2 - - uid: 11343 + - uid: 11341 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-7.5 + pos: -58.5,2.5 parent: 2 - uid: 11351 components: @@ -132713,60 +133524,18 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 - - uid: 11361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 2 - uid: 11362 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 - - uid: 11366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - uid: 11367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - - uid: 11372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - uid: 11380 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,4.5 parent: 2 - - uid: 11381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 - parent: 2 - uid: 11383 components: - type: Transform @@ -135155,6 +135924,12 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,34.5 parent: 2 + - uid: 23245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -135455,11 +136230,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-19.5 parent: 21002 - - uid: 24126 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 24133 components: - type: Transform @@ -136322,6 +137092,18 @@ entities: rot: 3.141592653589793 rad pos: 52.5,66.5 parent: 21002 + - uid: 28969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 - uid: 29043 components: - type: Transform @@ -136434,12 +137216,36 @@ entities: rot: 3.141592653589793 rad pos: 60.5,24.5 parent: 2 + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 29458 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,23.5 parent: 2 + - uid: 29493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 29494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - uid: 29495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -136832,18 +137638,6 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-56.5 parent: 2 - - uid: 20597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-7.5 - parent: 2 - - uid: 20610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 2 - uid: 20611 components: - type: Transform @@ -137810,7 +138604,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -87296.22 + secondsUntilStateChange: -104064.67 state: Opening - uid: 5211 components: @@ -139548,8 +140342,228 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGateAnd + entities: + - uid: 2259 + components: + - type: Transform + anchored: True + pos: -59.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12066: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 28494 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29541: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29507 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29523: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29527 + components: + - type: Transform + anchored: True + pos: -59.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 11297: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29533 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29540: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29534 + components: + - type: Transform + anchored: True + pos: -61.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29539: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29535 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29537: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29536 + components: + - type: Transform + anchored: True + pos: -61.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29538: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static +- proto: LogicGateNor + entities: + - uid: 29542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputB + - uid: 29543 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateOr entities: + - uid: 826 + components: + - type: Transform + anchored: True + pos: -60.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputA + 12066: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 827 + components: + - type: Transform + anchored: True + pos: -60.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 2259: + - Output: InputA + 11297: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 11297 + components: + - type: Transform + anchored: True + pos: -58.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29528: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 12066 + components: + - type: Transform + anchored: True + pos: -58.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29532: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static - uid: 28922 components: - type: Transform @@ -139583,8 +140597,146 @@ entities: linkedPorts: 28436: - Output: DoorBolt + - uid: 29522 + components: + - type: Transform + anchored: True + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 11 + - type: DeviceLinkSource + linkedPorts: + 29527: + - Output: InputB + 2259: + - Output: InputB + 29533: + - Output: InputB + 29535: + - Output: InputB + 29536: + - Output: InputB + 29534: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29529 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29507: + - Output: InputA + 24126: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29531 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28494: + - Output: InputA + 29530: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static + - uid: 29537 + components: + - type: Transform + anchored: True + pos: -61.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static + - uid: 29538 + components: + - type: Transform + anchored: True + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29531: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29539 + components: + - type: Transform + anchored: True + rot: 1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static + - uid: 29540 + components: + - type: Transform + anchored: True + pos: -61.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 29529: + - Output: InputB + - type: Physics + canCollide: False + bodyType: Static - proto: LogicGateXor entities: + - uid: 277 + components: + - type: Transform + anchored: True + pos: -61.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 827: + - Output: InputA + - type: Physics + canCollide: False + bodyType: Static - uid: 5762 components: - type: Transform @@ -139662,65 +140814,65 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 5767 + - uid: 6810 components: - type: Transform anchored: True - pos: -59.5,-17.5 + pos: -11.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 28495: + 12847: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 6810 + - uid: 7854 components: - type: Transform anchored: True - pos: -11.5,-82.5 + rot: -1.5707963267948966 rad + pos: -4.5,52.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 12847: + 7764: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 7854 + - uid: 7856 components: - type: Transform anchored: True rot: -1.5707963267948966 rad - pos: -4.5,52.5 + pos: -6.5,52.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7764: + 7763: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 7856 + - uid: 10843 components: - type: Transform anchored: True - rot: -1.5707963267948966 rad - pos: -6.5,52.5 + pos: -61.5,-17.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7763: - - Output: DoorBolt + 826: + - Output: InputA - type: Physics canCollide: False bodyType: Static @@ -140249,6 +141401,13 @@ entities: - type: Transform pos: -27.514933,-49.371128 parent: 2 +- proto: MechEquipmentGrabberSmall + entities: + - uid: 29520 + components: + - type: Transform + pos: -56.05085,0.6887263 + parent: 2 - proto: MedicalBed entities: - uid: 1313 @@ -140867,6 +142026,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29490 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 8864 @@ -141010,14 +142174,6 @@ entities: - type: Transform pos: -27.493137,-34.27025 parent: 2 -- proto: OverlordCircuitBoard - entities: - - uid: 29448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.798008,22.579893 - parent: 2 - proto: OxygenCanister entities: - uid: 723 @@ -141272,9 +142428,112 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] + AUTHORIZATION FORM[/color][/bold][/head] + [bold]=====================================================[/bold] + + + [bold]Authorizing Entity:[/bold] + + Name: ______________________ , Position: _______________________ + + + [bold]Approved Shipwright(s):[/bold] + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + Name: ______________________ , Position: _______________________ + + + [bold]1. PROJECT DETAILS + + [/bold] + + Shuttle Name: ________________________ + + Class/Model: __________________________ + + Design Specifications: ______________________________ + + + [bold]2. AUTHORIZATION + + [/bold] + + The Authorizing Entity grants the Shipwright permission to commence construction of the specified shuttle. All designs and materials are to be approved by the Authorizing Entity before fabrication begins. + + + [bold]3. TERMS OF CONSTRUCTION + + [/bold] + + [bullet] [bold]Duration:[/bold] Construction to be completed within ______. + + [bullet] [bold]Resources:[/bold] All materials and components required for construction are to be sourced by the Shipwright, with costs covered by the Authorizing Entity only when preapproved unless otherwise specified. + + [bullet] [bold]Modifications:[/bold] Any design changes must receive prior approval from the Authorizing Entity. + + [bullet] [bold]Remittance:[/bold] As payment for authorization and support services the Shipwright agrees to provide the Authorizing Entity the sum of ___________ in either materials or speso equivalent. + + + [bold]4. INSPECTION & TESTING + + [/bold] + + The Authorizing Entity reserves the right to inspect the vessel at any stage of construction. Upon completion, the Shipwright must conduct a series of spaceworthiness tests, overseen by the Authorizing Entity. + + + [bold]5. WARRANTIES & LIABILITY + + [/bold] + + The Shipwright guarantees the vessel will be constructed according to the highest standards of interstellar engineering. Any defects or malfunctions discovered within ______ minutes of delivery must be rectified at the Shipwright’s expense. + + + [bold]6. DISPUTE RESOLUTION + + [/bold] + + Any disagreements will be resolved by the Station’s Resident Arbitrator. + + + [bold]SIGNED: + + [/bold] + + Shipwright(s): + + __________________________ + + __________________________ + + __________________________ + + __________________________ + + + Authorizing Entity: + __________________________ (Stamp) + + + + - type: Physics + canCollide: False + - uid: 7657 + components: + - type: Transform + parent: 3489 + - type: Paper + content: >+ + [bold]=====================================================[/bold] + + + [head=1][bold][color=green] SHUTTLE CONSTRUCTION + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141366,21 +142625,105 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - - uid: 7657 + - uid: 9368 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9369 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9370 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9371 + components: + - type: Transform + parent: 3609 + - type: Physics + canCollide: False + - uid: 9376 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9377 components: - type: Transform parent: 3489 + - type: Physics + canCollide: False + - uid: 9378 + components: + - type: Transform + parent: 3489 + - type: Physics + canCollide: False + - uid: 9684 + components: + - type: Transform + pos: -11.299824,33.680893 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -11.299824,33.540268 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -11.284199,33.399643 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -8.737324,31.732964 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: -8.331074,31.639214 + parent: 2 + - uid: 9897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.647428,-30.309217 + parent: 2 + - uid: 9898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.069303,-30.387342 + parent: 2 + - uid: 10176 + components: + - type: Transform + parent: 2695 + - type: Physics + canCollide: False + - uid: 10837 + components: + - type: Transform + parent: 2693 - type: Paper content: >+ [bold]=====================================================[/bold] [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141472,91 +142815,8 @@ entities: __________________________ (Stamp) - - type: Physics - canCollide: False - - uid: 9368 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9369 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9370 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9371 - components: - - type: Transform - parent: 3609 - - type: Physics - canCollide: False - - uid: 9376 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9377 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9378 - components: - - type: Transform - parent: 3489 - - type: Physics - canCollide: False - - uid: 9684 - components: - - type: Transform - pos: -11.299824,33.680893 - parent: 2 - - uid: 9685 - components: - - type: Transform - pos: -11.299824,33.540268 - parent: 2 - - uid: 9686 - components: - - type: Transform - pos: -11.284199,33.399643 - parent: 2 - - uid: 9687 - components: - - type: Transform - pos: -8.737324,31.732964 - parent: 2 - - uid: 9688 - components: - - type: Transform - pos: -8.331074,31.639214 - parent: 2 - - uid: 9897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.647428,-30.309217 - parent: 2 - - uid: 9898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.069303,-30.387342 - parent: 2 - - uid: 10176 - components: - - type: Transform - parent: 2695 + + - type: Physics canCollide: False - uid: 11861 @@ -141609,31 +142869,31 @@ entities: - uid: 23239 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23240 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23241 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23242 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23243 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 23854 @@ -141661,7 +142921,7 @@ entities: - uid: 29252 components: - type: Transform - parent: 23238 + parent: 29521 - type: Physics canCollide: False - uid: 29253 @@ -141781,9 +143041,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141875,6 +143133,7 @@ entities: __________________________ (Stamp) + - uid: 29262 components: - type: Transform @@ -141885,9 +143144,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -141979,6 +143236,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29265 @@ -141991,9 +143249,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142084,6 +143340,7 @@ entities: __________________________ (Stamp) + - type: Physics canCollide: False - uid: 29266 @@ -142097,9 +143354,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142191,6 +143446,7 @@ entities: __________________________ (Stamp) + - uid: 29267 components: - type: Transform @@ -142202,9 +143458,7 @@ entities: [head=1][bold][color=green] SHUTTLE CONSTRUCTION - AUTHORIZATION - FORM[/color][/bold][/head] - + AUTHORIZATION FORM[/color][/bold][/head] [bold]=====================================================[/bold] @@ -142296,6 +143550,7 @@ entities: __________________________ (Stamp) + - proto: PaperBin10 entities: - uid: 23867 @@ -142583,6 +143838,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.100553,-30.277967 parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.686268,5.695119 + parent: 2 - uid: 11857 components: - type: Transform @@ -142615,12 +143876,6 @@ entities: - type: Transform pos: 12.537674,6.638035 parent: 21002 - - uid: 23245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.667557,5.732942 - parent: 2 - uid: 23436 components: - type: Transform @@ -143056,14 +144311,16 @@ entities: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 11327 + - uid: 11366 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 - - uid: 11328 + - uid: 11367 components: - type: Transform + rot: 1.5707963267948966 rad pos: -58.5,-5.5 parent: 2 - uid: 11546 @@ -143071,6 +144328,22 @@ entities: - type: Transform pos: -47.5,-0.5 parent: 2 + - uid: 29509 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 29510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - uid: 29524 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - uid: 10165 @@ -143079,9 +144352,10 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 11225 + - uid: 11370 components: - type: Transform + rot: -1.5707963267948966 rad pos: -51.5,-14.5 parent: 2 - proto: PlayerStationAi @@ -145263,12 +146537,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-11.5 parent: 2 - - uid: 12066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - uid: 12067 components: - type: Transform @@ -145971,6 +147239,12 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,12.5 parent: 2 + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 - uid: 29452 components: - type: Transform @@ -146011,11 +147285,6 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,37.5 parent: 2 - - uid: 2259 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - uid: 6947 components: - type: Transform @@ -146027,6 +147296,11 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,31.5 parent: 2 + - uid: 11343 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -146064,6 +147338,11 @@ entities: parent: 2 - type: PointLight radius: 8 + - uid: 11987 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 - uid: 12058 components: - type: Transform @@ -146095,11 +147374,6 @@ entities: - type: Transform pos: 48.5,51.5 parent: 2 - - uid: 24001 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - uid: 24003 components: - type: Transform @@ -146149,6 +147423,12 @@ entities: rot: 3.141592653589793 rad pos: -45.5,27.5 parent: 2 + - uid: 29572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 2 - proto: PoweredlightSodium entities: - uid: 21438 @@ -148210,18 +149490,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-25.5 parent: 2 - - uid: 11986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-24.5 - parent: 2 - - uid: 11987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-23.5 - parent: 2 - uid: 11988 components: - type: Transform @@ -148494,6 +149762,12 @@ entities: rot: 3.141592653589793 rad pos: -14.5,12.5 parent: 2 + - uid: 28495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 - uid: 28983 components: - type: Transform @@ -148530,6 +149804,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -148804,6 +150084,12 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,30.5 parent: 2 + - uid: 29489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-10.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -149280,6 +150566,33 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,30.5 parent: 2 + - uid: 29486 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 29487 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 29488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-23.5 + parent: 2 + - uid: 29544 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 29545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -150352,6 +151665,11 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 1061 @@ -150946,11 +152264,6 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 - - uid: 827 - components: - - type: Transform - pos: -61.5,-19.5 - parent: 2 - uid: 1206 components: - type: Transform @@ -153220,42 +154533,18 @@ entities: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 10836 + - uid: 10842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-8.5 + pos: -58.5,-11.5 parent: 2 - - uid: 10837 + - uid: 10847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - - uid: 10840 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,-12.5 parent: 2 - - uid: 10841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 2 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 2 - - uid: 10843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - uid: 10854 components: - type: Transform @@ -153337,22 +154626,11 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-55.5 parent: 2 - - uid: 11297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - uid: 11323 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 11325 - components: - - type: Transform - pos: -60.5,-6.5 - parent: 2 - uid: 11326 components: - type: Transform @@ -153363,17 +154641,11 @@ entities: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 11365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - - uid: 11371 + - uid: 11342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 parent: 2 - uid: 11373 components: @@ -153381,12 +154653,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 - - uid: 11375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - uid: 11469 components: - type: Transform @@ -153900,6 +155166,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-10.5 parent: 21002 + - uid: 23238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-13.5 + parent: 2 - uid: 23416 components: - type: Transform @@ -154175,11 +155447,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 11990 + - uid: 29518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-24.5 + pos: -61.5,-25.5 parent: 2 - proto: SaxophoneInstrument entities: @@ -155372,6 +156644,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 29526 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputA + - uid: 29574 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29522: + - DoorStatus: InputB - proto: ShuttersWindowOpen entities: - uid: 742 @@ -155987,6 +157277,18 @@ entities: - Pressed: Toggle 11337: - Pressed: Toggle + - uid: 11986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29526: + - Pressed: Toggle + 29574: + - Pressed: Toggle - uid: 12804 components: - type: MetaData @@ -159864,6 +161166,13 @@ entities: parent: 2 - type: SpamEmitSound enabled: False +- proto: SpawnMechRipley + entities: + - uid: 29519 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 - proto: SpawnMobBee entities: - uid: 610 @@ -163905,6 +165214,8 @@ entities: pos: -57.5,-20.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply id: Salvage - uid: 29177 components: @@ -163927,6 +165238,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Dock N + - uid: 29525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Dock - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 23224 @@ -167585,6 +168907,69 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 29268 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29511: + - Left: Forward + - Right: Reverse + - Middle: Off + 20597: + - Left: Forward + - Right: Reverse + - Middle: Off + 29512: + - Left: Forward + - Right: Reverse + - Middle: Off + 29513: + - Right: Reverse + - Middle: Off + - Left: Off + 29514: + - Left: Forward + - Right: Reverse + - Middle: Off + 11361: + - Left: Forward + - Right: Reverse + - Middle: Off + 11325: + - Left: Forward + - Right: Reverse + - Middle: Off + 24001: + - Left: Forward + - Right: Reverse + - Middle: Off + 29515: + - Left: Forward + - Right: Reverse + - Middle: Off + 29516: + - Left: Forward + - Right: Reverse + - Middle: Off + 29517: + - Left: Forward + - Right: Reverse + - Middle: Off + 11990: + - Left: Forward + - Right: Reverse + - Middle: Off + 29508: + - Left: Forward + - Right: Off + - Middle: Off + 11382: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 9643 @@ -176469,17 +177854,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-6.5 parent: 2 - - uid: 10838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 2 - - uid: 10839 + - uid: 10845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-10.5 + rot: 3.141592653589793 rad + pos: -60.5,-7.5 parent: 2 - uid: 10846 components: @@ -177191,6 +178570,12 @@ entities: - type: Transform pos: -52.5,-24.5 parent: 2 + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-6.5 + parent: 2 - uid: 11226 components: - type: Transform @@ -178670,6 +180055,12 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-8.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -181122,6 +182513,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,34.5 parent: 2 + - uid: 29003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-10.5 + parent: 2 - uid: 29293 components: - type: Transform @@ -181302,6 +182699,12 @@ entities: rot: 3.141592653589793 rad pos: 57.5,21.5 parent: 2 + - uid: 29492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-9.5 + parent: 2 - proto: WallSolid entities: - uid: 309 @@ -185566,6 +186969,12 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 + - uid: 29491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -186775,7 +188184,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: 13577: @@ -186787,7 +188196,7 @@ entities: pos: -11.5,17.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 5 + invokeCounter: 7 - type: DeviceLinkSource linkedPorts: 12356: @@ -187643,6 +189052,18 @@ entities: rot: 3.141592653589793 rad pos: -24.5,38.5 parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 - uid: 18936 components: - type: Transform @@ -188538,7 +189959,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -432500.88 + secondsUntilStateChange: -449269.3 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 77dea071ac8dad..2ffa5eca0349e8 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -31690,14 +31690,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 4984 + - uid: 6290 components: - type: Transform - pos: -3.5,26.5 + pos: 12.5,-18.5 parent: 4812 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 3469 @@ -58676,10 +58673,10 @@ entities: stash: !type:ContainerSlot {} - proto: PottedPlantRD entities: - - uid: 6290 + - uid: 12045 components: - type: Transform - pos: 24.5,-18.5 + pos: 28.5,-20.5 parent: 4812 - proto: PowerCellRecharger entities: @@ -67865,10 +67862,10 @@ entities: parent: 4812 - proto: SurveillanceCameraRouterScience entities: - - uid: 12045 + - uid: 4984 components: - type: Transform - pos: 12.5,-18.5 + pos: 24.5,-18.5 parent: 4812 - proto: SurveillanceCameraRouterSecurity entities: @@ -69907,6 +69904,11 @@ entities: showEnts: False occludes: True ents: [] + - uid: 4373 + components: + - type: Transform + pos: -3.5,26.5 + parent: 4812 - uid: 4991 components: - type: Transform diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index d3189630160086..31ebad61837032 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -325,6 +325,7 @@ - id: RubberStampHos - id: SecurityTechFabCircuitboard - id: WeaponDisabler + - id: WantedListCartridge # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Decals/burnt.yml b/Resources/Prototypes/Decals/burnt.yml new file mode 100644 index 00000000000000..d9d500e1aa2529 --- /dev/null +++ b/Resources/Prototypes/Decals/burnt.yml @@ -0,0 +1,31 @@ +- type: decal + id: burnt1 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt1 + +- type: decal + id: burnt2 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt2 + +- type: decal + id: burnt3 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt3 + +- type: decal + id: burnt4 + tags: ["burnt"] + defaultCleanable: true + sprite: + sprite: Decals/burnt.rsi + state: burnt4 diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 368cefe9cb4ed3..467bbf873f23d2 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -100,7 +100,7 @@ parent: ClothingEyesBase id: ClothingEyesGlassesJamjar name: jamjar glasses - description: Also known as Virginity Protectors. + description: These retro glasses remind you of a simpler time. components: - type: Sprite sprite: Clothing/Eyes/Glasses/jamjar.rsi diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml index 552b8aae0da321..b74a80c39d4a09 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml @@ -217,7 +217,6 @@ id: SalvageEquipmentRare table: !type:GroupSelector children: - - id: BlueprintFlare - id: FultonBeacon - id: Fulton amount: !type:RangeNumberSelector diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 493cfdf6cb63e6..15878a4017d00c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -462,7 +462,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable @@ -495,7 +495,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-saboteur-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index 1a7a02e7337220..71f98d81c96dbe 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -100,7 +100,7 @@ - type: GhostRole name: ghost-role-information-syndicate-cyborg-assault-name description: ghost-role-information-syndicate-cyborg-description - rules: ghost-role-information-rules-default-silicon + rules: ghost-role-information-silicon-rules raffle: settings: default - type: GhostRoleMobSpawner diff --git a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml index f9581149e2146b..91493f48cd1f50 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/cartridges.yml @@ -93,3 +93,26 @@ - type: GuideHelp guides: - Forensics + +- type: entity + parent: BaseItem + id: WantedListCartridge + name: Wanted list cartridge + description: A program to get a list of wanted persons. + components: + - type: Sprite + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: Icon + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + - type: UIFragment + ui: !type:WantedListUi + - type: Cartridge + programName: wanted-list-program-name + icon: + sprite: Objects/Misc/books.rsi + state: icon_magnifier + - type: WantedListCartridge + - type: StealTarget + stealGroup: WantedListCartridge diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 40f6f77e12d28d..48e7a28debebae 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -114,6 +114,18 @@ - type: Speech speechVerb: Robotic +- type: entity + id: BaseSecurityPDA + abstract: true + components: + - type: CartridgeLoader + uiKey: enum.PdaUiKey.Key + preinstalled: + - CrewManifestCartridge + - NotekeeperCartridge + - NewsReaderCartridge + - WantedListCartridge + - type: entity parent: BasePDA id: BaseMedicalPDA @@ -433,7 +445,7 @@ state: pda-library - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: LawyerPDA name: lawyer PDA description: For lawyers to poach dubious clients. @@ -476,7 +488,7 @@ state: pda-janitor - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CaptainPDA name: captain PDA description: Surprisingly no different from your PDA. @@ -651,7 +663,7 @@ state: pda-science - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: HoSPDA name: head of security PDA description: Whosoever bears this PDA is the law. @@ -666,7 +678,7 @@ state: pda-hos - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: WardenPDA name: warden PDA description: The OS appears to have been jailbroken. @@ -681,7 +693,7 @@ state: pda-warden - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SecurityPDA name: security PDA description: Red to hide the stains of passenger blood. @@ -695,7 +707,7 @@ state: pda-security - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: CentcomPDA name: CentComm PDA description: Light green sign of walking bureaucracy. @@ -733,6 +745,7 @@ - NotekeeperCartridge - NewsReaderCartridge - LogProbeCartridge + - WantedListCartridge - type: entity parent: CentcomPDA @@ -834,7 +847,7 @@ - Cartridge - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: ERTLeaderPDA name: ERT Leader PDA suffix: Leader @@ -982,7 +995,7 @@ state: pda-boxer - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: DetectivePDA name: detective PDA description: Smells like rain... pouring down the rooftops... @@ -1082,7 +1095,7 @@ state: pda-seniorphysician - type: entity - parent: BasePDA + parent: [BaseSecurityPDA, BasePDA] id: SeniorOfficerPDA name: senior officer PDA description: Beaten, battered and broken, but just barely useable. diff --git a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml index ba26baf3626741..43cbdc2431ff05 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml @@ -37,13 +37,3 @@ - type: Blueprint providedRecipes: - SeismicCharge - -- type: entity - parent: BaseBlueprint - id: BlueprintFlare - name: flare blueprint - description: A blueprint with a schematic of a flare. It can be inserted into an autolathe. - components: - - type: Blueprint - providedRecipes: - - Flare diff --git a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml index 042b3fe5173585..f0f373741756da 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/thief_beacon.yml @@ -6,6 +6,7 @@ components: - type: ThiefBeacon - type: StealArea + range: 2 # Slightly larger than fulton beacon's random offset - type: Item size: Normal - type: Physics diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 6f925139fb1bd8..f1172c5de08ca9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -106,3 +106,56 @@ - type: Construction graph: ImprovisedArrow node: ImprovisedArrow + +- type: entity + parent: BaseArrow + id: ArrowImprovisedPlasma + name: plasma glass shard arrow + description: The greyshirt's preferred projectile. Now with extra lethality! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: purple + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 30 + - type: Construction + graph: ImprovisedArrowPlasma + node: ImprovisedArrowPlasma + +- type: entity + parent: BaseArrow + id: ArrowImprovisedUranium + name: uranium glass shard arrow + description: The greyshirt's preferred projectile. Now with added radiation! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: green + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 25 + Radiation: 5 + - type: Construction + graph: ImprovisedArrowUranium + node: ImprovisedArrowUranium diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 965a3f46d633d6..666550cd8a17af 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -199,7 +199,7 @@ - WetFloorSign - ClothingHeadHatCone - FreezerElectronics - + - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot diff --git a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml index 8bbbad6c0d1966..f62923fe2af385 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/recycler.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/recycler.yml @@ -85,6 +85,7 @@ volume: -3 cutOffSound: false - type: MaterialStorage + insertOnInteract: false - type: Conveyor - type: Rotatable - type: Repairable diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 481ca0f93d84ef..e72de0d94a93c9 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -73,6 +73,7 @@ ForensicScannerStealObjective: 1 #sec FlippoEngravedLighterStealObjective: 0.5 ClothingHeadHatWardenStealObjective: 1 + WantedListCartridgeStealObjective: 1 ClothingOuterHardsuitVoidParamedStealObjective: 1 #med MedicalTechFabCircuitboardStealObjective: 1 ClothingHeadsetAltMedicalStealObjective: 1 diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 48f56e2bfcd76d..09619bf9868eea 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -263,6 +263,13 @@ sprite: Clothing/Neck/Medals/clownmedal.rsi state: icon +- type: stealTargetGroup + id: WantedListCartridge + name: steal-target-groups-wanted-list-cartridge + sprite: + sprite: Objects/Devices/cartridge.rsi + state: cart-sec + #Thief structures - type: stealTargetGroup diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index f8e44d831e94e0..7a46d0f5e9b8e0 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -184,6 +184,15 @@ - type: Objective difficulty: 1.2 +- type: entity + parent: BaseThiefStealObjective + id: WantedListCartridgeStealObjective + components: + - type: StealCondition + stealGroup: WantedListCartridge + - type: Objective + difficulty: 1 + - type: entity #Medical subgroup parent: BaseThiefStealObjective id: ClothingOuterHardsuitVoidParamedStealObjective diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 4dcef67f77dd89..105ae11048710f 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -359,6 +359,10 @@ key: KnockedDown time: 0.75 type: Remove + - !type:GenericStatusEffect + key: Adrenaline # Guess what epinephrine is... + component: IgnoreSlowOnDamage + time: 5 # lingers less than hivemind reagent to give it a niche - type: reagent id: Hyronalin diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml index 04b94690467dac..20e06e9f48412c 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml @@ -21,3 +21,51 @@ - node: ImprovisedArrow entity: ArrowImprovised + +- type: constructionGraph + id: ImprovisedArrowPlasma + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowPlasma + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: PlasmaGlassShard + name: plasma glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowPlasma + entity: ArrowImprovisedPlasma + +- type: constructionGraph + id: ImprovisedArrowUranium + start: start + graph: + - node: start + edges: + - to: ImprovisedArrowUranium + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: UraniumGlassShard + name: uranium glass shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: ImprovisedArrowUranium + entity: ArrowImprovisedUranium diff --git a/Resources/Prototypes/Recipes/Construction/weapons.yml b/Resources/Prototypes/Recipes/Construction/weapons.yml index 040d4c8963d138..5936a350691325 100644 --- a/Resources/Prototypes/Recipes/Construction/weapons.yml +++ b/Resources/Prototypes/Recipes/Construction/weapons.yml @@ -152,6 +152,28 @@ icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } objectType: Item +- type: construction + name: plasma glass shard arrow + id: ImprovisedArrowPlasma + graph: ImprovisedArrowPlasma + startNode: start + targetNode: ImprovisedArrowPlasma + category: construction-category-weapons + description: An arrow tipped with pieces of a plasma glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + +- type: construction + name: uranium glass shard arrow + id: ImprovisedArrowUranium + graph: ImprovisedArrowUranium + startNode: start + targetNode: ImprovisedArrowUranium + category: construction-category-weapons + description: An arrow tipped with pieces of a uranium glass shard, for use with a bow. + icon: { sprite: Objects/Weapons/Guns/Bow/bow.rsi, state: wielded-arrow } + objectType: Item + - type: construction name: improvised bow id: ImprovisedBow diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 3eb9c2ca2f2b0f..7e5e20139b09a1 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -13,7 +13,7 @@ WARNING: This is not an automatically generated list, things here may become out - Tortila Dough = 15 Cornmeal, 10 Water - Tofu = 5 Enzyme (Catalyst), 30 Soy Milk - Pie Dough = 2 Eggs (12u), 15 Flour, 5 Table Salt -- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar +- Cake Batter = 2 Eggs(12u), 15 flour, 5 Sugar, 5 Milk - Vegan Cake Batter = 15 Soy Milk, 15 Flour, 5 Sugar - Butter = 30 Milk, 5 Table Salt (Catalyst) - Cheese Wheel = 5 Enzyme (Catalyst), 40 Milk diff --git a/Resources/Textures/Decals/burnt.rsi/burnt1.png b/Resources/Textures/Decals/burnt.rsi/burnt1.png new file mode 100644 index 00000000000000..3fcb7a4949b5bd Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt1.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt2.png b/Resources/Textures/Decals/burnt.rsi/burnt2.png new file mode 100644 index 00000000000000..01f8f220b2ddae Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt2.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt3.png b/Resources/Textures/Decals/burnt.rsi/burnt3.png new file mode 100644 index 00000000000000..e9dcbe37533f6e Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt3.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/burnt4.png b/Resources/Textures/Decals/burnt.rsi/burnt4.png new file mode 100644 index 00000000000000..f1db0637ccbdbf Binary files /dev/null and b/Resources/Textures/Decals/burnt.rsi/burnt4.png differ diff --git a/Resources/Textures/Decals/burnt.rsi/meta.json b/Resources/Textures/Decals/burnt.rsi/meta.json new file mode 100644 index 00000000000000..48a8f33138cfef --- /dev/null +++ b/Resources/Textures/Decals/burnt.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "From https://github.com/BeeStation/BeeStation-Hornet/blob/master/icons/turf/turf_damage.dmi at f2d6fbdf36aa0951049498cf28e028a38e32fe0b", + "states": [ + { + "name": "burnt1" + + }, + { + "name": "burnt2" + + }, + { + "name": "burnt3" + + }, + { + "name": "burnt4" + + } + ] +} diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png new file mode 100644 index 00000000000000..6a3197004cbf04 Binary files /dev/null and b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-sec.png differ diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index f3b02a2b2eab4c..d5fad560062193 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github), cart-sec made by dieselmohawk (discord)", "size": { "x": 32, "y": 32 @@ -79,6 +79,9 @@ { "name": "cart-y" }, + { + "name": "cart-sec" + }, { "name": "insert_overlay" } diff --git a/Resources/migration.yml b/Resources/migration.yml index 6ef05275b5d30b..352c9a4454cf21 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -434,3 +434,6 @@ OverlordCircuitBoard: null # 2024-09-08 HatBase: null + +# 2024-09-19 +BlueprintFlare: null