From 6ca1d30a16e998a60b96e938b7bd23b360a25dc5 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Sat, 27 Apr 2024 21:33:25 +0300 Subject: [PATCH] Pirate Cove (Update) (#1281) * Cove * Fix fixgridatmos command (#27113) * How * Fix Hydro * Update computers.yml * Update computers.yml * Commas * Commas * Update cove.yml * Update cove.yml * Update cove.yml * Update NfAdventureRuleSystem.cs --------- Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> --- .../AtmosphereSystem.Commands.cs | 81 +- .../AtmosphereSystem.Processing.cs | 8 +- .../_NF/GameRule/NfAdventureRuleSystem.cs | 2 +- Resources/Maps/_NF/POI/cove.yml | 11556 +++++++++------- Resources/Maps/_NF/POI/lpbravo.yml | 100 +- .../_NF/Entities/Mobs/NPCs/pets.yml | 2 +- .../Machines/Computers/computers.yml | 127 +- .../Machines/Computers/computers_tabletop.yml | 33 +- .../Computers/computers_tabletop_shipyard.yml | 14 +- .../Structures/Machines/telecomms.yml | 20 + .../_NF/Entities/Structures/atm.yml | 22 + .../_NF/Entities/Structures/hydro_tray.yml | 2 + .../Prototypes/_NF/Entities/Tiles/water.yml | 63 + Resources/Prototypes/_NF/Maps/POI/lodge.yml | 2 +- Resources/Prototypes/radio_channels.yml | 4 +- .../icon.png | Bin .../meta.json | 0 .../printing.png | Bin .../unshaded.png | Bin 19 files changed, 6961 insertions(+), 5075 deletions(-) create mode 100644 Resources/Prototypes/_NF/Entities/Tiles/water.yml rename Resources/Textures/_NF/Structures/Machines/atm/{illegal_wall_atm.rsi => wall_illegal_atm.rsi}/icon.png (100%) rename Resources/Textures/_NF/Structures/Machines/atm/{illegal_wall_atm.rsi => wall_illegal_atm.rsi}/meta.json (100%) rename Resources/Textures/_NF/Structures/Machines/atm/{illegal_wall_atm.rsi => wall_illegal_atm.rsi}/printing.png (100%) rename Resources/Textures/_NF/Structures/Machines/atm/{illegal_wall_atm.rsi => wall_illegal_atm.rsi}/unshaded.png (100%) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index ee8d12ff465..685df3b6fed 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -3,6 +3,7 @@ using Content.Server.Atmos.Components; using Content.Shared.Administration; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -104,44 +105,72 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar continue; } - var transform = Transform(euid.Value); + // Force Invalidate & update air on all tiles + Entity grid = + new(euid.Value, gridAtmosphere, Comp(euid.Value), gridComp, Transform(euid.Value)); - foreach (var (indices, tileMain) in gridAtmosphere.Tiles) - { - var tile = tileMain.Air; - if (tile == null) - continue; + RebuildGridTiles(grid); - if (!_mapSystem.TryGetTile(gridComp, indices, out var gTile) || gTile.IsEmpty) - { - gridAtmosphere.Tiles.Remove(indices); + var query = GetEntityQuery(); + foreach (var (indices, tile) in gridAtmosphere.Tiles.ToArray()) + { + if (tile.Air is not {Immutable: false} air) continue; - } - if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices)) - { - tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; - tileMain.Air = tile; - } - - tile.Clear(); + air.Clear(); var mixtureId = 0; - foreach (var entUid in gridComp.GetAnchoredEntities(indices)) + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(grid, grid, indices); + while (enumerator.MoveNext(out var entUid)) { - if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) - continue; - mixtureId = afm.Mode; - break; + if (query.TryComp(entUid, out var marker)) + mixtureId = marker.Mode; } - var mixture = mixtures[mixtureId]; - Merge(tile, mixture); - tile.Temperature = mixture.Temperature; - gridAtmosphere.InvalidatedCoords.Add(indices); + var mixture = mixtures[mixtureId]; + Merge(air, mixture); + air.Temperature = mixture.Temperature; } } } + /// + /// Clears & re-creates all references to s stored on a grid. + /// + private void RebuildGridTiles( + Entity ent) + { + foreach (var indices in ent.Comp1.Tiles.Keys) + { + InvalidateVisuals((ent, ent), indices); + } + + var atmos = ent.Comp1; + atmos.MapTiles.Clear(); + atmos.ActiveTiles.Clear(); + atmos.ExcitedGroups.Clear(); + atmos.HotspotTiles.Clear(); + atmos.SuperconductivityTiles.Clear(); + atmos.HighPressureDelta.Clear(); + atmos.CurrentRunTiles.Clear(); + atmos.CurrentRunExcitedGroups.Clear(); + atmos.InvalidatedCoords.Clear(); + atmos.CurrentRunInvalidatedTiles.Clear(); + atmos.PossiblyDisconnectedTiles.Clear(); + atmos.Tiles.Clear(); + + var volume = GetVolumeForTiles(ent); + TryComp(ent.Comp4.MapUid, out MapAtmosphereComponent? mapAtmos); + + var enumerator = _map.GetAllTilesEnumerator(ent, ent); + while (enumerator.MoveNext(out var tileRef)) + { + var tile = GetOrNewTile(ent, ent, tileRef.Value.GridIndices); + UpdateTileData(ent, mapAtmos, tile); + UpdateAdjacentTiles(ent, tile, activate: true); + UpdateTileAir(ent, tile, volume); + } + } + private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args) { MapId? playerMap = null; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index bd023e8574a..85b1a93e20f 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -30,13 +30,15 @@ public sealed partial class AtmosphereSystem private int _currentRunAtmosphereIndex; private bool _simulationPaused; - private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index) + private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index, bool invalidateNew = true) { var tile = atmosphere.Tiles.GetOrNew(index, out var existing); if (existing) return tile; - atmosphere.InvalidatedCoords.Add(index); + if (invalidateNew) + atmosphere.InvalidatedCoords.Add(index); + tile.GridIndex = owner; tile.GridIndices = index; return tile; @@ -68,7 +70,7 @@ private bool ProcessRevalidate(Entity("Cove", out var stationProto)) diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml index 8e8ad29d03a..0181dc3ec83 100644 --- a/Resources/Maps/_NF/POI/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -3,302 +3,746 @@ meta: postmapinit: false tilemap: 0: Space - 7: FloorAsteroidSand - 8: FloorAsteroidSandDug - 30: FloorDark - 34: FloorDarkMini - 35: FloorDarkMono - 37: FloorDarkPavement - 38: FloorDarkPavementVertical - 41: FloorDirt - 74: FloorPlanetDirt - 75: FloorPlanetGrass - 90: FloorSteel - 92: FloorSteelCheckerDark - 105: FloorTechMaint - 106: FloorTechMaint2 - 113: FloorWhiteMini - 119: FloorWood - 122: Plating + 3: FloorAsteroidSand + 6: FloorAsteroidSandUnvariantized + 8: FloorAstroGrass + 14: FloorBar + 4: FloorBrokenWood + 5: FloorCaveDrought + 7: FloorDirt + 77: FloorRGlass + 1: FloorSteelCheckerDark + 107: FloorTechMaint + 115: FloorWhiteMini + 116: FloorWhiteMono + 2: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: - uid: 1 components: - type: MetaData + name: grid - type: Transform - pos: 0.14431763,-0.13037014 + pos: -0.5,-0.6875 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: dwAAAAADdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAABdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADdwAAAAAAdwAAAAACdwAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAMKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFKQAAAAAAKQAAAAABKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAFBwAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAABKQAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: BwAAAAAJBwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAABwAAAAAFegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJSwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAASwAAAAACSwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAISwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAHBwAAAAADBwAAAAAABwAAAAAAKQAAAAABKQAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFKQAAAAAAKQAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAASwAAAAADSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAegAAAAAABwAAAAAABwAAAAAHIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALdwAAAAACdwAAAAACdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADfQAAAAAAAQAAAAACAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAACAgAAAAAABAAAAAAFAgAAAAABawAAAAAAAQAAAAAAAQAAAAACawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAABfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACfQAAAAAAAQAAAAABAQAAAAABfQAAAAAAAQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAABBAAAAAADAgAAAAABfQAAAAAAAQAAAAACAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAfQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAADcwAAAAACcwAAAAADfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAEAwAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAABcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAEAwAAAAABawAAAAAAawAAAAAAcwAAAAACcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAABQAAAAAGBQAAAAAABQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAHBQAAAAAFBQAAAAAGBQAAAAADBQAAAAACBQAAAAADfQAAAAAABQAAAAAHBQAAAAAGBQAAAAAABQAAAAAEBQAAAAAGBQAAAAACBQAAAAABBQAAAAAFBQAAAAACBQAAAAABBQAAAAAFBQAAAAABBQAAAAACBQAAAAAABQAAAAAE version: 6 -1,0: ind: -1,0 - tiles: SgAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAABBwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADSgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAegAAAAAAcQAAAAACcQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAAASgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAADaQAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABdwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAKQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAF + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAdAAAAAACdAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAAAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAACAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAACAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAwAAAAAFAwAAAAAMAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAABQAAAAAHBQAAAAAFBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAABQAAAAAEBQAAAAAHBQAAAAAFBQAAAAACBQAAAAADBQAAAAAHBQAAAAAEfQAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAACawAAAAAAawAAAAAABQAAAAAHBQAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAMBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAACIgAAAAABIgAAAAABIgAAAAAAHgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAegAAAAAAdwAAAAACdwAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACegAAAAAAKQAAAAAAKQAAAAADKQAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAACegAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACIgAAAAACIgAAAAAAIgAAAAACXAAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAAAdwAAAAACdwAAAAABaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAABIgAAAAADIgAAAAAAIgAAAAABXAAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAACdwAAAAAAdwAAAAACaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAADJQAAAAAAJQAAAAACJQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAIwAAAAABIwAAAAACIwAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAAC - version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAABAQAAAAACAQAAAAABTQAAAAACTQAAAAACTQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAABAQAAAAADTQAAAAABTQAAAAACTQAAAAACAQAAAAABTQAAAAABTQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAADTQAAAAADTQAAAAADTQAAAAAD version: 6 - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAADJQAAAAACIwAAAAADJQAAAAACJQAAAAADegAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMegAAAAAAJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAACTQAAAAADTQAAAAAATQAAAAADAQAAAAADAQAAAAAAAQAAAAACawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAADTQAAAAACTQAAAAABTQAAAAADAQAAAAABTQAAAAABTQAAAAACTQAAAAACAQAAAAAAAQAAAAACAQAAAAADawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAATQAAAAADTQAAAAADTQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF + -1,1: + ind: -1,1 + tiles: BQAAAAABBQAAAAABBQAAAAAHBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAAfQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAAEBQAAAAAABQAAAAAHBQAAAAACBQAAAAABBQAAAAADBQAAAAAGBQAAAAAHBQAAAAADBQAAAAABBQAAAAAEBQAAAAAEBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAHBQAAAAADBQAAAAAABQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAAHBQAAAAACBQAAAAABBQAAAAAEBQAAAAAEBQAAAAADBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAACBQAAAAAHBQAAAAAEBQAAAAADBQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAHBQAAAAAFBQAAAAAABQAAAAABBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAEBQAAAAABBQAAAAAGBQAAAAABBQAAAAAHBQAAAAADBQAAAAACBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAADBQAAAAAEBQAAAAADBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACBQAAAAACBQAAAAAEBQAAAAACBQAAAAAFBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAABQAAAAADBQAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAABBQAAAAAGBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAABQAAAAAHBQAAAAAEAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAABBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAFBQAAAAABBQAAAAADBQAAAAADBQAAAAAHBQAAAAAHBQAAAAACAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAEBQAAAAAGBQAAAAACBQAAAAACBQAAAAACBQAAAAAFBQAAAAAEAwAAAAAJBgAAAAAABgAAAAAABgAAAAAAAwAAAAACBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAABBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAGBQAAAAADBQAAAAADBQAAAAAEBQAAAAAEBQAAAAADBQAAAAABBQAAAAAABQAAAAAEBQAAAAAEBQAAAAAEBQAAAAABBQAAAAABBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAABQAAAAAABQAAAAAABQAAAAAGBQAAAAADBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAHBQAAAAABBQAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAADBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAADBQAAAAAFBQAAAAAABQAAAAACBQAAAAAHBQAAAAAABQAAAAADBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAABQAAAAAFBQAAAAAGBQAAAAAABQAAAAACBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAB version: 6 0,1: ind: 0,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAADBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAADBQAAAAAFBQAAAAAABQAAAAAEBQAAAAAGBQAAAAADBQAAAAACBQAAAAAGBQAAAAAABQAAAAAFBQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAFBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAABBQAAAAACBQAAAAAGBQAAAAAEBQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAHBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAEBQAAAAAEBQAAAAACBQAAAAABBQAAAAAFBQAAAAAHAwAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAADBQAAAAAEBQAAAAACBQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAEBQAAAAADBQAAAAAHAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAEBQAAAAABBQAAAAAFBQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAABQAAAAAEBQAAAAADBQAAAAAFBQAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAwAAAAAMBQAAAAAGBQAAAAADBQAAAAABBQAAAAAHBQAAAAAFBQAAAAABBQAAAAAEBQAAAAAFBQAAAAADBQAAAAAABQAAAAADAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAGBQAAAAACBQAAAAADBQAAAAADfAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAAEBQAAAAADBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAGBQAAAAADBQAAAAADAwAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAABQAAAAAFBQAAAAAEBQAAAAABBQAAAAABBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAADBQAAAAABBQAAAAAABQAAAAAFBQAAAAADBQAAAAABBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAADBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAABBQAAAAAABQAAAAAFBQAAAAAEBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAFBQAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAAGBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACBgAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAFBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADBQAAAAAF + version: 6 + 1,1: + ind: 1,1 + tiles: BQAAAAAGBQAAAAAFAwAAAAAJAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAMAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALAwAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAKAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAAHAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAAABQAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: BwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABAwAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAGBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAIAwAAAAAABQAAAAAG version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAACJgAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAACJgAAAAAAJgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAAAegAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAABJgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAAAJgAAAAACJgAAAAADegAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAGBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAFBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJBQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAC version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,2: + ind: -1,2 + tiles: BQAAAAAEBQAAAAAEBQAAAAAABQAAAAABBQAAAAAABQAAAAADBgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAADAgAAAAABBgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAAABAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAAABAAAAAABAgAAAAADAgAAAAABAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALBgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,0: - ind: -2,0 - tiles: BwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,2: + ind: 0,2 + tiles: BgAAAAAABQAAAAAEBQAAAAAEBQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAAEBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAAHBQAAAAAABQAAAAAABQAAAAAGBQAAAAAEBQAAAAABBQAAAAAFBQAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAADBgAAAAAABgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABwAAAAACBwAAAAADBwAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + 1,2: + ind: 1,2 + tiles: BQAAAAABBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 999999 - linearDamping: 999999 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures fixtures: {} + - type: IFF + color: '#FFC000FF' + flags: HideLabel - type: OccluderTree - type: SpreaderGrid - type: Shuttle - angularDamping: 999999 - linearDamping: 999999 - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: DecalGrid chunkCollection: version: 2 nodes: - node: - color: '#DE3A3A96' - id: BotGreyscale + color: '#FFFFFFFF' + id: Box + decals: + 73: -9,14 + 74: -9,13 + 75: -9,12 + 76: -8,12 + 77: -8,13 + 78: -8,14 + 79: -7,14 + 80: -7,13 + 81: -7,12 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerNe + decals: + 270: 4,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerNw + decals: + 271: -2,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerSe + decals: + 269: 4,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerSw + decals: + 268: -2,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerNe + decals: + 250: -8,-4 + 251: -4,-3 + 252: 0,-3 + 253: 4,-4 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerNw decals: - 72: -9,-1 - 73: -8,-1 - 74: -7,-1 + 264: -4,-4 + 265: 0,-3 + 266: 4,-3 + 267: 8,-4 - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerSe + decals: + 256: -8,-1 + 257: -4,0 + 258: 0,0 + 259: 4,-1 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerSw + decals: + 260: -4,-1 + 261: 0,0 + 262: 4,0 + 263: 8,-1 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineE + decals: + 219: 4,-2 + 221: 4,-3 + 222: -4,-1 + 223: -4,-2 + 224: -8,-3 + 225: -8,-2 + 254: 0,-2 + 255: 0,-1 + 279: 4,7 + 280: 4,6 + 281: 4,5 + 282: 4,4 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineN + decals: + 212: -1,-3 + 213: -2,-3 + 214: -3,-3 + 215: 1,-3 + 216: 2,-3 + 217: 3,-3 + 244: 5,-4 + 245: 6,-4 + 246: 7,-4 + 247: -5,-4 + 248: -6,-4 + 249: -7,-4 + 272: 0,8 + 273: 1,8 + 274: 2,8 + 275: 3,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineS + decals: + 232: -7,-1 + 233: -6,-1 + 234: -5,-1 + 235: -3,0 + 236: -2,0 + 237: -1,0 + 238: 1,0 + 239: 2,0 + 240: 3,0 + 241: 5,-1 + 242: 6,-1 + 243: 7,-1 + 283: 3,3 + 284: 2,3 + 285: 1,3 + 286: 0,3 + 287: -1,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineW + decals: + 218: 4,-1 + 220: 4,-2 + 226: 8,-2 + 227: 8,-3 + 228: 0,-1 + 229: 0,-2 + 230: -4,-2 + 231: -4,-3 + 276: -2,7 + 277: -2,6 + 278: -2,5 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNe + decals: + 298: -1,8 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNw + decals: + 295: -2,4 + 297: -1,8 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerSw + decals: + 296: -2,4 + - node: + color: '#951710FF' + id: Caution + decals: + 323: -13,27 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 63: 6,8 + 64: 7,8 + 65: 6,7 + 66: 7,7 + 67: 6,6 + 68: 7,6 + 69: 6,5 + 70: 7,5 + 82: 8,5 + 83: 9,5 + 84: 9,6 + 85: 8,8 + 86: 9,8 + 87: 9,9 + 88: 7,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 156: -8,3 + 157: -5,5 + 158: -8,7 + 159: -5,9 + 160: -8,9 + 161: -6,8 + 162: -4,10 + 163: -1,11 + 164: -4,12 + 165: 0,13 + 176: -5,3 + 184: -8,8 + 185: -2,10 + 327: -3,4 + 328: -7,4 + 333: -5,14 + 334: 6,13 + 337: -8,15 + 339: -6,15 + 340: -3,15 + 344: -1,14 + 345: 6,10 + - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkCornerSw + id: DirtHeavyMonotile decals: - 52: 7,-6 + 187: -3,12 + 191: -1,12 + 192: 0,12 + 193: -2,12 + 194: -3,12 + 195: -4,6 + 324: -1,9 + 325: -1,10 + 326: -4,4 - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkInnerNe + id: DirtLight decals: - 50: 6,-7 + 166: -5,13 + 167: -8,8 + 168: -8,5 + 169: -6,3 + 170: -8,4 + 177: -6,3 + 178: -6,4 + 179: -4,6 + 180: -5,7 + 181: -5,6 + 182: -8,6 + 183: -5,8 + 186: -3,10 + 189: -5,10 + 190: -4,10 + 335: 6,11 + 336: 7,12 + 341: -4,15 + 342: -3,14 + 343: 0,14 + 346: 7,10 + 347: 7,11 + 348: 6,11 + 349: 7,12 + 350: 6,12 - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkInnerSe + id: DirtMedium decals: - 77: -10,0 - 78: -6,2 + 171: -8,4 + 172: -7,3 + 173: -4,3 + 174: -5,4 + 175: -5,3 + 188: -5,12 + 329: -7,3 + 330: -4,2 + 331: 0,12 + 332: -1,12 + 338: -7,15 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineE + id: FlowersBROne decals: - 46: 6,-3 - 47: 6,-4 - 48: 6,-5 - 49: 6,-6 - 75: -10,-2 - 76: -10,-1 + 311: 14.009639,29.090136 + 312: 13.395055,29.277636 + 313: 13.895055,29.746386 + 314: 14.884639,29.694302 + 315: 14.967972,29.017218 + 316: 13.551305,28.996386 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineN + id: Flowerspv3 decals: - 51: 7,-7 + 304: 12.061722,29.048468 + 305: 12.415889,29.475552 + 306: 12.770055,29.090136 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineW + id: Flowersy1 decals: - 53: 7,-5 - 54: 7,-4 - 55: 7,-3 + 307: 13.238805,29.579718 + 308: 12.395055,29.423468 + 309: 14.738805,28.996386 + 310: 14.436722,29.433886 - node: - color: '#D4D4D414' - id: BrickTileWhiteCornerSw + color: '#A46106FF' + id: MiniTileWhiteCornerNe decals: - 62: 7,-6 + 55: 4,12 - node: - color: '#D4D4D41E' - id: BrickTileWhiteInnerNe + color: '#A46106FF' + id: MiniTileWhiteCornerNw + decals: + 56: 2,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSe decals: - 60: 6,-7 + 57: 4,10 - node: - color: '#D4D4D41E' - id: BrickTileWhiteLineE + color: '#A46106FF' + id: MiniTileWhiteCornerSw decals: - 56: 6,-6 - 57: 6,-5 - 58: 6,-4 - 59: 6,-3 + 58: 2,10 - node: - color: '#D4D4D41E' - id: BrickTileWhiteLineN + color: '#A46106FF' + id: MiniTileWhiteLineE decals: - 61: 7,-7 + 62: 4,11 - node: - color: '#D4D4D414' - id: BrickTileWhiteLineW + color: '#A46106FF' + id: MiniTileWhiteLineN decals: - 63: 7,-5 - 64: 7,-4 - 65: 7,-3 + 61: 3,12 - node: - color: '#79150096' - id: MiniTileCheckerAOverlay + color: '#A46106FF' + id: MiniTileWhiteLineS decals: - 80: -5,-13 - 81: -4,-13 - 82: -3,-13 + 60: 3,10 - node: - color: '#D4D4D428' - id: MiniTileCheckerAOverlay + color: '#A46106FF' + id: MiniTileWhiteLineW decals: - 83: -12,-9 - 84: -12,-8 - 85: -11,-9 - 86: -11,-8 - 87: -10,-9 - 88: -10,-8 + 59: 2,11 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 43: -31,-7 - 44: -31,-6 - 45: -31,-5 + 351: 10,22 - node: - color: '#FFFFFFFF' - id: StandClear + color: '#A46106FF' + id: WarnCornerNE decals: - 40: 2,-24 - 41: 3,-24 - 42: 4,-24 + 129: -4,6 - node: - color: '#52B4E996' - id: WarnFullGreyscale + color: '#A46106FF' + id: WarnCornerNW decals: - 66: 8,-3 - 67: 9,-3 - 68: 10,-3 + 130: -8,9 - node: - color: '#DE3A3A96' + color: '#A46106FF' + id: WarnCornerSE + decals: + 131: -4,3 + 132: 0,12 + - node: + color: '#9FED58FF' + id: WarnCornerSW + decals: + 149: -8,3 + - node: + color: '#9FED58FF' + id: WarnCornerSmallNE + decals: + 154: -8,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallNE + decals: + 135: -5,10 + 136: -5,12 + 137: -5,6 + 290: -4,4 + - node: + color: '#9FED58FF' + id: WarnCornerSmallNW + decals: + 155: -5,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallNW + decals: + 133: 0,12 + 134: -5,9 + 294: -1,10 + - node: + color: '#A46106FF' + id: WarnCornerSmallSE + decals: + 140: -8,8 + 141: -5,10 + 142: -1,12 + 143: -5,12 + 291: -4,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallSW + decals: + 138: -1,12 + 139: -5,8 + 292: -1,10 + - node: + color: '#B02E26FF' id: WarnFullGreyscale decals: - 69: 8,-6 - 70: 9,-6 - 71: 10,-6 + 54: 4,12 + - node: + color: '#9FED58FF' + id: WarnLineE + decals: + 146: -8,5 + - node: + color: '#A46106FF' + id: WarnLineE + decals: + 91: -8,6 + 92: -8,7 + 104: -5,9 + 105: -5,8 + 106: -5,7 + 107: -4,5 + 108: -1,11 + 109: 0,13 + 110: -5,13 + 111: -5,11 + 293: -1,10 + 302: -1,9 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 0: -34,-5 - 1: -34,-7 - 2: -28,-7 - 3: -28,-5 - 9: -6,2 - 16: -1,-8 - 17: -1,-9 - 28: -31,-7 - 29: -31,-6 - 30: -31,-5 + 17: 11,-1 + 18: 11,-2 + 19: 11,-3 + 20: -11,-1 + 21: -11,-2 + 28: -13,-1 + 29: -13,-2 + 30: -13,-3 + 31: 13,-1 + 32: 13,-2 + 33: 13,-3 + 52: 5,3 + 53: 8,3 + 72: -11,-3 + 199: -6,-8 + 288: 1,12 + - node: + color: '#9FED58FF' + id: WarnLineN + decals: + 150: -7,3 + 151: -6,3 + 152: -5,3 + - node: + color: '#A46106FF' + id: WarnLineN + decals: + 112: -6,8 + 113: -7,8 + 114: -4,10 + 115: -3,10 + 116: -2,10 + 117: -2,12 + 118: -3,12 + 119: -4,12 + 300: -3,4 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 13: -2,-2 - 14: -1,-2 - 15: 5,-2 - 20: 2,-27 - 21: 4,-27 - 22: 2,-21 - 23: 4,-21 - 37: 2,-24 - 38: 3,-24 - 39: 4,-24 + 11: -8,-7 + 12: -7,-7 + 13: -6,-7 + 14: 6,-7 + 15: 7,-7 + 16: 8,-7 + 34: -4,2 + 39: 3,9 + 46: -8,-9 + 47: -7,-9 + 48: -6,-9 + 49: 6,-9 + 50: 7,-9 + 51: 8,-9 + 90: 6,9 + 197: -12,-3 + - node: + color: '#9FED58FF' + id: WarnLineS + decals: + 147: -8,5 + 148: -8,4 + 153: -5,5 + - node: + color: '#A46106FF' + id: WarnLineS + decals: + 93: -8,7 + 94: -8,6 + 95: -8,8 + 96: -5,10 + 97: -5,11 + 98: -5,12 + 99: -5,13 + 100: 0,13 + 101: -1,11 + 102: -5,6 + 103: -5,7 + 301: -1,9 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: -11,-1 + 1: -11,-2 + 2: 11,-1 + 3: 11,-2 + 4: 11,-3 + 22: 13,-3 + 23: 13,-2 + 24: 13,-1 + 25: -13,-3 + 26: -13,-2 + 27: -13,-1 + 35: 5,3 + 36: 8,3 + 71: -11,-3 + 198: -8,-8 + 289: 1,12 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 4: -34,-7 - 5: -34,-5 - 6: -28,-7 - 7: -28,-5 - 8: -6,2 - 18: -1,-9 - 19: -1,-8 - 31: -31,-7 - 32: -31,-6 - 33: -31,-5 + 207: 12,-3 + - node: + color: '#9FED58FF' + id: WarnLineW + decals: + 144: -6,4 + 145: -7,4 + - node: + color: '#A46106FF' + id: WarnLineW + decals: + 120: -7,9 + 121: -6,9 + 122: -1,12 + 123: -2,12 + 124: -3,12 + 125: -4,12 + 126: -4,10 + 127: -3,10 + 128: -2,10 + 299: -3,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineW + decals: + 211: 8,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 5: 6,-7 + 6: 7,-7 + 7: 8,-7 + 8: -8,-7 + 9: -7,-7 + 10: -6,-7 + 37: -4,2 + 38: 3,9 + 40: 8,-9 + 41: 7,-9 + 42: 6,-9 + 43: -8,-9 + 44: -7,-9 + 45: -6,-9 + 89: 6,9 + 196: -12,-1 + 209: 12,-1 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineW decals: - 10: -2,-2 - 11: -1,-2 - 12: 5,-2 - 24: 2,-21 - 25: 4,-21 - 26: 2,-27 - 27: 4,-27 - 34: 2,-24 - 35: 3,-24 - 36: 4,-24 + 210: 6,-8 + - node: + cleanable: True + color: '#951710FF' + id: footprint + decals: + 318: -13.115324,17.519892 + 319: -12.880949,17.769892 + - node: + color: '#951710FF' + id: shop + decals: + 320: 0,16 + 321: -5,16 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: skull + decals: + 200: -12,-1 + 201: -12,-3 + - node: + color: '#FFFFFFFF' + id: skull + decals: + 202: -8,-8 + 203: -6,-8 + 204: 6,-8 + 205: 8,-8 - node: - color: '#FF0000FF' + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: skull + decals: + 206: 12,-3 + 208: 12,-1 + - node: + angle: -1.5707963267948966 rad + color: '#791500FF' + id: space + decals: + 354: 8,22 + - node: + cleanable: True + color: '#951710FF' + id: splatter + decals: + 317: -12.740324,16.801142 + - node: + color: '#951710FF' id: x decals: - 79: 0.5325799,12.50158 + 303: 3,36 - type: GridAtmosphere version: 2 data: @@ -308,314 +752,237 @@ entities: 0,-1: 0: 65535 -1,0: - 0: 65535 - -1,-1: - 0: 65535 + 0: 56575 0,1: 0: 65535 + -1,1: + 0: 57311 0,2: - 0: 65535 + 0: 4495 + 1: 52224 + -1,2: + 0: 65437 0,3: + 0: 65299 + 1: 12 + -1,3: 0: 65535 - 1,0: + 0,4: 0: 65535 + 1,0: + 0: 56831 1,1: - 0: 65535 + 0: 56785 1,2: - 0: 65535 + 0: 52237 + 1: 256 + 2: 4096 1,3: + 1: 1 + 0: 65484 + 1,-1: 0: 65535 - 2,0: + 1,4: 0: 65535 + 2,0: + 0: 8247 + 3: 128 2,1: - 0: 65535 + 0: 560 2,2: - 0: 65535 + 0: 4131 + 4: 128 2,3: - 0: 1023 - 1: 7168 - 3,0: - 0: 65535 - 3,1: - 0: 65535 + 0: 65329 + 2,-1: + 0: 65527 + 2,4: + 0: 4927 3,2: - 0: 65535 + 4: 3952 3,3: - 0: 7 - 1: 8 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 + 0: 65280 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 + 0: 13104 + 3,4: + 0: 7 + 4,2: + 4: 768 + -4,3: + 0: 65024 + -4,4: + 0: 61167 -4,2: + 4: 608 + -4,-1: + 0: 34944 + -3,3: + 0: 65160 + -3,-1: + 0: 65532 + -3,4: 0: 65535 - -4,3: - 0: 239 - 1: 16 -3,0: - 0: 65535 + 3: 32 + 0: 32908 -3,1: - 0: 65535 + 0: 34952 -3,2: - 0: 65535 - -3,3: - 0: 255 - 1: 3584 + 0: 34952 -2,0: - 0: 65535 + 0: 61695 -2,1: 0: 65535 -2,2: 0: 65535 -2,3: - 0: 61439 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: 0: 65535 - -4,-2: + -2,-1: 0: 65535 - -4,-1: + -2,4: 0: 65535 - -3,-4: + -1,-1: 0: 65535 - -3,-3: + -1,4: 0: 65535 -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 + 3: 8256 + 0: 34816 -2,-3: - 0: 65535 + 0: 28672 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 + 0: 65399 -1,-2: - 0: 65535 - -4,-5: - 0: 65535 - -4,-6: - 1: 8320 - 0: 52224 - -3,-6: - 0: 65520 - 1: 8 - -3,-5: - 0: 65535 - -2,-7: - 1: 4608 - 0: 60416 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-7: - 1: 48 - 0: 65480 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -1,-8: - 1: 32768 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -8,-4: - 1: 8192 + 3: 16 + 0: 61440 + 0,-2: + 0: 61440 + 1,-2: + 0: 65228 + 3: 16 + 1,-3: 0: 49152 - -7,-4: - 0: 56520 - 1: 8740 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: + 2,-3: + 0: 4096 + 2,-2: + 0: 13073 + 3: 32832 + -4,5: + 0: 61422 + -4,6: + 0: 65518 + -4,7: + 0: 3823 + -3,5: 0: 65535 - -6,-2: + -3,6: + 0: 32767 + -3,7: + 0: 819 + -2,5: 0: 65535 - -6,-1: + -2,6: 0: 65535 - -5,-4: + -2,7: + 0: 49166 + -2,8: + 0: 52428 + -1,5: 0: 65535 - -5,-3: + -1,6: 0: 65535 - -5,-2: + -1,7: + 0: 62207 + -1,8: + 0: 65407 + 0,5: 0: 65535 - -5,-1: + 0,6: 0: 65535 - -6,-5: - 1: 61440 - -5,-5: - 1: 28 - 0: 65504 - 0,4: - 0: 4095 - 1: 12288 - 1,4: - 0: 307 - 1: 516 - 4,0: + 0,7: + 0: 19 + 1,5: 0: 65535 - 4,1: - 0: 30719 - 4,2: - 0: 30583 - 1: 2176 + 1,6: + 0: 61439 + 1,7: + 0: 52428 + 2,5: + 0: 32625 + 2,6: + 0: 13073 + 2,7: + 0: 64977 + 3,5: + 4: 4368 + 3: 11808 + 3,7: + 0: 32752 + 3,6: + 3: 2 + 4: 128 + 4,5: + 3: 20256 + 4: 3 + 4,6: + 4: 28 + 4,7: + 4: 2248 + 4,8: + 4: 780 + 5,4: + 4: 1 + 3: 57344 + 5,5: + 3: 53196 + 5,7: + 4: 4352 + 5,3: + 4: 4352 + 5,6: + 3: 236 + 5,8: + 4: 1 + 6,4: + 3: 4096 + 6,5: + 3: 4369 + 6,6: + 3: 17 4,3: - 0: 3 - 1: 4 - 5,0: - 0: 4403 - 5,1: - 1: 1 - 4,-4: - 0: 65527 - 1: 8 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 1: 4096 - 5,-3: - 1: 273 - 0: 4096 - 5,-2: - 0: 13073 - 1: 32 - 5,-1: - 0: 13107 - 1: 1092 - 4,-6: - 1: 256 - 0: 4096 - 4,-5: - 0: 29489 - 1: 1090 - 0,-8: - 0: 61440 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 28672 - 1,-7: - 0: 65399 - 1: 128 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-7: - 0: 28928 - 1: 34304 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65328 - 1: 64 - 3,-5: - 0: 65535 - -2,4: - 1: 6 - 0: 8 - -1,4: - 0: 3311 - 1: 528 - -8,0: - 0: 3823 - 1: 16 - -7,0: - 0: 61439 - -7,1: - 0: 61166 - -7,2: - 0: 142 - 1: 2144 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 4095 - 1: 49152 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 + 4: 2048 -5,3: - 1: 12 - -9,-3: - 1: 256 - 0: 65024 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -9,0: - 1: 130 - 0: 12 + 4: 272 + -5,2: + 4: 8192 + -5,4: + 4: 256 + -5,5: + 4: 256 + -5,6: + 4: 4096 + -5,8: + 4: 2082 + -3,8: + 4: 8192 + -3,9: + 4: 2176 + -2,9: + 0: 2188 + -1,9: + 0: 2047 + 0,8: + 4: 49152 + 0,9: + 4: 12 + 1,8: + 4: 28672 + 1,9: + 4: 1 + 2,8: + 4: 3072 + 3,8: + 4: 3840 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -632,6 +999,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -650,10541 +1062,11839 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: BecomesStation - id: Cove -- proto: ActionToggleLight + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg +- proto: AccordionInstrument entities: - - uid: 1919 + - uid: 1426 components: - type: Transform - parent: 1918 - - type: InstantAction - container: 1918 -- proto: AirCanister + pos: -0.4802575,36.45672 + parent: 1 +- proto: AirAlarm entities: - - uid: 1289 + - uid: 239 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 1 -- proto: AirlockEngineering + - type: DeviceList + devices: + - 407 + - 646 + - 171 + - 974 + - 973 +- proto: AirCanister entities: - - uid: 1843 + - uid: 901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + anchored: True + pos: 8.5,11.5 parent: 1 -- proto: AirlockShuttle + - type: Physics + bodyType: Static +- proto: AirlockFreezer entities: - - uid: 3 + - uid: 345 components: - type: Transform - pos: 2.5,-28.5 + pos: 1.5,12.5 parent: 1 - - uid: 4 + - uid: 993 components: - type: Transform - pos: 3.5,-28.5 + pos: 3.5,9.5 parent: 1 - - uid: 5 +- proto: AirlockGlass + entities: + - uid: 358 components: - type: Transform - pos: 4.5,-28.5 + pos: 8.5,8.5 parent: 1 - - uid: 22 + - uid: 637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + pos: 8.5,5.5 parent: 1 - - uid: 23 +- proto: AirlockHatch + entities: + - uid: 36 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-5.5 + pos: -10.5,-0.5 parent: 1 - - uid: 24 + - uid: 41 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + pos: -10.5,-1.5 parent: 1 -- proto: APCBasic - entities: - - uid: 1306 + - uid: 58 components: - type: Transform - pos: -7.5,-5.5 + pos: -10.5,-2.5 parent: 1 - - uid: 1307 + - uid: 60 components: - type: Transform - pos: 3.5,-20.5 + pos: 11.5,-0.5 parent: 1 - - uid: 1308 + - type: DeviceLinkSink + links: + - 950 + - uid: 89 components: - type: Transform - pos: -27.5,-5.5 + pos: 11.5,-1.5 parent: 1 - - uid: 1309 + - type: DeviceLinkSink + links: + - 950 + - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 + pos: 11.5,-2.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 1592 + - uid: 95 components: - type: Transform - pos: 2.5,-26.5 + pos: 6.5,-6.5 parent: 1 - - uid: 1593 + - uid: 103 components: - type: Transform - pos: 4.5,-26.5 + pos: 7.5,-6.5 parent: 1 - - uid: 1594 + - uid: 114 components: - type: Transform - pos: -33.5,-4.5 + pos: 8.5,-6.5 parent: 1 - - uid: 1595 + - uid: 116 components: - type: Transform - pos: -33.5,-6.5 + pos: -5.5,-6.5 parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 1137 + - uid: 117 components: - type: Transform - pos: -21.5,11.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1781 + - uid: 118 components: - type: Transform - pos: -14.5,-20.5 + pos: -7.5,-6.5 parent: 1 - - uid: 1920 + - uid: 1917 components: - type: Transform - pos: -20.5,11.5 + pos: 9.5,22.5 parent: 1 - - uid: 1922 + - uid: 2055 components: - type: Transform - pos: -24.5,10.5 + pos: 11.5,22.5 parent: 1 - - uid: 1923 +- proto: AirlockShuttleSyndicate + entities: + - uid: 130 components: - type: Transform - pos: -25.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 parent: 1 - - uid: 1924 + - uid: 131 components: - type: Transform - pos: -26.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 1925 + - uid: 136 components: - type: Transform - pos: -31.5,1.5 + pos: -7.5,-8.5 parent: 1 - - uid: 1926 + - uid: 137 components: - type: Transform - pos: -32.5,1.5 + pos: -6.5,-8.5 parent: 1 - - uid: 1927 + - uid: 140 components: - type: Transform - pos: -34.5,0.5 + pos: -5.5,-8.5 parent: 1 - - uid: 1928 + - uid: 143 components: - type: Transform - pos: -35.5,-9.5 + pos: 6.5,-8.5 parent: 1 - - uid: 1929 + - uid: 146 components: - type: Transform - pos: -30.5,-12.5 + pos: 7.5,-8.5 parent: 1 - - uid: 1930 + - uid: 147 components: - type: Transform - pos: -26.5,-12.5 + pos: 8.5,-8.5 parent: 1 - - uid: 1931 + - uid: 148 components: - type: Transform - pos: -26.5,-13.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 1 - - uid: 1932 + - uid: 150 components: - type: Transform - pos: -26.5,-14.5 + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 parent: 1 - - uid: 1933 + - uid: 151 components: - type: Transform - pos: -25.5,-15.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 1 - - uid: 1934 + - uid: 159 components: - type: Transform - pos: -23.5,-16.5 + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 parent: 1 - - uid: 1935 +- proto: AirSensor + entities: + - uid: 973 components: - type: Transform - pos: -22.5,-16.5 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 parent: 1 - - uid: 1936 +- proto: AmeJar + entities: + - uid: 562 components: - type: Transform - pos: -21.5,-16.5 + pos: -3.6350956,13.749761 parent: 1 - - uid: 1937 + - uid: 651 components: - type: Transform - pos: -20.5,-16.5 + pos: -3.343429,13.760177 parent: 1 - - uid: 1938 +- proto: APCBasic + entities: + - uid: 53 components: - type: Transform - pos: -19.5,-18.5 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - - uid: 1939 + - uid: 123 components: - type: Transform - pos: -17.5,-19.5 + pos: 0.5,9.5 parent: 1 - - uid: 1940 + - uid: 186 components: - type: Transform - pos: -16.5,-19.5 + rot: 3.141592653589793 rad + pos: -2.5,9.5 parent: 1 - - uid: 1941 + - uid: 578 components: - type: Transform - pos: -12.5,-22.5 + pos: 9.5,2.5 parent: 1 - - uid: 1942 +- proto: AtmosDeviceFanTiny + entities: + - uid: 56 components: - type: Transform - pos: -8.5,-23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 1 - - uid: 1943 + - uid: 257 components: - type: Transform - pos: -7.5,-24.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 1 - - uid: 1944 + - uid: 259 components: - type: Transform - pos: -6.5,-25.5 + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 parent: 1 - - uid: 1945 + - uid: 320 components: - type: Transform - pos: -3.5,-26.5 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 1 - - uid: 1946 + - uid: 411 components: - type: Transform - pos: -2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 parent: 1 - - uid: 1947 + - uid: 446 components: - type: Transform - pos: -0.5,-28.5 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 1 - - uid: 1948 + - uid: 522 components: - type: Transform - pos: 7.5,-26.5 + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 parent: 1 - - uid: 1949 + - uid: 542 components: - type: Transform - pos: 9.5,-25.5 + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 1950 + - uid: 551 components: - type: Transform - pos: 10.5,-25.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 1 - - uid: 1951 + - uid: 552 components: - type: Transform - pos: 11.5,-24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 parent: 1 - - uid: 1952 + - uid: 634 components: - type: Transform - pos: 14.5,-22.5 + pos: 3.5,9.5 parent: 1 - - uid: 1953 + - uid: 905 components: - type: Transform - pos: 16.5,-21.5 + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 parent: 1 - - uid: 1954 + - uid: 906 components: - type: Transform - pos: 17.5,-19.5 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 parent: 1 - - uid: 1955 + - uid: 1037 components: - type: Transform - pos: 18.5,-18.5 + pos: 1.5,12.5 parent: 1 - - uid: 1956 + - uid: 2057 components: - type: Transform - pos: 18.5,-17.5 + pos: 11.5,22.5 parent: 1 - - uid: 1957 +- proto: AtmosFixBlockerMarker + entities: + - uid: 176 components: - type: Transform - pos: 19.5,-15.5 + pos: 4.5,-6.5 parent: 1 - - uid: 1958 + - uid: 238 components: - type: Transform - pos: 20.5,-12.5 + pos: 19.5,28.5 parent: 1 - - uid: 1959 + - uid: 1051 components: - type: Transform - pos: 20.5,-11.5 + pos: -3.5,-6.5 parent: 1 - - uid: 1960 + - uid: 1052 components: - type: Transform - pos: 20.5,-10.5 + pos: -10.5,-4.5 parent: 1 - - uid: 1961 + - uid: 1053 components: - type: Transform - pos: 20.5,-9.5 + pos: -9.5,-6.5 parent: 1 - - uid: 1962 + - uid: 1054 components: - type: Transform - pos: 21.5,-6.5 + pos: -10.5,1.5 parent: 1 - - uid: 1963 + - uid: 1056 components: - type: Transform - pos: 22.5,-3.5 + pos: 10.5,-6.5 parent: 1 - - uid: 1964 + - uid: 1057 components: - type: Transform - pos: 22.5,-2.5 + pos: 11.5,-4.5 parent: 1 - - uid: 1965 + - uid: 1058 components: - type: Transform - pos: 22.5,-1.5 + pos: 11.5,1.5 parent: 1 - - uid: 1966 + - uid: 1292 components: - type: Transform - pos: 20.5,4.5 + pos: 17.5,34.5 parent: 1 - - uid: 1967 + - uid: 1432 components: - type: Transform - pos: 19.5,9.5 + pos: 11.5,9.5 parent: 1 - - uid: 1968 + - uid: 1433 components: - type: Transform - pos: 19.5,10.5 + pos: 12.5,9.5 parent: 1 - - uid: 1969 + - uid: 1435 components: - type: Transform - pos: 18.5,12.5 + pos: 13.5,9.5 parent: 1 - - uid: 1970 + - uid: 1436 components: - type: Transform - pos: 15.5,12.5 + pos: 14.5,9.5 parent: 1 - - uid: 1971 + - uid: 1437 components: - type: Transform - pos: 11.5,14.5 + pos: 24.5,19.5 parent: 1 - - uid: 1972 + - uid: 1438 components: - type: Transform - pos: 10.5,14.5 + pos: 12.5,10.5 parent: 1 - - uid: 1973 + - uid: 1439 components: - type: Transform - pos: 8.5,15.5 + pos: 13.5,10.5 parent: 1 - - uid: 1974 + - uid: 1440 components: - type: Transform - pos: 6.5,16.5 + pos: 14.5,10.5 parent: 1 - - uid: 1975 + - uid: 1441 components: - type: Transform - pos: 5.5,18.5 + pos: 15.5,10.5 parent: 1 - - uid: 1976 + - uid: 1442 components: - type: Transform - pos: 1.5,19.5 + pos: 16.5,10.5 parent: 1 - - uid: 1977 + - uid: 1443 components: - type: Transform - pos: 0.5,19.5 + pos: 17.5,10.5 parent: 1 - - uid: 1978 + - uid: 1444 components: - type: Transform - pos: -2.5,18.5 + pos: 19.5,14.5 parent: 1 - - uid: 1979 + - uid: 1445 components: - type: Transform - pos: -3.5,17.5 + pos: 20.5,14.5 parent: 1 - - uid: 1980 + - uid: 1446 components: - type: Transform - pos: -5.5,16.5 + pos: 20.5,15.5 parent: 1 - - uid: 1981 + - uid: 1447 components: - type: Transform - pos: -6.5,16.5 + pos: 20.5,16.5 parent: 1 - - uid: 1982 + - uid: 1448 components: - type: Transform - pos: -8.5,14.5 + pos: 24.5,20.5 parent: 1 - - uid: 1983 + - uid: 1449 components: - type: Transform - pos: -9.5,14.5 + pos: 24.5,21.5 parent: 1 - - uid: 1984 + - uid: 1450 components: - type: Transform - pos: -10.5,14.5 + pos: 24.5,22.5 parent: 1 - - uid: 1985 + - uid: 1451 components: - type: Transform - pos: -15.5,13.5 + pos: 24.5,23.5 parent: 1 - - uid: 1986 + - uid: 1452 components: - type: Transform - pos: -16.5,12.5 + pos: 24.5,24.5 parent: 1 - - uid: 1987 + - uid: 1453 components: - type: Transform - pos: -17.5,12.5 + pos: 24.5,25.5 parent: 1 -- proto: BananaPhoneInstrument - entities: - - uid: 1830 + - uid: 1454 components: - type: Transform - pos: -8.640035,-8.22926 + pos: 23.5,25.5 parent: 1 -- proto: BananaSeeds - entities: - - uid: 1831 + - uid: 1455 components: - type: Transform - pos: -8.424658,-8.463635 + pos: 22.5,25.5 parent: 1 -- proto: BarSignEmergencyRumParty - entities: - - uid: 1804 + - uid: 1456 components: - type: Transform - pos: -3.5,-5.5 + pos: 21.5,25.5 parent: 1 -- proto: Bed - entities: - - uid: 1653 + - uid: 1457 components: - type: Transform - pos: 2.5,-0.5 + pos: 22.5,24.5 parent: 1 - - uid: 1654 + - uid: 1458 components: - type: Transform - pos: 2.5,0.5 + pos: 22.5,23.5 parent: 1 - - uid: 1655 + - uid: 1459 components: - type: Transform - pos: 2.5,1.5 + pos: 22.5,22.5 parent: 1 - - uid: 1656 + - uid: 1460 components: - type: Transform - pos: 2.5,3.5 + pos: 22.5,21.5 parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 1742 + - uid: 1461 components: - type: Transform - pos: 2.5,3.5 + pos: 22.5,20.5 parent: 1 - - uid: 1743 + - uid: 1462 components: - type: Transform - pos: 2.5,1.5 + pos: 22.5,19.5 parent: 1 - - uid: 1744 + - uid: 1463 components: - type: Transform - pos: 2.5,0.5 + pos: 23.5,19.5 parent: 1 - - uid: 1745 + - uid: 1464 components: - type: Transform - pos: 2.5,-0.5 + pos: 23.5,20.5 parent: 1 -- proto: BenchSofaCorner - entities: - - uid: 1748 + - uid: 1465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: 23.5,21.5 parent: 1 - - type: Physics - canCollide: False - bodyType: Static - - type: Fixtures - fixtures: {} -- proto: BenchSofaLeft - entities: - - uid: 1749 + - uid: 1466 components: - type: Transform - pos: -0.5,1.5 + pos: 23.5,22.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BenchSofaMiddle - entities: - - uid: 1747 + - uid: 1467 components: - type: Transform - pos: -1.5,1.5 + pos: 23.5,23.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BenchSofaRight - entities: - - uid: 1750 + - uid: 1468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 23.5,24.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BlastDoorOpen - entities: - - uid: 1852 + - uid: 1469 components: - type: Transform - pos: 2.5,-23.5 + pos: 21.5,19.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1853 + - uid: 1470 components: - type: Transform - pos: 3.5,-23.5 + pos: 21.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1854 + - uid: 1471 components: - type: Transform - pos: 4.5,-23.5 + pos: 20.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1855 + - uid: 1472 components: - type: Transform - pos: -30.5,-4.5 + pos: 19.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 - - uid: 1856 + - uid: 1473 components: - type: Transform - pos: -30.5,-5.5 + pos: 18.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 - - uid: 1857 + - uid: 1474 components: - type: Transform - pos: -30.5,-6.5 + pos: 17.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 -- proto: BoozeDispenser - entities: - - uid: 1651 + - uid: 1475 components: - type: Transform - pos: -1.5,-13.5 + pos: 16.5,22.5 parent: 1 -- proto: BrokenBottle - entities: - - uid: 1822 + - uid: 1476 components: - type: Transform - pos: -2.7916102,-7.6355104 + pos: 15.5,22.5 parent: 1 - - uid: 1823 + - uid: 1477 components: - type: Transform - pos: -5.9166102,-9.963635 + pos: 14.5,22.5 parent: 1 -- proto: Bucket - entities: - - uid: 1713 + - uid: 1478 components: - type: Transform - pos: -14.518534,-6.3820496 + pos: 13.5,22.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 1326 + - uid: 1479 components: - type: Transform - pos: 3.5,1.5 + pos: 12.5,22.5 parent: 1 - - uid: 1327 + - uid: 1480 components: - type: Transform - pos: 3.5,2.5 + pos: 12.5,23.5 parent: 1 - - uid: 1328 + - uid: 1481 components: - type: Transform - pos: 4.5,2.5 + pos: 13.5,23.5 parent: 1 - - uid: 1329 + - uid: 1482 components: - type: Transform - pos: 5.5,2.5 + pos: 13.5,24.5 parent: 1 - - uid: 1330 + - uid: 1483 components: - type: Transform - pos: 5.5,1.5 + pos: 12.5,21.5 parent: 1 - - uid: 1331 + - uid: 1484 components: - type: Transform - pos: 5.5,0.5 + pos: 13.5,21.5 parent: 1 - - uid: 1332 + - uid: 1485 components: - type: Transform - pos: 5.5,-0.5 + pos: 16.5,20.5 parent: 1 - - uid: 1333 + - uid: 1486 components: - type: Transform - pos: 2.5,1.5 + pos: 17.5,20.5 parent: 1 - - uid: 1334 + - uid: 1487 components: - type: Transform - pos: 1.5,1.5 + pos: 17.5,21.5 parent: 1 - - uid: 1335 + - uid: 1488 components: - type: Transform - pos: 0.5,1.5 + pos: 18.5,23.5 parent: 1 - - uid: 1336 + - uid: 1489 components: - type: Transform - pos: -0.5,1.5 + pos: 18.5,24.5 parent: 1 - - uid: 1337 + - uid: 1490 components: - type: Transform - pos: -1.5,1.5 + pos: 19.5,24.5 parent: 1 - - uid: 1338 + - uid: 1491 components: - type: Transform - pos: -2.5,1.5 + pos: 16.5,25.5 parent: 1 - - uid: 1339 + - uid: 1492 components: - type: Transform - pos: -3.5,1.5 + pos: 15.5,25.5 parent: 1 - - uid: 1340 + - uid: 1557 components: - type: Transform - pos: -4.5,1.5 + pos: 16.5,34.5 parent: 1 - - uid: 1341 + - uid: 1563 components: - type: Transform - pos: -4.5,2.5 + pos: 18.5,29.5 parent: 1 - - uid: 1342 + - uid: 1565 components: - type: Transform - pos: -5.5,2.5 + pos: 20.5,31.5 parent: 1 - - uid: 1343 + - uid: 1566 components: - type: Transform - pos: -6.5,2.5 + pos: 20.5,32.5 parent: 1 - - uid: 1344 + - uid: 1567 components: - type: Transform - pos: -7.5,2.5 + pos: 19.5,32.5 parent: 1 - - uid: 1345 + - uid: 1660 components: - type: Transform - pos: -0.5,2.5 + pos: 18.5,32.5 parent: 1 - - uid: 1346 + - uid: 1661 components: - type: Transform - pos: -0.5,3.5 + pos: 20.5,30.5 parent: 1 - - uid: 1347 + - uid: 1662 components: - type: Transform - pos: -0.5,0.5 + pos: 19.5,30.5 parent: 1 - - uid: 1348 + - uid: 1922 components: - type: Transform - pos: -0.5,-0.5 + pos: 15.5,34.5 parent: 1 - - uid: 1349 + - uid: 1955 components: - type: Transform - pos: -3.5,-0.5 + pos: 19.5,29.5 parent: 1 - - uid: 1350 + - uid: 1962 components: - type: Transform - pos: -3.5,0.5 + pos: 14.5,34.5 parent: 1 - - uid: 1351 + - uid: 1963 components: - type: Transform - pos: 1.5,0.5 + pos: 13.5,34.5 parent: 1 - - uid: 1352 + - uid: 1964 components: - type: Transform - pos: 1.5,-0.5 + pos: 12.5,34.5 parent: 1 - - uid: 1353 + - uid: 1965 components: - type: Transform - pos: 5.5,-1.5 + pos: 11.5,34.5 parent: 1 - - uid: 1354 + - uid: 1966 components: - type: Transform - pos: 6.5,-1.5 + pos: 10.5,34.5 parent: 1 - - uid: 1355 + - uid: 1967 components: - type: Transform - pos: 7.5,-1.5 + pos: 6.5,35.5 parent: 1 - - uid: 1356 + - uid: 1968 components: - type: Transform - pos: 7.5,-2.5 + pos: 5.5,35.5 parent: 1 - - uid: 1357 + - uid: 1969 components: - type: Transform - pos: 7.5,-3.5 + pos: 4.5,35.5 parent: 1 - - uid: 1358 + - uid: 1970 components: - type: Transform - pos: 7.5,-4.5 + pos: 3.5,35.5 parent: 1 - - uid: 1359 + - uid: 1971 components: - type: Transform - pos: 7.5,-5.5 + pos: 2.5,35.5 parent: 1 - - uid: 1360 + - uid: 1972 components: - type: Transform - pos: 5.5,-2.5 + pos: 2.5,36.5 parent: 1 - - uid: 1361 + - uid: 1973 components: - type: Transform - pos: 4.5,-2.5 + pos: 3.5,36.5 parent: 1 - - uid: 1362 + - uid: 1974 components: - type: Transform - pos: 4.5,-3.5 + pos: 4.5,36.5 parent: 1 - - uid: 1363 + - uid: 1975 components: - type: Transform - pos: 4.5,-4.5 + pos: -8.5,38.5 parent: 1 - - uid: 1364 + - uid: 1976 components: - type: Transform - pos: 4.5,-5.5 + pos: -8.5,37.5 parent: 1 - - uid: 1365 + - uid: 1977 components: - type: Transform - pos: 4.5,-6.5 + pos: -10.5,35.5 parent: 1 - - uid: 1366 + - uid: 1978 components: - type: Transform - pos: 4.5,-7.5 + pos: -16.5,34.5 parent: 1 - - uid: 1367 + - uid: 1979 components: - type: Transform - pos: 4.5,-8.5 + pos: -18.5,33.5 parent: 1 - - uid: 1368 + - uid: 1980 components: - type: Transform - pos: 4.5,-9.5 + pos: -18.5,32.5 parent: 1 - - uid: 1369 + - uid: 1981 components: - type: Transform - pos: 4.5,-10.5 + pos: -19.5,27.5 parent: 1 - - uid: 1370 + - uid: 1982 components: - type: Transform - pos: 4.5,-11.5 + pos: -19.5,22.5 parent: 1 - - uid: 1371 + - uid: 1983 components: - type: Transform - pos: 4.5,-12.5 + pos: -19.5,18.5 parent: 1 - - uid: 1372 + - uid: 1984 components: - type: Transform - pos: 4.5,-13.5 + pos: -19.5,14.5 parent: 1 - - uid: 1373 + - uid: 1985 components: - type: Transform - pos: 4.5,-14.5 + pos: -19.5,13.5 parent: 1 - - uid: 1374 + - uid: 1986 components: - type: Transform - pos: 4.5,-15.5 + pos: -18.5,11.5 parent: 1 - - uid: 1375 + - uid: 1987 components: - type: Transform - pos: 4.5,-16.5 + pos: -14.5,10.5 parent: 1 - - uid: 1376 + - uid: 1988 components: - type: Transform - pos: 4.5,-17.5 + pos: -14.5,9.5 parent: 1 - - uid: 1377 + - uid: 1989 components: - type: Transform - pos: 4.5,-18.5 + pos: -13.5,9.5 parent: 1 - - uid: 1378 +- proto: AtmosFixFreezerMarker + entities: + - uid: 404 components: - type: Transform - pos: 2.5,-18.5 + pos: 3.5,12.5 parent: 1 - - uid: 1379 + - uid: 866 components: - type: Transform - pos: 2.5,-17.5 + pos: 2.5,12.5 parent: 1 - - uid: 1380 + - uid: 874 components: - type: Transform - pos: 2.5,-16.5 + pos: 4.5,12.5 parent: 1 - - uid: 1381 + - uid: 1014 components: - type: Transform - pos: 2.5,-15.5 + pos: 4.5,11.5 parent: 1 - - uid: 1382 + - uid: 1016 components: - type: Transform - pos: 2.5,-14.5 + pos: 3.5,11.5 parent: 1 - - uid: 1383 + - uid: 1023 components: - type: Transform - pos: 2.5,-13.5 + pos: 2.5,11.5 parent: 1 - - uid: 1384 + - uid: 1028 components: - type: Transform - pos: 2.5,-12.5 + pos: 2.5,10.5 parent: 1 - - uid: 1385 + - uid: 1063 components: - type: Transform - pos: 2.5,-11.5 + pos: 3.5,10.5 parent: 1 - - uid: 1386 + - uid: 1064 components: - type: Transform - pos: 2.5,-10.5 + pos: 4.5,10.5 parent: 1 - - uid: 1387 +- proto: Bed + entities: + - uid: 1645 components: - type: Transform - pos: 2.5,-9.5 + pos: -0.5,34.5 parent: 1 - - uid: 1388 + - uid: 1701 components: - type: Transform - pos: 2.5,-8.5 + pos: -5.5,35.5 parent: 1 - - uid: 1389 + - uid: 1709 components: - type: Transform - pos: 2.5,-7.5 + pos: -0.5,36.5 parent: 1 - - uid: 1390 + - uid: 1863 components: - type: Transform - pos: 2.5,-6.5 + pos: -12.5,17.5 parent: 1 - - uid: 1391 +- proto: BedsheetMedical + entities: + - uid: 1851 components: - type: Transform - pos: 2.5,-5.5 + pos: -12.5,17.5 parent: 1 - - uid: 1392 +- proto: BedsheetSpawner + entities: + - uid: 1760 components: - type: Transform - pos: 2.5,-4.5 + pos: -5.5,35.5 parent: 1 - - uid: 1393 + - uid: 1761 components: - type: Transform - pos: 1.5,-4.5 + pos: -0.5,36.5 parent: 1 - - uid: 1394 + - uid: 1762 components: - type: Transform - pos: 0.5,-4.5 + pos: -0.5,34.5 parent: 1 - - uid: 1395 +- proto: BlastDoor + entities: + - uid: 1672 components: - type: Transform - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 1396 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1677 components: - type: Transform - pos: -1.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 1397 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1734 components: - type: Transform - pos: -2.5,-4.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 1398 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1838 components: - type: Transform - pos: -3.5,-4.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 1399 + - type: DeviceLinkSink + links: + - 1640 +- proto: BlastDoorOpen + entities: + - uid: 313 components: - type: Transform - pos: -4.5,-4.5 + pos: 10.5,9.5 parent: 1 - - uid: 1400 + - type: DeviceLinkSink + links: + - 671 + - uid: 318 components: - type: Transform - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,2.5 parent: 1 - - uid: 1401 + - type: DeviceLinkSink + links: + - 173 + - uid: 329 components: - type: Transform - pos: -6.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 1402 + - type: DeviceLinkSink + links: + - 770 + - uid: 330 components: - type: Transform - pos: -7.5,-4.5 + pos: 10.5,6.5 parent: 1 - - uid: 1403 + - type: DeviceLinkSink + links: + - 667 + - uid: 337 components: - type: Transform - pos: -8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 1404 + - type: DeviceLinkSink + links: + - 750 + - uid: 341 components: - type: Transform - pos: -9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 parent: 1 - - uid: 1405 + - type: DeviceLinkSink + links: + - 859 + - uid: 344 components: - type: Transform - pos: -10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 1 - - uid: 1406 + - type: DeviceLinkSink + links: + - 859 + - uid: 349 components: - type: Transform - pos: -11.5,-4.5 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 parent: 1 - - uid: 1407 + - type: DeviceLinkSink + links: + - 859 + - uid: 350 components: - type: Transform - pos: -12.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 parent: 1 - - uid: 1408 + - type: DeviceLinkSink + links: + - 859 + - uid: 351 components: - type: Transform - pos: -13.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 parent: 1 - - uid: 1409 + - type: DeviceLinkSink + links: + - 859 + - uid: 352 components: - type: Transform - pos: -14.5,-4.5 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 parent: 1 - - uid: 1410 + - type: DeviceLinkSink + links: + - 859 + - uid: 364 components: - type: Transform - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 1411 + - type: DeviceLinkSink + links: + - 859 + - uid: 365 components: - type: Transform - pos: -16.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,3.5 parent: 1 - - uid: 1412 + - type: DeviceLinkSink + links: + - 730 + - uid: 368 components: - type: Transform - pos: -17.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 1413 + - type: DeviceLinkSink + links: + - 770 + - uid: 386 components: - type: Transform - pos: -18.5,-4.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 1414 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 1415 + - type: DeviceLinkSink + links: + - 770 + - uid: 390 components: - type: Transform - pos: -19.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 1416 + - type: DeviceLinkSink + links: + - 770 + - uid: 403 components: - type: Transform - pos: -19.5,-6.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 1417 + - type: DeviceLinkSink + links: + - 770 + - uid: 428 components: - type: Transform - pos: -20.5,-6.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 1418 + - type: DeviceLinkSink + links: + - 770 + - uid: 429 components: - type: Transform - pos: -21.5,-6.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 1419 + - type: DeviceLinkSink + links: + - 770 + - uid: 431 components: - type: Transform - pos: -22.5,-6.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 1420 + - type: DeviceLinkSink + links: + - 362 + - uid: 433 components: - type: Transform - pos: -23.5,-6.5 + pos: 10.5,8.5 parent: 1 - - uid: 1421 + - type: DeviceLinkSink + links: + - 671 + - uid: 438 components: - type: Transform - pos: -24.5,-6.5 + pos: 10.5,5.5 parent: 1 - - uid: 1422 + - type: DeviceLinkSink + links: + - 667 + - uid: 439 components: - type: Transform - pos: -25.5,-6.5 + pos: -4.5,-7.5 parent: 1 - - uid: 1423 + - type: DeviceLinkSink + links: + - 947 + - uid: 442 components: - type: Transform - pos: -25.5,-4.5 + pos: -8.5,-7.5 parent: 1 - - uid: 1424 + - type: DeviceLinkSink + links: + - 947 + - uid: 444 components: - type: Transform - pos: -24.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,0.5 parent: 1 - - uid: 1425 + - type: DeviceLinkSink + links: + - 948 + - uid: 449 components: - type: Transform - pos: -23.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 parent: 1 - - uid: 1426 + - type: DeviceLinkSink + links: + - 948 + - uid: 454 components: - type: Transform - pos: -22.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 1 - - uid: 1427 + - type: DeviceLinkSink + links: + - 949 + - uid: 455 components: - type: Transform - pos: -21.5,-4.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 1 - - uid: 1428 + - type: DeviceLinkSink + links: + - 949 + - uid: 639 components: - type: Transform - pos: -21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 parent: 1 - - uid: 1429 + - type: DeviceLinkSink + links: + - 950 + - uid: 640 components: - type: Transform - pos: -21.5,-2.5 + rot: -1.5707963267948966 rad + pos: 12.5,0.5 parent: 1 - - uid: 1430 + - type: DeviceLinkSink + links: + - 950 +- proto: Bloodpack + entities: + - uid: 1877 components: - type: Transform - pos: -20.5,-2.5 + pos: -14.592388,18.943573 parent: 1 - - uid: 1431 + - uid: 1878 components: - type: Transform - pos: -19.5,-2.5 + pos: -14.363221,18.860239 parent: 1 - - uid: 1432 +- proto: Bonfire + entities: + - uid: 779 components: - type: Transform - pos: -18.5,-2.5 + pos: -1.5,24.5 parent: 1 - - uid: 1433 +- proto: BoozeDispenser + entities: + - uid: 90 components: - type: Transform - pos: -17.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - - uid: 1434 +- proto: BoxCardboard + entities: + - uid: 1993 components: - type: Transform - pos: -16.5,-2.5 + pos: 0.5249535,4.68744 parent: 1 - - uid: 1435 +- proto: BoxCartridgeBB + entities: + - uid: 1748 components: - type: Transform - pos: -15.5,-2.5 + pos: 23.40793,24.519094 parent: 1 - - uid: 1436 +- proto: BoxDarts + entities: + - uid: 1751 components: - type: Transform - pos: -14.5,-2.5 + pos: -11.828638,30.224789 parent: 1 - - uid: 1437 +- proto: BoxDonkSoftBox + entities: + - uid: 1753 components: - type: Transform - pos: -13.5,-2.5 + pos: 22.798862,20.227777 parent: 1 - - uid: 1438 +- proto: BoxHandcuff + entities: + - uid: 1874 components: - type: Transform - pos: -12.5,-2.5 + pos: -14.498638,18.214405 parent: 1 - - uid: 1439 +- proto: BoxLightMixed + entities: + - uid: 2050 components: - type: Transform - pos: -11.5,-2.5 + pos: -6.5784426,7.7413363 parent: 1 - - uid: 1440 +- proto: BoxMRE + entities: + - uid: 1136 components: - type: Transform - pos: -10.5,-2.5 + pos: -3.6354046,8.857361 parent: 1 - - uid: 1441 + - uid: 1137 components: - type: Transform - pos: -9.5,-2.5 + pos: -3.3854048,8.732361 parent: 1 - - uid: 1442 +- proto: BrokenBottle + entities: + - uid: 1127 components: - type: Transform - pos: -8.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.3516002,22.561167 parent: 1 - - uid: 1443 +- proto: Bucket + entities: + - uid: 17 components: - type: Transform - pos: -7.5,-2.5 + pos: -3.4331908,7.0847335 parent: 1 - - uid: 1444 + - uid: 1070 components: - type: Transform - pos: -6.5,-2.5 + pos: -3.6727743,7.15765 parent: 1 - - uid: 1445 + - uid: 1073 components: - type: Transform - pos: -5.5,-2.5 + pos: -3.2248573,7.1680665 parent: 1 - - uid: 1446 + - uid: 2028 components: - type: Transform - pos: -4.5,-2.5 + pos: 14.837379,14.703768 parent: 1 - - uid: 1447 +- proto: ButchCleaver + entities: + - uid: 235 components: - type: Transform - pos: -3.5,-2.5 + pos: 2.4287968,5.620631 parent: 1 - - uid: 1448 +- proto: ButtonFrameCaution + entities: + - uid: 1707 components: - type: Transform - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 1449 + - uid: 1740 components: - type: Transform - pos: -1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1450 + - uid: 1741 components: - type: Transform - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1451 + - uid: 1742 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 1452 + - uid: 1743 components: - type: Transform - pos: 1.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 1453 +- proto: ButtonFrameExit + entities: + - uid: 1746 components: - type: Transform - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 1454 + - uid: 1747 components: - type: Transform - pos: 3.5,-2.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 1455 +- proto: ButtonFrameGrey + entities: + - uid: 1744 components: - type: Transform - pos: -0.5,-1.5 + pos: 9.5,7.5 parent: 1 - - uid: 1456 + - uid: 1745 components: - type: Transform - pos: -7.5,-5.5 + pos: 9.5,10.5 parent: 1 - - uid: 1562 +- proto: CableApcExtension + entities: + - uid: 13 components: - type: Transform - pos: 2.5,-20.5 + pos: -4.5,-3.5 parent: 1 - - uid: 1563 + - uid: 20 components: - type: Transform - pos: 3.5,-20.5 + pos: -6.5,-4.5 parent: 1 - - uid: 1564 + - uid: 21 components: - type: Transform - pos: 4.5,-20.5 + pos: -10.5,-1.5 parent: 1 - - uid: 1565 + - uid: 22 components: - type: Transform - pos: 4.5,-21.5 + pos: -6.5,-3.5 parent: 1 - - uid: 1566 + - uid: 24 components: - type: Transform - pos: 4.5,-22.5 + pos: -5.5,-3.5 parent: 1 - - uid: 1567 + - uid: 74 components: - type: Transform - pos: 4.5,-23.5 + pos: 2.5,7.5 parent: 1 - - uid: 1568 + - uid: 80 components: - type: Transform - pos: 4.5,-24.5 + pos: -3.5,10.5 parent: 1 - - uid: 1569 + - uid: 86 components: - type: Transform - pos: 4.5,-25.5 + pos: -2.5,9.5 parent: 1 - - uid: 1570 + - uid: 94 components: - type: Transform - pos: 4.5,-26.5 + pos: -2.5,10.5 parent: 1 - - uid: 1571 + - uid: 120 components: - type: Transform - pos: 2.5,-26.5 + pos: -0.5,12.5 parent: 1 - - uid: 1572 + - uid: 153 components: - type: Transform - pos: 2.5,-25.5 + pos: -4.5,5.5 parent: 1 - - uid: 1573 + - uid: 155 components: - type: Transform - pos: 2.5,-24.5 + pos: -0.5,4.5 parent: 1 - - uid: 1574 + - uid: 161 components: - type: Transform - pos: 2.5,-23.5 + pos: -0.5,7.5 parent: 1 - - uid: 1575 + - uid: 163 components: - type: Transform - pos: 2.5,-22.5 + pos: 3.5,7.5 parent: 1 - - uid: 1576 + - uid: 168 components: - type: Transform - pos: 2.5,-21.5 + pos: -5.5,9.5 parent: 1 - - uid: 1577 + - uid: 175 components: - type: Transform - pos: -27.5,-4.5 + pos: 6.5,8.5 parent: 1 - - uid: 1578 + - uid: 185 components: - type: Transform - pos: -27.5,-5.5 + pos: -3.5,-3.5 parent: 1 - - uid: 1579 + - uid: 199 components: - type: Transform - pos: -27.5,-6.5 + pos: 0.5,7.5 parent: 1 - - uid: 1580 + - uid: 208 components: - type: Transform - pos: -28.5,-6.5 + pos: 5.5,8.5 parent: 1 - - uid: 1581 + - uid: 211 components: - type: Transform - pos: -29.5,-6.5 + pos: 8.5,11.5 parent: 1 - - uid: 1582 + - uid: 214 components: - type: Transform - pos: -30.5,-6.5 + pos: 7.5,11.5 parent: 1 - - uid: 1583 + - uid: 216 components: - type: Transform - pos: -31.5,-6.5 + pos: -4.5,13.5 parent: 1 - - uid: 1584 + - uid: 217 components: - type: Transform - pos: -32.5,-6.5 + pos: -4.5,12.5 parent: 1 - - uid: 1585 + - uid: 285 components: - type: Transform - pos: -33.5,-6.5 + pos: -6.5,4.5 parent: 1 - - uid: 1586 + - uid: 293 components: - type: Transform - pos: -33.5,-4.5 + pos: -9.5,-1.5 parent: 1 - - uid: 1587 + - uid: 295 components: - type: Transform - pos: -32.5,-4.5 + pos: -6.5,-5.5 parent: 1 - - uid: 1588 + - uid: 332 components: - type: Transform - pos: -31.5,-4.5 + pos: -3.5,14.5 parent: 1 - - uid: 1589 + - uid: 335 components: - type: Transform - pos: -30.5,-4.5 + pos: -4.5,14.5 parent: 1 - - uid: 1590 + - uid: 342 components: - type: Transform - pos: -29.5,-4.5 + pos: -2.5,14.5 parent: 1 - - uid: 1591 + - uid: 348 components: - type: Transform - pos: -28.5,-4.5 + pos: -2.5,-3.5 parent: 1 - - uid: 1596 + - uid: 388 components: - type: Transform - pos: -7.5,-6.5 + pos: 3.5,-3.5 parent: 1 - - uid: 1597 + - uid: 391 components: - type: Transform - pos: -6.5,-6.5 + pos: -5.5,4.5 parent: 1 - - uid: 1598 + - uid: 408 components: - type: Transform - pos: -5.5,-6.5 + pos: -7.5,4.5 parent: 1 - - uid: 1599 + - uid: 409 components: - type: Transform - pos: -4.5,-6.5 + pos: -3.5,12.5 parent: 1 - - uid: 1600 + - uid: 430 components: - type: Transform - pos: -3.5,-6.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1601 + - uid: 434 components: - type: Transform - pos: -2.5,-6.5 + pos: 5.5,14.5 parent: 1 - - uid: 1602 + - uid: 443 components: - type: Transform - pos: -1.5,-6.5 + pos: 4.5,14.5 parent: 1 - - uid: 1603 + - uid: 451 components: - type: Transform - pos: -1.5,-7.5 + pos: -4.5,6.5 parent: 1 - - uid: 1604 + - uid: 458 components: - type: Transform - pos: -1.5,-8.5 + pos: -4.5,7.5 parent: 1 - - uid: 1605 + - uid: 459 components: - type: Transform - pos: -1.5,-9.5 + pos: -4.5,8.5 parent: 1 - - uid: 1606 + - uid: 460 components: - type: Transform - pos: -1.5,-10.5 + pos: -4.5,9.5 parent: 1 - - uid: 1607 + - uid: 461 components: - type: Transform - pos: -1.5,-11.5 + pos: -4.5,10.5 parent: 1 - - uid: 1608 + - uid: 462 components: - type: Transform - pos: -1.5,-12.5 + pos: -4.5,11.5 parent: 1 - - uid: 1609 + - uid: 463 components: - type: Transform - pos: -1.5,-13.5 + pos: -2.5,12.5 parent: 1 - - uid: 1610 + - uid: 464 components: - type: Transform - pos: -2.5,-13.5 + pos: -1.5,12.5 parent: 1 - - uid: 1611 + - uid: 467 components: - type: Transform - pos: -3.5,-13.5 + pos: 0.5,9.5 parent: 1 - - uid: 1612 + - uid: 469 components: - type: Transform - pos: -4.5,-13.5 + pos: 0.5,8.5 parent: 1 - - uid: 1613 + - uid: 472 components: - type: Transform - pos: -5.5,-13.5 + pos: 3.5,8.5 parent: 1 - - uid: 1614 + - uid: 476 components: - type: Transform - pos: -6.5,-13.5 + pos: 3.5,11.5 parent: 1 - - uid: 1615 + - uid: 477 components: - type: Transform - pos: -7.5,-13.5 + pos: 1.5,7.5 parent: 1 - - uid: 1616 + - uid: 478 components: - type: Transform - pos: -7.5,-12.5 + pos: 1.5,6.5 parent: 1 - - uid: 1617 + - uid: 479 components: - type: Transform - pos: -7.5,-11.5 + pos: 1.5,5.5 parent: 1 - - uid: 1618 + - uid: 480 components: - type: Transform - pos: -7.5,-10.5 + pos: 1.5,4.5 parent: 1 - - uid: 1619 + - uid: 481 components: - type: Transform - pos: -7.5,-9.5 + pos: 0.5,4.5 parent: 1 - - uid: 1620 + - uid: 482 components: - type: Transform - pos: -8.5,-9.5 + pos: 2.5,4.5 parent: 1 - - uid: 1621 + - uid: 483 components: - type: Transform - pos: -9.5,-9.5 + pos: 3.5,4.5 parent: 1 - - uid: 1622 + - uid: 491 components: - type: Transform - pos: -10.5,-9.5 + pos: 8.5,8.5 parent: 1 - - uid: 1623 + - uid: 492 components: - type: Transform - pos: -11.5,-9.5 + pos: 8.5,5.5 parent: 1 - - uid: 1624 + - uid: 494 components: - type: Transform - pos: -12.5,-9.5 + pos: 7.5,8.5 parent: 1 - - uid: 1625 + - uid: 495 components: - type: Transform - pos: -12.5,-8.5 + pos: 7.5,7.5 parent: 1 - - uid: 1626 + - uid: 496 components: - type: Transform - pos: -12.5,-7.5 + pos: 7.5,6.5 parent: 1 - - uid: 1627 + - uid: 497 components: - type: Transform - pos: -12.5,-6.5 + pos: 7.5,5.5 parent: 1 - - uid: 1628 + - uid: 500 components: - type: Transform - pos: -11.5,-6.5 + pos: 7.5,0.5 parent: 1 - - uid: 1629 + - uid: 501 components: - type: Transform - pos: -10.5,-6.5 + pos: 6.5,0.5 parent: 1 - - uid: 1630 + - uid: 504 components: - type: Transform - pos: -9.5,-6.5 + pos: 5.5,0.5 parent: 1 - - uid: 1631 + - uid: 505 components: - type: Transform - pos: -8.5,-6.5 + pos: 4.5,0.5 parent: 1 - - uid: 1902 + - uid: 506 components: - type: Transform - pos: 8.5,-5.5 + pos: 3.5,0.5 parent: 1 - - uid: 1903 + - uid: 507 components: - type: Transform - pos: 9.5,-5.5 + pos: 2.5,0.5 parent: 1 - - uid: 1904 + - uid: 508 components: - type: Transform - pos: 10.5,-5.5 + pos: 1.5,0.5 parent: 1 - - uid: 1988 + - uid: 509 components: - type: Transform - pos: -0.5,4.5 + pos: 0.5,0.5 parent: 1 - - uid: 1989 + - uid: 510 components: - type: Transform - pos: -0.5,5.5 + pos: -0.5,0.5 parent: 1 - - uid: 1990 + - uid: 511 components: - type: Transform - pos: -0.5,6.5 + pos: -1.5,0.5 parent: 1 - - uid: 1991 + - uid: 512 components: - type: Transform - pos: -0.5,7.5 + pos: -2.5,0.5 parent: 1 - - uid: 1992 + - uid: 513 components: - type: Transform - pos: -1.5,7.5 + pos: -3.5,0.5 parent: 1 -- proto: CableHV - entities: - - uid: 1310 + - uid: 514 components: - type: Transform - pos: 4.5,-0.5 + pos: -4.5,0.5 parent: 1 - - uid: 1311 + - uid: 515 components: - type: Transform - pos: 4.5,0.5 + pos: -5.5,0.5 parent: 1 - - uid: 1312 + - uid: 516 components: - type: Transform - pos: 4.5,1.5 + pos: -6.5,0.5 parent: 1 - - uid: 1314 + - uid: 517 components: - type: Transform - pos: 4.5,2.5 + pos: -7.5,0.5 parent: 1 - - uid: 1315 + - uid: 523 components: - type: Transform - pos: 4.5,3.5 + pos: 7.5,-5.5 parent: 1 - - uid: 1732 + - uid: 524 components: - type: Transform - pos: 5.5,1.5 + pos: 11.5,-1.5 parent: 1 - - uid: 1738 + - uid: 553 components: - type: Transform - pos: 7.5,1.5 + pos: 10.5,-1.5 parent: 1 - - uid: 1739 + - uid: 554 components: - type: Transform - pos: 6.5,1.5 + pos: 7.5,-6.5 parent: 1 -- proto: CableMV - entities: - - uid: 1316 + - uid: 579 components: - type: Transform - pos: 4.5,3.5 + pos: 8.5,12.5 parent: 1 - - uid: 1317 + - uid: 580 components: - type: Transform - pos: 4.5,2.5 + pos: 8.5,13.5 parent: 1 - - uid: 1318 + - uid: 592 components: - type: Transform - pos: 5.5,2.5 + pos: 9.5,2.5 parent: 1 - - uid: 1319 + - uid: 612 components: - type: Transform - pos: 5.5,1.5 + pos: -7.5,-0.5 parent: 1 - - uid: 1320 + - uid: 613 components: - type: Transform - pos: 5.5,0.5 + pos: -7.5,-1.5 parent: 1 - - uid: 1321 + - uid: 614 components: - type: Transform - pos: 5.5,-0.5 + pos: -8.5,-1.5 parent: 1 - - uid: 1322 + - uid: 615 components: - type: Transform - pos: 5.5,-1.5 + pos: -7.5,-2.5 parent: 1 - - uid: 1323 + - uid: 616 components: - type: Transform - pos: 5.5,-2.5 + pos: -7.5,-3.5 parent: 1 - - uid: 1324 + - uid: 618 components: - type: Transform - pos: 3.5,2.5 + pos: 8.5,0.5 parent: 1 - - uid: 1325 + - uid: 619 components: - type: Transform - pos: 3.5,1.5 + pos: 8.5,-0.5 parent: 1 - - uid: 1457 + - uid: 620 components: - type: Transform - pos: 4.5,-2.5 + pos: 8.5,-1.5 parent: 1 - - uid: 1458 + - uid: 621 components: - type: Transform - pos: 4.5,-3.5 + pos: 8.5,-2.5 parent: 1 - - uid: 1459 + - uid: 622 components: - type: Transform - pos: 4.5,-4.5 + pos: 8.5,-3.5 parent: 1 - - uid: 1460 + - uid: 624 components: - type: Transform - pos: 4.5,-5.5 + pos: 9.5,-1.5 parent: 1 - - uid: 1461 + - uid: 648 components: - type: Transform - pos: 4.5,-6.5 + pos: -4.5,4.5 parent: 1 - - uid: 1462 + - uid: 654 components: - type: Transform - pos: 4.5,-7.5 + pos: 8.5,14.5 parent: 1 - - uid: 1463 + - uid: 658 components: - type: Transform - pos: 4.5,-8.5 + pos: 9.5,1.5 parent: 1 - - uid: 1464 + - uid: 715 components: - type: Transform - pos: 4.5,-9.5 + pos: 9.5,0.5 parent: 1 - - uid: 1465 + - uid: 719 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-3.5 parent: 1 - - uid: 1466 + - uid: 733 components: - type: Transform - pos: 4.5,-11.5 + pos: 7.5,-4.5 parent: 1 - - uid: 1467 + - uid: 747 components: - type: Transform - pos: 4.5,-12.5 + pos: 0.5,-3.5 parent: 1 - - uid: 1468 + - uid: 796 components: - type: Transform - pos: 4.5,-13.5 + pos: 5.5,-3.5 parent: 1 - - uid: 1469 + - uid: 797 components: - type: Transform - pos: 4.5,-14.5 + pos: 4.5,-3.5 parent: 1 - - uid: 1470 + - uid: 798 components: - type: Transform - pos: 4.5,-15.5 + pos: 7.5,-3.5 parent: 1 - - uid: 1471 + - uid: 799 components: - type: Transform - pos: 4.5,-16.5 + pos: 6.5,-3.5 parent: 1 - - uid: 1472 + - uid: 812 components: - type: Transform - pos: 4.5,-17.5 + pos: 7.5,14.5 parent: 1 - - uid: 1473 + - uid: 835 components: - type: Transform - pos: 4.5,-18.5 + pos: 2.5,-3.5 parent: 1 - - uid: 1474 + - uid: 836 components: - type: Transform - pos: 4.5,-19.5 + pos: -1.5,-3.5 parent: 1 - - uid: 1475 + - uid: 837 components: - type: Transform - pos: 4.5,-20.5 + pos: 1.5,-3.5 parent: 1 - - uid: 1476 + - uid: 875 components: - type: Transform - pos: 3.5,-20.5 + pos: -1.5,14.5 parent: 1 - - uid: 1477 + - uid: 876 components: - type: Transform - pos: 2.5,-20.5 + pos: -0.5,14.5 parent: 1 - - uid: 1478 + - uid: 877 components: - type: Transform - pos: 2.5,-19.5 + pos: -6.5,9.5 parent: 1 - - uid: 1479 + - uid: 878 components: - type: Transform - pos: 2.5,-18.5 + pos: -7.5,9.5 parent: 1 - - uid: 1480 + - uid: 898 components: - type: Transform - pos: 2.5,-17.5 + pos: 6.5,14.5 parent: 1 - - uid: 1481 + - uid: 899 components: - type: Transform - pos: 2.5,-16.5 + pos: 3.5,14.5 parent: 1 - - uid: 1482 + - uid: 1004 components: - type: Transform - pos: 2.5,-15.5 + pos: 6.5,9.5 parent: 1 - - uid: 1483 + - uid: 1005 components: - type: Transform - pos: 2.5,-14.5 + pos: 6.5,10.5 parent: 1 - - uid: 1484 + - uid: 1006 components: - type: Transform - pos: 2.5,-13.5 + pos: 6.5,11.5 parent: 1 - - uid: 1485 + - uid: 1074 components: - type: Transform - pos: 2.5,-12.5 + pos: 3.5,9.5 parent: 1 - - uid: 1486 + - uid: 1075 components: - type: Transform - pos: 2.5,-11.5 + pos: 3.5,10.5 parent: 1 - - uid: 1487 + - uid: 1187 components: - type: Transform - pos: 2.5,-10.5 + pos: -17.5,29.5 parent: 1 - - uid: 1488 + - uid: 1238 components: - type: Transform - pos: 2.5,-9.5 + pos: 14.5,32.5 parent: 1 - - uid: 1489 + - uid: 1295 components: - type: Transform - pos: 2.5,-8.5 + pos: 2.5,31.5 parent: 1 - - uid: 1490 + - uid: 1305 components: - type: Transform - pos: 2.5,-7.5 + pos: 11.5,28.5 parent: 1 - - uid: 1491 + - uid: 1306 components: - type: Transform - pos: 2.5,-6.5 + pos: 12.5,22.5 parent: 1 - - uid: 1492 + - uid: 1417 components: - type: Transform - pos: 2.5,-5.5 + pos: -15.5,32.5 parent: 1 - - uid: 1493 + - uid: 1418 components: - type: Transform - pos: 2.5,-4.5 + pos: -16.5,31.5 parent: 1 - uid: 1494 components: - type: Transform - pos: 1.5,-4.5 + pos: 9.5,12.5 parent: 1 - uid: 1495 components: - type: Transform - pos: 0.5,-4.5 + pos: 10.5,12.5 parent: 1 - uid: 1496 components: - type: Transform - pos: -0.5,-4.5 + pos: 11.5,12.5 parent: 1 - uid: 1497 components: - type: Transform - pos: -1.5,-4.5 + pos: 12.5,12.5 parent: 1 - uid: 1498 components: - type: Transform - pos: -2.5,-4.5 + pos: 13.5,12.5 parent: 1 - uid: 1499 components: - type: Transform - pos: -3.5,-4.5 + pos: 14.5,12.5 parent: 1 - uid: 1500 components: - type: Transform - pos: -4.5,-4.5 + pos: 15.5,12.5 parent: 1 - uid: 1501 components: - type: Transform - pos: -5.5,-4.5 + pos: 16.5,12.5 parent: 1 - uid: 1502 components: - type: Transform - pos: -6.5,-4.5 + pos: 17.5,12.5 parent: 1 - uid: 1503 components: - type: Transform - pos: -7.5,-4.5 + pos: 17.5,13.5 parent: 1 - uid: 1504 components: - type: Transform - pos: -7.5,-5.5 + pos: 17.5,14.5 parent: 1 - uid: 1505 components: - type: Transform - pos: -8.5,-4.5 + pos: 17.5,15.5 parent: 1 - uid: 1506 components: - type: Transform - pos: -9.5,-4.5 + pos: 17.5,16.5 parent: 1 - uid: 1507 components: - type: Transform - pos: -10.5,-4.5 + pos: 17.5,17.5 parent: 1 - uid: 1508 components: - type: Transform - pos: -11.5,-4.5 + pos: 17.5,18.5 parent: 1 - uid: 1509 components: - type: Transform - pos: -12.5,-4.5 + pos: 16.5,18.5 parent: 1 - uid: 1510 components: - type: Transform - pos: -13.5,-4.5 + pos: 15.5,18.5 parent: 1 - uid: 1511 components: - type: Transform - pos: -14.5,-4.5 + pos: 14.5,18.5 parent: 1 - uid: 1512 components: - type: Transform - pos: -15.5,-4.5 + pos: 13.5,18.5 parent: 1 - uid: 1513 components: - type: Transform - pos: -16.5,-4.5 + pos: 12.5,18.5 parent: 1 - uid: 1514 components: - type: Transform - pos: -17.5,-4.5 + pos: 11.5,18.5 parent: 1 - uid: 1515 components: - type: Transform - pos: -18.5,-4.5 + pos: 11.5,19.5 parent: 1 - uid: 1516 components: - type: Transform - pos: -19.5,-4.5 + pos: 11.5,20.5 parent: 1 - uid: 1517 components: - type: Transform - pos: -19.5,-5.5 + pos: 11.5,21.5 parent: 1 - uid: 1518 components: - type: Transform - pos: -19.5,-6.5 + pos: 11.5,22.5 parent: 1 - uid: 1519 components: - type: Transform - pos: -20.5,-6.5 + pos: 11.5,23.5 parent: 1 - uid: 1520 components: - type: Transform - pos: -21.5,-6.5 + pos: 11.5,24.5 parent: 1 - uid: 1521 components: - type: Transform - pos: -22.5,-6.5 + pos: 11.5,25.5 parent: 1 - uid: 1522 components: - type: Transform - pos: -23.5,-6.5 + pos: 11.5,26.5 parent: 1 - uid: 1523 components: - type: Transform - pos: -24.5,-6.5 + pos: 11.5,27.5 parent: 1 - uid: 1524 components: - type: Transform - pos: -25.5,-6.5 + pos: 2.5,30.5 parent: 1 - - uid: 1525 + - uid: 1527 components: - type: Transform - pos: -26.5,-6.5 + pos: -17.5,30.5 parent: 1 - - uid: 1526 + - uid: 1540 components: - type: Transform - pos: -27.5,-6.5 + pos: 13.5,22.5 parent: 1 - - uid: 1527 + - uid: 1541 components: - type: Transform - pos: -27.5,-5.5 + pos: 14.5,22.5 parent: 1 - - uid: 1528 + - uid: 1542 components: - type: Transform - pos: -27.5,-4.5 + pos: 15.5,22.5 parent: 1 - - uid: 1529 + - uid: 1543 components: - type: Transform - pos: -26.5,-4.5 + pos: 16.5,22.5 parent: 1 - - uid: 1530 + - uid: 1544 components: - type: Transform - pos: -25.5,-4.5 + pos: 17.5,22.5 parent: 1 - - uid: 1531 + - uid: 1545 components: - type: Transform - pos: -24.5,-4.5 + pos: 18.5,22.5 parent: 1 - - uid: 1532 + - uid: 1546 components: - type: Transform - pos: -23.5,-4.5 + pos: 19.5,22.5 parent: 1 - - uid: 1533 + - uid: 1547 components: - type: Transform - pos: -22.5,-4.5 + pos: 20.5,22.5 parent: 1 - - uid: 1534 + - uid: 1548 components: - type: Transform - pos: -21.5,-4.5 + pos: 21.5,22.5 parent: 1 - - uid: 1535 + - uid: 1549 components: - type: Transform - pos: -21.5,-3.5 + pos: 22.5,22.5 parent: 1 - - uid: 1536 + - uid: 1550 components: - type: Transform - pos: -21.5,-2.5 + pos: 23.5,22.5 parent: 1 - - uid: 1537 + - uid: 1551 components: - type: Transform - pos: -20.5,-2.5 + pos: 24.5,22.5 parent: 1 - - uid: 1538 + - uid: 1552 components: - type: Transform - pos: -19.5,-2.5 + pos: 24.5,21.5 parent: 1 - - uid: 1539 + - uid: 1553 components: - type: Transform - pos: -18.5,-2.5 + pos: 24.5,23.5 parent: 1 - - uid: 1540 + - uid: 1554 components: - type: Transform - pos: -17.5,-2.5 + pos: -16.5,30.5 parent: 1 - - uid: 1541 + - uid: 1625 components: - type: Transform - pos: -16.5,-2.5 + pos: -16.5,32.5 parent: 1 - - uid: 1542 + - uid: 1690 components: - type: Transform - pos: -15.5,-2.5 + pos: 15.5,28.5 parent: 1 - - uid: 1543 + - uid: 1691 components: - type: Transform - pos: -14.5,-2.5 + pos: 15.5,31.5 parent: 1 - - uid: 1544 + - uid: 1692 components: - type: Transform - pos: -13.5,-2.5 + pos: 16.5,31.5 parent: 1 - - uid: 1545 + - uid: 1693 components: - type: Transform - pos: -12.5,-2.5 + pos: 13.5,28.5 parent: 1 - - uid: 1546 + - uid: 1768 components: - type: Transform - pos: -11.5,-2.5 + pos: 3.5,30.5 parent: 1 - - uid: 1547 + - uid: 1769 components: - type: Transform - pos: -10.5,-2.5 + pos: 4.5,30.5 parent: 1 - - uid: 1548 + - uid: 1770 components: - type: Transform - pos: -9.5,-2.5 + pos: 5.5,30.5 parent: 1 - - uid: 1549 + - uid: 1771 components: - type: Transform - pos: -8.5,-2.5 + pos: 15.5,32.5 parent: 1 - - uid: 1550 + - uid: 1772 components: - type: Transform - pos: -7.5,-2.5 + pos: 16.5,29.5 parent: 1 - - uid: 1551 + - uid: 1773 components: - type: Transform - pos: -6.5,-2.5 + pos: 12.5,28.5 parent: 1 - - uid: 1552 + - uid: 1774 components: - type: Transform - pos: -5.5,-2.5 + pos: 16.5,28.5 parent: 1 - - uid: 1553 + - uid: 1775 components: - type: Transform - pos: -4.5,-2.5 + pos: 2.5,32.5 parent: 1 - - uid: 1554 + - uid: 1776 components: - type: Transform - pos: -3.5,-2.5 + pos: 1.5,32.5 parent: 1 - - uid: 1555 + - uid: 1777 components: - type: Transform - pos: -2.5,-2.5 + pos: 1.5,33.5 parent: 1 - - uid: 1556 + - uid: 1778 components: - type: Transform - pos: -1.5,-2.5 + pos: 0.5,33.5 parent: 1 - - uid: 1557 + - uid: 1779 components: - type: Transform - pos: -0.5,-2.5 + pos: 0.5,34.5 parent: 1 - - uid: 1558 + - uid: 1780 components: - type: Transform - pos: 0.5,-2.5 + pos: 0.5,35.5 parent: 1 - - uid: 1559 + - uid: 1781 components: - type: Transform - pos: 1.5,-2.5 + pos: 0.5,36.5 parent: 1 - - uid: 1560 + - uid: 1782 components: - type: Transform - pos: 2.5,-2.5 + pos: -0.5,36.5 parent: 1 - - uid: 1561 + - uid: 1783 components: - type: Transform - pos: 3.5,-2.5 + pos: -1.5,36.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 1993 + - uid: 1784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -2.5,36.5 parent: 1 -- proto: CannonBall - entities: - - uid: 1671 + - uid: 1785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5590277,3.5358868 + pos: -3.5,36.5 parent: 1 - - uid: 1998 + - uid: 1786 components: - type: Transform - pos: -8.796216,-0.5835842 + pos: -4.5,36.5 parent: 1 - - uid: 1999 + - uid: 1787 components: - type: Transform - pos: -8.858716,-0.3492092 + pos: -5.5,36.5 parent: 1 - - uid: 2000 + - uid: 1788 components: - type: Transform - pos: -8.624341,-0.3804592 + pos: -6.5,36.5 parent: 1 - - uid: 2005 + - uid: 1789 components: - type: Transform - pos: -8.093091,-0.5835842 + pos: -6.5,35.5 parent: 1 -- proto: CannonBallGlassshot - entities: - - uid: 2001 + - uid: 1790 components: - type: Transform - pos: -8.358716,-0.5679592 + pos: -6.5,34.5 parent: 1 - - uid: 2002 + - uid: 1791 components: - type: Transform - pos: -8.155591,-0.2710842 + pos: -6.5,33.5 parent: 1 -- proto: CannonBallGrapeshot - entities: - - uid: 2003 + - uid: 1792 components: - type: Transform - pos: -8.624341,-0.17733419 + pos: -7.5,33.5 parent: 1 - - uid: 2004 + - uid: 1793 components: - type: Transform - pos: -8.889966,-0.4585842 + pos: -8.5,33.5 parent: 1 -- proto: CarpetBlack - entities: - - uid: 1824 + - uid: 1794 components: - type: Transform - pos: -5.5,-7.5 + pos: -8.5,32.5 parent: 1 - - uid: 1825 + - uid: 1795 components: - type: Transform - pos: -5.5,-8.5 + pos: -9.5,32.5 parent: 1 - - uid: 1826 + - uid: 1796 components: - type: Transform - pos: -5.5,-9.5 + pos: -10.5,32.5 parent: 1 - - uid: 1827 + - uid: 1797 components: - type: Transform - pos: -3.5,-7.5 + pos: -11.5,32.5 parent: 1 - - uid: 1828 + - uid: 1798 components: - type: Transform - pos: -3.5,-8.5 + pos: -12.5,32.5 parent: 1 - - uid: 1829 + - uid: 1799 + components: + - type: Transform + pos: -13.5,32.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + pos: -14.5,32.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1 + - uid: 1806 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + pos: 13.5,32.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1 + - uid: 1882 components: - type: Transform - pos: -3.5,-9.5 + pos: -17.5,27.5 parent: 1 - uid: 1883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + pos: -17.5,26.5 parent: 1 - uid: 1884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 + pos: -17.5,25.5 parent: 1 - uid: 1885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + pos: -17.5,24.5 parent: 1 - uid: 1886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 + pos: -17.5,23.5 parent: 1 - uid: 1887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: -17.5,22.5 parent: 1 - uid: 1888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: -17.5,21.5 parent: 1 - uid: 1889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + pos: -17.5,20.5 parent: 1 - uid: 1890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + pos: -17.5,19.5 parent: 1 - uid: 1891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: -17.5,18.5 parent: 1 - uid: 1892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: -17.5,17.5 parent: 1 - uid: 1893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: -17.5,16.5 parent: 1 - uid: 1894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 + pos: -17.5,15.5 parent: 1 - uid: 1895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: -17.5,14.5 parent: 1 - uid: 1896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -17.5,13.5 parent: 1 -- proto: Catwalk - entities: - - uid: 1036 + - uid: 1897 components: - type: Transform - pos: -26.5,-6.5 + pos: -16.5,13.5 parent: 1 - - uid: 1037 + - uid: 1898 components: - type: Transform - pos: -25.5,-6.5 + pos: -16.5,12.5 parent: 1 - - uid: 1038 + - uid: 1899 components: - type: Transform - pos: -24.5,-6.5 + pos: -15.5,12.5 parent: 1 - - uid: 1039 + - uid: 1900 components: - type: Transform - pos: -23.5,-6.5 + pos: -14.5,12.5 parent: 1 - - uid: 1040 + - uid: 1901 components: - type: Transform - pos: -22.5,-6.5 + pos: -13.5,12.5 parent: 1 - - uid: 1041 + - uid: 1902 components: - type: Transform - pos: -21.5,-6.5 + pos: -12.5,12.5 parent: 1 - - uid: 1042 + - uid: 1903 components: - type: Transform - pos: -20.5,-6.5 + pos: -11.5,12.5 parent: 1 - - uid: 1043 + - uid: 1904 components: - type: Transform - pos: -19.5,-6.5 + pos: -10.5,12.5 parent: 1 - - uid: 1044 + - uid: 2032 components: - type: Transform - pos: -19.5,-5.5 + pos: 9.5,32.5 parent: 1 - - uid: 1045 + - uid: 2033 components: - type: Transform - pos: -19.5,-4.5 + pos: 12.5,32.5 parent: 1 - - uid: 1046 + - uid: 2034 components: - type: Transform - pos: -18.5,-4.5 + pos: 10.5,32.5 parent: 1 - - uid: 1047 + - uid: 2036 components: - type: Transform - pos: -17.5,-4.5 + pos: 11.5,32.5 parent: 1 - - uid: 1048 + - uid: 2037 components: - type: Transform - pos: -16.5,-4.5 + pos: 8.5,32.5 parent: 1 - - uid: 1049 + - uid: 2038 components: - type: Transform - pos: -15.5,-4.5 + pos: 7.5,32.5 parent: 1 - - uid: 1050 + - uid: 2039 components: - type: Transform - pos: -14.5,-4.5 + pos: 6.5,32.5 parent: 1 - - uid: 1051 + - uid: 2040 components: - type: Transform - pos: -13.5,-4.5 + pos: 5.5,32.5 parent: 1 - - uid: 1052 + - uid: 2041 components: - type: Transform - pos: -12.5,-4.5 + pos: 5.5,31.5 parent: 1 - - uid: 1053 +- proto: CableHV + entities: + - uid: 27 components: - type: Transform - pos: -11.5,-4.5 + pos: -5.5,14.5 parent: 1 - - uid: 1054 + - uid: 88 components: - type: Transform - pos: -10.5,-4.5 + pos: -6.5,14.5 parent: 1 - - uid: 1056 + - uid: 91 components: - type: Transform - pos: -8.5,-4.5 + pos: -7.5,14.5 parent: 1 - - uid: 1057 + - uid: 126 components: - type: Transform - pos: -7.5,-4.5 + pos: -8.5,13.5 parent: 1 - - uid: 1058 + - uid: 196 components: - type: Transform - pos: -6.5,-4.5 + pos: -5.5,11.5 parent: 1 - - uid: 1059 + - uid: 220 components: - type: Transform - pos: -5.5,-4.5 + pos: -5.5,12.5 parent: 1 - - uid: 1060 + - uid: 245 components: - type: Transform - pos: -4.5,-4.5 + pos: -6.5,11.5 parent: 1 - - uid: 1061 + - uid: 294 components: - type: Transform - pos: -3.5,-4.5 + pos: -5.5,13.5 parent: 1 - - uid: 1062 + - uid: 456 components: - type: Transform - pos: -2.5,-4.5 + pos: -8.5,11.5 parent: 1 - - uid: 1063 + - uid: 593 components: - type: Transform - pos: -1.5,-4.5 + pos: -7.5,11.5 parent: 1 - - uid: 1064 + - uid: 946 components: - type: Transform - pos: -0.5,-4.5 + pos: -7.5,13.5 parent: 1 - - uid: 1065 + - uid: 952 components: - type: Transform - pos: 0.5,-4.5 + pos: -8.5,14.5 parent: 1 - - uid: 1066 +- proto: CableMV + entities: + - uid: 19 components: - type: Transform - pos: 1.5,-4.5 + pos: -2.5,9.5 parent: 1 - - uid: 1067 + - uid: 25 components: - type: Transform - pos: 2.5,-4.5 + pos: 4.5,7.5 parent: 1 - - uid: 1068 + - uid: 34 components: - type: Transform - pos: 2.5,-5.5 + pos: -0.5,6.5 parent: 1 - - uid: 1069 + - uid: 38 components: - type: Transform - pos: 2.5,-6.5 + pos: -0.5,9.5 parent: 1 - - uid: 1070 + - uid: 67 components: - type: Transform - pos: 2.5,-7.5 + pos: -0.5,8.5 parent: 1 - - uid: 1071 + - uid: 79 components: - type: Transform - pos: 2.5,-8.5 + pos: -0.5,7.5 parent: 1 - - uid: 1072 + - uid: 85 components: - type: Transform - pos: 2.5,-9.5 + pos: -0.5,10.5 parent: 1 - - uid: 1073 + - uid: 99 components: - type: Transform - pos: 2.5,-10.5 + pos: -3.5,10.5 parent: 1 - - uid: 1074 + - uid: 105 components: - type: Transform - pos: 2.5,-11.5 + pos: 0.5,9.5 parent: 1 - - uid: 1075 + - uid: 158 components: - type: Transform - pos: 2.5,-12.5 + pos: 5.5,8.5 parent: 1 - - uid: 1076 + - uid: 169 components: - type: Transform - pos: 2.5,-13.5 + pos: -4.5,10.5 parent: 1 - - uid: 1077 + - uid: 183 components: - type: Transform - pos: 2.5,-14.5 + pos: -2.5,10.5 parent: 1 - - uid: 1078 + - uid: 200 components: - type: Transform - pos: 2.5,-15.5 + pos: 5.5,3.5 parent: 1 - - uid: 1079 + - uid: 264 components: - type: Transform - pos: 2.5,-16.5 + pos: -8.5,11.5 parent: 1 - - uid: 1080 + - uid: 267 components: - type: Transform - pos: 2.5,-17.5 + pos: -8.5,10.5 parent: 1 - - uid: 1081 + - uid: 394 components: - type: Transform - pos: 2.5,-18.5 + pos: -7.5,10.5 parent: 1 - - uid: 1082 + - uid: 401 components: - type: Transform - pos: 2.5,-19.5 + pos: 1.5,6.5 parent: 1 - - uid: 1083 + - uid: 402 components: - type: Transform - pos: 4.5,-19.5 + pos: 0.5,6.5 parent: 1 - - uid: 1084 + - uid: 414 components: - type: Transform - pos: 4.5,-18.5 + pos: 2.5,6.5 parent: 1 - - uid: 1085 + - uid: 415 components: - type: Transform - pos: 4.5,-17.5 + pos: 3.5,6.5 parent: 1 - - uid: 1086 + - uid: 416 components: - type: Transform - pos: 4.5,-16.5 + pos: 4.5,6.5 parent: 1 - - uid: 1087 + - uid: 417 components: - type: Transform - pos: 4.5,-15.5 + pos: 4.5,4.5 parent: 1 - - uid: 1088 + - uid: 419 components: - type: Transform - pos: 4.5,-14.5 + pos: 4.5,5.5 parent: 1 - - uid: 1089 + - uid: 493 components: - type: Transform - pos: 4.5,-13.5 + pos: 6.5,3.5 parent: 1 - - uid: 1090 + - uid: 502 components: - type: Transform - pos: 4.5,-12.5 + pos: 7.5,3.5 parent: 1 - - uid: 1091 + - uid: 503 components: - type: Transform - pos: 4.5,-11.5 + pos: 8.5,3.5 parent: 1 - - uid: 1092 + - uid: 518 components: - type: Transform - pos: 4.5,-10.5 + pos: 9.5,3.5 parent: 1 - - uid: 1093 + - uid: 577 components: - type: Transform - pos: 4.5,-9.5 + pos: 9.5,2.5 parent: 1 - - uid: 1094 + - uid: 659 components: - type: Transform - pos: 4.5,-8.5 + pos: 4.5,3.5 parent: 1 - - uid: 1095 + - uid: 807 components: - type: Transform - pos: 4.5,-7.5 + pos: -1.5,10.5 parent: 1 - - uid: 1096 + - uid: 1029 components: - type: Transform - pos: 4.5,-6.5 + pos: 4.5,8.5 parent: 1 - - uid: 1097 + - uid: 1031 components: - type: Transform - pos: 4.5,-5.5 + pos: -6.5,10.5 parent: 1 - - uid: 1098 + - uid: 1032 components: - type: Transform - pos: 4.5,-4.5 + pos: -5.5,10.5 parent: 1 - - uid: 1099 + - uid: 1998 components: - type: Transform - pos: 4.5,-3.5 + pos: 9.5,17.5 parent: 1 - - uid: 1100 + - uid: 1999 components: - type: Transform - pos: 4.5,-2.5 + pos: 9.5,16.5 parent: 1 - - uid: 1101 + - uid: 2000 components: - type: Transform - pos: 3.5,-2.5 + pos: 10.5,16.5 parent: 1 - - uid: 1102 + - uid: 2001 components: - type: Transform - pos: 2.5,-2.5 + pos: 10.5,15.5 parent: 1 - - uid: 1103 + - uid: 2002 components: - type: Transform - pos: 1.5,-2.5 + pos: 10.5,14.5 parent: 1 - - uid: 1104 +- proto: CableTerminal + entities: + - uid: 965 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 - - uid: 1105 +- proto: CannonBall + entities: + - uid: 643 components: - type: Transform - pos: -0.5,-2.5 + pos: -1.6551356,11.813257 parent: 1 - - uid: 1106 + - uid: 677 components: - type: Transform - pos: -1.5,-2.5 + pos: -1.6447191,11.55284 parent: 1 - - uid: 1107 + - uid: 678 components: - type: Transform - pos: -2.5,-2.5 + pos: -1.2801356,11.823674 parent: 1 - - uid: 1108 + - uid: 679 components: - type: Transform - pos: -3.5,-2.5 + pos: -1.457219,11.64659 parent: 1 - - uid: 1109 + - uid: 680 components: - type: Transform - pos: -4.5,-2.5 + pos: -1.269719,11.55284 parent: 1 - - uid: 1110 + - uid: 2006 components: - type: Transform - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.340786,23.304857 parent: 1 - - uid: 1111 + - uid: 2007 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.48662,23.502775 parent: 1 - - uid: 1112 + - uid: 2008 components: - type: Transform - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.61162,23.304857 parent: 1 - - uid: 1113 +- proto: CannonBallGlassshot + entities: + - uid: 681 components: - type: Transform - pos: -8.5,-2.5 + pos: -2.3322191,11.64659 parent: 1 - - uid: 1114 + - uid: 684 components: - type: Transform - pos: -9.5,-2.5 + pos: -2.5926356,11.792424 parent: 1 - - uid: 1115 +- proto: CannonBallGrapeshot + entities: + - uid: 682 components: - type: Transform - pos: -10.5,-2.5 + pos: -3.3530524,11.698674 parent: 1 - - uid: 1116 + - uid: 687 components: - type: Transform - pos: -11.5,-2.5 + pos: -3.5926356,11.813257 parent: 1 - - uid: 1117 +- proto: CargoPallet + entities: + - uid: 201 components: - type: Transform - pos: -12.5,-2.5 + pos: 5.5,-2.5 parent: 1 - - uid: 1118 + - uid: 209 components: - type: Transform - pos: -13.5,-2.5 + pos: 5.5,-1.5 parent: 1 - - uid: 1119 + - uid: 229 components: - type: Transform - pos: -14.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - - uid: 1120 + - uid: 230 components: - type: Transform - pos: -15.5,-2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - - uid: 1121 + - uid: 231 components: - type: Transform - pos: -16.5,-2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 - - uid: 1122 + - uid: 237 components: - type: Transform - pos: -17.5,-2.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - - uid: 1123 + - uid: 247 components: - type: Transform - pos: -18.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 1 - - uid: 1124 + - uid: 258 components: - type: Transform - pos: -19.5,-2.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 1 - - uid: 1125 + - uid: 265 components: - type: Transform - pos: -20.5,-2.5 + pos: 6.5,-1.5 parent: 1 - - uid: 1126 + - uid: 563 components: - type: Transform - pos: -21.5,-2.5 + pos: 7.5,-2.5 parent: 1 - - uid: 1128 + - uid: 603 components: - type: Transform - pos: -21.5,-3.5 + pos: 6.5,-2.5 parent: 1 - - uid: 1129 + - uid: 626 components: - type: Transform - pos: -21.5,-4.5 + pos: 7.5,-1.5 parent: 1 - - uid: 1130 +- proto: CarpetBlack + entities: + - uid: 1845 components: - type: Transform - pos: -22.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,34.5 parent: 1 - - uid: 1131 + - uid: 1846 components: - type: Transform - pos: -23.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,34.5 parent: 1 - - uid: 1132 + - uid: 1849 components: - type: Transform - pos: -24.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,35.5 parent: 1 - - uid: 1133 + - uid: 1857 components: - type: Transform - pos: -25.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,36.5 parent: 1 - - uid: 1134 + - uid: 1860 components: - type: Transform - pos: -26.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,37.5 parent: 1 - - uid: 1279 + - uid: 1865 components: - type: Transform - pos: -9.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,35.5 parent: 1 - - uid: 1282 + - uid: 1866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -2.5,36.5 parent: 1 - - uid: 1292 + - uid: 1867 components: - type: Transform - pos: 8.5,-3.5 + rot: 1.5707963267948966 rad + pos: -3.5,37.5 parent: 1 - - uid: 1293 +- proto: Catwalk + entities: + - uid: 6 components: - type: Transform - pos: 8.5,-4.5 + pos: -5.5,13.5 parent: 1 - - uid: 1294 + - uid: 115 components: - type: Transform - pos: 10.5,-3.5 + pos: -5.5,12.5 parent: 1 - - uid: 1295 + - uid: 124 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 parent: 1 - - uid: 1298 + - uid: 197 components: - type: Transform - pos: 5.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 - - uid: 1299 + - uid: 215 components: - type: Transform - pos: 5.5,0.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 1 - - uid: 1300 + - uid: 269 components: - type: Transform - pos: 5.5,1.5 + rot: -1.5707963267948966 rad + pos: -0.5,13.5 parent: 1 - - uid: 1301 + - uid: 324 components: - type: Transform - pos: 5.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,9.5 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 1881 + - uid: 441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,1.5 + pos: -8.5,23.5 parent: 1 - - uid: 1882 + - uid: 465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 + pos: -6.5,7.5 parent: 1 -- proto: ChairWood - entities: - - uid: 1768 + - uid: 466 components: - type: Transform - pos: -5.5,-7.5 + pos: -5.5,7.5 parent: 1 - - uid: 1769 + - uid: 520 components: - type: Transform - pos: -5.5,-9.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 1 - - uid: 1770 + - uid: 604 components: - type: Transform - pos: -3.5,-7.5 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 1771 + - uid: 627 components: - type: Transform - pos: -3.5,-9.5 + pos: -7.5,24.5 parent: 1 - - uid: 1917 + - uid: 629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.323788,7.7902884 + pos: -5.5,6.5 parent: 1 -- proto: ClosetChefFilled - entities: - - uid: 1699 + - uid: 636 components: - type: Transform - pos: -9.5,-6.5 + pos: -2.5,20.5 parent: 1 -- proto: ClothingEyesEyepatch - entities: - - uid: 1898 + - uid: 638 components: - type: Transform - pos: -0.6632185,1.4343771 + pos: -9.5,23.5 parent: 1 - - uid: 1899 + - uid: 642 components: - type: Transform - pos: -5.5918703,-9.232764 + pos: 1.5,23.5 parent: 1 - - uid: 1900 + - uid: 700 components: - type: Transform - pos: -2.2637453,-11.560889 + pos: 1.5,22.5 parent: 1 -- proto: ClothingHeadHatPirate - entities: - - uid: 1664 + - uid: 701 components: - type: Transform - pos: 2.7715876,0.39065337 + pos: 2.5,22.5 parent: 1 -- proto: ClothingHeadHatPirateTricord - entities: - - uid: 1663 + - uid: 704 components: - type: Transform - pos: 2.1622126,1.1406534 + pos: -1.5,17.5 parent: 1 -- proto: ClothingOuterCoatPirate - entities: - - uid: 1901 + - uid: 705 components: - type: Transform - pos: -2.3400846,1.1901393 + pos: -2.5,29.5 parent: 1 -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 1665 + - uid: 708 components: - type: Transform - pos: 2.1622126,0.41409087 + pos: -1.5,19.5 parent: 1 -- proto: ComputerBlackMarketBankATM - entities: - - uid: 1909 + - uid: 710 components: - type: Transform - pos: -6.5,-0.5 + pos: 2.5,23.5 parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: ComputerBroken - entities: - - uid: 574 + - uid: 743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: -9.5,24.5 parent: 1 -- proto: ComputerPowerMonitoring - entities: - - uid: 570 + - uid: 744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 + pos: -2.5,30.5 parent: 1 -- proto: ComputerShipyardBlackMarket - entities: - - uid: 855 + - uid: 760 components: - type: Transform - pos: -7.5,-0.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 1 - - type: ContainerContainer - containers: - ShipyardConsole-targetId: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: CrateFunPirate - entities: - - uid: 1680 + - uid: 764 components: - type: Transform - pos: 0.5,3.5 + pos: -8.5,24.5 parent: 1 -- proto: CrateHydroponicsSeeds - entities: - - uid: 1800 + - uid: 775 components: - type: Transform - pos: -15.5,-7.5 + pos: -7.5,23.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CratePirateChest - entities: - - uid: 1658 + - uid: 777 components: - type: Transform - pos: -4.5,0.5 + pos: -6.5,24.5 parent: 1 -- proto: CratePirateChestCaptain - entities: - - uid: 1657 + - uid: 813 components: - type: Transform - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,14.5 parent: 1 -- proto: CrateStoneGrave - entities: - - uid: 1017 + - uid: 820 components: - type: Transform - pos: 4.5,7.5 + pos: -8.5,8.5 parent: 1 -- proto: CrateWoodenGrave - entities: - - uid: 1136 + - uid: 821 components: - type: Transform - pos: -14.5,2.5 + pos: -8.5,7.5 parent: 1 -- proto: DisposalUnit - entities: - - uid: 576 + - uid: 822 components: - type: Transform - pos: 7.5,-0.5 + pos: -8.5,6.5 parent: 1 - - uid: 581 + - uid: 823 components: - type: Transform - pos: -1.5,-6.5 + pos: -8.5,5.5 parent: 1 - - uid: 1803 + - uid: 824 components: - type: Transform - pos: -0.5,3.5 + pos: -8.5,4.5 parent: 1 -- proto: DogBed - entities: - - uid: 1667 + - uid: 825 components: - type: Transform - pos: -7.5,-13.5 + pos: -8.5,3.5 parent: 1 -- proto: Dresser - entities: - - uid: 519 + - uid: 843 components: - type: Transform - pos: 2.5,2.5 + pos: 4.5,23.5 parent: 1 -- proto: DrinkBottleAle - entities: - - uid: 1807 + - uid: 845 components: - type: Transform - pos: -2.6220737,-10.996063 + pos: -2.5,19.5 parent: 1 - - uid: 1808 + - uid: 848 components: - type: Transform - pos: -5.6533237,-8.167938 + pos: 4.5,22.5 parent: 1 -- proto: DrinkBottleBeer - entities: - - uid: 1809 + - uid: 849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.7001987,-10.777313 + pos: 5.5,23.5 parent: 1 -- proto: DrinkBottleRum - entities: - - uid: 1814 + - uid: 852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.1845737,-11.324188 + pos: -1.5,18.5 parent: 1 -- proto: DrinkBottleTequila - entities: - - uid: 1815 + - uid: 854 components: - type: Transform - pos: -1.5751987,-11.402313 + pos: -2.5,18.5 parent: 1 -- proto: DrinkChampagneBottleFull - entities: - - uid: 1810 + - uid: 861 components: - type: Transform - pos: -5.5751987,-12.027313 + pos: -1.5,20.5 parent: 1 -- proto: DrinkCognacBottleFull - entities: - - uid: 1811 + - uid: 862 components: - type: Transform - pos: -5.2939487,-8.214813 + pos: -2.5,27.5 parent: 1 -- proto: DrinkMilkCarton - entities: - - uid: 1758 + - uid: 864 components: - type: Transform - pos: -12.53306,-6.968975 + pos: -5.5,14.5 parent: 1 -- proto: DrinkRumBottleFull - entities: - - uid: 1805 + - uid: 867 components: - type: Transform - pos: -4.7001987,-11.011688 + rot: 1.5707963267948966 rad + pos: -8.5,11.5 parent: 1 - - uid: 1806 + - uid: 868 components: - type: Transform - pos: -3.5126987,-11.324188 + rot: 1.5707963267948966 rad + pos: -8.5,10.5 parent: 1 -- proto: DrinkShotGlass - entities: - - uid: 1816 + - uid: 869 components: - type: Transform - pos: -5.3251987,-11.699188 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 parent: 1 - - uid: 1817 + - uid: 870 components: - type: Transform - pos: -4.0126987,-11.449188 + rot: 1.5707963267948966 rad + pos: -6.5,10.5 parent: 1 - - uid: 1818 + - uid: 871 components: - type: Transform - pos: -2.0439487,-11.417938 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 1 - - uid: 1819 + - uid: 879 components: - type: Transform - pos: -3.2034483,-8.129922 + pos: -6.5,6.5 parent: 1 - - uid: 1820 + - uid: 880 components: - type: Transform - pos: -3.5315733,-8.442422 + pos: -6.5,5.5 parent: 1 - - uid: 1821 + - uid: 895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.2190733,-8.942422 + pos: -6.5,23.5 parent: 1 -- proto: FaxMachineShipAntag - entities: - - uid: 1916 + - uid: 896 components: - type: Transform - pos: -0.5,8.5 + rot: 3.141592653589793 rad + pos: 3.5,14.5 parent: 1 -- proto: FirelockEdge - entities: - - uid: 1784 + - uid: 897 components: - type: Transform - pos: -12.5,-8.5 + rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 1 - - uid: 1785 + - uid: 900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,3.5 parent: 1 - - uid: 1786 + - uid: 902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 + pos: -5.5,24.5 parent: 1 - - uid: 1787 + - uid: 1003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 + pos: -2.5,28.5 parent: 1 - - uid: 1788 + - uid: 1007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + pos: 5.5,22.5 parent: 1 -- proto: FirelockGlass - entities: - - uid: 1789 + - uid: 1011 components: - type: Transform - pos: -0.5,-7.5 + pos: -5.5,23.5 parent: 1 - - uid: 1790 + - uid: 1015 components: - type: Transform - pos: -0.5,-8.5 + pos: -5.5,5.5 parent: 1 - - uid: 1791 + - uid: 1017 components: - type: Transform - pos: -1.5,-1.5 + pos: -3.5,7.5 parent: 1 - - uid: 1792 + - uid: 1018 components: - type: Transform - pos: -0.5,-1.5 + pos: -3.5,8.5 parent: 1 - - uid: 1793 + - uid: 1019 components: - type: Transform - pos: -5.5,2.5 + pos: -3.5,9.5 parent: 1 - - uid: 1794 + - uid: 1020 components: - type: Transform - pos: 5.5,-1.5 + pos: -3.5,11.5 parent: 1 - - uid: 1795 + - uid: 1021 components: - type: Transform - pos: 2.5,-20.5 + pos: -2.5,11.5 parent: 1 - - uid: 1796 + - uid: 1022 components: - type: Transform - pos: 4.5,-20.5 + pos: -1.5,11.5 parent: 1 - - uid: 1797 + - uid: 1024 components: - type: Transform - pos: -27.5,-6.5 + pos: 0.5,10.5 parent: 1 - - uid: 1799 + - uid: 1025 components: - type: Transform - pos: -27.5,-4.5 + pos: -1.5,13.5 parent: 1 -- proto: FloorDrain - entities: - - uid: 1669 + - uid: 1026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -2.5,13.5 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FloorWaterEntity - entities: - - uid: 1673 + - uid: 1027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 + pos: -3.5,13.5 parent: 1 - - uid: 1674 + - uid: 1030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 + pos: 3.5,23.5 parent: 1 - - uid: 1675 + - uid: 1100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,1.5 + rot: -1.5707963267948966 rad + pos: 13.5,21.5 parent: 1 - - uid: 1676 + - uid: 1102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,2.5 + pos: 3.5,22.5 parent: 1 - - uid: 1677 + - uid: 1167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 + pos: -2.5,31.5 parent: 1 - - uid: 1678 + - uid: 1258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 + rot: -1.5707963267948966 rad + pos: 22.5,23.5 parent: 1 - - uid: 1679 + - uid: 1259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 + rot: -1.5707963267948966 rad + pos: 22.5,24.5 parent: 1 -- proto: FoodBowlBig - entities: - - uid: 1753 + - uid: 1265 components: - type: Transform - pos: -12.276115,-6.295364 + pos: -2.5,17.5 parent: 1 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1757 + - uid: 1279 components: - type: Transform - pos: -12.387227,-6.7606416 + rot: -1.5707963267948966 rad + pos: 23.5,24.5 parent: 1 -- proto: FoodCondimentBottleHotsauce - entities: - - uid: 1812 + - uid: 1280 components: - type: Transform - pos: -8.637699,-7.558563 + rot: -1.5707963267948966 rad + pos: 23.5,25.5 parent: 1 -- proto: FoodCondimentBottleKetchup - entities: - - uid: 1813 + - uid: 1300 components: - type: Transform - pos: -8.481449,-7.589813 + rot: -1.5707963267948966 rad + pos: 23.5,20.5 parent: 1 -- proto: FoodCondimentPacketSalt - entities: - - uid: 1756 + - uid: 1301 components: - type: Transform - pos: -12.546949,-6.6495304 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 parent: 1 -- proto: FoodContainerEgg - entities: - - uid: 1759 + - uid: 1304 components: - type: Transform - pos: -12.34556,-7.045364 + rot: -1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 -- proto: FoodKebabSkewer - entities: - - uid: 1755 + - uid: 1314 components: - type: Transform - pos: -12.165005,-6.4342527 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 1 -- proto: FoodPlate - entities: - - uid: 1751 + - uid: 1318 components: - type: Transform - pos: -12.269171,-6.3370304 + rot: -1.5707963267948966 rad + pos: 23.5,23.5 parent: 1 -- proto: FoodPlateSmall - entities: - - uid: 1752 + - uid: 1352 components: - type: Transform - pos: -12.296949,-6.392586 + rot: -1.5707963267948966 rad + pos: 13.5,24.5 parent: 1 -- proto: FoodPlateTin - entities: - - uid: 1754 + - uid: 1363 components: - type: Transform - pos: -12.269171,-6.281475 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 1 -- proto: GasMixer - entities: - - uid: 1277 + - uid: 1370 components: - type: Transform - pos: 9.5,-3.5 + rot: -1.5707963267948966 rad + pos: 23.5,22.5 parent: 1 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 -- proto: GasPipeBend - entities: - - uid: 1280 + - uid: 1371 components: - type: Transform - pos: 10.5,-3.5 + rot: -1.5707963267948966 rad + pos: 24.5,24.5 parent: 1 - - uid: 1286 + - uid: 1372 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 13.5,23.5 parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 1278 + - uid: 1377 components: - type: Transform - pos: 8.5,-3.5 + rot: -1.5707963267948966 rad + pos: 15.5,22.5 parent: 1 - - uid: 1284 + - uid: 1378 components: - type: Transform - pos: 8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 20.5,22.5 parent: 1 -- proto: GasPort - entities: - - uid: 1023 + - uid: 1383 components: - type: Transform - pos: 10.5,-2.5 + rot: -1.5707963267948966 rad + pos: 13.5,22.5 parent: 1 - - uid: 1024 + - uid: 1384 components: - type: Transform - pos: 9.5,-2.5 + rot: -1.5707963267948966 rad + pos: 18.5,22.5 parent: 1 - - uid: 1025 + - uid: 1385 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 parent: 1 - - uid: 1283 + - uid: 1387 components: - type: Transform - pos: 8.5,-5.5 + rot: -1.5707963267948966 rad + pos: 14.5,22.5 parent: 1 - - uid: 1287 + - uid: 1388 components: - type: Transform - pos: 10.5,-5.5 + rot: -1.5707963267948966 rad + pos: 23.5,21.5 parent: 1 -- proto: GasVentPump - entities: - - uid: 1055 + - uid: 1390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 + rot: -1.5707963267948966 rad + pos: 22.5,22.5 parent: 1 -- proto: GasVentScrubber - entities: - - uid: 1281 + - uid: 1391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 + rot: -1.5707963267948966 rad + pos: 19.5,22.5 parent: 1 -- proto: GasVolumePump - entities: - - uid: 1285 + - uid: 1392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 21.5,22.5 parent: 1 -- proto: GeneratorBasic15kW - entities: - - uid: 1302 + - uid: 1393 components: - type: Transform - pos: 4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 parent: 1 - - uid: 1303 + - uid: 1394 components: - type: Transform - pos: 4.5,0.5 + rot: -1.5707963267948966 rad + pos: 24.5,23.5 parent: 1 - - uid: 1313 + - uid: 1395 components: - type: Transform - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: 23.5,19.5 parent: 1 -- proto: GravityGeneratorMini - entities: - - uid: 1880 + - uid: 1396 components: - type: Transform - pos: 5.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,20.5 parent: 1 -- proto: Grille + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 +- proto: ChairFolding entities: - - uid: 992 + - uid: 1062 components: - type: Transform - pos: -5.5,-14.5 + pos: -1.4638193,25.545057 parent: 1 - - uid: 993 + - uid: 1065 components: - type: Transform - pos: -6.5,-14.5 + rot: 1.5707963267948966 rad + pos: -2.5888193,24.6145 parent: 1 - - uid: 994 + - uid: 1117 components: - type: Transform - pos: -7.5,-14.5 + rot: 1.5707963267948966 rad + pos: 23.533894,21.609812 parent: 1 - - uid: 995 + - uid: 1401 components: - type: Transform - pos: -8.5,-13.5 + rot: 1.5707963267948966 rad + pos: 23.565144,23.719187 parent: 1 - - uid: 996 +- proto: ChairOfficeDark + entities: + - uid: 213 components: - type: Transform - pos: -8.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,9.5 parent: 1 - - uid: 997 + - uid: 596 components: - type: Transform - pos: -8.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,9.5 parent: 1 - - uid: 998 +- proto: ChairWood + entities: + - uid: 177 components: - type: Transform - pos: -9.5,-10.5 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 1 - - uid: 999 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 1815 + components: + - type: Transform + pos: -2.5,37.5 + parent: 1 + - uid: 1816 + components: + - type: Transform + pos: -3.5,37.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,34.5 + parent: 1 + - uid: 2051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.650677,-4.36273 + parent: 1 +- proto: Cigar + entities: + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.05544,7.263118 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.0137734,7.440201 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 2.4062622,4.659444 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 2.6770954,4.7011104 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 2.729179,4.503194 + parent: 1 +- proto: ClothingBeltPlantFilled + entities: + - uid: 765 + components: + - type: Transform + pos: -5.496167,6.580707 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 192 + components: + - type: Transform + pos: -5.791832,6.7702737 + parent: 1 +- proto: ClothingEyesEyepatch + entities: + - uid: 1830 + components: + - type: Transform + pos: -3.073276,36.033367 + parent: 1 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 1421 + components: + - type: Transform + pos: -5.518818,7.0506287 + parent: 1 +- proto: ClothingHeadHatPirate + entities: + - uid: 28 + components: + - type: Transform + pos: 4.2899175,2.596978 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 4.0399175,2.7323947 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 4.5399175,2.7323947 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.050334,2.440728 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5399175,2.4303112 + parent: 1 +- proto: ComputerPalletConsoleNFLowMarket + entities: + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: ContainerContainer + containers: + board: !type:Container + ents: [] +- proto: ComputerPowerMonitoring + entities: + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 +- proto: ComputerShipyardBlackMarket + entities: + - uid: 1956 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 1959 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: ComputerTabletopComputerIFFPOI + entities: + - uid: 1920 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 51 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 1082 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 +- proto: ComputerWallmountBlackMarketBankATM + entities: + - uid: 61 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - type: ContainerContainer + containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False +- proto: CrateFreezer + entities: + - uid: 858 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99934 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 252 + - 283 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunParty + entities: + - uid: 125 components: - type: Transform - pos: -10.5,-10.5 + pos: 4.5,10.5 parent: 1 +- proto: CrateFunPirate + entities: + - uid: 827 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1 +- proto: CrateHydroponicsSeeds + entities: - uid: 1000 components: - type: Transform - pos: -11.5,-10.5 + pos: -8.5,3.5 parent: 1 - - uid: 1001 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1615 components: - type: Transform - pos: -13.5,-10.5 + pos: -8.5,4.5 parent: 1 - - uid: 1002 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 2021 components: - type: Transform - pos: -14.5,-10.5 + pos: -8.5,5.5 parent: 1 - - uid: 1003 +- proto: CrateMedicalSurgery + entities: + - uid: 1221 components: - type: Transform - pos: -15.5,-10.5 + pos: -12.5,14.5 parent: 1 - - uid: 1004 +- proto: CratePirateChest + entities: + - uid: 834 components: - type: Transform - pos: -28.5,-7.5 + pos: -8.5,7.5 parent: 1 - - uid: 1005 +- proto: CratePirateChestCaptain + entities: + - uid: 2020 components: - type: Transform - pos: -29.5,-7.5 + pos: -8.5,8.5 parent: 1 - - uid: 1006 +- proto: CrateStoneGrave + entities: + - uid: 841 components: - type: Transform - pos: -31.5,-7.5 + pos: 15.5,15.5 parent: 1 - - uid: 1007 +- proto: CrateWoodenGrave + entities: + - uid: 1125 components: - type: Transform - pos: -32.5,-7.5 + pos: -0.5,22.5 parent: 1 - - uid: 1008 +- proto: CurtainsBlack + entities: + - uid: 1755 components: - type: Transform - pos: -32.5,-3.5 + pos: -0.5,36.5 parent: 1 - - uid: 1009 + - uid: 1756 components: - type: Transform - pos: -31.5,-3.5 + pos: -0.5,34.5 parent: 1 - - uid: 1010 + - uid: 1757 components: - type: Transform - pos: -29.5,-3.5 + pos: -5.5,35.5 parent: 1 - - uid: 1011 +- proto: d6Dice + entities: + - uid: 1819 components: - type: Transform - pos: -28.5,-3.5 + pos: -2.9908204,36.84169 parent: 1 - - uid: 1016 + - uid: 1820 + components: + - type: Transform + pos: -3.6531801,35.643955 + parent: 1 +- proto: Defibrillator + entities: + - uid: 1561 + components: + - type: Transform + pos: -13.51858,14.77089 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 +- proto: DeskBell + entities: + - uid: 754 + components: + - type: Transform + pos: -6.5961885,7.2103014 + parent: 1 +- proto: DisposalBend + entities: + - uid: 331 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -3.5,6.5 parent: 1 - - uid: 1018 + - uid: 336 components: - type: Transform - pos: -7.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 1019 + - uid: 339 components: - type: Transform - pos: -6.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 1 - - uid: 1020 + - uid: 714 components: - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 1021 +- proto: DisposalJunction + entities: + - uid: 272 components: - type: Transform - pos: 8.5,1.5 + pos: -1.5,6.5 parent: 1 - - uid: 1022 + - uid: 291 components: - type: Transform - pos: 8.5,0.5 + rot: 3.141592653589793 rad + pos: 7.5,8.5 parent: 1 - - uid: 1026 + - uid: 749 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 7.5,5.5 parent: 1 - - uid: 1027 +- proto: DisposalJunctionFlipped + entities: + - uid: 275 components: - type: Transform - pos: -0.5,-11.5 + rot: 3.141592653589793 rad + pos: 7.5,6.5 parent: 1 - - uid: 1028 + - uid: 376 components: - type: Transform - pos: -0.5,-12.5 + rot: 1.5707963267948966 rad + pos: -1.5,1.5 parent: 1 - - uid: 1029 +- proto: DisposalPipe + entities: + - uid: 78 components: - type: Transform - pos: -11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 1030 + - uid: 97 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 1031 + - uid: 219 components: - type: Transform - pos: -9.5,-5.5 + pos: 7.5,9.5 parent: 1 - - uid: 1032 + - uid: 251 components: - type: Transform - pos: -4.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,7.5 parent: 1 - - uid: 1033 + - uid: 253 components: - type: Transform - pos: -3.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,7.5 parent: 1 - - uid: 1034 + - uid: 254 components: - type: Transform - pos: -2.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,10.5 parent: 1 - - uid: 1659 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 286 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 + pos: 7.5,4.5 parent: 1 - - uid: 1715 + - uid: 305 components: - type: Transform - pos: 1.5,-21.5 + rot: 3.141592653589793 rad + pos: -1.5,7.5 parent: 1 - - uid: 1716 + - uid: 310 components: - type: Transform - pos: 1.5,-22.5 + pos: 7.5,2.5 parent: 1 - - uid: 1717 + - uid: 370 components: - type: Transform - pos: 1.5,-24.5 + pos: -1.5,5.5 parent: 1 - - uid: 1718 + - uid: 371 components: - type: Transform - pos: 1.5,-25.5 + pos: -1.5,4.5 parent: 1 - - uid: 1719 + - uid: 372 components: - type: Transform - pos: 5.5,-25.5 + pos: -1.5,3.5 parent: 1 - - uid: 1720 + - uid: 373 components: - type: Transform - pos: 5.5,-24.5 + pos: -1.5,2.5 parent: 1 - - uid: 1721 + - uid: 374 components: - type: Transform - pos: 5.5,-22.5 + rot: -1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - - uid: 1722 + - uid: 375 components: - type: Transform - pos: 5.5,-21.5 + rot: -1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 -- proto: HighSecDoor - entities: - - uid: 1844 + - uid: 377 components: - type: Transform - pos: -33.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 1 - - uid: 1845 + - uid: 378 components: - type: Transform - pos: -33.5,-6.5 + rot: 1.5707963267948966 rad + pos: 0.5,1.5 parent: 1 - - uid: 1846 + - uid: 379 components: - type: Transform - pos: -27.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 1 - - uid: 1847 + - uid: 380 components: - type: Transform - pos: -27.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,1.5 parent: 1 - - uid: 1848 + - uid: 381 components: - type: Transform - pos: 2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 3.5,1.5 parent: 1 - - uid: 1849 + - uid: 382 components: - type: Transform - pos: 4.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,1.5 parent: 1 - - uid: 1850 + - uid: 383 components: - type: Transform - pos: 2.5,-20.5 + rot: 1.5707963267948966 rad + pos: 5.5,1.5 parent: 1 - - uid: 1851 + - uid: 933 components: - type: Transform - pos: 4.5,-20.5 + rot: 3.141592653589793 rad + pos: -3.5,8.5 parent: 1 -- proto: HospitalCurtains - entities: - - uid: 1777 + - uid: 991 components: - type: Transform - pos: 2.5,-0.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1778 +- proto: DisposalTrunk + entities: + - uid: 248 components: - type: Transform - pos: 2.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 1 - - uid: 1780 + - uid: 303 components: - type: Transform - pos: 2.5,3.5 + pos: 9.5,9.5 parent: 1 -- proto: HospitalCurtainsOpen - entities: - - uid: 1672 + - uid: 366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -4.5,1.5 parent: 1 - - uid: 1779 + - uid: 367 components: - type: Transform - pos: 2.5,0.5 + pos: -1.5,8.5 parent: 1 -- proto: hydroponicsSoil - entities: - - uid: 1632 + - uid: 716 components: - type: Transform - pos: -13.5,-9.5 + pos: 9.5,6.5 parent: 1 - - uid: 1633 + - uid: 887 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 1 - - uid: 1634 + - uid: 934 components: - type: Transform - pos: -15.5,-9.5 + pos: -3.5,9.5 parent: 1 -- proto: HydroponicsToolClippers +- proto: DisposalUnit entities: - - uid: 1710 + - uid: 142 components: - type: Transform - pos: -14.471659,-6.4601746 + pos: -1.5,8.5 parent: 1 -- proto: HydroponicsToolHatchet - entities: - - uid: 1708 + - uid: 292 components: - type: Transform - pos: -14.502909,-6.4132996 + pos: -4.5,1.5 parent: 1 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1709 + - uid: 540 components: - type: Transform - pos: -14.627909,-6.4601746 + pos: 8.5,1.5 parent: 1 -- proto: HydroponicsToolScythe - entities: - - uid: 1711 + - uid: 930 components: - type: Transform - pos: -14.471659,-6.5070496 + pos: -3.5,9.5 parent: 1 -- proto: HydroponicsToolSpade - entities: - - uid: 1712 + - uid: 931 components: - type: Transform - pos: -14.409159,-6.4289246 + pos: 6.5,5.5 parent: 1 -- proto: IntercomService +- proto: DisposalYJunction entities: - - uid: 1783 + - uid: 333 components: - type: Transform - pos: -6.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,1.5 parent: 1 -- proto: KitchenMicrowave +- proto: DogBed entities: - - uid: 1703 + - uid: 844 components: - type: Transform - pos: -10.5,-6.5 + pos: -3.5,5.5 parent: 1 -- proto: KitchenReagentGrinder +- proto: Dresser entities: - - uid: 1702 + - uid: 1697 components: - type: Transform - pos: -11.5,-6.5 + pos: -5.5,34.5 parent: 1 -- proto: LampGold - entities: - - uid: 1918 + - uid: 1710 components: - type: Transform - pos: -2.6423488,8.902393 + pos: -0.5,35.5 parent: 1 - - type: HandheldLight - toggleActionEntity: 1919 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 1919 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LargeBeaker +- proto: DrinkAleBottleFull entities: - - uid: 1762 - components: - - type: Transform - pos: -11.915005,-6.2745304 - parent: 1 - - uid: 1763 + - uid: 193 components: - type: Transform - pos: -12.102505,-6.4273086 + pos: -1.3561413,0.19765961 parent: 1 -- proto: LockerBotanistFilled - entities: - - uid: 1700 + - uid: 203 components: - type: Transform - pos: -13.5,-6.5 + pos: 2.3565233,0.16640961 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1701 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LuxuryPen +- proto: DrinkBeerBottleFull entities: - - uid: 1913 + - uid: 240 components: - type: Transform - pos: -2.1631823,8.53781 + pos: -5.5940914,1.8435847 parent: 1 - - type: Stamp - stampedName: Ryan Fiscina -- proto: MachineCryoSleepPod - entities: - - uid: 571 + - uid: 600 components: - type: Transform - pos: 7.5,3.5 + pos: -5.260758,1.8540014 parent: 1 -- proto: Mirror - entities: - - uid: 1897 + - uid: 1228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: 12.692219,31.463152 parent: 1 -- proto: MopBucketFull - entities: - - uid: 1767 + - uid: 1229 components: - type: Transform - pos: -6.484191,1.4599226 + pos: 12.535969,31.640234 parent: 1 -- proto: MopItem - entities: - - uid: 1766 + - uid: 1928 components: - type: Transform - pos: -6.595302,1.4182558 + pos: 12.806802,31.640234 parent: 1 -- proto: NitrogenCanister +- proto: DrinkBeerCan entities: - - uid: 1291 + - uid: 689 components: - type: Transform - anchored: True - pos: 10.5,-2.5 + pos: -2.0219421,-4.3052683 parent: 1 - - type: Physics - bodyType: Static -- proto: OxygenCanister - entities: - - uid: 1290 + - uid: 2027 components: - type: Transform - anchored: True - pos: 9.5,-2.5 + pos: 22.550758,25.65144 parent: 1 - - type: Physics - bodyType: Static -- proto: Paper - entities: - - uid: 1914 + - uid: 2029 components: - type: Transform - pos: -2.3194323,8.60031 + pos: 22.415342,25.234774 parent: 1 - - uid: 1915 + - uid: 2030 components: - type: Transform - pos: -2.1006823,8.652393 + pos: 22.696592,25.234774 parent: 1 -- proto: PortableScrubber +- proto: DrinkBottleCognac entities: - - uid: 1288 + - uid: 1128 components: - type: Transform - anchored: True - pos: 8.5,-5.5 + pos: -2.9453502,22.326792 parent: 1 - - type: Physics - bodyType: Static -- proto: Poweredlight +- proto: DrinkBottleRum entities: - - uid: 1741 + - uid: 1111 components: - type: Transform - pos: -12.5,-6.5 + pos: -3.1325707,24.551054 parent: 1 -- proto: PoweredLightPostSmall +- proto: DrinkKegWood entities: - - uid: 1682 + - uid: 1112 components: - type: Transform - pos: -22.5,-1.5 + pos: -3.015983,26.135101 parent: 1 - - uid: 1683 + - uid: 1113 components: - type: Transform - pos: 5.5,-8.5 + pos: -3.3076496,25.978851 parent: 1 - - uid: 1684 + - uid: 1116 components: - type: Transform - pos: -11.5,-1.5 + pos: 2.508083,11.4275875 parent: 1 - - uid: 1685 +- proto: DrinkRootBeerJug + entities: + - uid: 2031 components: - type: Transform - pos: 5.5,-16.5 + pos: -0.9567741,25.242569 parent: 1 - - uid: 1921 +- proto: DrinkRumBottleFull + entities: + - uid: 191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: 2.61694,0.18724298 parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 1686 + - uid: 206 components: - type: Transform - pos: 3.5,-21.5 + pos: -1.6686413,0.20807624 parent: 1 - - uid: 1687 + - uid: 278 components: - type: Transform - pos: 3.5,-25.5 + pos: -5.529629,2.1210914 parent: 1 - - uid: 1688 + - uid: 598 components: - type: Transform - pos: -28.5,-5.5 + pos: -5.2587957,2.1210914 parent: 1 - - uid: 1689 +- proto: DrinkShotGlass + entities: + - uid: 178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: -7.253187,1.8635483 parent: 1 - - uid: 1690 + - uid: 180 components: - type: Transform - pos: -3.5,-13.5 + pos: -7.55527,1.8739649 parent: 1 - - uid: 1691 + - uid: 181 components: - type: Transform - pos: -1.5,-9.5 + pos: -7.857353,1.8843815 parent: 1 - - uid: 1692 + - uid: 232 components: - type: Transform - pos: 2.5,2.5 + pos: -7.732353,1.6552149 parent: 1 - - uid: 1693 + - uid: 255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + pos: -7.409437,1.6447983 parent: 1 - - uid: 1694 + - uid: 1130 components: - type: Transform - pos: 5.5,3.5 + pos: 1.3630393,4.7888126 parent: 1 - - uid: 1695 + - uid: 1131 components: - type: Transform - pos: 10.5,-3.5 + pos: 1.7224143,4.7888126 parent: 1 - - uid: 1696 + - uid: 1132 components: - type: Transform - pos: -6.5,3.5 + pos: 1.5505393,4.5544376 parent: 1 -- proto: Rack +- proto: DrinkWaterJug entities: - - uid: 2006 + - uid: 2026 components: - type: Transform - pos: -8.5,-0.5 + pos: 15.045713,14.422518 parent: 1 -- proto: Railing +- proto: DrinkWineBottleFull entities: - - uid: 1733 + - uid: 599 components: - type: Transform - pos: 0.5,-12.5 + pos: -5.404629,1.9856746 parent: 1 - - uid: 1734 +- proto: EmergencyLight + entities: + - uid: 226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + pos: 6.5,11.5 parent: 1 - - uid: 1735 + - uid: 325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -2.5,1.5 parent: 1 - - uid: 1736 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 + pos: 1.5,8.5 parent: 1 - - uid: 1737 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + pos: 6.5,8.5 parent: 1 - - uid: 1832 + - uid: 363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 5.5,1.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 1731 + - uid: 396 components: - type: Transform - pos: 1.5,-12.5 + rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 1740 + - uid: 425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 1 - - uid: 1746 + - uid: 426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 1837 + - uid: 980 components: - type: Transform - pos: -11.5,-13.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 1 -- proto: ReagentContainerFlour - entities: - - uid: 1760 + - uid: 982 components: - type: Transform - pos: -12.47056,-7.3231416 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 parent: 1 -- proto: ReagentContainerRice - entities: - - uid: 1761 + - uid: 983 components: - type: Transform - pos: -12.262227,-7.4481416 + pos: 12.5,-0.5 parent: 1 -- proto: ReagentContainerSugar - entities: - - uid: 1764 + - uid: 984 components: - type: Transform - pos: -12.498338,-7.485883 + pos: -11.5,-0.5 parent: 1 -- proto: ReinforcedPlasmaWindow +- proto: ExtinguisherCabinetFilled entities: - - uid: 14 + - uid: 223 components: - type: Transform - pos: 5.5,-25.5 + rot: 1.5707963267948966 rad + pos: -2.5,2.5 parent: 1 - - uid: 15 + - uid: 392 components: - type: Transform - pos: 5.5,-24.5 + rot: -1.5707963267948966 rad + pos: 1.5,11.5 parent: 1 - - uid: 16 + - uid: 473 components: - type: Transform - pos: 5.5,-21.5 + pos: 1.5,9.5 parent: 1 - - uid: 17 + - uid: 888 components: - type: Transform - pos: 5.5,-22.5 + rot: 3.141592653589793 rad + pos: 5.5,11.5 parent: 1 - - uid: 18 +- proto: FaxMachineShipAntag + entities: + - uid: 63 components: - type: Transform - pos: 1.5,-22.5 + pos: -8.5,10.5 parent: 1 - - uid: 19 +- proto: FenceMetalGate + entities: + - uid: 1598 components: - type: Transform - pos: 1.5,-21.5 + rot: -1.5707963267948966 rad + pos: 10.5,15.5 parent: 1 - - uid: 20 +- proto: FenceMetalStraight + entities: + - uid: 1996 components: - type: Transform - pos: 1.5,-24.5 + rot: 3.141592653589793 rad + pos: 10.5,16.5 parent: 1 - - uid: 21 + - uid: 1997 components: - type: Transform - pos: 1.5,-25.5 + rot: 3.141592653589793 rad + pos: 10.5,14.5 parent: 1 - - uid: 1723 +- proto: FenceWoodHighGate + entities: + - uid: 1612 components: - type: Transform - pos: -29.5,-7.5 + pos: -2.5,30.5 parent: 1 - - uid: 1724 + - uid: 1923 components: - type: Transform - pos: -28.5,-7.5 + pos: 7.5,28.5 parent: 1 - - uid: 1725 + - type: Door + secondsUntilStateChange: -1742.1683 + state: Opening +- proto: FenceWoodSmallCorner + entities: + - uid: 1763 components: - type: Transform - pos: -29.5,-3.5 + pos: -9.5,27.5 parent: 1 - - uid: 1726 +- proto: FenceWoodSmallGate + entities: + - uid: 26 components: - type: Transform - pos: -28.5,-3.5 + pos: -0.5,9.5 parent: 1 - - uid: 1727 + - uid: 35 components: - type: Transform - pos: -32.5,-3.5 + rot: 1.5707963267948966 rad + pos: -2.5,4.5 parent: 1 - - uid: 1728 +- proto: FenceWoodSmallStraight + entities: + - uid: 1602 components: - type: Transform - pos: -31.5,-3.5 + rot: -1.5707963267948966 rad + pos: -15.5,27.5 parent: 1 - - uid: 1729 + - uid: 1764 components: - type: Transform - pos: -32.5,-7.5 + rot: -1.5707963267948966 rad + pos: -10.5,27.5 parent: 1 - - uid: 1730 + - uid: 1765 components: - type: Transform - pos: -31.5,-7.5 + rot: -1.5707963267948966 rad + pos: -14.5,27.5 parent: 1 -- proto: Shovel +- proto: FireAlarm entities: - - uid: 1681 + - uid: 154 components: - type: Transform - pos: -14.099554,2.0229537 + pos: 2.5,9.5 parent: 1 - - uid: 1906 + - type: DeviceList + devices: + - 39 + - 70 + - 646 + - 966 + - 972 + - 971 + - 970 + - 969 + - 968 + - 967 + - 471 +- proto: Firelock + entities: + - uid: 2 components: - type: Transform - pos: 0.57554865,13.388299 + pos: 1.5,12.5 parent: 1 -- proto: SignalButtonDirectional - entities: - - uid: 1858 + - uid: 39 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 3.5,9.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1855: - - Pressed: Toggle - 1856: - - Pressed: Toggle - 1857: - - Pressed: Toggle - - uid: 1859 + - uid: 70 components: - type: Transform - pos: 5.5,-20.5 + rot: 1.5707963267948966 rad + pos: 5.5,3.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1852: - - Pressed: Toggle - 1853: - - Pressed: Toggle - 1854: - - Pressed: Toggle -- proto: Sink - entities: - - uid: 1697 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: -3.5,2.5 parent: 1 - - uid: 1698 + - uid: 857 components: - type: Transform - pos: -12.5,-9.5 + rot: 3.141592653589793 rad + pos: 6.5,9.5 parent: 1 -- proto: SMESBasic +- proto: FirelockEdge entities: - - uid: 1304 + - uid: 966 components: - type: Transform - pos: 4.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 1 -- proto: SpawnMobCatClarpy - entities: - - uid: 1015 + - uid: 967 components: - type: Transform - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 -- proto: SpawnPointPirate - entities: - - uid: 1833 + - uid: 968 components: - type: Transform - pos: -3.5,-9.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 -- proto: SpawnPointPirateCaptain - entities: - - uid: 1994 + - uid: 969 components: - type: Transform - pos: -3.5,-7.5 + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 1 -- proto: SpawnPointPirateFirstMate - entities: - - uid: 1995 + - uid: 970 components: - type: Transform - pos: -5.5,-7.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 1 -- proto: SpesosTreeSeeds - entities: - - uid: 1701 + - uid: 971 components: - type: Transform - parent: 1700 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StoolBar - entities: - - uid: 1772 + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 972 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 1 - - uid: 1773 + - uid: 974 components: - type: Transform - pos: -2.5,-10.5 + rot: 1.5707963267948966 rad + pos: -3.5,6.5 parent: 1 - - uid: 1774 +- proto: FirelockGlass + entities: + - uid: 57 components: - type: Transform - pos: -3.5,-10.5 + pos: 8.5,5.5 parent: 1 - - uid: 1775 + - uid: 340 components: - type: Transform - pos: -4.5,-10.5 + pos: 8.5,8.5 parent: 1 - - uid: 1776 + - uid: 635 components: - type: Transform - pos: -5.5,-10.5 + pos: 7.5,4.5 parent: 1 -- proto: StorageCanister +- proto: FlippoLighter entities: - - uid: 1296 + - uid: 262 components: - type: Transform - pos: 9.5,-5.5 + pos: -1.498384,-0.11484039 parent: 1 - - uid: 1297 + - uid: 263 components: - type: Transform - pos: 10.5,-5.5 + pos: 2.493622,-0.16692376 parent: 1 -- proto: SubstationBasic - entities: - - uid: 1305 + - uid: 756 components: - type: Transform - pos: 4.5,3.5 + pos: -5.899738,7.826929 parent: 1 -- proto: SuitStorageEVAPirate +- proto: FloorDrain entities: - - uid: 1138 + - uid: 157 components: - type: Transform - pos: -3.5,3.5 + pos: 3.5,10.5 parent: 1 - - uid: 1660 + - type: Fixtures + fixtures: {} +- proto: FloorWaterDecorativeEntity + entities: + - uid: 81 components: - type: Transform - pos: -2.5,3.5 + pos: -2.5,27.5 parent: 1 - - uid: 1661 + - uid: 187 components: - type: Transform - pos: -1.5,3.5 + pos: -1.5,17.5 parent: 1 -- proto: SuitStoragePirateCap - entities: - - uid: 1662 + - uid: 188 components: - type: Transform - pos: -4.5,3.5 + pos: -2.5,28.5 parent: 1 -- proto: Table - entities: - - uid: 575 + - uid: 204 components: - type: Transform - pos: 7.5,0.5 + pos: 1.5,22.5 parent: 1 - - uid: 1638 + - uid: 405 components: - type: Transform - pos: -12.5,-7.5 + pos: 2.5,23.5 parent: 1 - - uid: 1639 + - uid: 412 components: - type: Transform - pos: -12.5,-6.5 + pos: -2.5,29.5 parent: 1 - - uid: 1640 + - uid: 457 components: - type: Transform - pos: -11.5,-6.5 + pos: 2.5,22.5 parent: 1 - - uid: 1641 + - uid: 475 components: - type: Transform - pos: -10.5,-6.5 + pos: -2.5,30.5 parent: 1 - - uid: 1648 + - uid: 519 components: - type: Transform - pos: -1.5,-13.5 + pos: 3.5,23.5 parent: 1 - - uid: 1649 + - uid: 696 components: - type: Transform - pos: -2.5,-13.5 + pos: -1.5,19.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 1635 + - uid: 725 components: - type: Transform - pos: -8.5,-6.5 + pos: -1.5,18.5 parent: 1 - - uid: 1636 + - uid: 739 components: - type: Transform - pos: -8.5,-7.5 + pos: 1.5,23.5 parent: 1 - - uid: 1637 + - uid: 786 components: - type: Transform - pos: -8.5,-8.5 + pos: -5.5,23.5 parent: 1 -- proto: TableWood - entities: - - uid: 518 + - uid: 795 components: - type: Transform - pos: -0.5,8.5 + pos: -7.5,23.5 parent: 1 - - uid: 1705 + - uid: 808 components: - type: Transform - pos: -5.5,-8.5 + pos: -5.5,24.5 parent: 1 - - uid: 1706 + - uid: 809 components: - type: Transform - pos: -3.5,-8.5 + pos: -9.5,23.5 parent: 1 - - uid: 1707 + - uid: 811 components: - type: Transform - pos: -14.5,-6.5 + pos: -8.5,23.5 parent: 1 - - uid: 1911 + - uid: 842 components: - type: Transform - pos: -1.5,8.5 + pos: -8.5,24.5 parent: 1 - - uid: 1912 + - uid: 850 components: - type: Transform - pos: -2.5,8.5 + pos: 4.5,23.5 parent: 1 -- proto: TableWoodReinforced - entities: - - uid: 1642 + - uid: 873 components: - type: Transform - pos: -1.5,-11.5 + pos: 5.5,22.5 parent: 1 - - uid: 1643 + - uid: 883 components: - type: Transform - pos: -2.5,-11.5 + pos: 4.5,22.5 parent: 1 - - uid: 1644 + - uid: 890 components: - type: Transform - pos: -3.5,-11.5 + pos: 5.5,23.5 parent: 1 - - uid: 1645 + - uid: 893 components: - type: Transform - pos: -4.5,-11.5 + pos: 3.5,22.5 parent: 1 - - uid: 1646 + - uid: 894 components: - type: Transform - pos: -5.5,-11.5 + pos: -2.5,20.5 parent: 1 - - uid: 1647 + - uid: 923 components: - type: Transform - pos: -5.5,-12.5 + pos: -2.5,31.5 parent: 1 -- proto: ToiletDirtyWater - entities: - - uid: 1670 + - uid: 939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + pos: -2.5,19.5 parent: 1 -- proto: ToyFigurineFootsoldier - entities: - - uid: 1782 + - uid: 941 components: - type: Transform - pos: -3.6954622,-8.408158 + pos: -2.5,18.5 parent: 1 -- proto: VariantCubeBox - entities: - - uid: 1765 + - uid: 977 components: - type: Transform - pos: -12.315859,-7.418098 + pos: -1.5,20.5 parent: 1 -- proto: VendingMachineBooze - entities: - - uid: 1650 + - uid: 987 components: - type: Transform - pos: -3.5,-13.5 + pos: -2.5,17.5 parent: 1 -- proto: WallPlastitanium - entities: - - uid: 2 + - uid: 1166 components: - type: Transform - pos: -27.5,-8.5 + pos: -6.5,23.5 parent: 1 - - uid: 6 + - uid: 1267 components: - type: Transform - pos: 1.5,-26.5 + pos: -6.5,24.5 parent: 1 - - uid: 7 + - uid: 1574 components: - type: Transform - pos: 5.5,-26.5 + pos: -7.5,24.5 parent: 1 - - uid: 8 + - uid: 1613 components: - type: Transform - pos: 3.5,-26.5 + pos: -9.5,24.5 parent: 1 - - uid: 9 +- proto: FloorWaterEntity + entities: + - uid: 4 components: - type: Transform - pos: 1.5,-23.5 + pos: 3.5,26.5 parent: 1 - - uid: 10 + - uid: 198 components: - type: Transform - pos: 5.5,-23.5 + pos: -3.5,19.5 parent: 1 - - uid: 11 + - uid: 205 components: - type: Transform - pos: 1.5,-20.5 + pos: 4.5,25.5 parent: 1 - - uid: 12 + - uid: 221 components: - type: Transform - pos: 5.5,-20.5 + pos: 0.5,28.5 parent: 1 - - uid: 13 + - uid: 222 components: - type: Transform - pos: 3.5,-20.5 + pos: 4.5,26.5 parent: 1 - - uid: 25 + - uid: 347 components: - type: Transform - pos: -33.5,-7.5 + pos: -5.5,21.5 parent: 1 - - uid: 26 + - uid: 398 components: - type: Transform - pos: -33.5,-3.5 + pos: -0.5,17.5 parent: 1 - - uid: 27 + - uid: 432 components: - type: Transform - pos: -33.5,-5.5 + pos: -1.5,31.5 parent: 1 - - uid: 28 + - uid: 437 components: - type: Transform - pos: -30.5,-3.5 + pos: 2.5,25.5 parent: 1 - - uid: 29 + - uid: 536 components: - type: Transform - pos: -30.5,-7.5 + pos: -0.5,19.5 parent: 1 - - uid: 30 + - uid: 571 components: - type: Transform - pos: -27.5,-3.5 + pos: 0.5,19.5 parent: 1 - - uid: 31 + - uid: 606 components: - type: Transform - pos: -27.5,-5.5 + pos: 5.5,21.5 parent: 1 - - uid: 32 + - uid: 631 components: - type: Transform - pos: -27.5,-7.5 + pos: -8.5,22.5 parent: 1 - - uid: 33 + - uid: 633 components: - type: Transform - pos: -27.5,-9.5 + pos: 1.5,17.5 parent: 1 - - uid: 34 + - uid: 641 components: - type: Transform - pos: -27.5,-10.5 + pos: 5.5,20.5 parent: 1 - - uid: 35 + - uid: 690 components: - type: Transform - pos: -26.5,-10.5 + pos: 2.5,20.5 parent: 1 - - uid: 36 + - uid: 691 components: - type: Transform - pos: -25.5,-10.5 + pos: 2.5,21.5 parent: 1 - - uid: 37 + - uid: 693 components: - type: Transform - pos: -24.5,-10.5 + pos: 2.5,24.5 parent: 1 - - uid: 38 + - uid: 695 components: - type: Transform - pos: -23.5,-10.5 + pos: 3.5,27.5 parent: 1 - - uid: 39 + - uid: 697 components: - type: Transform - pos: -22.5,-10.5 + pos: 2.5,26.5 parent: 1 - - uid: 40 + - uid: 698 components: - type: Transform - pos: -22.5,-11.5 + pos: 2.5,27.5 parent: 1 - - uid: 41 + - uid: 699 components: - type: Transform - pos: -22.5,-12.5 + pos: 3.5,20.5 parent: 1 - - uid: 42 + - uid: 702 components: - type: Transform - pos: -22.5,-13.5 + pos: 6.5,26.5 parent: 1 - - uid: 44 + - uid: 703 components: - type: Transform - pos: -21.5,-13.5 + pos: 6.5,25.5 parent: 1 - - uid: 45 + - uid: 706 components: - type: Transform - pos: -20.5,-13.5 + pos: 4.5,21.5 parent: 1 - - uid: 46 + - uid: 707 components: - type: Transform - pos: -19.5,-13.5 + pos: 4.5,20.5 parent: 1 - - uid: 47 + - uid: 711 components: - type: Transform - pos: -18.5,-13.5 + pos: -5.5,20.5 parent: 1 - - uid: 48 + - uid: 713 components: - type: Transform - pos: -17.5,-13.5 + pos: -9.5,25.5 parent: 1 - - uid: 49 + - uid: 729 components: - type: Transform - pos: -17.5,-14.5 + pos: 3.5,21.5 parent: 1 - - uid: 50 + - uid: 738 components: - type: Transform - pos: -17.5,-15.5 + pos: 3.5,24.5 parent: 1 - - uid: 51 + - uid: 740 components: - type: Transform - pos: -17.5,-16.5 + pos: 5.5,24.5 parent: 1 - - uid: 52 + - uid: 741 components: - type: Transform - pos: -17.5,-17.5 + pos: 5.5,25.5 parent: 1 - - uid: 53 + - uid: 745 components: - type: Transform - pos: -16.5,-17.5 + pos: -6.5,28.5 parent: 1 - - uid: 54 + - uid: 748 components: - type: Transform - pos: -15.5,-17.5 + pos: -7.5,19.5 parent: 1 - - uid: 55 + - uid: 753 components: - type: Transform - pos: -14.5,-17.5 + pos: -6.5,25.5 parent: 1 - - uid: 56 + - uid: 755 components: - type: Transform - pos: -13.5,-17.5 + pos: -6.5,19.5 parent: 1 - - uid: 57 + - uid: 758 components: - type: Transform - pos: -12.5,-17.5 + pos: -6.5,27.5 parent: 1 - - uid: 58 + - uid: 759 components: - type: Transform - pos: -11.5,-17.5 + pos: -6.5,21.5 parent: 1 - - uid: 59 + - uid: 763 components: - type: Transform - pos: -10.5,-17.5 + pos: -6.5,26.5 parent: 1 - - uid: 60 + - uid: 768 components: - type: Transform - pos: -9.5,-17.5 + pos: -7.5,27.5 parent: 1 - - uid: 61 + - uid: 769 components: - type: Transform - pos: -9.5,-18.5 + pos: -6.5,22.5 parent: 1 - - uid: 62 + - uid: 771 components: - type: Transform - pos: -9.5,-19.5 + pos: -6.5,20.5 parent: 1 - - uid: 63 + - uid: 772 components: - type: Transform - pos: -9.5,-20.5 + pos: -7.5,26.5 parent: 1 - - uid: 64 + - uid: 773 components: - type: Transform - pos: -8.5,-20.5 + pos: -7.5,21.5 parent: 1 - - uid: 65 + - uid: 776 components: - type: Transform - pos: -7.5,-20.5 + pos: -7.5,25.5 parent: 1 - - uid: 66 + - uid: 778 components: - type: Transform - pos: -6.5,-20.5 + pos: -7.5,22.5 parent: 1 - - uid: 67 + - uid: 780 components: - type: Transform - pos: -5.5,-20.5 + pos: -1.5,28.5 parent: 1 - - uid: 68 + - uid: 782 components: - type: Transform - pos: -4.5,-20.5 + pos: -0.5,20.5 parent: 1 - - uid: 69 + - uid: 783 components: - type: Transform - pos: -3.5,-20.5 + pos: -4.5,21.5 parent: 1 - - uid: 70 + - uid: 785 components: - type: Transform - pos: -2.5,-20.5 + pos: -5.5,27.5 parent: 1 - - uid: 71 + - uid: 787 components: - type: Transform - pos: -1.5,-20.5 + pos: -4.5,27.5 parent: 1 - - uid: 72 + - uid: 788 components: - type: Transform - pos: -0.5,-20.5 + pos: -5.5,28.5 parent: 1 - - uid: 73 + - uid: 790 components: - type: Transform - pos: 0.5,-20.5 + pos: 4.5,19.5 parent: 1 - - uid: 74 + - uid: 792 components: - type: Transform - pos: 6.5,-20.5 + pos: -4.5,28.5 parent: 1 - - uid: 75 + - uid: 793 components: - type: Transform - pos: 7.5,-20.5 + pos: -4.5,20.5 parent: 1 - - uid: 76 + - uid: 794 components: - type: Transform - pos: 8.5,-20.5 + pos: -4.5,18.5 parent: 1 - - uid: 77 + - uid: 800 components: - type: Transform - pos: 9.5,-20.5 + pos: -4.5,26.5 parent: 1 - - uid: 78 + - uid: 801 components: - type: Transform - pos: 10.5,-20.5 + pos: -4.5,19.5 parent: 1 - - uid: 79 + - uid: 802 components: - type: Transform - pos: 11.5,-20.5 + pos: -3.5,20.5 parent: 1 - - uid: 80 + - uid: 803 components: - type: Transform - pos: 11.5,-19.5 + pos: 2.5,19.5 parent: 1 - - uid: 81 + - uid: 804 components: - type: Transform - pos: 11.5,-18.5 + pos: 4.5,24.5 parent: 1 - - uid: 82 + - uid: 805 components: - type: Transform - pos: 11.5,-17.5 + pos: 3.5,19.5 parent: 1 - - uid: 83 + - uid: 806 components: - type: Transform - pos: 12.5,-17.5 + pos: -3.5,17.5 parent: 1 - - uid: 84 + - uid: 815 components: - type: Transform - pos: 13.5,-17.5 + pos: -3.5,18.5 parent: 1 - - uid: 85 + - uid: 817 components: - type: Transform - pos: 14.5,-17.5 + pos: -7.5,18.5 parent: 1 - - uid: 86 + - uid: 818 components: - type: Transform - pos: 15.5,-17.5 + pos: -5.5,19.5 parent: 1 - - uid: 87 + - uid: 826 components: - type: Transform - pos: 15.5,-16.5 + pos: -3.5,27.5 parent: 1 - - uid: 88 + - uid: 829 components: - type: Transform - pos: 15.5,-15.5 + pos: -6.5,18.5 parent: 1 - - uid: 89 + - uid: 830 components: - type: Transform - pos: 15.5,-14.5 + pos: 2.5,18.5 parent: 1 - - uid: 90 + - uid: 839 components: - type: Transform - pos: 15.5,-13.5 + pos: -8.5,21.5 parent: 1 - - uid: 91 + - uid: 846 components: - type: Transform - pos: 15.5,-12.5 + pos: 1.5,20.5 parent: 1 - - uid: 92 + - uid: 847 components: - type: Transform - pos: 15.5,-11.5 + pos: 0.5,18.5 parent: 1 - - uid: 93 + - uid: 851 components: - type: Transform - pos: 15.5,-10.5 + pos: -0.5,26.5 parent: 1 - - uid: 272 + - uid: 853 components: - type: Transform - pos: -27.5,-2.5 + pos: -0.5,18.5 parent: 1 - - uid: 273 + - uid: 855 components: - type: Transform - pos: -27.5,-1.5 + pos: 0.5,20.5 parent: 1 - - uid: 274 + - uid: 856 components: - type: Transform - pos: -27.5,-0.5 + pos: 1.5,21.5 parent: 1 - - uid: 275 + - uid: 860 components: - type: Transform - pos: -27.5,0.5 + pos: -0.5,28.5 parent: 1 - - uid: 276 + - uid: 863 components: - type: Transform - pos: -26.5,0.5 + pos: 1.5,27.5 parent: 1 - - uid: 277 + - uid: 881 components: - type: Transform - pos: -25.5,0.5 + pos: 1.5,19.5 parent: 1 - - uid: 278 + - uid: 882 components: - type: Transform - pos: -25.5,1.5 + pos: 0.5,17.5 parent: 1 - - uid: 279 + - uid: 885 components: - type: Transform - pos: -25.5,2.5 + pos: -5.5,22.5 parent: 1 - - uid: 280 + - uid: 889 components: - type: Transform - pos: -25.5,3.5 + pos: -5.5,25.5 parent: 1 - - uid: 337 + - uid: 891 components: - type: Transform - pos: 16.5,-10.5 + pos: -5.5,26.5 parent: 1 - - uid: 338 + - uid: 892 components: - type: Transform - pos: 17.5,-10.5 + pos: -3.5,28.5 parent: 1 - - uid: 339 + - uid: 927 components: - type: Transform - pos: 18.5,-10.5 + pos: -7.5,20.5 parent: 1 - - uid: 340 + - uid: 936 components: - type: Transform - pos: 18.5,-9.5 + pos: -8.5,25.5 parent: 1 - - uid: 341 + - uid: 937 components: - type: Transform - pos: 18.5,-8.5 + pos: -8.5,26.5 parent: 1 - - uid: 342 + - uid: 938 components: - type: Transform - pos: 18.5,-7.5 + pos: 0.5,25.5 parent: 1 - - uid: 343 + - uid: 940 components: - type: Transform - pos: 18.5,-6.5 + pos: 5.5,26.5 parent: 1 - - uid: 344 + - uid: 942 components: - type: Transform - pos: 18.5,-5.5 + pos: 3.5,25.5 parent: 1 - - uid: 345 + - uid: 943 components: - type: Transform - pos: 18.5,-4.5 + pos: 1.5,26.5 parent: 1 - - uid: 346 + - uid: 961 components: - type: Transform - pos: 18.5,-3.5 + pos: 1.5,24.5 parent: 1 - - uid: 347 + - uid: 962 components: - type: Transform - pos: 18.5,-2.5 + pos: -1.5,27.5 parent: 1 - - uid: 348 + - uid: 975 components: - type: Transform - pos: 18.5,-1.5 + pos: -0.5,27.5 parent: 1 - - uid: 349 + - uid: 976 components: - type: Transform - pos: 18.5,-0.5 + pos: 0.5,27.5 parent: 1 - - uid: 350 + - uid: 985 components: - type: Transform - pos: 18.5,0.5 + pos: 1.5,28.5 parent: 1 - - uid: 351 + - uid: 986 components: - type: Transform - pos: 18.5,1.5 + pos: 1.5,18.5 parent: 1 - - uid: 352 + - uid: 1012 components: - type: Transform - pos: 17.5,1.5 + pos: -9.5,22.5 parent: 1 - - uid: 353 + - uid: 1013 components: - type: Transform - pos: 17.5,2.5 + pos: 1.5,25.5 parent: 1 - - uid: 354 + - uid: 1101 components: - type: Transform - pos: 17.5,3.5 + pos: -3.5,29.5 parent: 1 - - uid: 355 + - uid: 1103 components: - type: Transform - pos: 17.5,4.5 + pos: -1.5,29.5 parent: 1 - - uid: 356 + - uid: 1104 components: - type: Transform - pos: 16.5,4.5 + pos: -0.5,29.5 parent: 1 - - uid: 357 + - uid: 1105 components: - type: Transform - pos: 16.5,5.5 + pos: 0.5,29.5 parent: 1 - - uid: 358 + - uid: 1149 components: - type: Transform - pos: 16.5,6.5 + pos: 0.5,26.5 parent: 1 - - uid: 359 + - uid: 1163 components: - type: Transform - pos: 16.5,7.5 + pos: -0.5,32.5 parent: 1 - - uid: 360 + - uid: 1164 components: - type: Transform - pos: 16.5,8.5 + pos: -0.5,31.5 parent: 1 - - uid: 361 + - uid: 1165 components: - type: Transform - pos: 15.5,8.5 + pos: -3.5,31.5 parent: 1 - - uid: 362 + - uid: 1169 components: - type: Transform - pos: 14.5,8.5 + pos: -5.5,32.5 parent: 1 - - uid: 363 + - uid: 1179 components: - type: Transform - pos: 13.5,8.5 + pos: -5.5,31.5 parent: 1 - - uid: 364 + - uid: 1181 components: - type: Transform - pos: 12.5,8.5 + pos: -4.5,31.5 parent: 1 - - uid: 365 + - uid: 1182 components: - type: Transform - pos: 11.5,8.5 + pos: -1.5,32.5 parent: 1 - - uid: 366 + - uid: 1183 components: - type: Transform - pos: 10.5,8.5 + pos: -4.5,32.5 parent: 1 - - uid: 367 + - uid: 1184 components: - type: Transform - pos: 10.5,9.5 + pos: -3.5,32.5 parent: 1 - - uid: 368 +- proto: FloraGreyStalagmite1 + entities: + - uid: 1072 components: - type: Transform - pos: 10.5,10.5 + pos: 0.119210005,17.985949 parent: 1 - - uid: 369 + - uid: 1076 components: - type: Transform - pos: 10.5,11.5 + pos: 0.9212934,20.225533 parent: 1 - - uid: 370 + - uid: 1090 components: - type: Transform - pos: 9.5,11.5 + pos: 3.8974686,21.029644 parent: 1 - - uid: 371 +- proto: FloraGreyStalagmite2 + entities: + - uid: 1080 components: - type: Transform - pos: 8.5,11.5 + pos: 4.3766356,24.915062 parent: 1 - - uid: 372 + - uid: 1081 components: - type: Transform - pos: 7.5,11.5 + pos: -6.217115,27.456728 parent: 1 - - uid: 373 + - uid: 1083 components: - type: Transform - pos: 6.5,11.5 + pos: 2.0016356,18.998394 parent: 1 - - uid: 374 +- proto: FloraGreyStalagmite3 + entities: + - uid: 1069 components: - type: Transform - pos: 5.5,11.5 + pos: -6.9159393,20.173449 parent: 1 - - uid: 375 +- proto: FloraGreyStalagmite4 + entities: + - uid: 1068 components: - type: Transform - pos: 4.5,11.5 + pos: -4.4263554,19.527615 parent: 1 - - uid: 376 + - uid: 1078 components: - type: Transform - pos: 4.5,12.5 + pos: 0.72998214,26.831728 parent: 1 - - uid: 377 + - uid: 1079 components: - type: Transform - pos: 4.5,13.5 + pos: -7.731412,21.873394 parent: 1 - - uid: 378 + - uid: 1091 components: - type: Transform - pos: 4.5,14.5 + rot: -1.5707963267948966 rad + pos: -4.0983005,28.205011 parent: 1 - - uid: 379 + - uid: 1092 components: - type: Transform - pos: 4.5,15.5 + pos: -0.071281314,28.560894 parent: 1 - - uid: 380 +- proto: FloraGreyStalagmite5 + entities: + - uid: 1071 components: - type: Transform - pos: 3.5,15.5 + pos: -6.0930223,21.808865 parent: 1 - - uid: 381 + - uid: 1084 components: - type: Transform - pos: 1.5,15.5 + pos: -7.6025314,26.165062 parent: 1 - - uid: 382 + - uid: 1085 components: - type: Transform - pos: 2.5,15.5 + pos: 2.0953856,25.206728 parent: 1 - - uid: 383 + - uid: 1086 components: - type: Transform - pos: 0.5,15.5 + pos: 5.3974686,26.508812 parent: 1 - - uid: 384 + - uid: 1087 components: - type: Transform - pos: -0.5,15.5 + pos: -5.685865,27.196312 parent: 1 - - uid: 385 + - uid: 1724 components: - type: Transform - pos: -1.5,15.5 + rot: -1.5707963267948966 rad + pos: -1.269352,29.13705 parent: 1 - - uid: 386 +- proto: FloraGreyStalagmite6 + entities: + - uid: 1077 components: - type: Transform - pos: -2.5,15.5 + pos: 4.1087933,20.256783 parent: 1 - - uid: 387 + - uid: 1088 components: - type: Transform - pos: -2.5,14.5 + pos: -4.1129484,19.883812 parent: 1 - - uid: 388 + - uid: 1089 components: - type: Transform - pos: -2.5,13.5 + pos: 1.293302,20.373394 parent: 1 - - uid: 389 +- proto: FloraRockSolid01 + entities: + - uid: 1382 components: - type: Transform - pos: -2.5,12.5 + rot: -1.5707963267948966 rad + pos: 16.276434,25.658834 parent: 1 - - uid: 390 +- proto: FloraRockSolid02 + entities: + - uid: 1564 components: - type: Transform - pos: -2.5,11.5 + pos: -14.30686,30.469576 parent: 1 - - uid: 391 +- proto: FoamCrossbow + entities: + - uid: 1752 components: - type: Transform - pos: -3.5,11.5 + pos: 23.069695,19.9217 parent: 1 - - uid: 392 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 2018 components: - type: Transform - pos: -4.5,11.5 + pos: 4.68371,7.916847 parent: 1 - - uid: 393 +- proto: FoodKebabSkewer + entities: + - uid: 1108 components: - type: Transform - pos: -5.5,11.5 + pos: -2.5469892,25.23837 parent: 1 - - uid: 394 + - uid: 1110 components: - type: Transform - pos: -6.5,11.5 + pos: -2.401156,25.481426 parent: 1 - - uid: 395 +- proto: FoodMeatHuman + entities: + - uid: 252 components: - type: Transform - pos: -7.5,11.5 - parent: 1 - - uid: 396 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 283 components: - type: Transform - pos: -8.5,11.5 - parent: 1 - - uid: 397 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 287 components: - type: Transform - pos: -9.5,11.5 - parent: 1 - - uid: 398 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 1109 components: - type: Transform - pos: -10.5,11.5 + pos: -1.5400448,24.477612 parent: 1 - - uid: 399 +- proto: FoodPlate + entities: + - uid: 212 components: - type: Transform - pos: -11.5,11.5 + pos: -6.312971,1.7044246 parent: 1 - - uid: 400 + - uid: 218 components: - type: Transform - pos: -12.5,11.5 + pos: 9.509022,1.7281315 parent: 1 - - uid: 401 +- proto: FoodSaladCaesar + entities: + - uid: 1600 components: - type: Transform - pos: -13.5,11.5 + pos: 2.4884746,-4.2928896 parent: 1 - - uid: 402 +- proto: GasPassiveVent + entities: + - uid: 1285 components: - type: Transform - pos: -14.5,11.5 + rot: 3.141592653589793 rad + pos: 11.5,9.5 parent: 1 - - uid: 403 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 359 components: - type: Transform - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: 0.5,8.5 parent: 1 - - uid: 404 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 468 components: - type: Transform - pos: -15.5,10.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 parent: 1 - - uid: 405 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 354 components: - type: Transform - pos: -15.5,9.5 + pos: 6.5,11.5 parent: 1 - - uid: 406 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 385 components: - type: Transform - pos: -15.5,8.5 + pos: 6.5,5.5 parent: 1 - - uid: 407 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 47 components: - type: Transform - pos: -16.5,8.5 + pos: 5.5,11.5 parent: 1 - - uid: 408 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 266 components: - type: Transform - pos: -17.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - - uid: 409 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 355 components: - type: Transform - pos: -18.5,8.5 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - - uid: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 360 components: - type: Transform - pos: -19.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 411 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 406 components: - type: Transform - pos: -20.5,8.5 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 parent: 1 - - uid: 412 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 452 components: - type: Transform - pos: -20.5,7.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 1 - - uid: 413 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 484 components: - type: Transform - pos: -21.5,7.5 + pos: 6.5,4.5 parent: 1 - - uid: 414 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 485 components: - type: Transform - pos: -22.5,7.5 + pos: 6.5,9.5 parent: 1 - - uid: 415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 486 components: - type: Transform - pos: -23.5,7.5 + pos: 6.5,10.5 parent: 1 - - uid: 416 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 487 components: - type: Transform - pos: -24.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,11.5 parent: 1 - - uid: 417 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 488 components: - type: Transform - pos: -25.5,7.5 + rot: 3.141592653589793 rad + pos: 0.5,9.5 parent: 1 - - uid: 418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 489 components: - type: Transform - pos: -25.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 1 - - uid: 419 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 490 components: - type: Transform - pos: -25.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,8.5 parent: 1 - - uid: 420 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 components: - type: Transform - pos: -25.5,4.5 + rot: 1.5707963267948966 rad + pos: 3.5,8.5 parent: 1 -- proto: WallRock - entities: - - uid: 43 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 532 components: - type: Transform - pos: 0.5,-27.5 + pos: 7.5,5.5 parent: 1 - - uid: 94 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 components: - type: Transform - pos: 0.5,-25.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 1 - - uid: 95 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 components: - type: Transform - pos: 0.5,-26.5 + rot: -1.5707963267948966 rad + pos: 6.5,9.5 parent: 1 - - uid: 96 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 components: - type: Transform - pos: 0.5,-23.5 + rot: 3.141592653589793 rad + pos: 5.5,7.5 parent: 1 - - uid: 97 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 645 components: - type: Transform - pos: 0.5,-24.5 + rot: -1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 98 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 647 components: - type: Transform - pos: 0.5,-21.5 + rot: -1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 99 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 652 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 7.5,5.5 parent: 1 - - uid: 100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 653 components: - type: Transform - pos: -0.5,-26.5 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 parent: 1 - - uid: 101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 660 components: - type: Transform - pos: -0.5,-25.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 1 - - uid: 102 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 661 components: - type: Transform - pos: -0.5,-24.5 + pos: 6.5,6.5 parent: 1 - - uid: 103 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 663 components: - type: Transform - pos: -0.5,-23.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 104 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 673 components: - type: Transform - pos: -0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 1 - - uid: 105 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 674 components: - type: Transform - pos: -0.5,-21.5 + pos: 7.5,4.5 parent: 1 - - uid: 106 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 832 components: - type: Transform - pos: 1.5,-27.5 + rot: -1.5707963267948966 rad + pos: 9.5,12.5 parent: 1 - - uid: 107 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 865 components: - type: Transform - pos: 1.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,11.5 parent: 1 - - uid: 108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 944 components: - type: Transform - pos: 0.5,-28.5 + rot: -1.5707963267948966 rad + pos: 7.5,11.5 parent: 1 - - uid: 109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 945 components: - type: Transform - pos: -0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 7.5,12.5 parent: 1 - - uid: 110 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1009 components: - type: Transform - pos: -0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 111 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1320 components: - type: Transform - pos: -15.5,-18.5 + rot: 3.141592653589793 rad + pos: 11.5,10.5 parent: 1 - - uid: 112 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1321 components: - type: Transform - pos: -1.5,-26.5 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 1 - - uid: 113 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 46 components: - type: Transform - pos: -1.5,-25.5 + pos: 5.5,12.5 parent: 1 - - uid: 114 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 357 components: - type: Transform - pos: -2.5,-25.5 + rot: 3.141592653589793 rad + pos: 5.5,6.5 parent: 1 - - uid: 115 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 387 components: - type: Transform - pos: -2.5,-24.5 + rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 1 - - uid: 116 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 389 components: - type: Transform - pos: -2.5,-23.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - - uid: 117 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 components: - type: Transform - pos: -2.5,-22.5 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 parent: 1 - - uid: 118 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 components: - type: Transform - pos: -2.5,-21.5 + pos: 1.5,11.5 parent: 1 - - uid: 119 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 530 components: - type: Transform - pos: -3.5,-25.5 + pos: 7.5,6.5 parent: 1 - - uid: 120 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 630 components: - type: Transform - pos: -3.5,-24.5 + rot: 1.5707963267948966 rad + pos: 5.5,9.5 parent: 1 - - uid: 121 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 662 components: - type: Transform - pos: -3.5,-23.5 + rot: -1.5707963267948966 rad + pos: 5.5,10.5 parent: 1 - - uid: 122 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 436 components: - type: Transform - pos: -3.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,12.5 parent: 1 - - uid: 123 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 717 components: - type: Transform - pos: -3.5,-21.5 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 124 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 356 components: - type: Transform - pos: -4.5,-25.5 + rot: -1.5707963267948966 rad + pos: 2.5,10.5 parent: 1 - - uid: 125 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 components: - type: Transform - pos: -4.5,-24.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 1 - - uid: 126 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 407 components: - type: Transform - pos: -4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 0.5,11.5 parent: 1 - - uid: 127 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 components: - type: Transform - pos: -4.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - - uid: 128 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 657 components: - type: Transform - pos: -4.5,-21.5 + rot: 3.141592653589793 rad + pos: 6.5,3.5 parent: 1 - - uid: 129 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 928 components: - type: Transform - pos: -5.5,-25.5 + pos: 6.5,12.5 parent: 1 - - uid: 130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1010 components: - type: Transform - pos: -5.5,-24.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 131 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 12 components: - type: Transform - pos: -5.5,-23.5 + rot: -1.5707963267948966 rad + pos: 9.5,9.5 parent: 1 - - uid: 132 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 353 components: - type: Transform - pos: -5.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 133 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 components: - type: Transform - pos: -5.5,-21.5 + rot: 3.141592653589793 rad + pos: 7.5,3.5 parent: 1 - - uid: 134 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 components: - type: Transform - pos: -1.5,-24.5 + pos: 0.5,10.5 parent: 1 - - uid: 135 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 650 components: - type: Transform - pos: -1.5,-23.5 + rot: -1.5707963267948966 rad + pos: 9.5,6.5 parent: 1 - - uid: 136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 666 components: - type: Transform - pos: -1.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 parent: 1 - - uid: 137 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 components: - type: Transform - pos: -1.5,-21.5 + pos: 6.5,13.5 parent: 1 - - uid: 138 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 953 components: - type: Transform - pos: -6.5,-24.5 + pos: -7.5,13.5 parent: 1 - - uid: 139 + - uid: 996 components: - type: Transform - pos: -6.5,-23.5 + pos: -8.5,13.5 parent: 1 - - uid: 140 + - uid: 999 components: - type: Transform - pos: -6.5,-22.5 + pos: -8.5,14.5 parent: 1 - - uid: 141 +- proto: Girder + entities: + - uid: 1218 components: - type: Transform - pos: -6.5,-21.5 + pos: -9.5,14.5 parent: 1 - - uid: 142 +- proto: GravityGeneratorMini + entities: + - uid: 951 components: - type: Transform - pos: -7.5,-23.5 + pos: -7.5,12.5 parent: 1 - - uid: 143 +- proto: Grille + entities: + - uid: 72 components: - type: Transform - pos: -7.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 parent: 1 - - uid: 144 + - uid: 311 components: - type: Transform - pos: -8.5,-22.5 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 parent: 1 - - uid: 145 + - uid: 314 components: - type: Transform - pos: -8.5,-21.5 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 parent: 1 - - uid: 146 + - uid: 413 components: - type: Transform - pos: -7.5,-21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-7.5 parent: 1 - - uid: 147 + - uid: 422 components: - type: Transform - pos: -9.5,-22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 1 - - uid: 148 + - uid: 564 components: - type: Transform - pos: -9.5,-21.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 149 + - uid: 565 components: - type: Transform - pos: -10.5,-22.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 150 + - uid: 566 components: - type: Transform - pos: -10.5,-21.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 151 + - uid: 567 components: - type: Transform - pos: -11.5,-22.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 152 + - uid: 568 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 153 + - uid: 569 components: - type: Transform - pos: -11.5,-20.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 154 + - uid: 570 components: - type: Transform - pos: -11.5,-19.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 155 + - uid: 751 components: - type: Transform - pos: -11.5,-18.5 + pos: 10.5,8.5 parent: 1 - - uid: 156 + - uid: 757 components: - type: Transform - pos: -10.5,-20.5 + pos: 10.5,6.5 parent: 1 - - uid: 157 + - uid: 904 components: - type: Transform - pos: -10.5,-19.5 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 parent: 1 - - uid: 158 + - uid: 911 components: - type: Transform - pos: -10.5,-18.5 + pos: -4.5,-7.5 parent: 1 - - uid: 159 + - uid: 912 components: - type: Transform - pos: -15.5,-19.5 + pos: -8.5,-7.5 parent: 1 - - uid: 160 + - uid: 913 components: - type: Transform - pos: -14.5,-18.5 + pos: -11.5,-3.5 parent: 1 - - uid: 161 + - uid: 914 components: - type: Transform - pos: -14.5,-19.5 + pos: -11.5,0.5 parent: 1 - - uid: 162 + - uid: 988 components: - type: Transform - pos: -13.5,-18.5 + pos: 3.5,13.5 parent: 1 - - uid: 163 + - uid: 1696 components: - type: Transform - pos: -13.5,-19.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 164 + - uid: 1833 components: - type: Transform - pos: -12.5,-18.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 165 + - uid: 1834 components: - type: Transform - pos: -12.5,-19.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 166 + - uid: 1835 components: - type: Transform - pos: -13.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 167 +- proto: hydroponicsSoil + entities: + - uid: 838 components: - type: Transform - pos: -13.5,-21.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 1 - - uid: 168 + - uid: 2024 components: - type: Transform - pos: -12.5,-20.5 + rot: -1.5707963267948966 rad + pos: 13.5,16.5 parent: 1 - - uid: 169 + - uid: 2025 components: - type: Transform - pos: -12.5,-21.5 + rot: -1.5707963267948966 rad + pos: 12.5,16.5 parent: 1 - - uid: 170 +- proto: HydroponicsToolClippers + entities: + - uid: 2022 components: - type: Transform - pos: -20.5,-15.5 + pos: 12.097572,14.813533 parent: 1 - - uid: 171 +- proto: HydroponicsToolSpade + entities: + - uid: 816 components: - type: Transform - pos: -16.5,-18.5 + pos: 12.691322,14.646866 parent: 1 - - uid: 172 +- proto: hydroponicsTrayAnchored + entities: + - uid: 62 components: - type: Transform - pos: -17.5,-18.5 + pos: -4.5,3.5 parent: 1 - - uid: 173 + - uid: 165 components: - type: Transform - pos: -18.5,-18.5 + pos: -7.5,3.5 parent: 1 - - uid: 174 + - uid: 166 components: - type: Transform - pos: -18.5,-17.5 + pos: -5.5,3.5 parent: 1 - - uid: 175 + - uid: 167 components: - type: Transform - pos: -18.5,-16.5 + pos: -6.5,3.5 parent: 1 - - uid: 176 +- proto: IngotGold1 + entities: + - uid: 1825 components: - type: Transform - pos: -18.5,-15.5 + pos: -3.4656801,36.65958 parent: 1 - - uid: 177 + - uid: 1826 components: - type: Transform - pos: -19.5,-17.5 + pos: -2.6063051,36.72208 parent: 1 - - uid: 178 + - uid: 1827 components: - type: Transform - pos: -19.5,-16.5 + pos: -2.4031801,35.59708 parent: 1 - - uid: 179 + - uid: 1828 components: - type: Transform - pos: -19.5,-15.5 + pos: -3.1844301,35.56583 parent: 1 - - uid: 180 +- proto: JanitorialTrolley + entities: + - uid: 202 components: - type: Transform - pos: -20.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - - uid: 181 +- proto: JugWeldingFuel + entities: + - uid: 686 components: - type: Transform - pos: -21.5,-15.5 + pos: -0.27437842,13.09 parent: 1 - - uid: 182 + - uid: 1008 components: - type: Transform - pos: -21.5,-14.5 + pos: -0.73063827,13.09 parent: 1 - - uid: 183 +- proto: KitchenDeepFryer + entities: + - uid: 334 components: - type: Transform - pos: -22.5,-15.5 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - - uid: 184 +- proto: KitchenElectricGrill + entities: + - uid: 774 components: - type: Transform - pos: -22.5,-14.5 + pos: 0.5,7.5 parent: 1 - - uid: 185 +- proto: KitchenKnife + entities: + - uid: 234 components: - type: Transform - pos: -23.5,-15.5 + pos: 1.4792413,5.5648255 parent: 1 - - uid: 186 +- proto: KitchenMicrowave + entities: + - uid: 149 components: - type: Transform - pos: -23.5,-14.5 + pos: 2.5,7.5 parent: 1 - - uid: 187 +- proto: KitchenReagentGrinder + entities: + - uid: 346 components: - type: Transform - pos: -24.5,-15.5 + pos: 4.5,6.5 parent: 1 - - uid: 188 +- proto: KitchenSpike + entities: + - uid: 156 components: - type: Transform - pos: -24.5,-14.5 + pos: 3.5,12.5 parent: 1 - - uid: 189 +- proto: LessLethalVendingMachine + entities: + - uid: 2056 components: - type: Transform - pos: -23.5,-13.5 + pos: -14.5,23.5 parent: 1 - - uid: 190 +- proto: LuxuryPen + entities: + - uid: 955 components: - type: Transform - pos: -18.5,-14.5 + pos: -8.4360895,9.877812 parent: 1 - - uid: 191 +- proto: MachineCryoSleepPod + entities: + - uid: 1114 components: - type: Transform - pos: -19.5,-14.5 + pos: 2.5,10.5 parent: 1 - - uid: 192 +- proto: Mattress + entities: + - uid: 2023 components: - type: Transform - pos: -23.5,-12.5 + pos: 13.5,14.5 parent: 1 - - uid: 193 +- proto: MedkitAdvancedFilled + entities: + - uid: 1871 components: - type: Transform - pos: -23.5,-11.5 + pos: -14.551509,14.690411 parent: 1 - - uid: 194 +- proto: MedkitFilled + entities: + - uid: 1872 components: - type: Transform - pos: -24.5,-13.5 + pos: -13.997746,14.697974 parent: 1 - - uid: 195 +- proto: MedkitToxinFilled + entities: + - uid: 1873 components: - type: Transform - pos: -24.5,-12.5 + pos: -14.247746,14.875057 parent: 1 - - uid: 196 +- proto: Mirror + entities: + - uid: 989 components: - type: Transform - pos: -24.5,-11.5 + rot: -1.5707963267948966 rad + pos: 5.5,6.5 parent: 1 - - uid: 197 + - uid: 990 components: - type: Transform - pos: -25.5,-13.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 1 - - uid: 198 +- proto: MopItem + entities: + - uid: 1689 components: - type: Transform - pos: -25.5,-12.5 + pos: 9.467162,3.4911292 parent: 1 - - uid: 199 +- proto: NetworkConfigurator + entities: + - uid: 2010 components: - type: Transform - pos: -25.5,-11.5 + pos: 24.276703,21.523607 parent: 1 - - uid: 200 +- proto: NFAshtray + entities: + - uid: 781 components: - type: Transform - pos: -25.5,-14.5 + pos: -6.2673426,6.940201 parent: 1 - - uid: 201 + - uid: 978 components: - type: Transform - pos: -26.5,-11.5 + pos: -1.4999875,-0.99535155 parent: 1 - - uid: 202 + - uid: 979 components: - type: Transform - pos: -27.5,-11.5 + pos: 2.5104294,-0.96410155 parent: 1 - - uid: 203 +- proto: NoticeBoardNF + entities: + - uid: 872 components: - type: Transform - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: -9.5,9.5 parent: 1 - - uid: 204 +- proto: OilJarGhee + entities: + - uid: 45 components: - type: Transform - pos: -28.5,-10.5 + pos: 4.7203918,4.6294155 parent: 1 - - uid: 205 + - uid: 160 components: - type: Transform - pos: -28.5,-8.5 + pos: 4.3766418,4.868999 parent: 1 - - uid: 206 + - uid: 162 components: - type: Transform - pos: -28.5,-9.5 + pos: 4.6995583,4.8585825 parent: 1 - - uid: 207 + - uid: 172 components: - type: Transform - pos: -29.5,-8.5 + pos: 4.3558083,4.650249 parent: 1 - - uid: 208 +- proto: OrganHumanEyes + entities: + - uid: 1829 components: - type: Transform - pos: -29.5,-9.5 + pos: -2.9656801,36.081455 parent: 1 - - uid: 209 +- proto: Paper + entities: + - uid: 5 components: - type: Transform - pos: -30.5,-8.5 + pos: -8.4048395,9.523646 parent: 1 - - uid: 210 + - uid: 7 components: - type: Transform - pos: -30.5,-9.5 + pos: -8.6548395,9.638229 parent: 1 - - uid: 211 +- proto: PianoInstrument + entities: + - uid: 276 components: - type: Transform - pos: -31.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 parent: 1 - - uid: 212 +- proto: PirateFlag + entities: + - uid: 498 components: - type: Transform - pos: -31.5,-9.5 + rot: -1.5707963267948966 rad + pos: 11.5,0.5 parent: 1 - - uid: 213 + - uid: 528 components: - type: Transform - pos: -32.5,-8.5 + rot: -1.5707963267948966 rad + pos: -10.5,0.5 parent: 1 - - uid: 214 + - uid: 529 components: - type: Transform - pos: -32.5,-9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-6.5 parent: 1 - - uid: 215 + - uid: 531 components: - type: Transform - pos: -33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 parent: 1 - - uid: 216 + - uid: 534 components: - type: Transform - pos: -33.5,-9.5 + pos: -2.5,5.5 parent: 1 - - uid: 217 + - uid: 537 components: - type: Transform - pos: -34.5,-8.5 + pos: 7.5,9.5 parent: 1 - - uid: 218 + - uid: 556 components: - type: Transform - pos: -34.5,-7.5 + pos: -1.5,9.5 parent: 1 - - uid: 219 + - uid: 558 components: - type: Transform - pos: -35.5,-7.5 + pos: 6.5,4.5 parent: 1 - - uid: 220 + - uid: 957 components: - type: Transform - pos: -35.5,-8.5 + pos: -4.5,2.5 parent: 1 - - uid: 221 + - uid: 1758 components: - type: Transform - pos: -34.5,-9.5 + pos: 0.5,35.5 parent: 1 - - uid: 222 + - uid: 1868 components: - type: Transform - pos: -24.5,9.5 + pos: 13.5,32.5 parent: 1 - - uid: 223 + - uid: 1990 components: - type: Transform - pos: -31.5,-10.5 + pos: 9.5,19.5 parent: 1 - - uid: 224 + - uid: 1991 components: - type: Transform - pos: -31.5,-11.5 + pos: -15.5,21.5 parent: 1 - - uid: 225 +- proto: PirateHandyFlag + entities: + - uid: 1759 components: - type: Transform - pos: -30.5,-10.5 + pos: 13.875859,9.969445 parent: 1 - - uid: 226 +- proto: PlushieCarp + entities: + - uid: 1434 components: - type: Transform - pos: -30.5,-11.5 + pos: 15.417093,25.484812 parent: 1 - - uid: 227 +- proto: PortableGeneratorPacman + entities: + - uid: 1910 components: - type: Transform - pos: -29.5,-10.5 + pos: 9.5,17.5 parent: 1 - - uid: 228 + - type: MaterialStorage + storage: + Plasma: 1500 + - type: InsertingMaterialStorage +- proto: PortableScrubber + entities: + - uid: 9 components: - type: Transform - pos: -29.5,-11.5 + anchored: True + pos: 4.5,12.5 parent: 1 - - uid: 229 + - type: Physics + bodyType: Static +- proto: PosterContrabandSpaceUp + entities: + - uid: 742 components: - type: Transform - pos: -29.5,-12.5 + pos: -8.5,2.5 parent: 1 - - uid: 230 +- proto: PowerCellRecharger + entities: + - uid: 767 components: - type: Transform - pos: -28.5,-12.5 + rot: 3.141592653589793 rad + pos: -6.5,6.5 parent: 1 - - uid: 231 + - uid: 1560 components: - type: Transform - pos: -27.5,-12.5 + pos: -14.5,17.5 parent: 1 - - uid: 232 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 1002 components: - type: Transform - pos: 0.5,-19.5 + pos: -15.5,15.5 parent: 1 - - uid: 233 + - uid: 1368 components: - type: Transform - pos: -0.5,-19.5 + pos: 19.5,24.5 parent: 1 - - uid: 234 + - uid: 1425 components: - type: Transform - pos: -1.5,-19.5 + pos: 9.5,27.5 parent: 1 - - uid: 235 + - uid: 1539 components: - type: Transform - pos: -2.5,-19.5 + rot: -1.5707963267948966 rad + pos: 24.5,19.5 parent: 1 - - uid: 236 + - uid: 1766 components: - type: Transform - pos: -3.5,-19.5 + pos: -15.5,28.5 parent: 1 - - uid: 237 + - uid: 1767 components: - type: Transform - pos: -4.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,30.5 parent: 1 - - uid: 238 + - uid: 1858 components: - type: Transform - pos: -5.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,14.5 parent: 1 - - uid: 239 + - uid: 1927 components: - type: Transform - pos: -6.5,-19.5 + rot: 1.5707963267948966 rad + pos: 14.5,31.5 parent: 1 - - uid: 240 +- proto: Poweredlight + entities: + - uid: 33 components: - type: Transform - pos: -7.5,-19.5 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 parent: 1 - - uid: 241 + - uid: 110 components: - type: Transform - pos: -8.5,-19.5 + rot: 3.141592653589793 rad + pos: -1.5,10.5 parent: 1 - - uid: 242 + - uid: 207 components: - type: Transform - pos: -8.5,-18.5 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 parent: 1 - - uid: 243 + - uid: 288 components: - type: Transform - pos: -8.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 1 - - uid: 244 + - uid: 397 components: - type: Transform - pos: -8.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,8.5 parent: 1 - - uid: 245 + - uid: 720 components: - type: Transform - pos: -9.5,-16.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - - uid: 246 + - uid: 721 components: - type: Transform - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 247 + - uid: 722 components: - type: Transform - pos: -11.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - - uid: 248 + - uid: 746 components: - type: Transform - pos: -12.5,-16.5 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - - uid: 249 + - uid: 959 components: - type: Transform - pos: -13.5,-16.5 + pos: 4.5,12.5 parent: 1 - - uid: 250 + - uid: 1954 components: - type: Transform - pos: -14.5,-16.5 + rot: -1.5707963267948966 rad + pos: 0.5,13.5 parent: 1 - - uid: 251 +- proto: PoweredlightColoredBlack + entities: + - uid: 227 components: - type: Transform - pos: -15.5,-16.5 + rot: -1.5707963267948966 rad + pos: 7.5,7.5 parent: 1 - - uid: 252 + - uid: 256 components: - type: Transform - pos: -16.5,-16.5 + rot: 3.141592653589793 rad + pos: 9.5,8.5 parent: 1 - - uid: 253 + - uid: 298 components: - type: Transform - pos: -16.5,-15.5 + rot: -1.5707963267948966 rad + pos: 9.5,1.5 parent: 1 - - uid: 254 + - uid: 299 components: - type: Transform - pos: -16.5,-14.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 255 + - uid: 300 components: - type: Transform - pos: -16.5,-13.5 + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 parent: 1 - - uid: 256 + - uid: 301 components: - type: Transform - pos: -16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 parent: 1 - - uid: 257 + - uid: 302 components: - type: Transform - pos: -17.5,-12.5 + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 parent: 1 - - uid: 258 + - uid: 304 components: - type: Transform - pos: -18.5,-12.5 + rot: 3.141592653589793 rad + pos: -11.5,-2.5 parent: 1 - - uid: 259 + - uid: 309 components: - type: Transform - pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 parent: 1 - - uid: 260 + - uid: 312 components: - type: Transform - pos: -20.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,-2.5 parent: 1 - - uid: 261 + - uid: 445 components: - type: Transform - pos: -21.5,-12.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 1 - - uid: 262 +- proto: PoweredSmallLight + entities: + - uid: 1192 components: - type: Transform - pos: -21.5,-11.5 + pos: 10.5,23.5 parent: 1 - - uid: 263 + - uid: 1194 components: - type: Transform - pos: -21.5,-10.5 + rot: -1.5707963267948966 rad + pos: 8.5,21.5 parent: 1 - - uid: 264 + - uid: 1854 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -5.5,33.5 parent: 1 - - uid: 265 + - uid: 1861 components: - type: Transform - pos: -22.5,-9.5 + rot: -1.5707963267948966 rad + pos: -1.5,38.5 parent: 1 - - uid: 266 + - uid: 1924 components: - type: Transform - pos: -23.5,-9.5 + rot: 1.5707963267948966 rad + pos: -14.5,23.5 parent: 1 - - uid: 267 +- proto: Rack + entities: + - uid: 23 components: - type: Transform - pos: -24.5,-9.5 + pos: -5.5,5.5 parent: 1 - - uid: 268 + - uid: 64 components: - type: Transform - pos: -25.5,-9.5 + pos: 0.5,4.5 parent: 1 - - uid: 269 + - uid: 87 components: - type: Transform - pos: -26.5,-9.5 + pos: -2.5,13.5 parent: 1 - - uid: 270 + - uid: 96 components: - type: Transform - pos: -26.5,-8.5 + pos: -3.5,13.5 parent: 1 - - uid: 271 + - uid: 98 components: - type: Transform - pos: -26.5,-2.5 + pos: -3.5,11.5 parent: 1 - - uid: 281 + - uid: 111 components: - type: Transform - pos: -26.5,-1.5 + pos: -2.5,11.5 parent: 1 - - uid: 282 + - uid: 112 components: - type: Transform - pos: -26.5,-0.5 + pos: -3.5,8.5 parent: 1 - - uid: 283 + - uid: 144 components: - type: Transform - pos: -25.5,-1.5 + pos: 2.5,4.5 parent: 1 - - uid: 284 + - uid: 145 components: - type: Transform - pos: -25.5,-0.5 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 parent: 1 - - uid: 285 + - uid: 152 components: - type: Transform - pos: -24.5,-0.5 + pos: -1.5,11.5 parent: 1 - - uid: 286 + - uid: 179 components: - type: Transform - pos: -24.5,0.5 + pos: 1.5,4.5 parent: 1 - - uid: 287 + - uid: 182 components: - type: Transform - pos: -24.5,1.5 + pos: 4.5,4.5 parent: 1 - - uid: 288 + - uid: 884 components: - type: Transform - pos: -24.5,2.5 + pos: -1.5,13.5 parent: 1 - - uid: 289 +- proto: Railing + entities: + - uid: 3 components: - type: Transform - pos: -15.5,-15.5 + pos: 4.5,24.5 parent: 1 - - uid: 290 + - uid: 831 components: - type: Transform - pos: -15.5,-14.5 + rot: 1.5707963267948966 rad + pos: -3.5,17.5 parent: 1 - - uid: 291 + - uid: 840 components: - type: Transform - pos: -14.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 1 - - uid: 292 + - uid: 925 components: - type: Transform - pos: -13.5,-15.5 + rot: 1.5707963267948966 rad + pos: -3.5,18.5 parent: 1 - - uid: 293 + - uid: 935 components: - type: Transform - pos: -11.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 parent: 1 - - uid: 294 + - uid: 992 components: - type: Transform - pos: -12.5,-15.5 + pos: 0.5,25.5 parent: 1 - - uid: 295 + - uid: 1033 components: - type: Transform - pos: -10.5,-15.5 + pos: 3.5,24.5 parent: 1 - - uid: 296 + - uid: 1039 components: - type: Transform - pos: -12.5,-14.5 + pos: 5.5,24.5 parent: 1 - - uid: 297 + - uid: 1040 components: - type: Transform - pos: -13.5,-14.5 + rot: 3.141592653589793 rad + pos: 5.5,21.5 parent: 1 - - uid: 298 + - uid: 1041 components: - type: Transform - pos: -14.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,21.5 parent: 1 - - uid: 299 + - uid: 1042 components: - type: Transform - pos: -15.5,-13.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 1 - - uid: 300 + - uid: 1043 components: - type: Transform - pos: -14.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 1 - - uid: 301 + - uid: 1045 components: - type: Transform - pos: -17.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,22.5 parent: 1 - - uid: 302 + - uid: 1046 components: - type: Transform - pos: -18.5,-11.5 + rot: 3.141592653589793 rad + pos: -7.5,22.5 parent: 1 - - uid: 303 + - uid: 1048 components: - type: Transform - pos: -19.5,-11.5 + rot: 3.141592653589793 rad + pos: -9.5,22.5 parent: 1 - - uid: 304 + - uid: 1049 components: - type: Transform - pos: -20.5,-11.5 + pos: -9.5,25.5 parent: 1 - - uid: 305 + - uid: 1050 components: - type: Transform - pos: -20.5,-10.5 + pos: -8.5,25.5 parent: 1 - - uid: 306 + - uid: 1055 components: - type: Transform - pos: -25.5,-8.5 + pos: -7.5,25.5 parent: 1 - - uid: 307 + - uid: 1094 components: - type: Transform - pos: -24.5,-8.5 + pos: -4.5,33.5 parent: 1 - - uid: 308 + - uid: 1106 components: - type: Transform - pos: -23.5,-8.5 + rot: -1.5707963267948966 rad + pos: -1.5,28.5 parent: 1 - - uid: 309 + - uid: 1123 components: - type: Transform - pos: -7.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,21.5 parent: 1 - - uid: 310 + - uid: 1404 components: - type: Transform - pos: -6.5,-18.5 + rot: 3.141592653589793 rad + pos: 23.5,25.5 parent: 1 - - uid: 311 + - uid: 1405 components: - type: Transform - pos: -1.5,-18.5 + rot: 3.141592653589793 rad + pos: 22.5,25.5 parent: 1 - - uid: 312 + - uid: 1407 components: - type: Transform - pos: -0.5,-18.5 + pos: 22.5,19.5 parent: 1 - - uid: 313 + - uid: 1408 components: - type: Transform - pos: -2.5,-18.5 + rot: 1.5707963267948966 rad + pos: 24.5,23.5 parent: 1 - - uid: 314 + - uid: 1409 components: - type: Transform - pos: -3.5,-18.5 + rot: 1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 - - uid: 315 + - uid: 1410 components: - type: Transform - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 24.5,21.5 parent: 1 - - uid: 316 + - uid: 1607 components: - type: Transform - pos: -1.5,-17.5 + pos: -1.5,33.5 parent: 1 - - uid: 318 + - uid: 1623 components: - type: Transform - pos: -7.5,-17.5 + pos: -5.5,33.5 parent: 1 - - uid: 319 + - uid: 1647 components: - type: Transform - pos: 6.5,-19.5 + pos: -3.5,33.5 parent: 1 - - uid: 320 + - uid: 1725 components: - type: Transform - pos: 7.5,-19.5 + rot: -1.5707963267948966 rad + pos: -1.5,29.5 parent: 1 - - uid: 321 + - uid: 1726 components: - type: Transform - pos: 8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,28.5 parent: 1 - - uid: 322 + - uid: 1727 components: - type: Transform - pos: 9.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,29.5 parent: 1 - - uid: 323 + - uid: 1728 components: - type: Transform - pos: 10.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,31.5 parent: 1 - - uid: 324 + - uid: 1729 components: - type: Transform - pos: 10.5,-18.5 + rot: -1.5707963267948966 rad + pos: -1.5,31.5 parent: 1 - - uid: 325 +- proto: RailingCorner + entities: + - uid: 128 components: - type: Transform - pos: 10.5,-17.5 + rot: -1.5707963267948966 rad + pos: -0.5,26.5 parent: 1 - - uid: 326 + - uid: 228 components: - type: Transform - pos: 10.5,-16.5 + rot: 3.141592653589793 rad + pos: 0.5,10.5 parent: 1 - - uid: 327 + - uid: 233 components: - type: Transform - pos: 11.5,-16.5 + rot: -1.5707963267948966 rad + pos: -1.5,27.5 parent: 1 - - uid: 328 + - uid: 789 components: - type: Transform - pos: 12.5,-16.5 + rot: 3.141592653589793 rad + pos: 1.5,21.5 parent: 1 - - uid: 329 + - uid: 819 components: - type: Transform - pos: 13.5,-16.5 + rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 1 - - uid: 330 + - uid: 924 components: - type: Transform - pos: 14.5,-16.5 + rot: 1.5707963267948966 rad + pos: -3.5,20.5 parent: 1 - - uid: 331 + - uid: 929 components: - type: Transform - pos: 14.5,-15.5 + rot: 3.141592653589793 rad + pos: -0.5,20.5 parent: 1 - - uid: 332 + - uid: 1044 components: - type: Transform - pos: 14.5,-14.5 + pos: -5.5,25.5 parent: 1 - - uid: 333 + - uid: 1060 components: - type: Transform - pos: 14.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,22.5 parent: 1 - - uid: 334 + - uid: 1115 components: - type: Transform - pos: 14.5,-12.5 + pos: -3.5,27.5 parent: 1 - - uid: 335 + - uid: 1402 components: - type: Transform - pos: 14.5,-11.5 + pos: 24.5,19.5 parent: 1 - - uid: 336 + - uid: 1403 components: - type: Transform - pos: 14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 24.5,25.5 parent: 1 - - uid: 421 +- proto: RailingCornerSmall + entities: + - uid: 83 components: - type: Transform - pos: -24.5,3.5 + rot: 1.5707963267948966 rad + pos: -0.5,27.5 parent: 1 - - uid: 422 + - uid: 129 components: - type: Transform - pos: -24.5,4.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 1 - - uid: 423 + - uid: 141 components: - type: Transform - pos: -24.5,5.5 + pos: 0.5,20.5 parent: 1 - - uid: 424 + - uid: 164 components: - type: Transform - pos: -24.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,26.5 parent: 1 - - uid: 425 + - uid: 315 components: - type: Transform - pos: -23.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,25.5 parent: 1 - - uid: 426 + - uid: 628 components: - type: Transform - pos: -22.5,6.5 + rot: -1.5707963267948966 rad + pos: -3.5,19.5 parent: 1 - - uid: 427 + - uid: 784 components: - type: Transform - pos: -21.5,6.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 1 - - uid: 428 + - uid: 833 components: - type: Transform - pos: -20.5,6.5 + rot: 3.141592653589793 rad + pos: 2.5,24.5 parent: 1 - - uid: 429 + - uid: 926 components: - type: Transform - pos: -19.5,6.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 1 - - uid: 430 + - uid: 954 components: - type: Transform - pos: -19.5,7.5 + pos: 1.5,20.5 parent: 1 - - uid: 431 + - uid: 1047 components: - type: Transform - pos: -18.5,7.5 + pos: -8.5,22.5 parent: 1 - - uid: 432 + - uid: 1059 components: - type: Transform - pos: -17.5,7.5 + rot: 1.5707963267948966 rad + pos: -6.5,25.5 parent: 1 - - uid: 433 + - uid: 1061 components: - type: Transform - pos: -16.5,7.5 + rot: 3.141592653589793 rad + pos: -3.5,19.5 parent: 1 - - uid: 434 + - uid: 1118 components: - type: Transform - pos: -15.5,7.5 + rot: 3.141592653589793 rad + pos: -4.5,27.5 parent: 1 - - uid: 435 + - uid: 1119 components: - type: Transform - pos: -14.5,7.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 1 - - uid: 436 + - uid: 1120 components: - type: Transform - pos: -14.5,8.5 + rot: -1.5707963267948966 rad + pos: -4.5,26.5 parent: 1 - - uid: 437 + - uid: 1121 components: - type: Transform - pos: -14.5,9.5 + rot: 3.141592653589793 rad + pos: -0.5,25.5 parent: 1 - - uid: 438 + - uid: 1122 components: - type: Transform - pos: -14.5,10.5 + rot: -1.5707963267948966 rad + pos: -5.5,21.5 parent: 1 - - uid: 439 + - uid: 1124 components: - type: Transform - pos: -13.5,10.5 + rot: -1.5707963267948966 rad + pos: -4.5,20.5 parent: 1 - - uid: 440 + - uid: 1406 components: - type: Transform - pos: -12.5,10.5 + rot: 1.5707963267948966 rad + pos: 23.5,19.5 parent: 1 - - uid: 441 + - uid: 1411 components: - type: Transform - pos: -11.5,10.5 + rot: 3.141592653589793 rad + pos: 24.5,24.5 parent: 1 - - uid: 442 + - uid: 1730 components: - type: Transform - pos: -10.5,10.5 + rot: 1.5707963267948966 rad + pos: -1.5,32.5 parent: 1 - - uid: 443 + - uid: 1731 components: - type: Transform - pos: -9.5,10.5 + rot: 3.141592653589793 rad + pos: -3.5,32.5 parent: 1 - - uid: 444 +- proto: RandomDrinkBottle + entities: + - uid: 1129 components: - type: Transform - pos: -8.5,10.5 + pos: -1.5,26.5 parent: 1 - - uid: 445 +- proto: RandomStalagmiteOrCrystal + entities: + - uid: 1066 components: - type: Transform - pos: -7.5,10.5 + pos: -13.5,21.5 parent: 1 - - uid: 446 + - uid: 1067 components: - type: Transform - pos: -6.5,10.5 + pos: 4.5,16.5 parent: 1 - - uid: 447 + - uid: 1093 components: - type: Transform - pos: -5.5,10.5 + pos: -9.5,16.5 parent: 1 - - uid: 448 + - uid: 1095 components: - type: Transform - pos: -4.5,10.5 + pos: -12.5,19.5 parent: 1 - - uid: 449 + - uid: 1096 components: - type: Transform - pos: -3.5,10.5 + pos: -10.5,18.5 parent: 1 - - uid: 450 + - uid: 1097 components: - type: Transform - pos: -2.5,10.5 + pos: -9.5,21.5 parent: 1 - - uid: 451 + - uid: 1286 components: - type: Transform - pos: -1.5,10.5 + pos: 9.5,13.5 parent: 1 - - uid: 452 + - uid: 1296 components: - type: Transform - pos: -1.5,11.5 + pos: -5.5,18.5 parent: 1 - - uid: 453 + - uid: 1562 components: - type: Transform - pos: -1.5,12.5 + pos: 9.5,26.5 parent: 1 - - uid: 454 + - uid: 1597 components: - type: Transform - pos: -1.5,13.5 + pos: 6.5,17.5 parent: 1 - - uid: 455 + - uid: 1604 components: - type: Transform - pos: -1.5,14.5 + pos: 8.5,24.5 parent: 1 - - uid: 456 + - uid: 1804 components: - type: Transform - pos: -0.5,14.5 + pos: 6.5,31.5 parent: 1 - - uid: 457 + - uid: 1908 components: - type: Transform - pos: 0.5,14.5 + pos: -15.5,26.5 parent: 1 - - uid: 458 + - uid: 1915 components: - type: Transform - pos: 1.5,14.5 + pos: -10.5,25.5 parent: 1 - - uid: 459 + - uid: 2005 components: - type: Transform - pos: 2.5,14.5 + pos: 3.5,18.5 parent: 1 - - uid: 460 +- proto: ReagentContainerFlour + entities: + - uid: 2015 components: - type: Transform - pos: 3.5,14.5 + pos: 4.381627,8.771014 parent: 1 - - uid: 461 + - uid: 2016 components: - type: Transform - pos: 3.5,13.5 + pos: 4.600377,8.666847 parent: 1 - - uid: 462 +- proto: ReagentContainerPepper + entities: + - uid: 2014 components: - type: Transform - pos: 3.5,12.5 + pos: 0.834986,5.730723 parent: 1 - - uid: 463 +- proto: ReagentContainerRaisin + entities: + - uid: 2017 components: - type: Transform - pos: 3.5,11.5 + pos: 4.3920436,8.500181 parent: 1 - - uid: 464 +- proto: ReagentContainerRice + entities: + - uid: 2019 components: - type: Transform - pos: 3.5,10.5 + pos: 4.569127,8.302263 parent: 1 - - uid: 465 +- proto: ReagentContainerSalt + entities: + - uid: 2013 components: - type: Transform - pos: 4.5,10.5 + pos: 0.5641525,5.668223 parent: 1 - - uid: 466 +- proto: ReinforcedWindow + entities: + - uid: 582 components: - type: Transform - pos: 5.5,10.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 467 + - uid: 583 components: - type: Transform - pos: 6.5,10.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 468 + - uid: 584 components: - type: Transform - pos: 7.5,10.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 469 + - uid: 585 components: - type: Transform - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 470 + - uid: 586 components: - type: Transform - pos: 9.5,10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 471 + - uid: 587 components: - type: Transform - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 472 + - uid: 588 components: - type: Transform - pos: 9.5,8.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 473 + - uid: 694 components: - type: Transform - pos: 9.5,7.5 + pos: 10.5,5.5 parent: 1 - - uid: 474 + - uid: 752 components: - type: Transform - pos: 10.5,7.5 + pos: 10.5,6.5 parent: 1 - - uid: 475 + - uid: 915 components: - type: Transform - pos: 11.5,7.5 + pos: 12.5,0.5 parent: 1 - - uid: 476 + - uid: 916 components: - type: Transform - pos: 12.5,7.5 + pos: 12.5,-3.5 parent: 1 - - uid: 477 + - uid: 917 components: - type: Transform - pos: 13.5,7.5 + pos: 5.5,-7.5 parent: 1 - - uid: 478 + - uid: 918 components: - type: Transform - pos: 14.5,7.5 + pos: 9.5,-7.5 parent: 1 - - uid: 479 + - uid: 919 components: - type: Transform - pos: 15.5,7.5 + pos: -4.5,-7.5 parent: 1 - - uid: 480 + - uid: 920 components: - type: Transform - pos: 15.5,6.5 + pos: -8.5,-7.5 parent: 1 - - uid: 481 + - uid: 921 components: - type: Transform - pos: 15.5,5.5 + pos: -11.5,-3.5 parent: 1 - - uid: 482 + - uid: 922 components: - type: Transform - pos: 15.5,4.5 + pos: -11.5,0.5 parent: 1 - - uid: 483 + - uid: 998 components: - type: Transform - pos: 15.5,3.5 + pos: 10.5,8.5 parent: 1 - - uid: 484 + - uid: 1034 components: - type: Transform - pos: 16.5,3.5 + pos: 10.5,9.5 parent: 1 - - uid: 485 + - uid: 1035 components: - type: Transform - pos: 16.5,2.5 + pos: 3.5,13.5 parent: 1 - - uid: 486 + - uid: 1675 components: - type: Transform - pos: 16.5,1.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 487 + - uid: 1735 components: - type: Transform - pos: 16.5,0.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 488 + - uid: 1836 components: - type: Transform - pos: 17.5,0.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 489 + - uid: 1837 components: - type: Transform - pos: 17.5,-0.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 490 +- proto: RemoteSignaller + entities: + - uid: 2009 components: - type: Transform - pos: 17.5,-1.5 + pos: 24.568369,21.388191 parent: 1 - - uid: 491 +- proto: Retractor + entities: + - uid: 1195 components: - type: Transform - pos: 17.5,-2.5 + pos: -14.526924,19.46004 parent: 1 - - uid: 492 +- proto: Saw + entities: + - uid: 1869 components: - type: Transform - pos: 17.5,-3.5 + pos: -14.50255,19.370592 parent: 1 - - uid: 493 +- proto: SawElectric + entities: + - uid: 1855 components: - type: Transform - pos: 17.5,-4.5 + pos: -14.476463,19.648453 parent: 1 - - uid: 494 +- proto: SeedExtractor + entities: + - uid: 104 components: - type: Transform - pos: 17.5,-5.5 + pos: -6.5,5.5 parent: 1 - - uid: 495 +- proto: SheetPlasma + entities: + - uid: 668 components: - type: Transform - pos: 17.5,-6.5 + rot: 3.141592653589793 rad + pos: -2.610289,13.663282 parent: 1 - - uid: 496 + - uid: 669 components: - type: Transform - pos: 17.5,-7.5 + rot: 3.141592653589793 rad + pos: -2.3394558,13.652866 parent: 1 - - uid: 497 + - uid: 2053 components: - type: Transform - pos: 17.5,-8.5 + pos: 9.503929,17.419426 parent: 1 - - uid: 498 + - type: Stack + count: 15 +- proto: SheetUranium + entities: + - uid: 670 components: - type: Transform - pos: 17.5,-9.5 + pos: -1.7080126,13.6587715 parent: 1 - - uid: 499 + - uid: 672 components: - type: Transform - pos: 15.5,-9.5 + rot: 3.141592653589793 rad + pos: -1.2977891,13.652866 parent: 1 - - uid: 500 +- proto: Shovel + entities: + - uid: 1126 components: - type: Transform - pos: 14.5,-9.5 + pos: -0.03910017,21.951792 parent: 1 - - uid: 501 + - uid: 1842 components: - type: Transform - pos: 16.5,-9.5 + rot: 1.5707963267948966 rad + pos: 2.814949,35.75033 parent: 1 - - uid: 502 +- proto: ShuttleGunPirateCannon + entities: + - uid: 2004 components: - type: Transform - pos: 16.5,-0.5 + rot: 1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 - - uid: 503 +- proto: SignalButton + entities: + - uid: 173 components: - type: Transform - pos: 16.5,-1.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 504 + - type: DeviceLinkSource + linkedPorts: + 318: + - Pressed: Toggle + - uid: 667 components: - type: Transform - pos: 16.5,-2.5 + pos: 9.5,7.5 parent: 1 - - uid: 505 + - type: DeviceLinkSource + linkedPorts: + 330: + - Pressed: Toggle + 438: + - Pressed: Toggle + - uid: 671 components: - type: Transform - pos: 16.5,-3.5 + pos: 9.5,10.5 parent: 1 - - uid: 506 + - type: DeviceLinkSource + linkedPorts: + 433: + - Pressed: Toggle + 313: + - Pressed: Toggle + - uid: 730 components: - type: Transform - pos: 16.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 507 + - type: DeviceLinkSource + linkedPorts: + 365: + - Pressed: Toggle + - uid: 770 components: - type: Transform - pos: 16.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 508 + - type: DeviceLinkSource + linkedPorts: + 386: + - Pressed: Toggle + 368: + - Pressed: Toggle + 390: + - Pressed: Toggle + 403: + - Pressed: Toggle + 428: + - Pressed: Toggle + 429: + - Pressed: Toggle + 329: + - Pressed: Toggle + - uid: 859 components: - type: Transform - pos: 16.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 509 + - type: DeviceLinkSource + linkedPorts: + 344: + - Pressed: Toggle + 341: + - Pressed: Toggle + 349: + - Pressed: Toggle + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + 364: + - Pressed: Toggle + - uid: 947 components: - type: Transform - pos: 16.5,-7.5 + pos: -8.5,-5.5 parent: 1 - - uid: 511 + - type: DeviceLinkSource + linkedPorts: + 442: + - Pressed: Toggle + 439: + - Pressed: Toggle + - uid: 948 components: - type: Transform - pos: 15.5,-0.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 - - uid: 512 + - type: DeviceLinkSource + linkedPorts: + 449: + - Pressed: Toggle + 444: + - Pressed: Toggle + - uid: 949 components: - type: Transform - pos: 15.5,-1.5 + pos: 9.5,-5.5 parent: 1 - - uid: 513 + - type: DeviceLinkSource + linkedPorts: + 454: + - Pressed: Toggle + 455: + - Pressed: Toggle + - uid: 950 components: - type: Transform - pos: 15.5,-2.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 - - uid: 515 + - type: DeviceLinkSource + linkedPorts: + 640: + - Pressed: Toggle + 639: + - Pressed: Toggle + 89: [] + 60: [] +- proto: SignalButtonDirectional + entities: + - uid: 362 components: - type: Transform - pos: 15.5,-4.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 516 + - type: DeviceLinkSource + linkedPorts: + 431: + - Pressed: Toggle + - uid: 750 components: - type: Transform - pos: -16.5,-8.5 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 517 + - type: DeviceLinkSource + linkedPorts: + 337: + - Pressed: Toggle + - uid: 1640 components: - type: Transform - pos: 15.5,-6.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 520 + - type: DeviceLinkSource + linkedPorts: + 1677: + - Pressed: Toggle + 1672: + - Pressed: Toggle + 1734: + - Pressed: Toggle + 1838: + - Pressed: Toggle +- proto: SignCargo + entities: + - uid: 474 components: - type: Transform - pos: 15.5,0.5 + pos: 1.5,10.5 parent: 1 - - uid: 521 +- proto: SignElectricalMed + entities: + - uid: 1427 components: - type: Transform - pos: 15.5,1.5 + pos: 10.5,13.5 parent: 1 - - uid: 522 + - uid: 1533 components: - type: Transform - pos: 15.5,2.5 + pos: 10.5,17.5 parent: 1 - - uid: 523 +- proto: SinkStemlessWater + entities: + - uid: 791 components: - type: Transform - pos: 14.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.4667277,6.32853 parent: 1 - - uid: 524 + - uid: 1036 components: - type: Transform - pos: 14.5,5.5 + rot: 1.5707963267948966 rad + pos: 6.4771442,7.3422375 parent: 1 - - uid: 525 +- proto: SinkWide + entities: + - uid: 981 components: - type: Transform - pos: 13.5,6.5 + rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 1 - - uid: 526 +- proto: SMESBasic + entities: + - uid: 271 components: - type: Transform - pos: -10.5,2.5 + pos: -7.5,11.5 parent: 1 - - uid: 527 +- proto: SodaDispenserEmpty + entities: + - uid: 1237 components: - type: Transform - pos: 12.5,6.5 + pos: -1.5,2.5 parent: 1 - - uid: 528 +- proto: SpaceCash10 + entities: + - uid: 1821 components: - type: Transform - pos: 12.5,5.5 + pos: -3.4031801,35.737705 parent: 1 - - uid: 529 + - uid: 1822 components: - type: Transform - pos: 14.5,4.5 + pos: -3.4969301,36.53458 parent: 1 - - uid: 530 + - uid: 1823 components: - type: Transform - pos: 14.5,3.5 + pos: -2.4052827,36.700047 parent: 1 - - uid: 531 + - uid: 1824 components: - type: Transform - pos: 14.5,2.5 + pos: -2.4656801,35.75333 parent: 1 - - uid: 534 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 268 components: - type: Transform - pos: 14.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 parent: 1 - - uid: 535 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobCatClarpy + entities: + - uid: 68 components: - type: Transform - pos: 14.5,-8.5 + pos: 0.5,10.5 parent: 1 - - uid: 536 +- proto: SpawnMobParrot + entities: + - uid: 2035 components: - type: Transform - pos: 14.5,-7.5 + pos: 15.5,29.5 parent: 1 - - uid: 537 +- proto: SpawnPointPirate + entities: + - uid: 14 components: - type: Transform - pos: -10.5,3.5 + pos: 1.5,1.5 parent: 1 - - uid: 538 +- proto: SpawnPointPirateCaptain + entities: + - uid: 52 components: - type: Transform - pos: 11.5,6.5 + pos: 0.5,1.5 parent: 1 - - uid: 539 +- proto: SpawnPointPirateFirstMate + entities: + - uid: 93 components: - type: Transform - pos: 10.5,6.5 + pos: -0.5,1.5 parent: 1 - - uid: 540 +- proto: StairStageWood + entities: + - uid: 1599 components: - type: Transform - pos: 8.5,8.5 + pos: -2.5,32.5 parent: 1 - - uid: 541 +- proto: StoolBar + entities: + - uid: 59 components: - type: Transform - pos: 8.5,9.5 + pos: -2.5,-3.5 parent: 1 - - uid: 542 + - uid: 73 components: - type: Transform - pos: 7.5,8.5 + pos: 0.5,-3.5 parent: 1 - - uid: 543 + - uid: 77 components: - type: Transform - pos: 7.5,9.5 + pos: -1.5,-3.5 parent: 1 - - uid: 544 + - uid: 440 components: - type: Transform - pos: 6.5,8.5 + pos: 1.5,-3.5 parent: 1 - - uid: 545 + - uid: 533 components: - type: Transform - pos: 6.5,9.5 + pos: -0.5,-3.5 parent: 1 - - uid: 546 + - uid: 547 components: - type: Transform - pos: 5.5,9.5 + pos: 2.5,-3.5 parent: 1 - - uid: 547 + - uid: 557 components: - type: Transform - pos: 4.5,9.5 + pos: 3.5,-3.5 parent: 1 - - uid: 548 +- proto: SubstationBasic + entities: + - uid: 289 components: - type: Transform - pos: -2.5,9.5 + pos: -8.5,11.5 parent: 1 - - uid: 549 +- proto: SuitStorageEVAPirate + entities: + - uid: 1193 components: - type: Transform - pos: -3.5,9.5 + pos: 10.5,21.5 parent: 1 - - uid: 550 + - uid: 1641 components: - type: Transform - pos: -4.5,9.5 + pos: 10.5,23.5 parent: 1 - - uid: 551 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 308 components: - type: Transform - pos: -5.5,9.5 + pos: -6.5,11.5 parent: 1 - - uid: 552 +- proto: SurveillanceCameraSupply + entities: + - uid: 225 components: - type: Transform - pos: -6.5,9.5 + pos: -2.5,10.5 parent: 1 - - uid: 553 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 2 + - uid: 393 components: - type: Transform - pos: -7.5,9.5 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 554 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 1 + - uid: 724 components: - type: Transform - pos: -8.5,9.5 + rot: 1.5707963267948966 rad + pos: 4.5,12.5 parent: 1 - - uid: 555 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Freezer + - uid: 726 components: - type: Transform - pos: -8.5,8.5 + rot: 3.141592653589793 rad + pos: -2.5,1.5 parent: 1 - - uid: 556 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 1 + - uid: 727 components: - type: Transform - pos: -9.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,1.5 parent: 1 - - uid: 557 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 2 + - uid: 728 components: - type: Transform - pos: -9.5,8.5 + rot: 3.141592653589793 rad + pos: 1.5,8.5 parent: 1 - - uid: 558 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Kitchen +- proto: SurvivalKnife + entities: + - uid: 1831 components: - type: Transform - pos: -10.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.4595704,36.201065 parent: 1 - - uid: 559 +- proto: SyringeStimulants + entities: + - uid: 2011 components: - type: Transform - pos: -10.5,8.5 + pos: 6.487763,7.417817 parent: 1 - - uid: 560 + - uid: 2012 components: - type: Transform - pos: -11.5,9.5 + pos: 6.487763,7.0949006 parent: 1 - - uid: 561 +- proto: TableCounterWood + entities: + - uid: 100 components: - type: Transform - pos: -11.5,8.5 + pos: 3.5,2.5 parent: 1 - - uid: 562 + - uid: 102 components: - type: Transform - pos: -12.5,9.5 + pos: 4.5,2.5 parent: 1 - - uid: 563 + - uid: 106 components: - type: Transform - pos: -12.5,8.5 + pos: 2.5,2.5 parent: 1 - - uid: 564 + - uid: 107 components: - type: Transform - pos: -13.5,9.5 + pos: 1.5,2.5 parent: 1 - - uid: 565 + - uid: 108 components: - type: Transform - pos: -13.5,8.5 + pos: 0.5,2.5 parent: 1 - - uid: 566 + - uid: 109 components: - type: Transform - pos: -0.5,13.5 + pos: -0.5,2.5 parent: 1 - - uid: 567 + - uid: 113 components: - type: Transform - pos: -0.5,12.5 + pos: -1.5,2.5 parent: 1 - - uid: 568 +- proto: TableReinforced + entities: + - uid: 121 components: - type: Transform - pos: -0.5,11.5 + pos: -5.5,6.5 parent: 1 - - uid: 569 + - uid: 139 components: - type: Transform - pos: -0.5,10.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 572 + - uid: 194 components: - type: Transform - pos: 0.5,11.5 + pos: -8.5,9.5 parent: 1 - - uid: 573 + - uid: 249 components: - type: Transform - pos: -9.5,7.5 + pos: -6.5,10.5 parent: 1 - - uid: 577 + - uid: 277 components: - type: Transform - pos: -9.5,6.5 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 578 + - uid: 307 components: - type: Transform - pos: 2.5,13.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 579 + - uid: 343 components: - type: Transform - pos: 2.5,12.5 + pos: -7.5,10.5 parent: 1 - - uid: 580 + - uid: 399 components: - type: Transform - pos: 2.5,11.5 + pos: -8.5,10.5 parent: 1 - - uid: 582 + - uid: 400 components: - type: Transform - pos: -3.5,12.5 + pos: -5.5,7.5 parent: 1 - - uid: 583 + - uid: 450 components: - type: Transform - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: 2.5,7.5 parent: 1 - - uid: 584 + - uid: 555 components: - type: Transform - pos: -3.5,14.5 + pos: -6.5,7.5 parent: 1 - - uid: 585 + - uid: 576 components: - type: Transform - pos: -4.5,12.5 + rot: -1.5707963267948966 rad + pos: 1.5,7.5 parent: 1 - - uid: 586 + - uid: 581 components: - type: Transform - pos: -4.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 parent: 1 - - uid: 587 + - uid: 608 components: - type: Transform - pos: -4.5,14.5 + rot: -1.5707963267948966 rad + pos: 1.5,5.5 parent: 1 - - uid: 588 + - uid: 649 components: - type: Transform - pos: -5.5,12.5 + pos: -6.5,6.5 parent: 1 - - uid: 589 + - uid: 675 components: - type: Transform - pos: -5.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,7.5 parent: 1 - - uid: 590 + - uid: 683 components: - type: Transform - pos: -5.5,14.5 + rot: -1.5707963267948966 rad + pos: 2.5,5.5 parent: 1 - - uid: 591 + - uid: 692 components: - type: Transform - pos: -6.5,12.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 1 - - uid: 592 + - uid: 723 components: - type: Transform - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - - uid: 593 + - uid: 995 components: - type: Transform - pos: -6.5,14.5 + pos: 4.5,8.5 parent: 1 - - uid: 594 + - uid: 997 components: - type: Transform - pos: -7.5,12.5 + pos: 4.5,7.5 parent: 1 - - uid: 595 +- proto: TableWood + entities: + - uid: 11 components: - type: Transform - pos: -7.5,13.5 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 parent: 1 - - uid: 596 + - uid: 15 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 parent: 1 - - uid: 597 + - uid: 18 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 - - uid: 598 + - uid: 75 components: - type: Transform - pos: 5.5,12.5 + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 parent: 1 - - uid: 599 + - uid: 84 components: - type: Transform - pos: 5.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 - - uid: 600 + - uid: 119 components: - type: Transform - pos: 5.5,14.5 + pos: 9.5,1.5 parent: 1 - - uid: 601 + - uid: 241 components: - type: Transform - pos: 6.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 parent: 1 - - uid: 602 + - uid: 242 components: - type: Transform - pos: 6.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 1 - - uid: 603 + - uid: 243 components: - type: Transform - pos: 6.5,14.5 + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 1 - - uid: 604 + - uid: 246 components: - type: Transform - pos: 7.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 1 - - uid: 605 + - uid: 538 components: - type: Transform - pos: 7.5,13.5 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 - - uid: 606 + - uid: 539 components: - type: Transform - pos: 7.5,14.5 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 parent: 1 - - uid: 607 + - uid: 575 components: - type: Transform - pos: 8.5,12.5 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 parent: 1 - - uid: 608 + - uid: 591 components: - type: Transform - pos: 8.5,13.5 + rot: -1.5707963267948966 rad + pos: -6.5,1.5 parent: 1 - - uid: 609 + - uid: 594 components: - type: Transform - pos: 8.5,14.5 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - - uid: 610 + - uid: 597 components: - type: Transform - pos: 9.5,12.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 611 + - uid: 1555 components: - type: Transform - pos: 9.5,13.5 + pos: -14.5,17.5 parent: 1 - - uid: 612 + - uid: 1556 components: - type: Transform - pos: 9.5,14.5 + pos: -14.5,19.5 parent: 1 - - uid: 613 + - uid: 1558 components: - type: Transform - pos: 11.5,9.5 + pos: -14.5,18.5 parent: 1 - - uid: 614 + - uid: 1663 components: - type: Transform - pos: 11.5,10.5 + pos: -14.5,24.5 parent: 1 - - uid: 615 + - uid: 1811 components: - type: Transform - pos: 11.5,11.5 + rot: -1.5707963267948966 rad + pos: -2.5,35.5 parent: 1 - - uid: 616 + - uid: 1812 components: - type: Transform - pos: 12.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.5,36.5 parent: 1 - - uid: 617 + - uid: 1813 components: - type: Transform - pos: 12.5,10.5 + rot: -1.5707963267948966 rad + pos: -3.5,36.5 parent: 1 - - uid: 618 + - uid: 1814 components: - type: Transform - pos: 12.5,11.5 + rot: -1.5707963267948966 rad + pos: -3.5,35.5 parent: 1 - - uid: 619 +- proto: TableWoodReinforced + entities: + - uid: 1428 components: - type: Transform - pos: 13.5,9.5 + pos: -13.5,14.5 parent: 1 - - uid: 620 + - uid: 1429 components: - type: Transform - pos: 13.5,10.5 + pos: -14.5,14.5 parent: 1 - - uid: 621 +- proto: TargetClown + entities: + - uid: 1992 components: - type: Transform - pos: 13.5,11.5 + pos: -10.5,28.5 parent: 1 - - uid: 622 +- proto: TargetDarts + entities: + - uid: 1750 components: - type: Transform - pos: 14.5,9.5 + pos: -12.5,30.5 parent: 1 - - uid: 623 +- proto: TelecomServerFilledFreelance + entities: + - uid: 2052 components: - type: Transform - pos: 14.5,10.5 + pos: -8.5,12.5 parent: 1 - - uid: 624 +- proto: ToiletDirtyWater + entities: + - uid: 932 components: - type: Transform - pos: 14.5,11.5 + pos: 9.5,9.5 parent: 1 - - uid: 625 + - uid: 994 components: - type: Transform - pos: 15.5,9.5 + pos: 9.5,6.5 parent: 1 - - uid: 626 +- proto: ToyFigurineRatServant + entities: + - uid: 1138 components: - type: Transform - pos: 15.5,10.5 + pos: -5.520999,7.6244407 parent: 1 - - uid: 627 + - uid: 1139 components: - type: Transform - pos: 15.5,11.5 + pos: -5.323082,7.791107 parent: 1 - - uid: 628 +- proto: WallmountTelevisionFrame + entities: + - uid: 737 components: - type: Transform - pos: 10.5,12.5 + pos: -6.5,2.5 parent: 1 - - uid: 629 +- proto: WallReinforced + entities: + - uid: 127 components: - type: Transform - pos: 11.5,12.5 + pos: 11.5,24.5 parent: 1 - - uid: 630 + - uid: 270 components: - type: Transform - pos: 12.5,12.5 + pos: 11.5,20.5 parent: 1 - - uid: 631 + - uid: 297 components: - type: Transform - pos: 13.5,12.5 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 parent: 1 - - uid: 632 + - uid: 316 components: - type: Transform - pos: 14.5,12.5 + rot: 3.141592653589793 rad + pos: -9.5,11.5 parent: 1 - - uid: 633 + - uid: 317 components: - type: Transform - pos: 10.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,10.5 parent: 1 - - uid: 634 + - uid: 319 components: - type: Transform - pos: 5.5,15.5 + rot: 3.141592653589793 rad + pos: -9.5,9.5 parent: 1 - - uid: 635 + - uid: 321 components: - type: Transform - pos: 5.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,8.5 parent: 1 - - uid: 636 + - uid: 322 components: - type: Transform - pos: 4.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,7.5 parent: 1 - - uid: 637 + - uid: 323 components: - type: Transform - pos: 3.5,16.5 + pos: -4.5,-8.5 parent: 1 - - uid: 638 + - uid: 328 components: - type: Transform - pos: 2.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,6.5 parent: 1 - - uid: 639 + - uid: 418 components: - type: Transform - pos: 1.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,5.5 parent: 1 - - uid: 640 + - uid: 423 components: - type: Transform - pos: 0.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,4.5 parent: 1 - - uid: 641 + - uid: 424 components: - type: Transform - pos: -0.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 1 - - uid: 642 + - uid: 427 components: - type: Transform - pos: -1.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,3.5 parent: 1 - - uid: 643 + - uid: 521 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 644 + - uid: 525 components: - type: Transform - pos: -3.5,16.5 + pos: -8.5,-8.5 parent: 1 - - uid: 645 + - uid: 526 components: - type: Transform - pos: -3.5,15.5 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 1 - - uid: 646 + - uid: 527 components: - type: Transform - pos: -4.5,15.5 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 parent: 1 - - uid: 647 + - uid: 544 components: - type: Transform - pos: -5.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 1 - - uid: 648 + - uid: 546 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 parent: 1 - - uid: 649 + - uid: 548 components: - type: Transform - pos: -1.5,17.5 + rot: 1.5707963267948966 rad + pos: 10.5,2.5 parent: 1 - - uid: 650 + - uid: 561 components: - type: Transform - pos: -1.5,18.5 + pos: 5.5,-8.5 parent: 1 - - uid: 651 + - uid: 607 components: - type: Transform - pos: -0.5,17.5 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 parent: 1 - - uid: 652 + - uid: 609 components: - type: Transform - pos: -0.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 parent: 1 - - uid: 653 + - uid: 610 components: - type: Transform - pos: 0.5,17.5 + rot: 3.141592653589793 rad + pos: 11.5,-3.5 parent: 1 - - uid: 654 + - uid: 617 components: - type: Transform - pos: 0.5,18.5 + rot: 3.141592653589793 rad + pos: 9.5,-6.5 parent: 1 - - uid: 655 + - uid: 623 components: - type: Transform - pos: 1.5,17.5 + rot: 3.141592653589793 rad + pos: 5.5,-6.5 parent: 1 - - uid: 656 + - uid: 625 components: - type: Transform - pos: 1.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 1 - - uid: 657 + - uid: 655 components: - type: Transform - pos: 2.5,17.5 + rot: 3.141592653589793 rad + pos: 10.5,7.5 parent: 1 - - uid: 658 + - uid: 709 components: - type: Transform - pos: 2.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 parent: 1 - - uid: 659 + - uid: 718 components: - type: Transform - pos: 3.5,17.5 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 parent: 1 - - uid: 660 + - uid: 731 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,0.5 parent: 1 - - uid: 661 + - uid: 732 components: - type: Transform - pos: 4.5,17.5 + rot: 3.141592653589793 rad + pos: -10.5,-3.5 parent: 1 - - uid: 662 + - uid: 734 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,1.5 parent: 1 - - uid: 663 + - uid: 735 components: - type: Transform - pos: -2.5,17.5 + rot: 3.141592653589793 rad + pos: -10.5,0.5 parent: 1 - - uid: 664 + - uid: 903 components: - type: Transform - pos: 5.5,17.5 + pos: 9.5,-8.5 parent: 1 - - uid: 665 + - uid: 907 components: - type: Transform - pos: 6.5,15.5 + pos: -12.5,-3.5 parent: 1 - - uid: 666 + - uid: 908 components: - type: Transform - pos: 7.5,15.5 + pos: -12.5,0.5 parent: 1 - - uid: 667 + - uid: 909 components: - type: Transform - pos: -4.5,16.5 + pos: 13.5,-3.5 parent: 1 - - uid: 668 + - uid: 910 components: - type: Transform - pos: -8.5,13.5 + pos: 13.5,0.5 parent: 1 - - uid: 669 + - uid: 1143 components: - type: Transform - pos: -8.5,12.5 + pos: -11.5,12.5 parent: 1 - - uid: 670 + - uid: 1144 components: - type: Transform - pos: -9.5,13.5 + pos: -12.5,12.5 parent: 1 - - uid: 671 + - uid: 1145 components: - type: Transform - pos: -9.5,12.5 + pos: -13.5,12.5 parent: 1 - - uid: 672 + - uid: 1146 components: - type: Transform - pos: -10.5,13.5 + pos: -14.5,12.5 parent: 1 - - uid: 673 + - uid: 1147 components: - type: Transform - pos: -10.5,12.5 + pos: -15.5,12.5 parent: 1 - - uid: 674 + - uid: 1156 components: - type: Transform - pos: -11.5,13.5 + pos: -10.5,12.5 parent: 1 - - uid: 675 + - uid: 1161 components: - type: Transform - pos: -11.5,12.5 + pos: -16.5,13.5 parent: 1 - - uid: 676 + - uid: 1162 components: - type: Transform - pos: -12.5,13.5 + pos: -16.5,12.5 parent: 1 - - uid: 677 + - uid: 1185 components: - type: Transform - pos: -12.5,12.5 + pos: 10.5,12.5 parent: 1 - - uid: 678 + - uid: 1186 components: - type: Transform - pos: -13.5,13.5 + pos: 11.5,12.5 parent: 1 - - uid: 679 + - uid: 1213 components: - type: Transform - pos: -13.5,12.5 + pos: -9.5,13.5 parent: 1 - - uid: 680 + - uid: 1239 components: - type: Transform - pos: -14.5,13.5 + pos: 10.5,10.5 parent: 1 - - uid: 681 + - uid: 1260 components: - type: Transform - pos: -14.5,12.5 + pos: -17.5,16.5 parent: 1 - - uid: 682 + - uid: 1264 components: - type: Transform - pos: -15.5,12.5 + pos: -17.5,23.5 parent: 1 - - uid: 683 + - uid: 1266 components: - type: Transform - pos: -16.5,11.5 + pos: -17.5,28.5 parent: 1 - - uid: 684 + - uid: 1270 components: - type: Transform - pos: -16.5,10.5 + pos: -17.5,21.5 parent: 1 - - uid: 685 + - uid: 1277 components: - type: Transform - pos: -16.5,9.5 + pos: -17.5,27.5 parent: 1 - - uid: 686 + - uid: 1278 components: - type: Transform - pos: -17.5,11.5 + pos: -17.5,24.5 parent: 1 - - uid: 687 + - uid: 1282 components: - type: Transform - pos: -17.5,10.5 + pos: -17.5,18.5 parent: 1 - - uid: 688 + - uid: 1284 components: - type: Transform - pos: -17.5,9.5 + pos: -17.5,25.5 parent: 1 - - uid: 689 + - uid: 1297 components: - type: Transform - pos: -18.5,11.5 + pos: -17.5,26.5 parent: 1 - - uid: 690 + - uid: 1302 components: - type: Transform - pos: -18.5,10.5 + pos: -17.5,17.5 parent: 1 - - uid: 691 + - uid: 1307 components: - type: Transform - pos: -18.5,9.5 + pos: -17.5,13.5 parent: 1 - - uid: 692 + - uid: 1308 components: - type: Transform - pos: -19.5,10.5 + pos: -17.5,14.5 parent: 1 - - uid: 693 + - uid: 1309 components: - type: Transform - pos: -19.5,9.5 + pos: -17.5,15.5 parent: 1 - - uid: 694 + - uid: 1310 components: - type: Transform - pos: -20.5,10.5 + pos: -17.5,19.5 parent: 1 - - uid: 695 + - uid: 1311 components: - type: Transform - pos: -20.5,9.5 + pos: -17.5,20.5 parent: 1 - - uid: 696 + - uid: 1312 components: - type: Transform - pos: -21.5,10.5 + pos: -17.5,29.5 parent: 1 - - uid: 697 + - uid: 1313 components: - type: Transform - pos: -21.5,9.5 + pos: -17.5,22.5 parent: 1 - - uid: 698 + - uid: 1315 components: - type: Transform - pos: -22.5,8.5 + pos: -17.5,30.5 parent: 1 - - uid: 699 + - uid: 1317 components: - type: Transform - pos: -23.5,8.5 + pos: -16.5,30.5 parent: 1 - - uid: 700 + - uid: 1319 components: - type: Transform - pos: -24.5,8.5 + pos: 10.5,20.5 parent: 1 - - uid: 701 + - uid: 1324 components: - type: Transform - pos: -21.5,8.5 + pos: 10.5,24.5 parent: 1 - - uid: 702 + - uid: 1325 components: - type: Transform - pos: -22.5,9.5 + pos: 9.5,10.5 parent: 1 - - uid: 703 + - uid: 1327 components: - type: Transform - pos: -23.5,9.5 + pos: 16.5,12.5 parent: 1 - - uid: 704 + - uid: 1329 components: - type: Transform - pos: -23.5,10.5 + pos: -14.5,32.5 parent: 1 - - uid: 705 + - uid: 1331 components: - type: Transform - pos: -19.5,11.5 + pos: -15.5,32.5 parent: 1 - - uid: 706 + - uid: 1337 components: - type: Transform - pos: -22.5,10.5 + pos: -16.5,32.5 parent: 1 - - uid: 707 + - uid: 1342 components: - type: Transform - pos: -25.5,8.5 + pos: 17.5,16.5 parent: 1 - - uid: 708 + - uid: 1344 components: - type: Transform - pos: -26.5,8.5 + pos: 9.5,11.5 parent: 1 - - uid: 709 + - uid: 1347 components: - type: Transform - pos: -26.5,7.5 + pos: 13.5,18.5 parent: 1 - - uid: 710 + - uid: 1350 components: - type: Transform - pos: -26.5,6.5 + pos: 10.5,18.5 parent: 1 - - uid: 711 + - uid: 1355 components: - type: Transform - pos: -26.5,5.5 + pos: 14.5,18.5 parent: 1 - - uid: 712 + - uid: 1362 components: - type: Transform - pos: -26.5,4.5 + pos: 12.5,18.5 parent: 1 - - uid: 713 + - uid: 1364 components: - type: Transform - pos: -26.5,3.5 + pos: 10.5,17.5 parent: 1 - - uid: 714 + - uid: 1366 components: - type: Transform - pos: -26.5,2.5 + pos: 11.5,18.5 parent: 1 - - uid: 715 + - uid: 1374 components: - type: Transform - pos: -27.5,2.5 + pos: 11.5,19.5 parent: 1 - - uid: 716 + - uid: 1412 components: - type: Transform - pos: -26.5,1.5 + pos: 17.5,14.5 parent: 1 - - uid: 717 + - uid: 1422 components: - type: Transform - pos: -27.5,1.5 + pos: 10.5,13.5 parent: 1 - - uid: 718 + - uid: 1423 components: - type: Transform - pos: -31.5,0.5 + pos: 17.5,12.5 parent: 1 - - uid: 719 + - uid: 1424 components: - type: Transform - pos: -28.5,2.5 + pos: 9.5,12.5 parent: 1 - - uid: 720 + - uid: 1430 components: - type: Transform - pos: -28.5,1.5 + pos: 15.5,18.5 parent: 1 - - uid: 721 + - uid: 1431 components: - type: Transform - pos: -28.5,0.5 + pos: 12.5,12.5 parent: 1 - - uid: 722 + - uid: 1528 components: - type: Transform - pos: -28.5,-0.5 + pos: 13.5,12.5 parent: 1 - - uid: 723 + - uid: 1536 components: - type: Transform - pos: -29.5,2.5 + pos: 14.5,12.5 parent: 1 - - uid: 724 + - uid: 1538 components: - type: Transform - pos: -29.5,1.5 + pos: 15.5,12.5 parent: 1 - - uid: 725 + - uid: 1601 components: - type: Transform - pos: -29.5,0.5 + pos: 17.5,13.5 parent: 1 - - uid: 726 + - uid: 1606 components: - type: Transform - pos: -29.5,-0.5 + pos: 17.5,18.5 parent: 1 - - uid: 727 + - uid: 1616 components: - type: Transform - pos: -30.5,2.5 + pos: 17.5,15.5 parent: 1 - - uid: 728 + - uid: 1619 components: - type: Transform - pos: -30.5,1.5 + pos: 16.5,18.5 parent: 1 - - uid: 729 + - uid: 1620 components: - type: Transform - pos: -30.5,0.5 + pos: 17.5,17.5 parent: 1 - - uid: 730 + - uid: 1621 components: - type: Transform - pos: -30.5,-0.5 + pos: 11.5,26.5 parent: 1 - - uid: 731 + - uid: 1624 components: - type: Transform - pos: -31.5,-0.5 + pos: 3.5,30.5 parent: 1 - - uid: 732 + - uid: 1627 components: - type: Transform - pos: -32.5,0.5 + pos: -16.5,31.5 parent: 1 - - uid: 733 + - uid: 1628 components: - type: Transform - pos: -32.5,-0.5 + pos: 11.5,25.5 parent: 1 - - uid: 734 + - uid: 1632 components: - type: Transform - pos: -33.5,0.5 + pos: 2.5,31.5 parent: 1 - - uid: 735 + - uid: 1635 components: - type: Transform - pos: -33.5,-0.5 + pos: 2.5,30.5 parent: 1 - - uid: 736 + - uid: 1636 components: - type: Transform - pos: -34.5,-0.5 + pos: 2.5,32.5 parent: 1 - - uid: 737 + - uid: 1639 components: - type: Transform - pos: -35.5,-0.5 + pos: 1.5,32.5 parent: 1 - - uid: 738 + - uid: 1649 components: - type: Transform - pos: -35.5,-1.5 + pos: 11.5,21.5 parent: 1 - - uid: 739 + - uid: 1653 components: - type: Transform - pos: -35.5,-2.5 + pos: -8.5,32.5 parent: 1 - - uid: 740 + - uid: 1654 components: - type: Transform - pos: -35.5,-3.5 + pos: -9.5,32.5 parent: 1 - - uid: 741 + - uid: 1694 components: - type: Transform - pos: -34.5,-1.5 + pos: -10.5,32.5 parent: 1 - - uid: 742 + - uid: 1703 components: - type: Transform - pos: -34.5,-2.5 + pos: -11.5,32.5 parent: 1 - - uid: 743 + - uid: 1722 components: - type: Transform - pos: -34.5,-3.5 + pos: -12.5,32.5 parent: 1 - - uid: 744 + - uid: 1754 components: - type: Transform - pos: -33.5,-2.5 + pos: -13.5,32.5 parent: 1 - - uid: 745 + - uid: 1905 components: - type: Transform - pos: -33.5,-1.5 + pos: -9.5,12.5 parent: 1 - - uid: 746 + - uid: 1918 components: - type: Transform - pos: -32.5,-2.5 + pos: -8.5,33.5 parent: 1 - - uid: 747 + - uid: 1995 components: - type: Transform - pos: -32.5,-1.5 + pos: 11.5,23.5 parent: 1 - - uid: 748 +- proto: WallReinforcedDiagonal + entities: + - uid: 65 components: - type: Transform - pos: -31.5,-2.5 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 parent: 1 - - uid: 749 + - uid: 138 components: - type: Transform - pos: -31.5,-1.5 + rot: 3.141592653589793 rad + pos: -9.5,0.5 parent: 1 - - uid: 750 + - uid: 435 components: - type: Transform - pos: -30.5,-2.5 + rot: 3.141592653589793 rad + pos: 11.5,-4.5 parent: 1 - - uid: 751 + - uid: 447 components: - type: Transform - pos: -30.5,-1.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 1 - - uid: 752 + - uid: 448 components: - type: Transform - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 1 - - uid: 753 + - uid: 535 components: - type: Transform - pos: -29.5,-1.5 + rot: 1.5707963267948966 rad + pos: 10.5,0.5 parent: 1 - - uid: 754 + - uid: 545 components: - type: Transform - pos: -28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 1 - - uid: 755 + - uid: 549 components: - type: Transform - pos: -28.5,-1.5 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 parent: 1 - - uid: 756 + - uid: 550 components: - type: Transform - pos: -23.5,5.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 1 - - uid: 757 + - uid: 595 components: - type: Transform - pos: -23.5,4.5 + pos: -10.5,1.5 parent: 1 - - uid: 758 + - uid: 611 components: - type: Transform - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 - - uid: 759 + - uid: 712 components: - type: Transform - pos: -23.5,2.5 + pos: -4.5,-5.5 parent: 1 - - uid: 760 + - uid: 736 components: - type: Transform - pos: -23.5,1.5 + pos: 10.5,-3.5 parent: 1 - uid: 761 components: - type: Transform - pos: -22.5,5.5 + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 1 - uid: 762 components: - type: Transform - pos: -22.5,4.5 - parent: 1 - - uid: 763 - components: - - type: Transform - pos: -22.5,3.5 + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 parent: 1 - - uid: 764 + - uid: 766 components: - type: Transform - pos: -22.5,2.5 + pos: 9.5,-5.5 parent: 1 - - uid: 765 +- proto: WallRock + entities: + - uid: 69 components: - type: Transform - pos: -18.5,6.5 + pos: -13.5,10.5 parent: 1 - - uid: 766 + - uid: 296 components: - type: Transform - pos: -21.5,5.5 + pos: -13.5,11.5 parent: 1 - - uid: 767 + - uid: 956 components: - type: Transform - pos: -21.5,4.5 + pos: -11.5,10.5 parent: 1 - - uid: 768 + - uid: 958 components: - type: Transform - pos: -21.5,3.5 + pos: 11.5,10.5 parent: 1 - - uid: 769 + - uid: 960 components: - type: Transform - pos: -20.5,5.5 + pos: -10.5,10.5 parent: 1 - - uid: 770 + - uid: 1001 components: - type: Transform - pos: -20.5,4.5 + pos: -12.5,10.5 parent: 1 - - uid: 771 + - uid: 1038 components: - type: Transform - pos: -19.5,5.5 + pos: 15.5,19.5 parent: 1 - - uid: 772 + - uid: 1098 components: - type: Transform - pos: -21.5,2.5 + pos: 10.5,25.5 parent: 1 - - uid: 773 + - uid: 1099 components: - type: Transform - pos: -23.5,0.5 + pos: 17.5,26.5 parent: 1 - - uid: 774 + - uid: 1107 components: - type: Transform - pos: -17.5,6.5 + pos: -6.5,32.5 parent: 1 - - uid: 775 + - uid: 1140 components: - type: Transform - pos: -16.5,6.5 + pos: -12.5,11.5 parent: 1 - - uid: 776 + - uid: 1141 components: - type: Transform - pos: -15.5,6.5 + pos: -11.5,11.5 parent: 1 - - uid: 777 + - uid: 1142 components: - type: Transform - pos: -13.5,7.5 + pos: -10.5,11.5 parent: 1 - - uid: 778 + - uid: 1148 components: - type: Transform - pos: -12.5,7.5 + pos: -16.5,17.5 parent: 1 - - uid: 779 + - uid: 1150 components: - type: Transform - pos: -11.5,7.5 + pos: -17.5,12.5 parent: 1 - - uid: 780 + - uid: 1151 components: - type: Transform - pos: -10.5,7.5 + pos: -16.5,16.5 parent: 1 - - uid: 781 + - uid: 1152 components: - type: Transform - pos: 13.5,3.5 + pos: -11.5,14.5 parent: 1 - - uid: 783 + - uid: 1153 components: - type: Transform - pos: 13.5,-15.5 + pos: -13.5,13.5 parent: 1 - - uid: 784 + - uid: 1154 components: - type: Transform - pos: 13.5,-14.5 + pos: -14.5,13.5 parent: 1 - - uid: 785 + - uid: 1155 components: - type: Transform - pos: 13.5,-13.5 + pos: -12.5,13.5 parent: 1 - - uid: 786 + - uid: 1157 components: - type: Transform - pos: 13.5,-12.5 + pos: -16.5,11.5 parent: 1 - - uid: 787 + - uid: 1158 components: - type: Transform - pos: 13.5,-11.5 + pos: -15.5,11.5 parent: 1 - - uid: 788 + - uid: 1159 components: - type: Transform - pos: 13.5,-10.5 + pos: -16.5,15.5 parent: 1 - - uid: 790 + - uid: 1160 components: - type: Transform - pos: 12.5,-15.5 + pos: -16.5,14.5 parent: 1 - - uid: 791 + - uid: 1168 components: - type: Transform - pos: 12.5,-14.5 + pos: -16.5,25.5 parent: 1 - - uid: 792 + - uid: 1170 components: - type: Transform - pos: 12.5,-13.5 + pos: -16.5,22.5 parent: 1 - - uid: 793 + - uid: 1171 components: - type: Transform - pos: 12.5,-12.5 + pos: -16.5,18.5 parent: 1 - - uid: 794 + - uid: 1172 components: - type: Transform - pos: 12.5,-11.5 + pos: -16.5,20.5 parent: 1 - - uid: 795 + - uid: 1173 components: - type: Transform - pos: 12.5,-10.5 + pos: -16.5,24.5 parent: 1 - - uid: 796 + - uid: 1174 components: - type: Transform - pos: 12.5,-9.5 + pos: -16.5,21.5 parent: 1 - - uid: 797 + - uid: 1175 components: - type: Transform - pos: 11.5,-15.5 + pos: -16.5,23.5 parent: 1 - - uid: 798 + - uid: 1176 components: - type: Transform - pos: 11.5,-14.5 + pos: -16.5,19.5 parent: 1 - - uid: 799 + - uid: 1177 components: - type: Transform - pos: 11.5,-13.5 + pos: -16.5,27.5 parent: 1 - - uid: 800 + - uid: 1178 components: - type: Transform - pos: 11.5,-12.5 + pos: -16.5,26.5 parent: 1 - - uid: 801 + - uid: 1180 components: - type: Transform - pos: 11.5,-11.5 + pos: -16.5,28.5 parent: 1 - - uid: 802 + - uid: 1196 components: - type: Transform - pos: 10.5,-15.5 + pos: -15.5,17.5 parent: 1 - - uid: 803 + - uid: 1198 components: - type: Transform - pos: 10.5,-14.5 + pos: -15.5,13.5 parent: 1 - - uid: 804 + - uid: 1199 components: - type: Transform - pos: 9.5,-18.5 + pos: -18.5,19.5 parent: 1 - - uid: 805 + - uid: 1200 components: - type: Transform - pos: 9.5,-17.5 + pos: -18.5,18.5 parent: 1 - - uid: 806 + - uid: 1201 components: - type: Transform - pos: 9.5,-16.5 + pos: -18.5,17.5 parent: 1 - - uid: 807 + - uid: 1202 components: - type: Transform - pos: 9.5,-15.5 + pos: -18.5,21.5 parent: 1 - - uid: 808 + - uid: 1203 components: - type: Transform - pos: 8.5,-18.5 + pos: -18.5,22.5 parent: 1 - - uid: 809 + - uid: 1204 components: - type: Transform - pos: 7.5,-18.5 + pos: -18.5,23.5 parent: 1 - - uid: 810 + - uid: 1205 components: - type: Transform - pos: 8.5,-17.5 + pos: -18.5,24.5 parent: 1 - - uid: 811 + - uid: 1206 components: - type: Transform - pos: 8.5,-16.5 + pos: -18.5,26.5 parent: 1 - - uid: 813 + - uid: 1207 components: - type: Transform - pos: -13.5,5.5 + pos: -18.5,25.5 parent: 1 - - uid: 822 + - uid: 1208 components: - type: Transform - pos: 11.5,-10.5 + pos: -18.5,27.5 parent: 1 - - uid: 823 + - uid: 1209 components: - type: Transform - pos: 11.5,-9.5 + pos: -18.5,28.5 parent: 1 - - uid: 824 + - uid: 1210 components: - type: Transform - pos: 11.5,-8.5 + pos: -19.5,25.5 parent: 1 - - uid: 825 + - uid: 1211 components: - type: Transform - pos: 11.5,-7.5 + pos: -19.5,26.5 parent: 1 - - uid: 828 + - uid: 1212 components: - type: Transform - pos: -12.5,5.5 + pos: -10.5,13.5 parent: 1 - - uid: 829 + - uid: 1214 components: - type: Transform - pos: -14.5,5.5 + pos: -19.5,21.5 parent: 1 - - uid: 830 + - uid: 1215 components: - type: Transform - pos: -15.5,5.5 + pos: -19.5,20.5 parent: 1 - - uid: 831 + - uid: 1216 components: - type: Transform - pos: 9.5,-7.5 + pos: -18.5,20.5 parent: 1 - - uid: 832 + - uid: 1217 components: - type: Transform - pos: 10.5,-7.5 + pos: -11.5,13.5 parent: 1 - - uid: 833 + - uid: 1219 components: - type: Transform - pos: 10.5,-8.5 + pos: -18.5,13.5 parent: 1 - - uid: 834 + - uid: 1220 components: - type: Transform - pos: 10.5,-9.5 + pos: -14.5,11.5 parent: 1 - - uid: 836 + - uid: 1222 components: - type: Transform - pos: 11.5,-0.5 + pos: -10.5,9.5 parent: 1 - - uid: 838 + - uid: 1223 components: - type: Transform - pos: -12.5,6.5 + pos: -15.5,14.5 parent: 1 - - uid: 840 + - uid: 1224 components: - type: Transform - pos: 11.5,3.5 + pos: -18.5,14.5 parent: 1 - - uid: 841 + - uid: 1225 components: - type: Transform - pos: 11.5,4.5 + pos: -18.5,15.5 parent: 1 - - uid: 842 + - uid: 1226 components: - type: Transform - pos: 11.5,5.5 + pos: -18.5,16.5 parent: 1 - - uid: 843 + - uid: 1227 components: - type: Transform - pos: -10.5,4.5 + pos: -17.5,11.5 parent: 1 - - uid: 844 + - uid: 1230 components: - type: Transform - pos: -11.5,4.5 + pos: 11.5,11.5 parent: 1 - - uid: 846 + - uid: 1231 components: - type: Transform - pos: -13.5,6.5 + pos: 10.5,11.5 parent: 1 - - uid: 851 + - uid: 1232 components: - type: Transform - pos: -14.5,6.5 + pos: -18.5,12.5 parent: 1 - - uid: 856 + - uid: 1233 components: - type: Transform - pos: 13.5,-3.5 + pos: -19.5,19.5 parent: 1 - - uid: 858 + - uid: 1236 components: - type: Transform - pos: -16.5,-10.5 + pos: 13.5,33.5 parent: 1 - - uid: 859 + - uid: 1240 components: - type: Transform - pos: 13.5,-6.5 + pos: 12.5,11.5 parent: 1 - - uid: 861 + - uid: 1241 components: - type: Transform - pos: 13.5,-8.5 + pos: 13.5,11.5 parent: 1 - - uid: 862 + - uid: 1242 components: - type: Transform - pos: 12.5,-8.5 + pos: 14.5,11.5 parent: 1 - - uid: 863 + - uid: 1243 components: - type: Transform - pos: 12.5,-7.5 + pos: 15.5,11.5 parent: 1 - - uid: 864 + - uid: 1244 components: - type: Transform - pos: 12.5,-6.5 + pos: 16.5,11.5 parent: 1 - - uid: 866 + - uid: 1245 components: - type: Transform - pos: 12.5,-4.5 + pos: 17.5,11.5 parent: 1 - - uid: 867 + - uid: 1246 components: - type: Transform - pos: 12.5,-3.5 + pos: 18.5,11.5 parent: 1 - - uid: 869 + - uid: 1247 components: - type: Transform - pos: 14.5,-1.5 + pos: 18.5,12.5 parent: 1 - - uid: 870 + - uid: 1248 components: - type: Transform - pos: 14.5,-2.5 + pos: 18.5,13.5 parent: 1 - - uid: 871 + - uid: 1249 components: - type: Transform - pos: 14.5,-3.5 + pos: 18.5,14.5 parent: 1 - - uid: 874 + - uid: 1250 components: - type: Transform - pos: 14.5,-6.5 + pos: 18.5,15.5 parent: 1 - - uid: 875 + - uid: 1251 components: - type: Transform - pos: 10.5,-0.5 + pos: 18.5,16.5 parent: 1 - - uid: 876 + - uid: 1252 components: - type: Transform - pos: 10.5,0.5 + pos: 18.5,17.5 parent: 1 - - uid: 877 + - uid: 1253 components: - type: Transform - pos: -11.5,6.5 + pos: 18.5,18.5 parent: 1 - - uid: 879 + - uid: 1254 components: - type: Transform - pos: -11.5,5.5 + pos: 18.5,19.5 parent: 1 - - uid: 880 + - uid: 1255 components: - type: Transform - pos: 10.5,4.5 + pos: 15.5,17.5 parent: 1 - - uid: 881 + - uid: 1256 components: - type: Transform - pos: 10.5,5.5 + pos: 13.5,19.5 parent: 1 - - uid: 882 + - uid: 1257 components: - type: Transform - pos: 9.5,6.5 + pos: 16.5,17.5 parent: 1 - - uid: 883 + - uid: 1261 components: - type: Transform - pos: 8.5,7.5 + pos: 18.5,26.5 parent: 1 - - uid: 884 + - uid: 1262 components: - type: Transform - pos: 7.5,7.5 + pos: 19.5,26.5 parent: 1 - - uid: 885 + - uid: 1263 components: - type: Transform - pos: 6.5,7.5 + pos: -18.5,31.5 parent: 1 - - uid: 886 + - uid: 1268 components: - type: Transform - pos: 5.5,7.5 + pos: 17.5,19.5 parent: 1 - - uid: 887 + - uid: 1269 components: - type: Transform - pos: 4.5,8.5 + pos: 16.5,19.5 parent: 1 - - uid: 888 + - uid: 1271 components: - type: Transform - pos: 5.5,8.5 + pos: 19.5,19.5 parent: 1 - - uid: 889 + - uid: 1272 components: - type: Transform - pos: 3.5,9.5 + pos: 19.5,18.5 parent: 1 - - uid: 890 + - uid: 1273 components: - type: Transform - pos: -8.5,5.5 + pos: 19.5,17.5 parent: 1 - - uid: 891 + - uid: 1274 components: - type: Transform - pos: -8.5,6.5 + pos: 19.5,16.5 parent: 1 - - uid: 892 + - uid: 1275 components: - type: Transform - pos: -9.5,5.5 + pos: 19.5,15.5 parent: 1 - - uid: 893 + - uid: 1276 components: - type: Transform - pos: -10.5,6.5 + pos: 20.5,18.5 parent: 1 - - uid: 894 + - uid: 1281 components: - type: Transform - pos: -1.5,9.5 + pos: 12.5,20.5 parent: 1 - - uid: 895 + - uid: 1283 components: - type: Transform - pos: -2.5,9.5 + pos: 12.5,24.5 parent: 1 - - uid: 897 + - uid: 1287 components: - type: Transform - pos: 5.5,6.5 + pos: 14.5,17.5 parent: 1 - - uid: 914 + - uid: 1288 components: - type: Transform - pos: 5.5,5.5 + pos: 13.5,26.5 parent: 1 - - uid: 915 + - uid: 1289 components: - type: Transform - pos: 4.5,5.5 + pos: 13.5,17.5 parent: 1 - - uid: 916 + - uid: 1290 components: - type: Transform - pos: 6.5,6.5 + pos: 16.5,26.5 parent: 1 - - uid: 917 + - uid: 1291 components: - type: Transform - pos: 6.5,5.5 + pos: -14.5,31.5 parent: 1 - - uid: 918 + - uid: 1293 components: - type: Transform - pos: 7.5,6.5 + pos: 12.5,17.5 parent: 1 - - uid: 919 + - uid: 1294 components: - type: Transform - pos: 7.5,5.5 + pos: 14.5,26.5 parent: 1 - - uid: 920 + - uid: 1298 components: - type: Transform - pos: -10.5,5.5 + pos: -9.5,33.5 parent: 1 - - uid: 921 + - uid: 1299 components: - type: Transform - pos: -9.5,4.5 + pos: 15.5,26.5 parent: 1 - - uid: 922 + - uid: 1303 components: - type: Transform - pos: -9.5,3.5 + pos: 18.5,25.5 parent: 1 - - uid: 923 + - uid: 1322 components: - type: Transform - pos: -9.5,2.5 + pos: 11.5,17.5 parent: 1 - - uid: 924 + - uid: 1326 components: - type: Transform - pos: -9.5,1.5 + pos: 11.5,13.5 parent: 1 - - uid: 927 + - uid: 1328 components: - type: Transform - pos: -3.5,-17.5 + pos: 12.5,13.5 parent: 1 - - uid: 928 + - uid: 1330 components: - type: Transform - pos: -1.5,-16.5 + pos: 13.5,13.5 parent: 1 - - uid: 929 + - uid: 1332 components: - type: Transform - pos: -3.5,-15.5 + pos: 14.5,13.5 parent: 1 - - uid: 930 + - uid: 1334 components: - type: Transform - pos: -2.5,-15.5 + pos: 15.5,13.5 parent: 1 - - uid: 931 + - uid: 1335 components: - type: Transform - pos: -2.5,-16.5 + pos: 15.5,16.5 parent: 1 - - uid: 932 + - uid: 1336 components: - type: Transform - pos: -2.5,-17.5 + pos: 16.5,13.5 parent: 1 - - uid: 933 + - uid: 1338 components: - type: Transform - pos: -1.5,-15.5 + pos: 16.5,14.5 parent: 1 - - uid: 934 + - uid: 1339 components: - type: Transform - pos: -16.5,-6.5 + pos: 16.5,15.5 parent: 1 - - uid: 935 + - uid: 1340 components: - type: Transform - pos: -16.5,-7.5 + pos: 16.5,16.5 parent: 1 - - uid: 945 + - uid: 1345 components: - type: Transform - pos: -16.5,-9.5 + pos: 14.5,19.5 parent: 1 - - uid: 946 + - uid: 1346 components: - type: Transform - pos: -19.5,-10.5 + pos: 12.5,19.5 parent: 1 - - uid: 947 + - uid: 1348 components: - type: Transform - pos: -18.5,-10.5 + pos: -14.5,34.5 parent: 1 - - uid: 948 + - uid: 1349 components: - type: Transform - pos: -17.5,-10.5 + pos: 12.5,26.5 parent: 1 - - uid: 949 + - uid: 1351 components: - type: Transform - pos: -18.5,-9.5 + pos: 12.5,25.5 parent: 1 - - uid: 950 + - uid: 1354 components: - type: Transform - pos: -17.5,-9.5 + pos: -10.5,33.5 parent: 1 - - uid: 951 + - uid: 1356 components: - type: Transform - pos: -17.5,-8.5 + pos: -16.5,33.5 parent: 1 - - uid: 952 + - uid: 1357 components: - type: Transform - pos: -17.5,-7.5 + pos: -15.5,33.5 parent: 1 - - uid: 953 + - uid: 1358 components: - type: Transform - pos: -19.5,-9.5 + pos: -15.5,34.5 parent: 1 - - uid: 954 + - uid: 1359 components: - type: Transform - pos: -20.5,-9.5 + pos: -17.5,33.5 parent: 1 - - uid: 955 + - uid: 1360 components: - type: Transform - pos: -21.5,-8.5 + pos: 20.5,26.5 parent: 1 - - uid: 956 + - uid: 1365 components: - type: Transform - pos: -20.5,-8.5 + pos: 20.5,25.5 parent: 1 - - uid: 957 + - uid: 1367 components: - type: Transform - pos: -17.5,-6.5 + pos: 19.5,27.5 parent: 1 - - uid: 958 + - uid: 1369 components: - type: Transform - pos: 20.5,3.5 + pos: -8.5,36.5 parent: 1 - - uid: 959 + - uid: 1373 components: - type: Transform - pos: -18.5,-8.5 + pos: 20.5,24.5 parent: 1 - - uid: 960 + - uid: 1375 components: - type: Transform - pos: -13.5,-13.5 + pos: 20.5,27.5 parent: 1 - - uid: 961 + - uid: 1376 components: - type: Transform - pos: -12.5,-13.5 + pos: 17.5,25.5 parent: 1 - - uid: 962 + - uid: 1379 components: - type: Transform - pos: -11.5,-13.5 + pos: 20.5,20.5 parent: 1 - - uid: 963 + - uid: 1380 components: - type: Transform - pos: -11.5,-14.5 + pos: 20.5,19.5 parent: 1 - - uid: 964 + - uid: 1381 components: - type: Transform - pos: -10.5,-14.5 + pos: 1.5,34.5 parent: 1 - - uid: 965 + - uid: 1386 components: - type: Transform - pos: -9.5,-14.5 + pos: 13.5,20.5 parent: 1 - - uid: 966 + - uid: 1389 components: - type: Transform - pos: -9.5,-15.5 + pos: 13.5,25.5 parent: 1 - - uid: 967 + - uid: 1413 components: - type: Transform - pos: -8.5,-15.5 + pos: 10.5,26.5 parent: 1 - - uid: 968 + - uid: 1414 components: - type: Transform - pos: -10.5,-13.5 + pos: 10.5,27.5 parent: 1 - - uid: 969 + - uid: 1419 components: - type: Transform - pos: -12.5,-12.5 + pos: -8.5,31.5 parent: 1 - - uid: 970 + - uid: 1493 components: - type: Transform - pos: -13.5,-12.5 + pos: -11.5,33.5 parent: 1 - - uid: 971 + - uid: 1525 components: - type: Transform - pos: -16.5,-11.5 + pos: -13.5,31.5 parent: 1 - - uid: 972 + - uid: 1526 components: - type: Transform - pos: -15.5,-12.5 + pos: -15.5,31.5 parent: 1 - - uid: 973 + - uid: 1529 components: - type: Transform - pos: -14.5,-12.5 + pos: -12.5,33.5 parent: 1 - - uid: 978 + - uid: 1530 components: - type: Transform - pos: 6.5,-21.5 + pos: -13.5,33.5 parent: 1 - - uid: 979 + - uid: 1531 components: - type: Transform - pos: 6.5,-22.5 + pos: -14.5,33.5 parent: 1 - - uid: 980 + - uid: 1532 components: - type: Transform - pos: 6.5,-23.5 + pos: -12.5,31.5 parent: 1 - - uid: 981 + - uid: 1534 components: - type: Transform - pos: 6.5,-24.5 + pos: 18.5,27.5 parent: 1 - - uid: 982 + - uid: 1535 components: - type: Transform - pos: 6.5,-25.5 + pos: 19.5,25.5 parent: 1 - - uid: 983 + - uid: 1537 components: - type: Transform - pos: 6.5,-26.5 + pos: -17.5,32.5 parent: 1 - - uid: 986 + - uid: 1559 components: - type: Transform - pos: -13.5,4.5 + pos: 4.5,29.5 parent: 1 - - uid: 988 + - uid: 1569 components: - type: Transform - pos: -12.5,4.5 + pos: 4.5,32.5 parent: 1 - - uid: 989 + - uid: 1570 components: - type: Transform - pos: -16.5,5.5 + pos: 1.5,30.5 parent: 1 - - uid: 990 + - uid: 1571 components: - type: Transform - pos: -17.5,5.5 + pos: 0.5,30.5 parent: 1 - - uid: 991 + - uid: 1572 components: - type: Transform - pos: -18.5,5.5 + pos: -0.5,30.5 parent: 1 - - uid: 1166 + - uid: 1573 components: - type: Transform - pos: 6.5,-27.5 + pos: -1.5,30.5 parent: 1 - - uid: 1167 + - uid: 1575 components: - type: Transform - pos: 6.5,-28.5 + pos: -3.5,30.5 parent: 1 - - uid: 1168 + - uid: 1576 components: - type: Transform - pos: 5.5,-28.5 + pos: -4.5,30.5 parent: 1 - - uid: 1169 + - uid: 1577 components: - type: Transform - pos: 5.5,-27.5 + pos: -5.5,30.5 parent: 1 - - uid: 1170 + - uid: 1578 components: - type: Transform - pos: 7.5,-25.5 + pos: -6.5,30.5 parent: 1 - - uid: 1171 + - uid: 1579 components: - type: Transform - pos: 7.5,-24.5 + pos: -7.5,30.5 parent: 1 - - uid: 1172 + - uid: 1580 components: - type: Transform - pos: 7.5,-23.5 + pos: -8.5,30.5 parent: 1 - - uid: 1173 + - uid: 1581 components: - type: Transform - pos: 7.5,-22.5 + pos: 2.5,29.5 parent: 1 - - uid: 1174 + - uid: 1582 components: - type: Transform - pos: 7.5,-21.5 + pos: 3.5,29.5 parent: 1 - - uid: 1175 + - uid: 1583 components: - type: Transform - pos: 8.5,-25.5 + pos: 1.5,29.5 parent: 1 - - uid: 1176 + - uid: 1584 components: - type: Transform - pos: 8.5,-24.5 + pos: 2.5,28.5 parent: 1 - - uid: 1177 + - uid: 1585 components: - type: Transform - pos: 8.5,-23.5 + pos: 3.5,28.5 parent: 1 - - uid: 1178 + - uid: 1586 components: - type: Transform - pos: 8.5,-22.5 + pos: 4.5,28.5 parent: 1 - - uid: 1179 + - uid: 1587 components: - type: Transform - pos: 8.5,-21.5 + pos: 4.5,27.5 parent: 1 - - uid: 1180 + - uid: 1588 components: - type: Transform - pos: 9.5,-24.5 + pos: -4.5,29.5 parent: 1 - - uid: 1181 + - uid: 1589 components: - type: Transform - pos: 9.5,-23.5 + pos: -5.5,29.5 parent: 1 - - uid: 1182 + - uid: 1590 components: - type: Transform - pos: 9.5,-22.5 + pos: -6.5,29.5 parent: 1 - - uid: 1183 + - uid: 1591 components: - type: Transform - pos: 9.5,-21.5 + pos: -7.5,29.5 parent: 1 - - uid: 1184 + - uid: 1592 components: - type: Transform - pos: 10.5,-24.5 + pos: -7.5,28.5 parent: 1 - - uid: 1185 + - uid: 1593 components: - type: Transform - pos: 10.5,-23.5 + pos: -8.5,29.5 parent: 1 - - uid: 1186 + - uid: 1594 components: - type: Transform - pos: 10.5,-22.5 + pos: -8.5,28.5 parent: 1 - - uid: 1187 + - uid: 1595 components: - type: Transform - pos: 10.5,-21.5 + pos: -8.5,27.5 parent: 1 - - uid: 1188 + - uid: 1596 components: - type: Transform - pos: 11.5,-23.5 + pos: -9.5,28.5 parent: 1 - - uid: 1189 + - uid: 1603 components: - type: Transform - pos: 11.5,-22.5 + pos: -9.5,29.5 parent: 1 - - uid: 1190 + - uid: 1605 components: - type: Transform - pos: 11.5,-21.5 + pos: 9.5,25.5 parent: 1 - - uid: 1191 + - uid: 1609 components: - type: Transform - pos: 12.5,-22.5 + pos: -15.5,29.5 parent: 1 - - uid: 1192 + - uid: 1610 components: - type: Transform - pos: 12.5,-21.5 + pos: -16.5,29.5 parent: 1 - - uid: 1193 + - uid: 1611 components: - type: Transform - pos: 12.5,-20.5 + pos: -9.5,30.5 parent: 1 - - uid: 1194 + - uid: 1617 components: - type: Transform - pos: 12.5,-19.5 + pos: -15.5,30.5 parent: 1 - - uid: 1195 + - uid: 1618 components: - type: Transform - pos: 12.5,-18.5 + pos: -17.5,31.5 parent: 1 - - uid: 1196 + - uid: 1626 components: - type: Transform - pos: 13.5,-22.5 + pos: -9.5,31.5 parent: 1 - - uid: 1197 + - uid: 1629 components: - type: Transform - pos: 13.5,-21.5 + pos: -6.5,31.5 parent: 1 - - uid: 1198 + - uid: 1630 components: - type: Transform - pos: 13.5,-20.5 + pos: -7.5,31.5 parent: 1 - - uid: 1199 + - uid: 1633 components: - type: Transform - pos: 13.5,-19.5 + pos: -10.5,31.5 parent: 1 - - uid: 1200 + - uid: 1634 components: - type: Transform - pos: 13.5,-18.5 + pos: -11.5,31.5 parent: 1 - - uid: 1201 + - uid: 1637 components: - type: Transform - pos: 14.5,-21.5 + pos: -18.5,30.5 parent: 1 - - uid: 1202 + - uid: 1638 components: - type: Transform - pos: 14.5,-20.5 + pos: -18.5,29.5 parent: 1 - - uid: 1203 + - uid: 1642 components: - type: Transform - pos: 14.5,-19.5 + pos: -9.5,34.5 parent: 1 - - uid: 1204 + - uid: 1643 components: - type: Transform - pos: 14.5,-18.5 + pos: -9.5,35.5 parent: 1 - - uid: 1205 + - uid: 1644 components: - type: Transform - pos: 15.5,-21.5 + pos: -9.5,36.5 parent: 1 - - uid: 1206 + - uid: 1646 components: - type: Transform - pos: 15.5,-20.5 + pos: 1.5,35.5 parent: 1 - - uid: 1207 + - uid: 1650 components: - type: Transform - pos: 15.5,-19.5 + pos: 5.5,37.5 parent: 1 - - uid: 1208 + - uid: 1652 components: - type: Transform - pos: 15.5,-18.5 + pos: -7.5,36.5 parent: 1 - - uid: 1209 + - uid: 1655 components: - type: Transform - pos: 16.5,-20.5 + pos: 1.5,31.5 parent: 1 - - uid: 1210 + - uid: 1656 components: - type: Transform - pos: 16.5,-19.5 + pos: 3.5,32.5 parent: 1 - - uid: 1211 + - uid: 1657 components: - type: Transform - pos: 16.5,-18.5 + pos: 3.5,31.5 parent: 1 - - uid: 1212 + - uid: 1658 components: - type: Transform - pos: 16.5,-17.5 + pos: 4.5,31.5 parent: 1 - - uid: 1213 + - uid: 1664 components: - type: Transform - pos: 16.5,-16.5 + pos: 12.5,27.5 parent: 1 - - uid: 1214 + - uid: 1665 components: - type: Transform - pos: 16.5,-15.5 + pos: 0.5,31.5 parent: 1 - - uid: 1215 + - uid: 1666 components: - type: Transform - pos: 16.5,-14.5 + pos: 0.5,32.5 parent: 1 - - uid: 1216 + - uid: 1669 components: - type: Transform - pos: 16.5,-13.5 + pos: -7.5,35.5 parent: 1 - - uid: 1217 + - uid: 1671 components: - type: Transform - pos: 17.5,-17.5 + pos: 2.5,39.5 parent: 1 - - uid: 1218 + - uid: 1673 components: - type: Transform - pos: 17.5,-16.5 + pos: 2.5,33.5 parent: 1 - - uid: 1219 + - uid: 1674 components: - type: Transform - pos: 17.5,-15.5 + pos: 2.5,34.5 parent: 1 - - uid: 1220 + - uid: 1676 components: - type: Transform - pos: 17.5,-14.5 + pos: 3.5,33.5 parent: 1 - - uid: 1221 + - uid: 1679 components: - type: Transform - pos: 17.5,-13.5 + pos: 1.5,36.5 parent: 1 - - uid: 1222 + - uid: 1680 components: - type: Transform - pos: 17.5,-12.5 + pos: 4.5,33.5 parent: 1 - - uid: 1223 + - uid: 1681 components: - type: Transform - pos: 17.5,-11.5 + pos: 5.5,33.5 parent: 1 - - uid: 1224 + - uid: 1682 components: - type: Transform - pos: 16.5,-11.5 + pos: 6.5,33.5 parent: 1 - - uid: 1225 + - uid: 1683 components: - type: Transform - pos: 16.5,-12.5 + pos: 7.5,33.5 parent: 1 - - uid: 1226 + - uid: 1684 components: - type: Transform - pos: 18.5,-14.5 + pos: 8.5,33.5 parent: 1 - - uid: 1227 + - uid: 1685 components: - type: Transform - pos: 18.5,-13.5 + pos: 9.5,33.5 parent: 1 - - uid: 1228 + - uid: 1686 components: - type: Transform - pos: 18.5,-12.5 + pos: 10.5,33.5 parent: 1 - - uid: 1229 + - uid: 1687 components: - type: Transform - pos: 18.5,-11.5 + pos: 11.5,33.5 parent: 1 - - uid: 1230 + - uid: 1688 components: - type: Transform - pos: 18.5,-15.5 + pos: 12.5,33.5 parent: 1 - - uid: 1231 + - uid: 1700 components: - type: Transform - pos: 18.5,-16.5 + pos: 1.5,38.5 parent: 1 - - uid: 1232 + - uid: 1702 components: - type: Transform - pos: 17.5,-18.5 + pos: -7.5,34.5 parent: 1 - - uid: 1233 + - uid: 1704 components: - type: Transform - pos: 19.5,-14.5 + pos: -7.5,32.5 parent: 1 - - uid: 1234 + - uid: 1705 components: - type: Transform - pos: 19.5,-13.5 + pos: -8.5,34.5 parent: 1 - - uid: 1235 + - uid: 1706 components: - type: Transform - pos: 19.5,-12.5 + pos: -8.5,35.5 parent: 1 - - uid: 1236 + - uid: 1708 components: - type: Transform - pos: 19.5,-11.5 + pos: 1.5,37.5 parent: 1 - - uid: 1237 + - uid: 1713 components: - type: Transform - pos: 19.5,-10.5 + pos: -7.5,37.5 parent: 1 - - uid: 1238 + - uid: 1720 components: - type: Transform - pos: 19.5,-9.5 + pos: -6.5,38.5 parent: 1 - - uid: 1239 + - uid: 1721 components: - type: Transform - pos: 19.5,-8.5 + pos: -7.5,38.5 parent: 1 - - uid: 1240 + - uid: 1732 components: - type: Transform - pos: 19.5,-7.5 + pos: 10.5,19.5 parent: 1 - - uid: 1241 + - uid: 1733 components: - type: Transform - pos: 19.5,-6.5 + pos: 0.5,39.5 parent: 1 - - uid: 1242 + - uid: 1736 components: - type: Transform - pos: 19.5,-5.5 + pos: 3.5,37.5 parent: 1 - - uid: 1243 + - uid: 1737 components: - type: Transform - pos: 19.5,-4.5 + pos: 1.5,39.5 parent: 1 - - uid: 1244 + - uid: 1738 components: - type: Transform - pos: 19.5,-3.5 + pos: -6.5,39.5 parent: 1 - - uid: 1245 + - uid: 1739 components: - type: Transform - pos: 19.5,-2.5 + pos: 9.5,34.5 parent: 1 - - uid: 1246 + - uid: 1807 components: - type: Transform - pos: 19.5,-1.5 + pos: -13.5,34.5 parent: 1 - - uid: 1247 + - uid: 1808 components: - type: Transform - pos: 19.5,-0.5 + pos: -12.5,34.5 parent: 1 - - uid: 1248 + - uid: 1809 components: - type: Transform - pos: 19.5,0.5 + pos: -11.5,34.5 parent: 1 - - uid: 1249 + - uid: 1810 components: - type: Transform - pos: 19.5,1.5 + pos: -10.5,34.5 parent: 1 - - uid: 1250 + - uid: 1839 components: - type: Transform - pos: 19.5,2.5 + pos: 2.5,38.5 parent: 1 - - uid: 1251 + - uid: 1840 components: - type: Transform - pos: 19.5,3.5 + pos: 3.5,38.5 parent: 1 - - uid: 1252 + - uid: 1841 components: - type: Transform - pos: 19.5,4.5 + pos: 2.5,37.5 parent: 1 - - uid: 1253 + - uid: 1843 components: - type: Transform - pos: 19.5,5.5 + pos: 5.5,36.5 parent: 1 - - uid: 1254 + - uid: 1844 components: - type: Transform - pos: 18.5,2.5 + pos: 3.5,34.5 parent: 1 - - uid: 1255 + - uid: 1847 components: - type: Transform - pos: 18.5,3.5 + pos: 4.5,34.5 parent: 1 - - uid: 1256 + - uid: 1850 components: - type: Transform - pos: 18.5,4.5 + pos: 5.5,34.5 parent: 1 - - uid: 1257 + - uid: 1853 components: - type: Transform - pos: 18.5,5.5 + pos: 6.5,34.5 parent: 1 - - uid: 1258 + - uid: 1856 components: - type: Transform - pos: 18.5,6.5 + pos: 7.5,34.5 parent: 1 - - uid: 1259 + - uid: 1859 components: - type: Transform - pos: 18.5,7.5 + pos: 8.5,34.5 parent: 1 - - uid: 1260 + - uid: 1864 components: - type: Transform - pos: 17.5,5.5 + pos: 4.5,37.5 parent: 1 - - uid: 1261 + - uid: 1879 components: - type: Transform - pos: 17.5,6.5 + pos: -15.5,18.5 parent: 1 - - uid: 1262 + - uid: 1880 components: - type: Transform - pos: 17.5,7.5 + pos: -15.5,19.5 parent: 1 - - uid: 1263 + - uid: 1925 components: - type: Transform - pos: 17.5,8.5 + pos: 13.5,27.5 parent: 1 - - uid: 1264 + - uid: 1926 components: - type: Transform - pos: 17.5,9.5 + pos: 14.5,33.5 parent: 1 - - uid: 1265 + - uid: 1932 components: - type: Transform - pos: 17.5,10.5 + pos: 14.5,27.5 parent: 1 - - uid: 1266 + - uid: 1933 components: - type: Transform - pos: 16.5,9.5 + pos: 15.5,33.5 parent: 1 - - uid: 1267 + - uid: 1939 components: - type: Transform - pos: 16.5,10.5 + pos: 15.5,27.5 parent: 1 - - uid: 1268 + - uid: 1940 components: - type: Transform - pos: 16.5,11.5 + pos: 16.5,33.5 parent: 1 - - uid: 1269 + - uid: 1941 components: - type: Transform - pos: 18.5,8.5 + pos: 16.5,32.5 parent: 1 - - uid: 1270 + - uid: 1946 components: - type: Transform - pos: 18.5,9.5 + pos: 16.5,27.5 parent: 1 - - uid: 1271 + - uid: 1947 components: - type: Transform - pos: 18.5,10.5 + pos: 17.5,33.5 parent: 1 - - uid: 1272 + - uid: 1948 components: - type: Transform - pos: 18.5,11.5 + pos: 17.5,32.5 parent: 1 - - uid: 1273 + - uid: 1949 components: - type: Transform - pos: 17.5,11.5 + pos: 17.5,31.5 parent: 1 - - uid: 1274 + - uid: 1950 components: - type: Transform - pos: 17.5,12.5 + pos: 17.5,30.5 parent: 1 - - uid: 1275 + - uid: 1951 components: - type: Transform - pos: 16.5,12.5 + pos: 17.5,29.5 parent: 1 - - uid: 1276 + - uid: 1952 components: - type: Transform - pos: 11.5,13.5 + pos: 17.5,28.5 parent: 1 - - uid: 1714 + - uid: 1953 components: - type: Transform - pos: -0.5,9.5 + pos: 17.5,27.5 parent: 1 - - uid: 1798 + - uid: 1957 components: - type: Transform - pos: 0.5,9.5 + pos: 19.5,31.5 parent: 1 - - uid: 1801 + - uid: 1958 components: - type: Transform - pos: 0.5,8.5 + pos: 18.5,28.5 parent: 1 - - uid: 1802 + - uid: 1960 components: - type: Transform - pos: 1.5,8.5 + pos: 18.5,30.5 parent: 1 - - uid: 1860 + - uid: 1961 components: - type: Transform - pos: 20.5,2.5 + pos: 18.5,31.5 parent: 1 - - uid: 1861 +- proto: WallSolid + entities: + - uid: 10 components: - type: Transform - pos: 20.5,1.5 + pos: 6.5,4.5 parent: 1 - - uid: 1862 + - uid: 29 components: - type: Transform - pos: 20.5,0.5 + pos: -2.5,2.5 parent: 1 - - uid: 1863 + - uid: 30 components: - type: Transform - pos: 20.5,-0.5 + pos: -4.5,2.5 parent: 1 - - uid: 1864 + - uid: 37 components: - type: Transform - pos: 20.5,-1.5 + pos: -2.5,9.5 parent: 1 - - uid: 1865 + - uid: 40 components: - type: Transform - pos: 20.5,-2.5 + pos: -1.5,9.5 parent: 1 - - uid: 1866 + - uid: 42 components: - type: Transform - pos: 20.5,-3.5 + pos: 0.5,9.5 parent: 1 - - uid: 1867 + - uid: 43 components: - type: Transform - pos: 20.5,-4.5 + pos: 1.5,9.5 parent: 1 - - uid: 1868 + - uid: 54 components: - type: Transform - pos: 20.5,-5.5 + pos: 1.5,11.5 parent: 1 - - uid: 1869 + - uid: 55 components: - type: Transform - pos: 20.5,-6.5 + pos: 1.5,10.5 parent: 1 - - uid: 1870 + - uid: 66 components: - type: Transform - pos: 20.5,-7.5 + rot: 3.141592653589793 rad + pos: 5.5,13.5 parent: 1 - - uid: 1871 + - uid: 71 components: - type: Transform - pos: 21.5,-5.5 + rot: 3.141592653589793 rad + pos: 8.5,2.5 parent: 1 - - uid: 1872 + - uid: 82 components: - type: Transform - pos: 21.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,9.5 parent: 1 - - uid: 1873 + - uid: 101 components: - type: Transform - pos: 21.5,-3.5 + pos: 5.5,2.5 parent: 1 - - uid: 1874 + - uid: 132 components: - type: Transform - pos: 21.5,-2.5 + pos: -5.5,2.5 parent: 1 - - uid: 1875 + - uid: 133 components: - type: Transform - pos: 21.5,-1.5 + pos: -6.5,2.5 parent: 1 - - uid: 1876 + - uid: 134 components: - type: Transform - pos: 21.5,-0.5 + pos: -7.5,2.5 parent: 1 - - uid: 1877 + - uid: 135 components: - type: Transform - pos: 21.5,0.5 + pos: -8.5,2.5 parent: 1 - - uid: 1878 + - uid: 195 components: - type: Transform - pos: 21.5,1.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1879 + - uid: 224 components: - type: Transform - pos: 20.5,-8.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1 -- proto: WallWood - entities: - - uid: 317 + - uid: 250 components: - type: Transform - pos: -0.5,-14.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1 - - uid: 510 + - uid: 261 components: - type: Transform - pos: -8.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,4.5 parent: 1 - - uid: 514 + - uid: 279 components: - type: Transform - pos: 0.5,-1.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 1 - - uid: 532 + - uid: 284 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 parent: 1 - - uid: 533 + - uid: 290 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - - uid: 782 + - uid: 369 components: - type: Transform - pos: -8.5,1.5 + rot: 3.141592653589793 rad + pos: 8.5,9.5 parent: 1 - - uid: 789 + - uid: 384 components: - type: Transform - pos: -8.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,9.5 parent: 1 - - uid: 812 + - uid: 420 components: - type: Transform - pos: 11.5,-3.5 + pos: 5.5,5.5 parent: 1 - - uid: 814 + - uid: 421 components: - type: Transform - pos: 11.5,-6.5 + pos: 5.5,4.5 parent: 1 - - uid: 815 + - uid: 453 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,13.5 parent: 1 - - uid: 816 + - uid: 572 components: - type: Transform - pos: 10.5,-6.5 + rot: 3.141592653589793 rad + pos: 5.5,10.5 parent: 1 - - uid: 817 + - uid: 574 components: - type: Transform - pos: 10.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,6.5 parent: 1 - - uid: 818 + - uid: 589 components: - type: Transform - pos: 9.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,7.5 parent: 1 - - uid: 819 + - uid: 590 components: - type: Transform - pos: 8.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,8.5 parent: 1 - - uid: 820 + - uid: 605 components: - type: Transform - pos: 9.5,-6.5 + pos: 4.5,9.5 parent: 1 - - uid: 821 + - uid: 644 components: - type: Transform - pos: 8.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,7.5 parent: 1 - - uid: 826 + - uid: 656 components: - type: Transform - pos: 11.5,-2.5 + rot: 3.141592653589793 rad + pos: 8.5,6.5 parent: 1 - - uid: 827 + - uid: 664 components: - type: Transform - pos: 11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 1 - - uid: 835 + - uid: 665 components: - type: Transform - pos: 11.5,-1.5 + rot: 3.141592653589793 rad + pos: 8.5,7.5 parent: 1 - - uid: 837 + - uid: 688 components: - type: Transform - pos: -8.5,3.5 + rot: -1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - - uid: 839 + - uid: 810 components: - type: Transform - pos: -7.5,0.5 + pos: 2.5,13.5 parent: 1 - - uid: 845 + - uid: 814 components: - type: Transform - pos: -8.5,0.5 + pos: 1.5,13.5 parent: 1 - - uid: 847 + - uid: 963 components: - type: Transform - pos: -8.5,2.5 + pos: -2.5,8.5 parent: 1 - - uid: 848 + - uid: 964 components: - type: Transform - pos: -5.5,4.5 + pos: -2.5,7.5 parent: 1 - - uid: 849 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 1934 components: - type: Transform - pos: -2.5,-1.5 + rot: 1.5707963267948966 rad + pos: -15.5,25.5 parent: 1 - - uid: 850 +- proto: WallWood + entities: + - uid: 676 components: - type: Transform - pos: -4.5,-1.5 + pos: 9.5,29.5 parent: 1 - - uid: 852 + - uid: 685 components: - type: Transform - pos: -5.5,3.5 + pos: 9.5,30.5 parent: 1 - - uid: 853 + - uid: 1189 components: - type: Transform - pos: -8.5,4.5 + pos: -15.5,23.5 parent: 1 - - uid: 854 + - uid: 1190 components: - type: Transform - pos: -3.5,-1.5 + pos: -15.5,25.5 parent: 1 - - uid: 857 + - uid: 1191 components: - type: Transform - pos: 2.5,-1.5 + pos: -15.5,24.5 parent: 1 - - uid: 860 + - uid: 1234 components: - type: Transform - pos: -12.5,-10.5 + pos: 7.5,32.5 parent: 1 - - uid: 865 + - uid: 1235 components: - type: Transform - pos: -3.5,-14.5 + pos: 6.5,32.5 parent: 1 - - uid: 868 + - uid: 1316 components: - type: Transform - pos: -5.5,-0.5 + pos: 9.5,20.5 parent: 1 - - uid: 872 + - uid: 1323 components: - type: Transform - pos: 1.5,-1.5 + pos: 9.5,24.5 parent: 1 - - uid: 873 + - uid: 1341 components: - type: Transform - pos: -4.5,-14.5 + pos: 9.5,23.5 parent: 1 - - uid: 878 + - uid: 1343 components: - type: Transform - pos: -6.5,0.5 + pos: 9.5,21.5 parent: 1 - - uid: 896 + - uid: 1353 components: - type: Transform - pos: 8.5,-0.5 + pos: 9.5,19.5 parent: 1 - - uid: 898 + - uid: 1361 components: - type: Transform - pos: 7.5,-1.5 + pos: -6.5,33.5 parent: 1 - - uid: 899 + - uid: 1415 components: - type: Transform - pos: 6.5,-1.5 + pos: 9.5,28.5 parent: 1 - - uid: 900 + - uid: 1416 components: - type: Transform - pos: 4.5,-1.5 + pos: 10.5,28.5 parent: 1 - - uid: 901 + - uid: 1420 components: - type: Transform - pos: 3.5,-1.5 + pos: 11.5,28.5 parent: 1 - - uid: 902 + - uid: 1568 components: - type: Transform - pos: 3.5,-0.5 + pos: 5.5,29.5 parent: 1 - - uid: 903 + - uid: 1614 components: - type: Transform - pos: 3.5,0.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 1 - - uid: 904 + - uid: 1622 components: - type: Transform - pos: 3.5,1.5 + pos: -7.5,33.5 parent: 1 - - uid: 905 + - uid: 1631 components: - type: Transform - pos: 3.5,2.5 + pos: 11.5,27.5 parent: 1 - - uid: 906 + - uid: 1648 components: - type: Transform - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,34.5 parent: 1 - - uid: 907 + - uid: 1651 components: - type: Transform - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: -6.5,36.5 parent: 1 - - uid: 908 + - uid: 1659 components: - type: Transform - pos: 4.5,4.5 + pos: 5.5,32.5 parent: 1 - - uid: 909 + - uid: 1667 components: - type: Transform - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 parent: 1 - - uid: 910 + - uid: 1668 components: - type: Transform - pos: 6.5,4.5 + rot: -1.5707963267948966 rad + pos: -0.5,33.5 parent: 1 - - uid: 911 + - uid: 1670 components: - type: Transform - pos: 7.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,38.5 parent: 1 - - uid: 912 + - uid: 1699 components: - type: Transform - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: -6.5,35.5 parent: 1 - - uid: 913 + - uid: 1712 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,37.5 parent: 1 - - uid: 925 + - uid: 1714 components: - type: Transform - pos: -2.5,-14.5 + rot: -1.5707963267948966 rad + pos: -6.5,37.5 parent: 1 - - uid: 926 + - uid: 1715 components: - type: Transform - pos: -1.5,-14.5 + rot: -1.5707963267948966 rad + pos: 0.5,36.5 parent: 1 - - uid: 936 + - uid: 1716 components: - type: Transform - pos: -5.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,35.5 parent: 1 - - uid: 937 + - uid: 1717 components: - type: Transform - pos: -6.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,34.5 parent: 1 - - uid: 938 + - uid: 1719 components: - type: Transform - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 939 + - uid: 1723 components: - type: Transform - pos: -8.5,-5.5 + pos: 0.5,38.5 parent: 1 - - uid: 940 + - uid: 1749 components: - type: Transform - pos: -15.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,39.5 parent: 1 - - uid: 941 + - uid: 1801 components: - type: Transform - pos: -13.5,-5.5 + pos: 1.5,33.5 parent: 1 - - uid: 942 + - uid: 1802 components: - type: Transform - pos: -14.5,-5.5 + pos: 5.5,31.5 parent: 1 - - uid: 943 + - uid: 1832 components: - type: Transform - pos: -12.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,39.5 parent: 1 - - uid: 944 + - uid: 1852 components: - type: Transform - pos: -16.5,-5.5 + pos: 5.5,30.5 parent: 1 - - uid: 974 + - uid: 1862 components: - type: Transform - pos: -0.5,-13.5 + pos: 5.5,28.5 parent: 1 - - uid: 975 + - uid: 1907 components: - type: Transform - pos: -0.5,-9.5 + pos: -15.5,20.5 parent: 1 - - uid: 976 + - uid: 1916 components: - type: Transform - pos: -0.5,-6.5 + pos: -15.5,21.5 parent: 1 - - uid: 977 + - uid: 1919 components: - type: Transform - pos: -0.5,-5.5 + pos: 13.5,28.5 parent: 1 - - uid: 1013 + - uid: 1930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 + pos: 8.5,32.5 parent: 1 - - uid: 1014 + - uid: 1931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 + pos: 15.5,32.5 parent: 1 - - uid: 1035 + - uid: 1937 components: - type: Transform - pos: -1.5,-5.5 + pos: 9.5,32.5 parent: 1 - - uid: 1139 + - uid: 1938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 + pos: 14.5,32.5 parent: 1 - - uid: 1140 + - uid: 1942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 + pos: 11.5,32.5 parent: 1 - - uid: 1908 + - uid: 1943 components: - type: Transform - pos: -5.5,-1.5 + pos: 10.5,32.5 parent: 1 - - uid: 1910 + - uid: 1944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 + pos: 12.5,32.5 parent: 1 -- proto: WarpPoint - entities: - - uid: 1907 + - uid: 1945 components: - type: Transform - pos: -4.5,-3.5 + pos: 13.5,32.5 parent: 1 - - type: WarpPoint - location: Pirate's Cove -- proto: WaterTankFull - entities: - - uid: 1704 + - uid: 2003 components: - type: Transform - pos: -15.5,-6.5 + pos: 12.5,28.5 parent: 1 -- proto: WeaponLauncherPirateCannon - entities: - - uid: 1668 + - uid: 2042 components: - type: Transform - pos: 2.607525,3.4844034 + pos: 15.5,31.5 parent: 1 -- proto: WeaponRevolverPirate - entities: - - uid: 1666 + - uid: 2043 components: - type: Transform - pos: 2.607525,-0.7343466 + pos: 16.5,31.5 parent: 1 -- proto: Window - entities: - - uid: 1127 + - uid: 2044 components: - type: Transform - pos: -7.5,4.5 + pos: 16.5,30.5 parent: 1 - - uid: 1135 + - uid: 2045 components: - type: Transform - pos: -6.5,4.5 + pos: 16.5,29.5 parent: 1 - - uid: 1141 + - uid: 2046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: 16.5,28.5 parent: 1 - - uid: 1142 + - uid: 2047 components: - type: Transform - pos: 8.5,2.5 + pos: 15.5,28.5 parent: 1 - - uid: 1143 + - uid: 2048 components: - type: Transform - pos: 8.5,1.5 + pos: 14.5,28.5 parent: 1 - - uid: 1144 + - uid: 2049 components: - type: Transform - pos: 8.5,0.5 + pos: 4.5,30.5 parent: 1 - - uid: 1145 +- proto: WallWoodDiagonal + entities: + - uid: 1698 components: - type: Transform - pos: -11.5,-5.5 + rot: 3.141592653589793 rad + pos: -5.5,36.5 parent: 1 - - uid: 1146 + - uid: 1711 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,37.5 parent: 1 - - uid: 1147 +- proto: WarpPointShip + entities: + - uid: 327 components: + - type: MetaData + name: Pirate's Cove - type: Transform - pos: -9.5,-5.5 + pos: 1.5,6.5 parent: 1 - - uid: 1148 +- proto: WaterTankHighCapacity + entities: + - uid: 306 components: - type: Transform - pos: -4.5,-5.5 + pos: -3.5,7.5 parent: 1 - - uid: 1149 +- proto: WeaponDisabler + entities: + - uid: 1911 components: - type: Transform - pos: -3.5,-5.5 - parent: 1 - - uid: 1150 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1912 components: - type: Transform - pos: -2.5,-5.5 - parent: 1 - - uid: 1151 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1913 components: - type: Transform - pos: -0.5,-10.5 - parent: 1 - - uid: 1152 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1914 components: - type: Transform - pos: -0.5,-11.5 - parent: 1 - - uid: 1153 + parent: 1875 + - type: Physics + canCollide: False +- proto: WeaponRackPistolBase + entities: + - uid: 1875 components: - type: Transform - pos: -0.5,-12.5 + pos: -14.5,24.5 parent: 1 - - uid: 1154 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1911 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1914 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1912 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1913 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRifleBB + entities: + - uid: 1695 components: - type: Transform - pos: -7.5,-14.5 + pos: 23.56418,24.946178 parent: 1 - - uid: 1155 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 395 components: - type: Transform - pos: -6.5,-14.5 + pos: -0.5,13.5 parent: 1 - - uid: 1156 +- proto: WindoorSecure + entities: + - uid: 32 components: - type: Transform - pos: -5.5,-14.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1157 + - uid: 44 components: - type: Transform - pos: -8.5,-13.5 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1158 +- proto: WoodDoor + entities: + - uid: 8 components: - type: Transform - pos: -8.5,-12.5 + pos: -3.5,2.5 parent: 1 - - uid: 1159 + - uid: 16 components: - type: Transform - pos: -8.5,-11.5 + pos: 5.5,3.5 parent: 1 - - uid: 1160 + - uid: 122 components: - type: Transform - pos: -11.5,-10.5 + pos: 7.5,4.5 parent: 1 - - uid: 1161 + - uid: 170 components: - type: Transform - pos: -10.5,-10.5 + pos: 6.5,9.5 parent: 1 - - uid: 1162 + - uid: 174 components: - type: Transform - pos: -9.5,-10.5 + pos: 8.5,3.5 parent: 1 - - uid: 1163 +- proto: WoodenBench + entities: + - uid: 1929 components: - type: Transform - pos: -15.5,-10.5 + pos: 13.5,31.5 parent: 1 - - uid: 1164 +- proto: WoodenSign + entities: + - uid: 1936 components: - type: Transform - pos: -14.5,-10.5 + pos: -7.33934,17.979847 parent: 1 - - uid: 1165 +- proto: WoodenSignRight + entities: + - uid: 1935 components: - type: Transform - pos: -13.5,-10.5 + pos: 4.592441,18.987944 parent: 1 - - uid: 1652 +- proto: WoodenSupport + entities: + - uid: 1608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,31.5 parent: 1 -- proto: WindowDirectional - entities: - - uid: 984 + - uid: 1718 components: - type: Transform - pos: -12.5,-9.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 1 - - uid: 985 + - uid: 1805 components: - type: Transform - pos: -12.5,-6.5 + pos: 7.5,31.5 parent: 1 - - uid: 987 + - uid: 1909 components: - type: Transform - pos: -12.5,-7.5 + pos: -15.5,16.5 parent: 1 -- proto: WoodDoor - entities: - - uid: 1839 + - uid: 1994 components: - type: Transform - pos: -0.5,-8.5 + pos: 11.5,31.5 parent: 1 - - type: Door - secondsUntilStateChange: -1983.0103 - state: Opening - - uid: 1840 +- proto: WoodenSupportWall + entities: + - uid: 1188 components: - type: Transform - pos: -0.5,-7.5 + pos: -15.5,22.5 parent: 1 - - type: Door - secondsUntilStateChange: -1983.6912 - state: Opening - - uid: 1841 + - uid: 1333 components: - type: Transform - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 parent: 1 - - type: Door - secondsUntilStateChange: -1956.9247 - state: Opening - - uid: 1842 + - uid: 1921 components: - type: Transform - pos: -0.5,-1.5 + pos: 8.5,28.5 parent: 1 - - type: Door - secondsUntilStateChange: -1957.5579 - state: Opening - - uid: 1905 +- proto: WoodenSupportWallBroken + entities: + - uid: 1197 components: - type: Transform - pos: -5.5,2.5 + pos: 6.5,28.5 parent: 1 - - type: Door - secondsUntilStateChange: -1955.4457 - state: Opening -- proto: WoodSecretDoor +- proto: Wrench entities: - - uid: 1012 + - uid: 2054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 + pos: 9.483096,17.492344 parent: 1 ... diff --git a/Resources/Maps/_NF/POI/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml index 9201737b12f..d3b1f5646da 100644 --- a/Resources/Maps/_NF/POI/lpbravo.yml +++ b/Resources/Maps/_NF/POI/lpbravo.yml @@ -232,85 +232,79 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 65359 0,-1: - 0: 65535 + 0: 65524 -1,0: - 0: 65535 - -1,1: - 0: 52479 - 1: 13056 - -1,-1: - 0: 65535 + 0: 65311 0,1: - 0: 4607 + 0: 15 1: 60928 + -1,1: + 0: 34959 + 1: 13056 0,2: 1: 4371 + -1,2: + 1: 52430 0,3: 1: 4369 + -1,3: + 1: 52428 + 0,4: + 1: 4369 1,0: - 0: 13311 + 0: 4367 1: 52224 1,1: - 0: 1 1: 318 + 1,-1: + 0: 65297 + 1: 8 0,-3: 1: 61439 - 0: 4096 + -1,-3: + 1: 16383 + 0: 32768 + -1,-2: + 0: 65464 0,-2: + 0: 26208 + -1,-1: 0: 65535 1,-3: 1: 4080 - 0: 61440 1,-2: - 0: 32767 + 0: 14199 1: 32768 - 1,-1: - 0: 65527 - 1: 8 -3,0: - 0: 136 + 0: 8 1: 34816 - -3,1: + -3,-1: + 0: 34816 1: 8 -2,0: - 0: 61183 + 0: 52239 1: 4352 + -3,1: + 1: 8 -2,1: 1: 35939 - 0: 140 - -1,2: - 1: 52430 - -1,3: + 0: 8 + -2,-1: + 0: 65484 + -1,4: 1: 52428 -3,-3: 1: 2176 - 0: 32768 - -3,-2: - 0: 2184 - 1: 32768 - -3,-1: - 1: 8 - 0: 34944 -2,-3: 1: 36856 - 0: 28672 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 1: 16383 - 0: 49152 - -1,-2: - 0: 65535 - -1,4: - 1: 52428 + 0: 61431 + -3,-2: + 1: 32768 -1,5: 1: 8 - 0,4: - 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -328,7 +322,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -1155,11 +1149,6 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 502 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1 - uid: 503 components: - type: Transform @@ -2551,9 +2540,9 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 -- proto: ComputerBroken +- proto: ComputerIFFPOI entities: - - uid: 501 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad @@ -3639,6 +3628,13 @@ entities: - type: Transform pos: -2.5,2.5 parent: 1 +- proto: TelecomServerFilledSyndicate + entities: + - uid: 501 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 - proto: ToiletDirtyWater entities: - uid: 138 diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml index b8334efb234..66da631d78a 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml @@ -55,7 +55,7 @@ nameSegments: [names_cat_clarpy] # Its needed to fix the names since it was using the MobCatGhost list. - type: AutoImplant implants: - - DeathRattleImplant + - FreelanceTrackingImplant - type: entity name: Mistake diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml index 53d05a33f9a..abb2e83e72c 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml @@ -11,7 +11,6 @@ soundGroups: Brute: collection: MetalGlassBreak - - type: Computer - type: ApcPowerReceiver powerLoad: 200 - type: ExtensionCableReceiver @@ -61,6 +60,8 @@ type: CargoPalletConsoleBoundUserInterface - type: MarketModifier mod: 1.00 + - type: Computer + board: Null - type: entity parent: ComputerPalletConsoleNFNormalMarket @@ -97,58 +98,59 @@ placement: mode: SnapgridCenter components: - - type: MeleeSound - soundGroups: - Brute: - collection: MetalGlassBreak - - type: Computer - - type: ApcPowerReceiver - powerLoad: 200 - - type: ExtensionCableReceiver - - type: ActivatableUIRequiresPower - - type: Sprite - netsync: false - noRot: true - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: contraband - - map: ["computerLayerKeys"] - state: telesci_key - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ComputerVisuals.Powered: - computerLayerScreen: - True: { visible: true, shader: unshaded } - False: { visible: false } - computerLayerKeys: - True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } - - type: LitOnPowered - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#b89f25" - enabled: false - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - offset: "0, 0.4" # shine from the top, not bottom of the computer - castShadows: false - - type: EmitSoundOnUIOpen - sound: - collection: Keyboard - - type: ContrabandPalletConsole - - type: ActivatableUI - key: enum.ContrabandPalletConsoleUiKey.Contraband - - type: UserInterface - interfaces: - - key: enum.ContrabandPalletConsoleUiKey.Contraband - type: ContrabandPalletConsoleBoundUserInterface + - type: MeleeSound + soundGroups: + Brute: + collection: MetalGlassBreak + - type: ApcPowerReceiver + powerLoad: 200 + - type: ExtensionCableReceiver + - type: ActivatableUIRequiresPower + - type: Sprite + netsync: false + noRot: true + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: contraband + - map: ["computerLayerKeys"] + state: telesci_key + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ComputerVisuals.Powered: + computerLayerScreen: + True: { visible: true, shader: unshaded } + False: { visible: false } + computerLayerKeys: + True: { visible: true, shader: unshaded } + False: { visible: true, shader: shaded } + - type: LitOnPowered + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b89f25" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + offset: "0, 0.4" # shine from the top, not bottom of the computer + castShadows: false + - type: EmitSoundOnUIOpen + sound: + collection: Keyboard + - type: ContrabandPalletConsole + - type: ActivatableUI + key: enum.ContrabandPalletConsoleUiKey.Contraband + - type: UserInterface + interfaces: + - key: enum.ContrabandPalletConsoleUiKey.Contraband + type: ContrabandPalletConsoleBoundUserInterface + - type: Computer + board: Null - type: entity parent: ComputerShuttle @@ -168,3 +170,22 @@ radius: 1.5 energy: 1.6 color: "#c94242" + +- type: entity + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerIFFSyndicate] + id: ComputerIFFPOI + name: IFF computer + suffix: POI + description: Allows you to control the IFF and stealth characteristics of this station. + components: + - type: IFFConsole + allowedFlags: + - Hide + - type: ActivatableUI + key: enum.IFFConsoleUiKey.Key + - type: UserInterface + interfaces: + - key: enum.IFFConsoleUiKey.Key + type: IFFConsoleBoundUserInterface + - type: Computer + board: Null \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml index 7769f153125..8b5fe6523ee 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml @@ -485,7 +485,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerCargoOrders] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerCargoOrders] id: ComputerTabletopCargoOrders components: - type: Sprite @@ -649,7 +649,7 @@ # Computers: Frontier - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFHighMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFHighMarket] id: ComputerTabletopPalletConsoleNFHighMarket suffix: High, Tabletop components: @@ -670,7 +670,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFNormalMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFNormalMarket] id: ComputerTabletopPalletConsoleNFNormalMarket suffix: Normal, Tabletop components: @@ -691,7 +691,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFLowMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFLowMarket] id: ComputerTabletopPalletConsoleNFLowMarket suffix: Low, Tabletop components: @@ -733,7 +733,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, StationAdminBankATM] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, StationAdminBankATM] id: ComputerTabletopStationAdminBankATM components: - type: Sprite @@ -753,7 +753,7 @@ state: id_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerContrabandPalletConsole] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerContrabandPalletConsole] id: ComputerTabletopContrabandPalletConsole components: - type: Sprite @@ -771,3 +771,24 @@ - map: ["computerLayerKeys"] sprite: _NF/Structures/Machines/computers.rsi state: telesci_key + +- type: entity + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerIFFPOI] + id: ComputerTabletopComputerIFFPOI + suffix: POI, Tabletop + components: + - type: Sprite + drawdepth: SmallObjects + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Shuttles/iff.rsi + state: helm + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml index 9196f9085df..3585c8c191f 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml @@ -1,5 +1,5 @@ - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyard] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyard] id: ComputerTabletopShipyard components: - type: Sprite @@ -19,7 +19,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, BaseMothershipComputer] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, BaseMothershipComputer] id: BaseMothershipComputerTabletop abstract: true components: @@ -40,7 +40,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardSecurity] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardSecurity] id: ComputerTabletopShipyardSecurity components: - type: Sprite @@ -60,7 +60,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardNfsd] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardNfsd] id: ComputerTabletopShipyardNfsd components: - type: Sprite @@ -80,7 +80,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardBlackMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardBlackMarket] id: ComputerTabletopShipyardBlackMarket components: - type: Sprite @@ -100,7 +100,7 @@ state: blackmarket_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardExpedition] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardExpedition] id: ComputerTabletopShipyardExpedition components: - type: Sprite @@ -120,7 +120,7 @@ state: blackmarket_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardScrap] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardScrap] id: ComputerTabletopShipyardScrap components: - type: Sprite diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml index 0dddfd2c863..c160bbe9bfe 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml @@ -31,3 +31,23 @@ - EncryptionKeySecurity - EncryptionKeyService - EncryptionKeyTraffic + +- type: entity + parent: TelecomServer + id: TelecomServerFilledSyndicate + suffix: Syndicate + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeySyndie + +- type: entity + parent: TelecomServer + id: TelecomServerFilledFreelance + suffix: Freelance + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance diff --git a/Resources/Prototypes/_NF/Entities/Structures/atm.yml b/Resources/Prototypes/_NF/Entities/Structures/atm.yml index db16941fcf1..51f67ee1133 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/atm.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/atm.yml @@ -167,6 +167,28 @@ - key: enum.BankATMMenuUiKey.BlackMarket type: BankATMMenuBoundUserInterface +- type: entity + suffix: Wallmount, BlackMarket + parent: [ComputerBankATMBase, ComputerBankATMDeposit, BaseStructureDisableToolUse, BaseStructureDestructible, BaseStructureWallmount, BaseStructureComputer] + id: ComputerWallmountBlackMarketBankATM + description: Has some sketchy looking modifications and a sticker that says DEPOSIT FEE 30% + components: + - type: Sprite + netsync: false + noRot: true + sprite: _NF/Structures/Machines/atm/wall_illegal_atm.rsi + layers: + - map: ["computerLayerBody"] + state: icon + - map: ["computerLayerScreen"] + state: unshaded + - type: ActivatableUI + key: enum.BankATMMenuUiKey.BlackMarket + - type: UserInterface + interfaces: + - key: enum.BankATMMenuUiKey.BlackMarket + type: BankATMMenuBoundUserInterface + - type: entity name: station administration console parent: [ComputerBankATMBase, BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructureAccessReaderImmuneToEmag, BaseStructureComputer] diff --git a/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml index 0730ffb9f70..7a4c4133f45 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml @@ -29,3 +29,5 @@ state: harvest3 map: [ "harvest_alert" ] visible: false + - type: Machine + board: Null diff --git a/Resources/Prototypes/_NF/Entities/Tiles/water.yml b/Resources/Prototypes/_NF/Entities/Tiles/water.yml new file mode 100644 index 00000000000..c3456793acb --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Tiles/water.yml @@ -0,0 +1,63 @@ +- type: entity + id: FloorWaterDecorativeEntity + name: water + suffix: Decorative + description: A real thirst quencher. + placement: + mode: SnapgridCenter + snap: + - Wall + components: +# - type: FloorOccluder + - type: Transform + anchored: true + - type: SyncSprite + - type: Clickable + - type: Sprite + sprite: Tiles/Planet/water.rsi + drawdepth: BelowFloor + layers: + - state: shoreline_water + - type: SolutionContainerManager + solutions: + pool: + maxVol: 9999999 #.inf seems to break the whole yaml file, but would definitely be preferable. + reagents: + - ReagentId: Water + Quantity: 9999999 + - type: SolutionRegeneration + solution: tank + generated: + reagents: + - ReagentId: Water + Quantity: 100 + - type: DrainableSolution + solution: pool + # - type: SpeedModifierContacts + # walkSpeedModifier: 0.5 + # sprintSpeedModifier: 0.5 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepWater + params: + volume: 8 + - type: StepTrigger # Frontier + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Maps/POI/lodge.yml b/Resources/Prototypes/_NF/Maps/POI/lodge.yml index 8bae4a40ffb..f01e2e77c13 100644 --- a/Resources/Prototypes/_NF/Maps/POI/lodge.yml +++ b/Resources/Prototypes/_NF/Maps/POI/lodge.yml @@ -1,7 +1,7 @@ - type: gameMap id: Lodge mapName: 'Expeditionary Lodge' - mapPath: /Maps/_NF/POI/cove.yml + mapPath: /Maps/_NF/POI/lodge.yml minPlayers: 0 stations: Lodge: diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index 7788ca82208..585574a888f 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -68,7 +68,7 @@ keycode: 't' frequency: 1213 color: "#8f4a4b" - longRange: true +# longRange: true # Frontier - Move to Syndicate Base - type: radioChannel id: Handheld @@ -94,4 +94,4 @@ frequency: 1984 color: "#f6ce64" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms - longRange: true + #longRange: true # Frontier - Move to server on cove diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png